body {
  font-family: "Microsoft YaHei";
  /*max-width: 1920px;*/
  --color: #cf6025;
  font-weight: normal;
  margin: 0 auto;
}
.container {
  width: 1630px;
}
.container.wraper {
  width: 100%;
  padding: 0 60px;
}
.body-overflow-box {
  position: relative;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header {
  z-index: 21;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  padding: 15px 0;
}
/*#header .nav{
  max-width: 1920px;
  margin: auto;
}*/
#header .nav .ui.menu {
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#header .nav .ui.menu .logo {
  display: inline-block;
  margin-left: 0;
  margin-right: 160px;
  vertical-align: middle;
  position: relative;
}
#header .nav .ui.menu .logo .img2{
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
#header.active .nav .ui.menu .logo .img2{
  opacity: 1;
}
#header .nav .ui.menu .menu-box {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0;
  margin-right: auto;
}
#header .nav .ui.menu .menu-box > div {
  height: 100%;
}
#header .nav .ui.menu .menu-box ul.menu {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#header .nav .ui.menu .menu-box ul.menu > li {
  font-size: 20px;
  font-weight: 300;
  margin: 0 27px;
  color: white;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  float: left;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: uppercase;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover {
  color: var(--color);
}
#header .nav .ui.menu .menu-box ul.menu > li > a {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu {
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  text-align: left;
  position: absolute;
  font-size: 14px;
  background: #fff;
  top: 100%;
  left: -10px;
  width: 180px;
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  -ms-transform: rotate3d(1, 0, 0, -90deg);
  -o-transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.3s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid var(--color);
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li {
  display: block;
  float: none;
  padding: 8px 15px;
  color: black;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
  position: relative;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li a {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li ul {
  position: absolute;
  left: 100%;
  top: 0;
  width: 100%;
  display: none;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover {
  background: #222;
  color: white;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover > ul {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .h-search {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0;
  margin-right: 0;
  cursor: pointer;
  cursor: hand;
}
#header .yuy ul {
  left: auto;
  right: 0;
}
#header.active {
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
}
#header.active .nav .ui.menu .menu-box ul.menu > li {
  color: #000;
}
#header.active .nav .ui.menu .menu-box ul.menu > li:hover {
  color: var(--color);
}
#header.active .yuy span img,
#header.active .nav .ui.menu .h-search img {
  -webkit-filter: invert(1);
  filter: invert(1);
}
#header .nav .search-box {
  line-height: normal;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
}
#header .nav .search-box form {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 60%;
  margin-left: -30%;
}
#header .nav .search-box form input {
  background: none;
  outline: none;
  border: none;
}
#header .nav .search-box form input[type="text"] {
  width: 100%;
  border-bottom: 1px solid #e1e1e1;
  font-size: 26px;
  color: #000;
  padding: 10px 0;
}
#header .nav .search-box form input[type="submit"] {
  width: 22px;
  height: 22px;
  background: url(../images/tc-zoom.png) no-repeat;
  position: absolute;
  right: 15px;
  top: 20px;
}
#header .nav .search-box form input[type="submit"]:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
#header .nav .search-box .close {
  width: 30px;
  height: 30px;
  background: url(../images/close.png) no-repeat;
  position: absolute;
  right: 25px;
  top: 15px;
  cursor: pointer;
}
#banner .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 80px;
  color: transparent;
  border: none;
  z-index: 1;
  outline: none;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  opacity: 0;
}
#banner .slick-arrow:hover {
  background-color: var(--color);
}
#banner:hover .slick-arrow {
  opacity: 1;
}
#banner .slick-prev {
  background: url("../images/banner-btn-l.png") no-repeat center center rgba(0, 0, 0, 0.3);
  left: 15px;
}
#banner .slick-next {
  background: url("../images/banner-btn-r.png") no-repeat center center rgba(0, 0, 0, 0.3);
  right: 15px;
}
#banner ul.slick-dots {
  position: absolute;
  bottom: 5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#banner ul.slick-dots li {
  width: 10px;
  height: 10px;
  display: inline-block;
  margin: 0 10px;
  border-radius: 100%; 
  background-color: white;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  border-color: white;
}
#banner ul.slick-dots li button {
  display: none;
}
#banner ul.slick-dots li.slick-active {
  background-color: var(--color);
  border-color: var(--color);
}
#banner .slick-slide .content {
  display: none;
}
#banner .slick-active .content {
  display: block;
}
.wpulike.wpulike-default {
  display: none;
}
.prodet-page .wpulike.wpulike-default,
.newdet-page .wpulike.wpulike-default {
  display: inline-block;
}
.post-views-box {
  position: relative;
  margin-left: 20px;
}
.post-views-box .wp_ulike_btn.wp_ulike_put_image:after {
  background-image: url(../images/fw.png) !important;
  -webkit-filter: none;
  filter: none;
}
.wpulike {
  z-index: 10;
}
.wpulike.post-views-box {
  z-index: 5;
}
#banner .nivo-directionNav a {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.3);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  color: transparent;
  overflow: hidden;
  text-indent: -999em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner .nivo-directionNav a {
  opacity: 0;
}
#banner:hover .nivo-directionNav a {
  opacity: 1;
}
#banner .nivo-directionNav a:hover {
  background-color: var(--color);
}
#banner .nivo-directionNav a.nivo-prevNav {
  background-image: url(../images/banner-btn-l.png);
  left: 40px;
}
#banner .nivo-directionNav a.nivo-nextNav {
  background-image: url(../images/banner-btn-r.png);
  right: 40px;
}
#banner .theme-default .nivo-controlNav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: auto !important;
}
#banner .theme-default .nivo-controlNav a {
  width: 25px  !important;
  height: 25px !important;
  background: #fff !important;
  border: 7px solid #7d7d7d !important;
  border-radius: 100% !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  margin: 0 8px !important;
}
#banner .theme-default .nivo-controlNav a.active {
  border-color: var(--color) !important;
}
#spotlight.show {
  display: inline-block;
  background: rgba(0, 0, 0, 0.3) !important;
}
#spotlight .scene img {
  border: 10px solid white !important;
  border-radius: 10px;
}
#spotlight .header {
  background: black !important;
}
#banner li {
  position: relative;
}
#banner li > img{
  width: 100%;
}
#banner li .content {
  position: absolute;
  left: 0;
  width: 100%;
  top: 65%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#banner li .content .left {
  width: 50%;
  margin-left: auto;
}
#banner li .content span {
  color: var(--color);
  font-weight: 300;
}
#banner li .content h2 {
  color: white;
}
.base-color {
  color: var(--color);
}
.more {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  font-size: 16px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 49px;
  padding: 0 30px;
  border: 2px solid #454649;
  border-radius: 24px;
}
.more img {
  margin-left: 20px;
}
.more:hover {
  background-color: var(--color);
  color: white;
  border-color: var(--color);
}
.more:hover img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
#index-body .i-category {
  background-color: #ecf2f4;
}
#index-body .i-category .wrap .left {
  width: 59%;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#index-body .i-category .wrap .right {
  width: 41%;
}
#index-body .i-category .slickBtn {
  position: absolute;
  right: -webkit-calc(41% + 20px);
  right: -moz-calc(41% + 20px);
  right: calc(41% + 20px);
  bottom: 0;
  z-index: 2;
}
#index-body .i-category .slickBtn div {
  border-radius: 0;
  background-color: transparent;
  width: 62px;
  height: 62px;
  border: 1px solid #454649;
  color: #454649;
}
#index-body .i-category .slickBtn div.prev i {
  display: block;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
#index-body .i-category .slickBtn div:hover {
  background-color: var(--color);
  border-color: var(--color);
  color: white;
}
#index-body .i-product ul li .cat {
  color: white;
  background-color: var(--color);
  display: inline-block;
  padding: 2px 20px;
}
#index-body .i-about .line {
  width: 100%;
  height: 1px;
  background-color: #c9c9c9;
}
#index-body .i-about .content {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  line-height: 2.1;
  text-align: center;
}
#index-body .i-about .img-box {
  position: relative;
  /*height: 660px;*/
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#index-body .i-about .img-box:hover img{
  -webkit-transform: scale(1, 1);
    -moz-transform: scale(1,1);
    -ms-transform: scale(1,1);
    transform: scale(1, 1);
}
#index-body .i-about2 {
  background-color: #454649;
  position: relative;
  color: white;
}
#index-body .i-about2 .ui.container {
  z-index: 3;
}
#index-body .i-about2 .top .title {
  line-height: 1;
}
#index-body .i-about2 ul {
  overflow: hidden;
}
#index-body .i-about2 ul li .line {
  width: 200%;
  height: 1px;
  background-color: #e2e2e0;
}
#index-body .i-about2 ul li .num {
  color: #e1e1df;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
#index-body .i-about2 ul li p {
  max-width: 315px;
  line-height: 2.1;
}
#index-body .i-about2 ul li:hover .num {
  color: var(--color);
}
#index-body .i-about2 .bg {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  text-align: right;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
#index-body .init-5 {
  background-color: var(--color);
}
#index-body .init-5 ul li .box {
  padding: 40px 20px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#index-body .init-5 ul li .box .top {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
}
#index-body .init-5 ul li .box .icon i {
  display: block;
  width: 35px;
  height: 8px;
  background-color: var(--color);
  margin: 3px 0;
  -webkit-transform: skewX(-25deg);
  -moz-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
#index-body .init-5 ul li .box .icon i:nth-child(1) {
  -webkit-transform: skewX(-25deg) translateX(10px);
  -moz-transform: skewX(-25deg) translateX(10px);
  -ms-transform: skewX(-25deg) translateX(10px);
  transform: skewX(-25deg) translateX(10px);
}
#index-body .init-5 ul li .box .icon i:nth-child(2) {
  -webkit-transform: skewX(-25deg) translateX(5px);
  -moz-transform: skewX(-25deg) translateX(5px);
  -ms-transform: skewX(-25deg) translateX(5px);
  transform: skewX(-25deg) translateX(5px);
}
#index-body .init-5 ul li .box .mores {
  font-size: 16px;
  height: 40px;
  line-height: 40px;
  border-radius: 20px;
  display: inline-block;
  padding: 0 15px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  background-color: #e2e2e0;
}
#index-body .init-5 ul li .box .mores:hover {
  background-color: var(--color);
  color: white;
}
#index-body .init-5 ul li .box .line {
  width: 100%;
  height: 1px;
  background-color: #e2e2e0;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#index-body .init-5 ul li .box .title {
  color: white;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#index-body .init-5 ul li .box .des {
  line-height: 2;
  color: white;
  min-height: 120px;
}
#index-body .init-5 ul li:hover .box {
  background-color: white;
}
#index-body .init-5 ul li:hover .box .top {
  opacity: 1;
}
#index-body .init-5 ul li:hover .box .title {
  color: var(--color);
}
#index-body .init-5 ul li:hover .box .des {
  color: black;
}
#index-body .i-news {
  background-color: #f0f0f0;
}
#index-body .i-news .left ul li {
  border-bottom: 1px solid #bababa;
}
#index-body .i-news .left ul li .h4 {
  position: relative;
  color: #454649;
}
#index-body .i-news .left ul li .h4 i {
  display: block;
  width: 17px;
  height: 17px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}
#index-body .i-news .left ul li .h4 i::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  height: 2px;
  background-color: #454649;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#index-body .i-news .left ul li .h4 i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0%;
  -webkit-transform: translate(-50%, 0%);
  -moz-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  width: 2px;
  height: 100%;
  background-color: #454649;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#index-body .i-news .left ul li .des {
  line-height: 2;
  color: #454649;
  display: none;
}
#index-body .i-news .left ul li:last-child {
  margin-bottom: 0;
}
#index-body .i-news .left ul li.active .h4 i::after {
  -webkit-transform: translate(-50%, 0%) rotate(90deg);
  -moz-transform: translate(-50%, 0%) rotate(90deg);
  -ms-transform: translate(-50%, 0%) rotate(90deg);
  transform: translate(-50%, 0%) rotate(90deg);
}
#index-body .i-news .right img{
  width: 100%;
}
#index-body .i-service {
  background: url(../images/form-bg.jpg) no-repeat;
  background-size: cover;
  color: white;
}
#index-body .i-service ul {
  max-width: 1020px;
  margin: auto;
}
#index-body .i-service ul li {
  font-size: 20px;
  text-align: center;
  height: 64px;
  line-height: 64px;
}
#index-body .i-service ul li a {
  display: block;
  background-color: rgba(0, 0, 0, 0.22);
}
#index-body .i-service ul li:hover a {
  background-color: var(--color);
}
#footer {
  background-color: #454649;
  color: white;
}
#footer .wrap .one {
  width: 34%;
}
#footer .wrap .one p {
  line-height: 2;
  max-width: 340px;
}
#footer .wrap ul li {
  font-size: 16px;
  font-weight: lighter;
  margin-bottom: 12px;
}
#footer .wrap ul li a {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
#footer .wrap ul li:hover a {
  color: var(--color);
}
#footer .wrap .five ul li{
  padding-left: 40px;
  position: relative;
}
#footer .wrap .five ul li img{
  position: absolute;
  left: 0;
  top: 2px;
}
#footer .wrap .five {
  max-width: 350px;
}
#footer #ewm {
  width: 85px;
  height: 85px;
  padding: 5px;
  background-color: white;
  position: relative;
}
#footer #ewm::after {
  content: "";
  position: absolute;
  left: -6px;
  top: -6px;
  right: -6px;
  bottom: -6px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}
#footer .f-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 15px 0;
}
#footer .f-copy svg {
  height: 27px;
  width: auto;
  fill: white;
}
@media screen and (min-width: 1920px){
  .container{
    width: 90%;
    /*margin: 0 10%;*/
  }
}
@media screen and (max-width: 1700px) {
  #header .nav .ui.menu .logo {
    margin-right: 30px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin: 0 20px;
  }
  #index-body .i-about2 .bg img {
    height: 100%;
  }
}
@media screen and (max-width: 1450px) {
  #header .nav .ui.menu .menu-box ul.menu > li {
    font-size: 17px;
    margin: 0 17px;
  }
  #index-body .i-category .slickBtn div {
    width: 50px;
    height: 50px;
  }
  /*#index-body .i-about .img-box {
    height: 500px;
  }*/
  .font-100 {
    font-size: 50px;
  }
  #index-body .i-about2 ul li p {
    max-width: 245px;
  }
  #footer .wrap .one {
    width: 23%;
  }
}
@media screen and (max-width: 1250px) {
  .font-56 {
    font-size: 32px;
  }
  #innerMobileBanner{
    margin-top: 60px;
  }
  #index-body .i-category .wrap .left .content {
    padding: 0;
  }
  #index-body .i-category .slickBtn div {
    width: 40px;
    height: 40px;
  }
  #index-body .i-about2 ul li p {
    max-width: 185px;
  }
  #index-body .init-5 ul li .box {
    background-color: white;
  }
  #index-body .init-5 ul li .box .top {
    opacity: 1;
  }
  #index-body .init-5 ul li .box .title {
    color: var(--color);
  }
  #index-body .init-5 ul li .box .des {
    color: black;
  }
  #index-body .init-5 ul li .box .top .flex {
    margin-bottom: 30px;
  }
  #footer .wrap .one .share a img {
    width: 30px;
  }
  #footer .wrap .five {
    max-width: 230px;
  }
}
@media screen and (max-width: 1000px) {
  .font-56 {
    font-size: 23px;
  }
  #index-body .i-category .slickBtn {
    display: none;
  }
  /*#index-body .i-about .img-box {
    height: 375px;
  }*/
  #index-body .i-about2 ul li p {
    max-width: 145px;
  }
  .font-100 {
    font-size: 40px;
  }
  .container.wraper {
    padding: 0 15px;
  }
  #index-body .i-news .left {
    width: 100%;
    padding: 0;
  }
  #index-body .i-news .right {
    display: none;
  }
  #footer .wrap .three,
  #footer .wrap .four {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  #banner li .content .left {
    width: 60%;
  }
  .font-56 {
    font-size: 19px;
  }
  .more {
    font-size: 14px;
    border-width: 1px;
    height: 40px;
    padding: 0 20px;
  }
  .more img {
    width: 16px;
  }
  #index-body .i-about2 ul li {
    width: 50%;
  }
  #index-body .i-about2 .bg img {
    height: auto;
  }
  #index-body .i-service ul li {
    font-size: 15px;
    height: 40px;
    line-height: 40px;
  }
  #footer .wrap .one,
  #footer .wrap .two {
    display: none;
  }
  #footer .wrap .five {
    max-width: 100%;
  }
}
@media screen and (max-width: 500px) {
  #banner li .content .left {
    width: 100%;
  }
  #index-body .i-category .top {
    padding: 0;
  }
  #index-body .i-category .wrap .right {
    display: none;
  }
  #index-body .i-category .wrap .left {
    width: 100%;
    padding: 0;
  }
  #index-body .i-about2 .top {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #index-body .i-about2 .top .tag {
    width: 100%;
  }
  #index-body .i-about2 ul li {
    width: 100%;
  }
  #index-body .i-about2 ul li p {
    max-width: 100%;
  }
  #index-body .i-news .left ul li .h4 {
    padding-right: 20px;
  }
  #index-body .i-news .left ul li .h4 i {
    top: 4px;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  #index-body .i-service ul li {
    width: 50%;
    margin-bottom: 15px;
  }
  #index-body .i-service ul li:last-child {
    width: 100%;
  }
}



.inner-banner {
  color: white;
}
.inner-banner > img{
  width: 100%;
}
.inner-banner .box {
  top: 64%;
  width: 100%;
}
.font-116 {
  font-size: 116px;
}
.manufacture-page .manufacture-1 .txt {
  text-align: center;
  max-width: 800px;
  line-height: 1.8;
  margin-left: auto;
  margin-right: auto;
}
.manufacture-page .manufacture-1 ul.slick li img{
  width: 100%;
}
.manufacture-page .manufacture-1 .list {
  height: 440px;
}
.manufacture-page .manufacture-1 .list ul .slick-slide {
  float: unset;
}
.manufacture-page .manufacture-1 .list ul li {
  border-bottom: 1px solid transparent;
  position: relative;
  margin-bottom: 0;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.manufacture-page .manufacture-1 .list ul li .left {
  opacity: 0.73;
  -webkit-transition: all 1.5s;
  -moz-transition: all 1.5s;
  transition: all 1.5s;
  color: #2b2b2b;
}
.manufacture-page .manufacture-1 .list ul li .right {
  opacity: 0;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  transition: 1s;
  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
  position: absolute;
  right: 0;
  bottom: 0;
}
.manufacture-page .manufacture-1 .list ul li .right .num {
  line-height: 1;
}
.manufacture-page .manufacture-1 .list ul .swiper-slide-active + li,
.manufacture-page .manufacture-1 .list ul .slick-current li {
  border-bottom-color: #a8a8a8;
  margin-bottom: 50px;
}
.manufacture-page .manufacture-1 .list ul .swiper-slide-active + li .left,
.manufacture-page .manufacture-1 .list ul .slick-current li .left {
  opacity: 1;
  padding-left: 100px;
  color: black;
}
.manufacture-page .manufacture-1 .list ul .swiper-slide-active + li .right,
.manufacture-page .manufacture-1 .list ul .slick-current li .right {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.manufacture-page .manufacture-2 {
  background-color: #f6f6f6;
}
.manufacture-page .manufacture-2 ul .slick-list {
  padding: 0 35% 0 23%;
}
.manufacture-page .manufacture-2 ul li .left {
  max-width: 300px;
  width: 39%;
  opacity: 0.5;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.manufacture-page .manufacture-2 ul li .right {
  max-width: 470px;
  width: 61%;
}
.manufacture-page .manufacture-2 ul li .right img {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}
.manufacture-page .manufacture-2 ul li .h4 {
  margin-top: -20px;
}
.manufacture-page .manufacture-2 ul li .des {
  line-height: 2;
  color: #3b3a3a;
}
.manufacture-page .manufacture-2 ul .slick-current li .left {
  opacity: 1;
}
.manufacture-page .manufacture-2 ul .slick-current li .right img {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.manufacture-page .manufacture-2 .bottom {
  width: 77%;
  margin-left: auto;
}
.manufacture-page .manufacture-2 .bottom div {
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
}
.manufacture-page .manufacture-2 .bottom .prev,
.manufacture-page .manufacture-2 .bottom .next {
  width: 75px;
  height: 75px;
  border: 1px solid #b7b7b7;
  border-radius: 50%;
  text-align: center;
  line-height: 75px;
  margin-right: 30px;
  font-size: 25px;
  cursor: pointer;
  color: #b7b7b7;
}
.manufacture-page .manufacture-2 .bottom .prev:hover,
.manufacture-page .manufacture-2 .bottom .next:hover {
  border-color: black;
  color: black;
}
.manufacture-page .manufacture-2 .bottom .line {
  height: 1px;
  width: -webkit-calc((100% - 300px) / 2);
  width: -moz-calc((100% - 300px) / 2);
  width: calc((100% - 300px) / 2);
  background-color: #b7b7b7;
}
.manufacture-page .manufacture-2 .bottom .page {
  margin: 0 30px;
  color: #b7b7b7;
}
.manufacture-page .manufacture-3 .left {
  width: 48%;
}
.manufacture-page .manufacture-3 .left ul li {
  width: 222px;
  height: 222px;
  border-radius: 50%;
  background-color: #454649;
  color: white;
  z-index: 1;
}
.manufacture-page .manufacture-3 .left ul li:nth-child(2) {
  background-color: #cf6025;
  z-index: 2;
}
.manufacture-page .manufacture-3 .left ul li:nth-child(3){
  z-index: 3;
}
.manufacture-page .manufacture-3 .left ul li:not(:first-child) {
  margin-left: -40px;
}
.manufacture-page .manufacture-3 .left .img img{
  width: 100%;
}
.manufacture-page .manufacture-3 .right {
  width: 52%;
}
.manufacture-page .manufacture-3 .right .txt {
  line-height: 2;
  color: #3b3a3a;
}
.manufacture-page .manufacture-3 .right .img img{
  width: 100%;
}
.about-page .about-1 {
  background: url(../images/about-1-bg.jpg) no-repeat left top;
}
.about-page .about-1 .left {
  width: 46%;
  padding-left: 8.5%;
}
.about-page .about-1 .left .des {
  line-height: 2;
  color: #000000;
}
.about-page .about-1 .right {
  width: 54%;
}
.about-page .about-1 .right ul li .box {
  background: -webkit-linear-gradient(278deg, #fdf8f6, rgba(208, 98, 40, 0.78), #d06228);
  background: -moz-linear-gradient(278deg, #fdf8f6, rgba(208, 98, 40, 0.78), #d06228);
  background: linear-gradient(172deg, #fdf8f6, rgba(208, 98, 40, 0.78), #d06228);
  height: 655px;
  color: white;
}
.about-page .about-1 .right ul li .box .num {
  font-size: 220px;
  font-weight: bold;
  line-height: 1;
}
.about-page .about-1 .right ul li .box .content {
  padding: 30px;
}
.about-page .about-1 .right ul li .box .des {
  line-height: 2;
}
.about-page .about-1 .right ul li:nth-child(2) .box {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -moz-box-orient: vertical;
  -moz-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  background: -webkit-linear-gradient(278deg, #d06228, rgba(208, 98, 40, 0.78), #fdf8f6);
  background: -moz-linear-gradient(278deg, #d06228, rgba(208, 98, 40, 0.78), #fdf8f6);
  background: linear-gradient(172deg, #d06228, rgba(208, 98, 40, 0.78), #fdf8f6);
}
.about-page .about-2 ul.nav {
  border-bottom: 1px solid #cccccc;
}
.about-page .about-2 ul.nav li {
  margin: 0 75px;
}
.about-page .about-2 ul.nav li a {
  display: block;
  position: relative;
  padding-bottom: 27px;
}
.about-page .about-2 ul.nav li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background-color: #d06228;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.about-page .about-2 ul.nav li.active a::after,
.about-page .about-2 ul.nav li:hover a::after {
  width: 100%;
}
.about-page .about-2 .list ul li .des {
  line-height: 2;
}
.about-page .about-2 .list ul li .left img{
  width: 100%;
}
.about-page .about-2 .list ul li .right .icon {
  position: absolute;
  right: 0;
  /*bottom: -webkit-calc(100% + 30px);
  bottom: -moz-calc(100% + 30px);*/
  top: 0;
}
.ins-page ul li .box > img{
  width: 100%;
}
.ins-page ul li .h4 {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  color: white;
  padding: 20px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}
.ins-page ul li:hover .h4 {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.m-page a,
.m-page span {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  text-align: center;
  line-height: 30px;
  font-size: 15px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  margin: 0 6px;
  background-color: #eee;
}
.m-page a:hover,
.m-page span {
  background-color: var(--color);
  color: white;
}
.lock-page .init-1 {
  margin-top: 0;
  color: white;
}
.lock-page .init-1 .mbx{
  position: absolute;
  right: 0;
  bottom: 15px;
  color: white;
}
.lock-page .init-2 .txt {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  line-height: 2;
}
.lock-page .init-2 .left img{
  width: 100%;
}
.lock-page .init-2 .right p {
  line-height: 2;
}
.lock-page .init-2 .right p span {
  display: block;
}
.lock-page .init-3 {
  background: url(../images/lock-2.jpg) no-repeat top #f5f5f5;
  padding-top: 420px;
  background-size: contain;
}
.lock-page .init-3 .ui.container {
  width: 100%;
  padding-right: 0;
  padding-left: 8.5%;
}
.lock-page .init-3 .h2 {
  color: white;
  margin-bottom: 65px;
}
.lock-page .init-3 ul li .content {
  background-color: white;
}
.lock-page .init-3 ul li .content .des {
  line-height: 2;
}
.lock-page .init-3 .slickBtn div {
  width: 125px;
  height: 55px;
  border: none;
  background-color: white;
  text-align: center;
  line-height: 55px;
  border-radius: 0;
  color: black;
  margin: 0;
  font-size: 26px;
}
.lock-page .init-3 .slickBtn div:hover {
  background-color: #e3e3e3;
}
.lock-page .init-4 ul li {
  text-align: center;
}
.lock-page .init-4 ul li .icon {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1px solid #b5b5b5;
  margin: auto;
}
.lock-page .init-4 ul li p {
  line-height: 2;
}
.lock-page .init-4 ul li .icon{
  transition: 1s;
}
.lock-page .init-4 ul li:hover .icon{
  transform: rotate(360deg);
}
.lock-page .init-5 .txt{
  line-height: 2;
  max-width: 790px;
  margin-left: auto;
  margin-right: auto;
}
.lock-page .init-5 .txt em{
  color: var(--color);
}
.lock-page .init-5 ul li .box{ 
  background: white;
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
  border-radius: 10px;
  text-align: center;
  padding: 30px 15px;
  min-height: 234px;
}
@media screen and (max-width: 1700px) {
  .font-116 {
    font-size: 94px;
  }
  .manufacture-page .manufacture-3 .left ul li {
    width: 200px;
    height: 200px;
  }
  .about-page .about-1 .right ul li .box {
    height: 560px;
  }
  .about-page .about-1 .right ul li .box .num {
    font-size: 186px;
  }
  .about-page .about-2 .list ul li .right .icon {
    bottom: 100%;
  }
  .lock-page .init-3 {
    padding-top: 304px;
  }
}
@media screen and (max-width: 1450px) {
  .manufacture-page .manufacture-1 .list {
    height: 370px;
  }
  .manufacture-page .manufacture-3 .left ul li {
    width: 180px;
    height: 180px;
  }
  .about-page .about-1 .right ul li .box {
    height: 475px;
  }
  .about-page .about-1 .right ul li .box .num {
    font-size: 130px;
  }
  .about-page .about-2 .list ul li .right .icon {
    bottom: 90%;
  }
  .lock-page .init-3 {
    padding-top: 245px;
  }
}
@media screen and (max-width: 1250px) {
  .font-116 {
    font-size: 78px;
  }
  .manufacture-page .manufacture-1 .list ul .swiper-slide-active + li .left,
  .manufacture-page .manufacture-1 .list ul .slick-current li .left {
    padding-left: 70px;
  }
  .manufacture-page .manufacture-1 .list ul .swiper-slide-active + li,
  .manufacture-page .manufacture-1 .list ul .slick-current li {
    margin-bottom: 25px;
  }
  .manufacture-page .manufacture-1 .list {
    height: 340px;
  }
  .manufacture-page .manufacture-2 ul .slick-list {
    padding: 0 25% 0 23%;
  }
  .manufacture-page .manufacture-3 .left ul li {
    width: 145px;
    height: 145px;
  }
  .manufacture-page .manufacture-3 .left ul li:not(:first-child) {
    margin-left: -20px;
  }
  .manufacture-page .manufacture-2 .bottom .prev,
  .manufacture-page .manufacture-2 .bottom .next {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
  .about-page .about-1 .right ul li .box .content {
    padding: 10px;
  }
  .font-61 {
    font-size: 31px;
  }
  .about-page .about-2 .list ul li .right .icon {
    width: 80px;
  }
  .lock-page .init-3 .ui.container {
    padding-left: 3%;
  }
  .lock-page .init-3 {
    padding-top: 188px;
  }
}
@media screen and (max-width: 1000px) {
  .inner-banner .box {
    top: 50%;
  }
  .manufacture-page .manufacture-1 .list ul li {
    padding-bottom: 0;
  }
  .font-116 {
    font-size: 55px;
  }
  .manufacture-page .manufacture-1 .list {
    height: 250px;
  }
  .manufacture-page .manufacture-2 ul .slick-list {
    padding: 0 3%;
  }
  .manufacture-page .manufacture-3 .left {
    width: 100%;
    padding: 0;
  }
  .manufacture-page .manufacture-3 .right {
    width: 100%;
    margin-top: 20px;
  }
  .about-page .about-1 .left {
    width: 100%;
    padding: 0 3%;
  }
  .about-page .about-1 .right {
    width: 100%;
    padding: 0 3%;
    margin-top: 30px;
  }
  .about-page .about-1 .right ul li .box {
    height: 370px;
  }
  .about-page .about-2 ul.nav li {
    margin: 0 25px;
  }
  .about-page .about-2 .list ul li .right .icon {
    width: 30px;
  }
  .ins-page ul li {
    width: 50%;
  }
  .lock-page .init-4 ul li {
    width: 33.33%;
  }
}
@media screen and (max-width: 700px) {
  .manufacture-page .manufacture-1 .list ul .swiper-slide-active + li .left,
  .manufacture-page .manufacture-1 .list ul .slick-current li .left {
    padding-left: 30px;
  }
  .manufacture-page .manufacture-1 .list {
    height: 215px;
  }
  .about-page .about-1 .right ul li .box .num {
    font-size: 85px;
  }
  .about-page .about-2 .list ul li .left {
    width: 100%;
  }
  .about-page .about-2 .list ul li .right {
    width: 100%;
    padding: 0;
    margin-top: 30px;
  }
  .about-page .about-2 ul.nav li a {
    padding-bottom: 11px;
  }
}
@media screen and (max-width: 500px) {
  .font-116 {
    font-size: 32px;
  }
  .manufacture-page .manufacture-2 ul li .left {
    width: 100%;
  }
  .manufacture-page .manufacture-2 ul li .right {
    width: 100%;
    margin-top: 20px;
  }
  .manufacture-page .manufacture-2 .bottom .prev,
  .manufacture-page .manufacture-2 .bottom .next {
    width: 45px;
    height: 45px;
    line-height: 45px;
    margin-right: 8px;
    font-size: 20px;
  }
  .manufacture-page .manufacture-2 .bottom {
    width: 98%;
  }
  .manufacture-page .manufacture-2 .bottom .line {
    width: -webkit-calc((100% - 180px) / 2);
    width: -moz-calc((100% - 180px) / 2);
    width: calc((100% - 180px) / 2);
  }
  .manufacture-page .manufacture-2 .bottom .page {
    margin: 0 12px;
  }
  .manufacture-page .manufacture-3 .left ul li {
    width: 118px;
    height: 118px;
  }
  .about-page .about-1 .right ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .about-page .about-1 .right ul li {
    width: 100%;
    margin-bottom: 20px;
  }
  .about-page .about-1 .right ul li .box {
    height: auto;
  }
  .about-page .about-2 ul.nav li {
    margin: 0 5px;
  }
  .font-61 {
    font-size: 24px;
  }
  .about-page .about-1 .right ul li:nth-child(2) .box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .ins-page ul li {
    width: 100%;
  }
  .lock-page .init-4 ul li {
    width: 50%;
  }
  .lock-page .init-3 .h2 {
    color: black;
    margin-bottom: 20px;
  }
}



.product-page {
  background-color: #f2f2f2;
}
.product-page .init-1 .containerC .cateCont {
  width: 440px;
  background-color: var(--white);
  padding: 70px 20px 70px 50px;
  position: -webkit-sticky;
  position: sticky;
  top: 140px;
}
.product-page .init-1 .containerC .cateCont .tipsTitle {
  font-weight: bold;
  margin-bottom: 30px;
}
.product-page .init-1 .containerC .cateCont ul li {
  margin-top: 10px;
}
.product-page .init-1 .containerC .cateCont ul li .first {
  position: relative;
  color: #343639;
  display: block;
  font-size: 18px;
  font-weight: bold;
  padding-right: 30px;
}
.product-page .init-1 .containerC .cateCont ul li .first span {
  position: relative;
}
/*.product-page .init-1 .containerC .cateCont ul li .first span::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 10px;
  left: 0;
  background-color: var(--color);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
}*/
.product-page .init-1 .containerC .cateCont ul li .first i {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 0;
  right: 0;
  text-align: center;
  line-height: 20px;
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  -o-transform-origin: center center;
  transform-origin: center center;
}
.product-page .init-1 .containerC .cateCont ul li .first i.active {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.product-page .init-1 .containerC .cateCont ul li .first:hover {
  color: var(--color);
}
.product-page .init-1 .containerC .cateCont ul li .first.active {
  color: var(--color);
}
.product-page .init-1 .containerC .cateCont ul li .first.active span::before {
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
}
.product-page .init-1 .containerC .cateCont ul li ul {
  display: none;
}
.product-page .init-1 .containerC .cateCont ul li.active ul{
  display: block;
}
.product-page .init-1 .containerC .cateCont ul li ul li {
  margin-top: 24px;
  padding-left: 10px;
}
.product-page .init-1 .containerC .cateCont ul li ul li a {
  color: #838383;
  font-size: 16px;
}
.product-page .init-1 .containerC .cateCont ul li ul li a:hover,
.product-page .init-1 .containerC .cateCont ul li ul li a.active {
  color: var(--color);
}
.product-page .init-1 .containerC .cateCont ul li ul li:last-child {
  margin-bottom: 24px;
}
.product-page .init-1 .containerC .cateCont .more {
  width: 100%;
}
.product-page .init-1 .containerC .listContC {
  width: -webkit-calc(-340%);
  width: -moz-calc(-340%);
  width: calc(100% - 440px);
  padding-left: 70px;
}
.product-page .init-1 .containerC .listContC .titleC {
  border-bottom: 1px solid #cfcfcf;
}
.product-page .init-1 .containerC .listContC .titleC .cat {
  font-weight: bold;
  padding-right: 20px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-top: 14px;
}
.product-page .init-1 .containerC .listContC .titleC form .text {
  width: 350px;
  background-color: #e9e9e9;
  border: none;
  padding: 10px 16px;
}
.product-page .init-1 .containerC .listContC .titleC form .submit {
  background-color: var(--color);
  color: #fff;
  border: none;
  width: 140px;
  margin-left: 10px;
  transition: all .5s;
}
.product-page .init-1 .containerC .listContC .titleC form .submit:hover{
  background: var(--color);
}
.product-page .init-1 .containerC .listContC .content {
  padding-top: 20px;
}
.product-page .init-1 .containerC .listContC .content ul li {
  margin-top: 40px;
}
.product-page .init-1 .containerC .listContC .content ul li .box .topC {
  background-color: var(--white);
}
.product-page .init-1 .containerC .listContC .content ul li .box .topC .img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.product-page .init-1 .containerC .listContC .content ul li .box .topC .img img {
  width: auto;
}
.product-page .init-1 .containerC .listContC .content ul li .box .topC .cont {
  padding: 10px 0px;
}
.product-page .init-1 .containerC .listContC .content ul li .box .topC .cont .type {
  font-weight: bold;
    overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.product-page .init-1 .containerC .listContC .content ul li .box .topC .cont .title {
  display: block;
  font-weight: bold;
    overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.product-page .init-1 .containerC .listContC .content ul li .box .topC .cont .title:hover {
  color: var(--color);
}
.product-page .init-1 .containerC .listContC .content ul li .box .topC .cont .des {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.product-page .init-1 .containerC .listContC .content ul li .box .bottomC {
  padding: 6px 0;
  background-color: var(--white);
}
.product-page .init-1 .containerC .listContC .content ul li .box .bottomC .more {
  font-weight: bold;
  padding: 10px 30px;
}
/*.product-page .init-1 .containerC .listContC .content ul li .box .bottomC .more:hover {
  color: var(--color);
}*/
.product-page .init-1 .containerC .listContC .content ul li .box .bottomC .shop {
  width: 100px;
  margin-left: auto;
  border-left: 1px solid #ededed;
  border-right: 1px solid #ededed;
  padding: 16px 0;
  cursor: pointer;
}
.product-page .init-1 .containerC .listContC .content ul li .box .bottomC .shop .shopImg {
  width: 24px;
  height: 22px;
  -webkit-filter: grayscale(1) brightness(0);
  filter: grayscale(1) brightness(0);
}
.product-page .init-1 .containerC .listContC .content ul li .box .bottomC .shop:hover .shopImg {
  -webkit-filter: grayscale(0) brightness(1);
  filter: grayscale(0) brightness(1);
}
.product-page .init-1 .containerC .listContC .content ul li .box .bottomC .see {
  width: 100px;
  border-left: 1px solid #ededed;
  border-right: 1px solid #ededed;
  padding: 16px 0;
  cursor: pointer;
}
.product-page .init-1 .containerC .listContC .content ul li .box .bottomC .see .seeImg {
  width: 24px;
  height: 16px;
  -webkit-filter: grayscale(1) brightness(0);
  filter: grayscale(1) brightness(0);
}
.product-page .init-1 .containerC .listContC .content ul li .box .bottomC .see:hover .seeImg {
  -webkit-filter: grayscale(0) brightness(1);
  filter: grayscale(0) brightness(1);
}
.product-page .init-1 .containerC .catDes {
  line-height: 2;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 4px;
}
.prodet-page {
  background-color: #f2f2f2;
}
.prodet-page .init-1 .container .containerC .left {
  padding-right: 70px;
  width: 60%;
  margin-top: 30px;
}
.prodet-page .init-1 .container .containerC .left .title {
  font-weight: bold;
}
.prodet-page .init-1 .container .containerC .left .desC .tips {
  font-weight: bold;
  color: var(--color);
}
.prodet-page .init-1 .container .containerC .left .desC .des {
  margin-top: 20px;
  border-top: 1px solid #cfcfcf;
}
.prodet-page .init-1 .container .containerC .left .desC .des table tbody{
  min-width: 400px;
}
.prodet-page .init-1 .container .containerC .left .desC .des table tr {
  border-bottom: 1px solid #cfcfcf;
  background-color: transparent;
}
.prodet-page .init-1 .container .containerC .left .desC .des table tr td {
  border: none;
  padding: 10px 0;
  text-align: left !important;
}
.prodet-page .init-1 .container .containerC .left .desC .des table tr td b,
.prodet-page .init-1 .container .containerC .left .desC .des table tr td strong {
  font-weight: bold;
}
.prodet-page .init-1 .container .containerC .left .des2 {
  color: #343639;
}
.prodet-page .init-1 .container .containerC .left .subImg {
  display: block;
}
.prodet-page .init-1 .container .containerC .right {
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
  width: 40%; 
}
.prodet-page .init-1 .container .containerC .right .big{
  width: 78%;
}
.prodet-page .init-1 .container .containerC .gallery{
  width: 15%;
  /*border: 1px solid black;*/
}
.prodet-page .init-1 .container .containerC .gallery ul{
  margin: -10px 0;
}
.prodet-page .init-1 .container .containerC .gallery ul li{
  padding: 10px 0;
}
.prodet-page .init-1 .container .containerC .gallery ul .slick-track{
  margin-left: 0;
}
.prodet-page .init-1 .container .containerC .right ul li .box .img {
  display: block;
  background: #fff;
}
.prodet-page .init-1 .container .containerC .right ul li .box .img img {
  width: 100%;
}
.prodet-page .init-2 .cont {
  background-color: #e9e9e9;
  padding: 20px 70px;
}
.prodet-page .init-2 .cont .list {
  margin-top: 10px;
}
.prodet-page .init-2 .cont .list .h4 {
  display: block;
  font-weight: bold;
}
.prodet-page .init-2 .cont .list .title {
  color: #9a9a9a;
}
.prodet-page .init-2 .cont .list:hover .title {
  color: var(--color);
}
.prodet-page .init-2 .cont .prev {
  padding-right: 20px;
}
.prodet-page .init-2 .cont .next {
  margin-left: auto;
  text-align: right;
}
@media (max-width: 1700px) {
  .product-page .init-1 .containerC .listContC .content ul li .box .bottomC .more {
    width: 100%;
  }
}
@media (max-width: 1450px) {
  .product-page .init-1 .containerC .listContC .titleC form {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -moz-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin-left: auto;
  }
  .product-page .init-1 .containerC .listContC .titleC .cat {
    width: 100%;
    -webkit-box-flex: unset;
    -webkit-flex: unset;
    -moz-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    margin-top: 40px;
  }
  .product-page .init-1 .containerC .listContC .content ul li {
    width: 50%;
  }
}
@media (max-width: 1250px){
   .product-page .init-1 .containerC .cateCont {
    display: none;
  }
  .product-page .init-1 .containerC .listContC {
    width: 100%;
    padding-left: 30px;
  }
   .prodet-page .init-1 .container .containerC .left {
    width: 100%;
    padding-right: 0;
  }
  .prodet-page .init-1 .container .containerC .right {
    width: 100%;
    margin-top: 20px;
  }
}
@media (max-width: 1000px) {
  .product-page .init-1 .containerC .listContC {
    padding-left: 26px;
  }
  .prodet-page .init-2 .cont .list {
    width: 100%;
    text-align: left;
  }
   .prodet-page .init-2 .cont .list {
    width: 100%;
    text-align: left;
  }
}
@media (max-width: 700px) {
  .product-page .init-1 .containerC .listContC {
    padding-left: 22px;
  }
   .prodet-page .init-2 .cont {
    padding: 10px 20px;
  }
  .product-page .init-1 .containerC .listContC .titleC form .text{
    width: 100%;
  }
}
@media (max-width: 500px) {
  .product-page .init-1 .containerC .listContC {
    padding-left: 16px;
  }
  .product-page .init-1 .containerC .listContC .content ul li {
    width: 100%;
  }
    .prodet-page .init-1 .container .containerC .right ul li {
    width: 50%;
    margin-top: 10px;
  }
}

.contact-page .contact-1 {
  padding-top: 6.771%;
}
.contact-page .contact-1 .contact-box {
  max-width: 1512px;
  -webkit-box-shadow: 0 10px 30px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px 20px rgba(0, 0, 0, 0.1);
  background: #fff;
  padding: 63px 130px 130px;
  margin: 0 auto;
}
.contact-page .contact-1 .contact-box .contact-content {
  margin-top: 78px;
}
.contact-page .contact-1 .contact-box .contact-content p {
  font-size: 16px;
  line-height: 1.8;
}
.contact-page .contact-1 .contact-box .contact-content .left .h2 {
  font-size: 54px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 40px;
}
.contact-page .contact-1 .contact-box .contact-content .left ul {
  margin-top: 36px;
}
.contact-page .contact-1 .contact-box .contact-content .left ul li {
  margin-bottom: 75px;
}
.contact-page .contact-1 .contact-box .contact-content .left ul li .h5 {
  font-size: 16px;
  line-height: 1;
  margin-bottom: 20px;
}
.contact-page .contact-1 .contact-box .contact-content .left ul li .h5 i,
.contact-page .contact-1 .contact-box .contact-content .left ul li .h5 img {
  margin-right: 15px;
  font-size: 20px;
}
.contact-page .contact-1 .contact-box .contact-content .left ul li .h4 {
  font-size: 24px;
  line-height: 1;
}
.contact-page .contact-1 .contact-box .contact-content .left ul li:last-child {
  margin-bottom: 0;
}
.contact-page .contact-1 .contact-box .contact-content .right p.p {
  margin-top: 35px;
  letter-spacing: 1.5;
}
.contact-page .contact-1 .contact-box .contact-content .right form {
  margin-top: 40px;
}
.contact-page .contact-1 .contact-box .contact-content .right form p {
  line-height: 1;
  margin-bottom: 15px;
}
.contact-page .contact-1 .contact-box .contact-content .right form input[type="text"],
.contact-page .contact-1 .contact-box .contact-content .right form textarea {
  width: 100%;
  height: 43px;
  background: #e8e8e8;
  border: none;
  padding: 0 10px;
  font-size: 16px;
  margin-bottom: 22px;
}
.contact-page .contact-1 .contact-box .contact-content .right form textarea {
  height: 92px;
  padding: 10px;
  margin-bottom: 52px;
}
.contact-page .contact-1 .contact-box .contact-content .right form input[type="submit"] {
  padding: 18px 56px 18px 56px;
  border: none;
  background: #000;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
}
.contact-page .contact-2 {
  padding: 90px 0 75px;
}
.contact-page .contact-2 .ewms #ewm {
  width: 120px;
  border: 5px solid white;
}
.contact-page .contact-2 .ewms #ewm img {
  width: 120px;
}
.contact-page .contact-2 .ewms p {
  margin-top: 6px;
}
.contact-page .contact-2 p {
  text-align: center;
  margin-top: 32px;
  color: #242120;
  font-size: 16px;
  line-height: 1;
}
@media screen and (max-width: 1250px) {
  .contact-page .contact-1 .contact-box {
    padding: 63px 70px 100px;
  }
  .contact-page .contact-1 .contact-box .contact-content {
    margin-top: 0;
  }
}
@media screen and (max-width: 1000px) {
  .contact-page .contact-1 .contact-box {
    padding: 40px 30px 70px;
  }
  .contact-page .contact-1 .contact-box .contact-content .left .h2 {
    font-size: 46px;
  }
  .contact-page .contact-1 .contact-box .contact-content .left ul {
    margin-top: 40px;
  }
  .contact-page .contact-1 .contact-box .contact-content .left ul li {
    margin-bottom: 38px;
  }
  .contact-page .contact-1 .contact-box .contact-content .left ul li .h4 {
    font-size: 19px;
  }
}
@media screen and (max-width: 700px) {
  .contact-page .contact-1 .contact-box .contact-content .left {
    width: 100%;
    padding-right: 0;
  }
  .contact-page .contact-1 .contact-box .contact-content .right {
    width: 100%;
    padding-left: 0;
    margin-top: 30px;
  }
  .contact-page .contact-2 {
    padding: 30px 0;
  }
}
@media screen and (max-width: 500px) {
  .contact-page .contact-1 {
    padding-bottom: 30px;
  }
  .contact-page .contact-1 .contact-box {
    padding: 20px 15px 35px;
  }
  .contact-page .contact-2 {
    display: none;
  }
}

.news-page .init-1 .container ul {
  padding-top: 40px;
}
.news-page .init-1 .container ul li {
  margin-top: 40px;
}
.news-page .init-1 .container ul li .box {
  position: relative;
  padding: 20px 0;
  z-index: 2;
}
.news-page .init-1 .container ul li .box .time {
  width: 140px;
  color: #666666;
}
.news-page .init-1 .container ul li .box .time .date {
  color: #000;
}
.news-page .init-1 .container ul li .box .imgC {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  width: 32%;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 30px rgba(56, 84, 184, 0.1);
  box-shadow: 0 0 30px rgba(56, 84, 184, 0.1);
  overflow: hidden;
  text-align: center;
}
.news-page .init-1 .container ul li .box .imgC img {
  width: 100%;
  height: 256px;
  object-fit: cover;
}
.news-page .init-1 .container ul li .box .cont {
  width: -webkit-calc(-72%);
  width: -moz-calc(-72%);
  width: calc(68% - 140px);
  padding: 20px 90px 20px 50px;
  position: relative;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}
.news-page .init-1 .container ul li .box .cont .title:hover {
  color: var(--color);
}
.news-page .init-1 .container ul li .box .cont .des {
  color: #767676;
  margin-top: 16px;
}
.news-page .init-1 .container ul li .box .cont .more {
  margin-top: 30px;
}
.news-page .init-1 .container ul li .box .cont .more .moreCir {
  background-color: #000;
}
.news-page .init-1 .container ul li .box .cont .more:hover .moreCir {
  background-color: var(--color);
}
.news-page .init-1 .container ul li .box .sub {
  opacity: 0;
  position: absolute;
  width: 70%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: #fff;
  -webkit-box-shadow: 0 0 30px rgba(56, 84, 184, 0.2);
  box-shadow: 0 0 30px rgba(56, 84, 184, 0.2);
  border-radius: 20px;
}
.news-page .init-1 .container ul li:hover .sub {
  opacity: 1;
}
.newdet-page .container .left {
  width: 75%;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 30px rgba(56, 84, 184, 0.2);
  box-shadow: 0 0 30px rgba(56, 84, 184, 0.2);
  padding: 70px;
}
.newdet-page .container .left .title {
  text-align: center;
  font-weight: bold;
}
.newdet-page .container .left .time {
  color: #666666;
  margin-top: 26px;
  text-align: center;
}
.newdet-page .container .left .des {
  margin-top: 40px;
  color: #666666;
}
.newdet-page .container .left .m-link {
  margin-top: 50px;
  border-top: 1px solid #666666;
  padding-top: 16px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.newdet-page .container .left .m-link .list {
  margin: 5px 0;
  color: #bfbfbf;
}
.newdet-page .container .left .m-link .list:hover {
  color: var(--color);
}
.newdet-page .container .right {
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
  width: 25%;
  padding-left: 50px;
}
.newdet-page .container .right .tipsTitle {
  border-bottom: 1px solid #767676;
  padding-bottom: 12px;
}
.newdet-page .container .right ul li {
  margin-top: 26px;
}
.newdet-page .container .right ul li .box {
  position: relative;
}
.newdet-page .container .right ul li .box .boxC {
  padding-right: 20px;
}
.newdet-page .container .right ul li .box .title {
  color: #767676;
}
.newdet-page .container .right ul li .box .title:hover {
  color: var(--color);
}
.newdet-page .container .right ul li .box .time {
  color: #767676;
  margin-top: 14px;
}
.newdet-page .container .right ul li .box .time .date {
  color: #000;
}
.newdet-page .container .right ul li .box .more {
  width: 14px;
  height: 12px;
  position: absolute;
  right: 0;
  bottom: 24px;
  opacity: 0;
  -webkit-transform: translateX(-10px);
  -moz-transform: translateX(-10px);
  -ms-transform: translateX(-10px);
  -o-transform: translateX(-10px);
  transform: translateX(-10px);
}
.newdet-page .container .right ul li .box .line {
  width: 50px;
  height: 1px;
  margin-top: 16px;
  background-color: #767676;
}
.newdet-page .container .right ul li:hover .box .boxC {
  -webkit-transform: translateX(20px);
  -moz-transform: translateX(20px);
  -ms-transform: translateX(20px);
  -o-transform: translateX(20px);
  transform: translateX(20px);
}
.newdet-page .container .right ul li:hover .box .more {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.newdet-page .container .right ul li:hover .box .line {
  width: 100%;
  background-color: var(--color);
}
.faq-page .text {
  line-height: 1.85714286;
}
.faq-page .faq-1 .left img{
  width: 100%;
}
.faq-page .faq-2 .list li {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.faq-page .faq-2 .list li .text {
  border-top: 1px solid #e0ebec;
  display: none;
}
.faq-page .faq-2 .list li span.h6 {
  cursor: pointer;
  cursor: hand;
}
.faq-page .faq-2 .list li.active {
  background-color: #ffffff;
}
.faq-page .faq-2 .list li.active span.h6 i {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media (max-width: 1250px){
  .news-page .init-1 .container ul li .box .cont {
    padding-right: 20px;
  }
   .newdet-page .container .left {
    width: 100%;
  }
  .newdet-page .container .right {
    display: none;
  }
}
@media (max-width: 1000px){
  .news-page .init-1 .container ul li .box {
    padding: 20px 12px;
  }
  .news-page .init-1 .container ul li .box .sub {
    width: 100%;
    height: 100%;
  }
  .news-page .init-1 .container ul li .box .time {
    width: 100%;
  }
  .news-page .init-1 .container ul li .box .imgC {
    width: 100%;
    margin-top: 20px;
  }
  .news-page .init-1 .container ul li .box .cont {
    width: 100%;
    padding: 0;
    margin-top: 20px;
  }
   .newdet-page .container .left {
    padding: 40px 16px;
  }
}
@media screen and (max-width: 700px){
   .news-page .init-1 .container ul li{
     margin-top: 20px;
   }
}
@media screen and (max-width:500px){
   .newdet-page .container .left .time {
    margin-top: 10px;
  }
  .newdet-page .container .left .des {
    margin-top: 20px;
  }
  .newdet-page .container .left .m-link {
    margin-top: 30px;
  }
}

.history-page {
  background: #fff;
}
.history-page .cm-step-wrapper {
  position: relative;
}
.history-page .cm-step-wrapper .step-line {
  position: absolute;
  width: 1px;
  height: 100%;
  background: rgba(137, 137, 137, 0.35);
  top: 0;
  left: 50%;
}
.history-page .cm-step-wrapper .step-line .line {
  position: absolute;
  width: 100%;
  height: 0px;
  background: var(--color);
}
.history-page .cm-step-wrapper .step-line .line::before {
  position: absolute;
  content: '';
  width: 12px;
  height: 12px;
  background: var(--color);
  border-radius: 50%;
  bottom: -6px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.history-page .cm-step-wrapper .step-line::before {
  position: absolute;
  content: '';
  width: 6px;
  height: 6px;
  background: #000;
  border-radius: 50%;
  bottom: -6px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.history-page .history-parallax-wrap {
  position: relative;
  padding: 10.26042% 0 13.8542%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.history-page .history-img-wrap {
  position: -webkit-sticky;
  position: sticky;
  top: 190px;
  width: 50%;
  transition: .5s;
}
.history-page .history-img-wrap.fixing{
  /*-webkit-transform: translateY(30%);
  -moz-transform: translateY(30%);
  -ms-transform: translateY(30%);
  transform: translateY(30%);*/
  /*position: absolute;
  top: initial;
  bottom: 80px;*/
}
.history-page .history-img-wrap .inner {
  overflow: hidden;
  padding-right: 10.637%;
  /*padding-top: 85px;*/
}
.history-page .history-img-wrap .txt-list {
  text-align: center;
  margin-bottom: 44px;
}
.history-page .history-img-wrap .txt-list li {
  display: none;
  font-size: 46px;
}
.history-page .history-img-wrap .img-list {
  position: relative;
  height: 440px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-perspective: 1000px;
  -moz-perspective: 1000px;
  perspective: 1000px;
  width: 100%;
}
.history-page .history-img-wrap .img-list li {
  position: absolute;
  width: 100%;
  height: 0;
  padding-top: 64.286%;
  border-radius: 10px;
  overflow: hidden;
}
.history-page .history-img-wrap .img-list li span {
  position: absolute;
  top: 0;
  right: 0;
  width: 0%;
  height: 100%;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.history-page .history-img-wrap .img-list li.on span {
  width: 100%;
  right: 0;
  left: auto;
}
.history-page .history-img-wrap .img-list li.back span {
  width: 100%;
  left: 0;
  right: auto;
}
.history-page .history-img-wrap .img-list li.prev span {
  width: 40%;
  left: 0;
  right: auto;
}
.history-page .history-img-wrap .img-list li.back.next span {
  width: 40%;
  right: 0;
  left: auto;
}
.history-page .history-img-wrap .img-list li.on:first-child + li + li {
  opacity: 0;
}
.history-page .history-img-wrap li.on {
  display: block;
  z-index: 1;
}
.history-page .history-info-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  max-width: -webkit-calc(50%);
  max-width: -moz-calc(50%);
  max-width: calc(50%);
  margin: 0 0 0 auto;
}
.history-page .history-info-wrap ul {
  width: 100%;
  padding-left: 17.199%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.history-page .history-info-wrap ul li {
  position: relative;
  margin-bottom: 69px;
}
.history-page .history-info-wrap ul li .title {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.3;
}
.history-page .history-info-wrap ul li .con {
  font-size: 18px;
  line-height: 1.6;
  color: #505050;
  margin-top: 26px;
}
.history-page .history-info-wrap ul li .con p {
  padding-left: 16px;
  position: relative;
  margin-top: 30px;
}
.history-page .history-info-wrap ul li .con p::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #999999;
}
.history-page .history-info-wrap ul li .con p:first-child {
  margin-top: 0;
}
.history-page .history-info-wrap ul li:last-child {
  margin-bottom: 0;
}
.history-page .history-info-wrap ul li .top {
  display: none;
}
.history-page .history-info-wrap ul li .top .tit {
  font-size: 40px;
  line-height: 1.3;
}
.history-page .history-info-wrap ul li .top .img {
  margin-top: 20px;
}
@media screen and (max-width: 1250px) {
  
  .history-page .history-info-wrap ul {
    padding-left: 10%;
  }
  .history-page .history-info-wrap ul li {
    margin-bottom: 35px;
  }
  .history-page .history-info-wrap ul li .con {
    font-size: 16px;
    margin-top: 13px;
  }
}
@media screen and (max-width: 1000px) {

  .history-page .history-img-wrap .inner {
    padding-right: 30px;
  }
  .history-page .history-img-wrap {
    display: none;
  }
  .history-page .cm-step-wrapper .step-line {
    left: 0;
  }
  .history-page .history-info-wrap {
    width: 100%;
    max-width: 100%;
  }
  .history-page .history-info-wrap ul {
    padding-left: 3%;
  }
  .history-page .history-info-wrap ul li .top {
    display: block;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 700px) {
  .history-page .history-info-wrap ul li .top .tit {
    font-size: 36px;
  }
}
@media screen and (max-width: 500px) {
  .history-page .history-info-wrap ul li .top .tit {
    font-size: 30px;
  }
  .history-page .history-info-wrap ul li .title {
    font-size: 20px;
    line-height: 1.4;
  }
  .history-page .history-info-wrap ul li .con {
    line-height: 1.8;
  }
  .history-page .history-info-wrap ul li .con p {
    margin-top: 15px;
  }
}

.video-page .play-btn {
  background-color: white;
}
.video-page .play-btn i {
  border-left-color: var(--color);
}


.service-page .service-1{
  position: relative;
  padding: 100px 0 90px;
}
.service-page .service-1 .h1{
  position: absolute;
  font-family: 'Montserrat';
  right: 200px;
  top: -27px;
  /*width: 100%;*/
  text-align: center;
  font-size: 220px;
  color: #f7f7f7;
  line-height: 1;
  font-weight: 600;
  z-index: -1;
}
.service-page .service-1 .right{
  padding-left: 30px;
  vertical-align: bottom;
}
.service-page .service-1 .right .txt{
  color: #000;
  line-height: 2;
  margin: 40px 0 60px;
}
.service-page .service-2 {
  padding: 20px 0 90px;
}
.service-page .service-2 ul{
  margin: -20px;
}
.service-page .service-2 ul li{
  padding: 20px;
}
.service-page .service-2 ul li .box{
  box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
  padding: 60px 25px;
  height: 100%;
}
.service-page .service-2 ul li .box .h5{
  position: relative;
  padding-left: 0px;
  margin-bottom: 30px;
}
 
.service-page .service-2 ul li .box .txt{
  color: #000;
  line-height: 1.6;
}
@media screen and (max-width:1400px){ 
  .service-page .service-2 ul {
    margin: -20px;
  } 
  .service-page .service-2 ul li{
    padding: 20px;
  }
  .service-page .service-2 ul li .box .txt{
    min-height: 260px;
    max-height: 260px;
    overflow: auto;
  }
}
@media screen and (max-width:1000px){
  .service-page .service-1 .left{
    width: 100%;
  }
  .service-page .service-1 .right{
    width: 100%;
  }
  .service-page .service-1 .h1{
    left: 0;
  } 
  .service-page .service-2 ul {
    margin: -12px;
  } 
  .service-page .service-2 ul li{
    padding: 12px;
    width: 50% !important;
  } 
} 
@media screen and (max-width:700px){
  .service-page .service-2 ul li{ 
    width: 100% !important;
  }
  .service-page .service-2 ul li .box .txt{
    min-height: unset;
  }
  .service-page .service-1 .h1{
    font-size: 150px;
  }
}
@media screen and (max-width:500px){
   
  .service-page .service-1 .h1{
    font-size: 70px;
  }
}


.about-page .about-history .ui.container {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.about-page .about-history .left {
  width: 50%;
  margin-top: 16.25vw;
  margin-bottom: 19.53125vw;
  position: -webkit-sticky;
  position: sticky;
  z-index: 3;
  top: 200px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.about-page .about-history .left .left-box {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.about-page .about-history .left .left-box .public-title span.span2 {
  color: #000;
}
.about-page .about-history .left .left-box .intro {
  margin-top: 23px;
  color: var(--index-color2);
}
.about-page .about-history .left .left-box .public-btn {
  margin-top: 6.25vw;
}
.about-page .about-history .left .year-right {
  margin-top: 8.28125vw;
  font-size: 9.583333333vw;
  font-weight: bold;
  font-family: Montserrat;
  line-height: 1;
  color: var(--index-color1);
  position: relative;
}
.about-page .about-history .left .year-right svg {
  position: absolute;
  right: -280px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
}
.about-page .about-history .right {
  margin-bottom: 19.53125vw;
  padding-bottom: 13px;
  width: 50%;
}
.about-page .about-history .right .history-list {
  margin-right: 3.9583333333333335vw;
  position: relative;
}
.about-page .about-history .right .history-list li {
   align-items: flex-start;
}
.about-page .about-history .right .history-list li.active .text-right:before,
.about-page .about-history .right .history-list li.active .text-right:after {
  background: -webkit-gradient(linear, left top, right top, from(var(--index-color1)), to(transparent));
  background: -webkit-linear-gradient(left, var(--index-color1), transparent);
  background: -moz-linear-gradient(left, var(--index-color1), transparent);
  background: linear-gradient(to right, var(--index-color1), transparent);
  opacity: 1;
}
.about-page .about-history .right .history-list li.active .text-right .title {
  color: #000000;
}
.about-page .about-history .right .history-list li.active .text-right .intro {
  color: #000000;
}
.about-page .about-history .right .history-list li.active .year-left {
  background: unset;
  -webkit-background-clip: unset;
  color: var(--index-color1) !important;
}
.about-page .about-history .right .history-list li:first-child .year-left {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#f6f6f6));
  background: -webkit-linear-gradient(top, transparent, #f6f6f6);
  background: -moz-linear-gradient(top, transparent, #f6f6f6);
  background: linear-gradient(to bottom, transparent, #f6f6f6);
  -webkit-background-clip: text;
  color: transparent;
}
.about-page .about-history .right .history-list li:last-child .year-left {
  background: -webkit-gradient(linear, left top, left bottom, from(#f6f6f6), to(transparent));
  background: -webkit-linear-gradient(top, #f6f6f6, transparent);
  background: -moz-linear-gradient(top, #f6f6f6, transparent);
  background: linear-gradient(to bottom, #f6f6f6, transparent);
  -webkit-background-clip: text;
  color: transparent;
}
.about-page .about-history .right .history-list li .year-left {
  font-size: 9.583333333vw;
  font-weight: bold;
  font-family: Montserrat;
  line-height: 1;
  color: #f6f6f6;
  /*-webkit-transition: .1s;
  -moz-transition: .1s;
  transition: .1s;*/
  position: sticky;
  width: 232px;
}
.about-page .about-history .right .history-list li .text-right {
  margin-left: 3.125vw;
  /*padding-top: 2.5vw;
  padding-bottom: 2.65625vw;*/
  padding-top: 6.5vw;
  padding-bottom: 6.65625vw;
  padding-right: 4.1145833vw;
  position: relative;
  font-family: Montserrat;
  font-weight: 600;
}
.about-page .about-history .right .history-list li .text-right:before,
.about-page .about-history .right .history-list li .text-right:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  background: rgba(122, 122, 122, 0.15);
}
.about-page .about-history .right .history-list li .text-right:before {
  top: -2px;
  opacity: 0;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
  z-index: 2;
}
.about-page .about-history .right .history-list li .text-right:after {
  bottom: 0;
}
.about-page .about-history .right .history-list li .text-right .title {
  color: rgba(0, 0, 0, 0.28);
  /*-webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;*/
  line-height: 1;
}
.about-page .about-history .right .history-list li .text-right .intro {
  color: rgba(0, 0, 0, 0.28);
  /*-webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;*/
  line-height: 1.5;
  margin-top: 20px;
}
@media screen and (max-width: 1700px){
   .about-page .about-history .left {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .about-page .about-history .right {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 1250px){
   .about-page .about-history .left .year-right svg {
    zoom: .7;
  }
  .about-page .about-history .right .history-list li .text-right {
    padding-right: 0;
  }
  .about-page .about-history .right .history-list {
    margin-right: 0;
  }
}
@media screen and (max-width: 1000px){
   /*.about-page .about-history .left .year-right {
    display: none;
  }*/
  /*.about-page .about-history .right .history-list li .year-left {
    display: none;
  }*/
   .about-page .about-history .left .year-right{
    margin-top:80px;
  }
}
@media screen and (max-width: 700px) {
   /*.about-page .about-history .left {
    position: unset;
    width: 100%;
    margin-bottom: 0;
  }*/
  .about-page .about-history .right {
    /*width: 100%;
    margin-top: 25px!important;*/
  }

  .about-page .about-history {
    position: relative;
  }
  .about-page .about-history .ui.container{
    position: unset;
  }
  .about-page .about-history .left{
    width: 30%;
  }
    .about-page .about-history .left .left-box{
    position: absolute;
    left: 0;
    top: -40px;
  }
  .about-page .about-history .left .left-box .intro{
    margin-top: 10px;
    width: 135px;
  }
  .about-page .about-history .left .year-right svg{
    zoom:.5;
  }
  .about-page .about-history .left .year-right{
    margin-left: auto;
  }

  .about-page .about-history .right{
    width: 70%;
  }
  .about-page .about-history .right .history-list li .year-left{
    width: 50px;
  }
  .about-page .about-history .right .history-list li .text-right{
    margin-left: 0px;
    width: calc(100% - 50px);
  }


  .about-page .about-history .ui.container {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.brand-page{
  background: url(../images/brand_1.png) no-repeat top -175px center #454649;
  
}
.brand-page .brand-1{
  /*background: url(../images/brand_1.png) no-repeat top -175px center;*/
  color: white; 
}
.brand-page .brand-1 .des{
  line-height: 2;
  text-align: center;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}
.brand-page .brand-1 .title{
  position: relative;
  z-index: 2;
}
.brand-page .brand-1 .title::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 35px;
  width: 100%;
  height: 100px;
  background: url(../images/Brand.png) no-repeat center bottom;
  z-index: -1;
}
.brand-page .brand-1 .des2{
  margin-top: 520px;
}
.brand-page .brand-2{
  padding-bottom: 250px;
  position: relative;
  z-index: 2;
  /*background-image: linear-gradient(to bottom,#2a2b2c, transparent);*/
}
.brand-page .brand-2 .des{
  line-height: 2;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: white;
}
.brand-page .brand-2::after{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(/apgm/2026/01/14/787.png) no-repeat right bottom;
  z-index: -1;
}
.gallery-page ul li img{
  width: 100%;
}
@media screen and (min-width:1920px){
  .brand-page{
    background-size: cover;
  }
}