body {
  font-family: Arial;
  font-weight: 400;
  --color: #fe6c05;
}
.body-overflow-box {
  position: relative;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.ui.container {
  padding: 0 15px;
  position: relative;
  max-width: 1564px;
  margin: 0 auto;
  width: 100%;
}
.more {
  display: inline-block;
  font-size: 17px;
  line-height: 1;
  padding: 16px 25px 15px;
  color: #fff;
  background-color: var(--color);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.more:hover{
  background: #000;
}
#header {
  z-index: 20;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
#header .nav {
  display: inline-block;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
#header .nav .ui.menu {
  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;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
#header .nav .ui.menu .logo {
  display: inline-block;
}
#header .nav .ui.menu .logo .i2{
  display: none;
}
#header .nav .ui.menu .menu-box {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 auto;
  padding-right: 52px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
#header .nav .ui.menu .menu-box ul.menu > li {
  font-size: 16px;
  line-height: 30px;
  margin-right: 61px;
  color: #fff;
  z-index: 100;
  float: left;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
}
#header .nav .ui.menu .menu-box ul.menu > li > a {
  display: block;
  position: relative;
  z-index: 1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  line-height: 1;
  padding: 37px 18px 39px 0;
}
#header .nav .ui.menu .menu-box ul.menu > li > a::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 12px;
  height: 6px;
  opacity: 0;
  background: url(../images/h-arrow.png) no-repeat center;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header .nav .ui.menu .menu-box ul.menu > li > a::after {
  content: '';
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header .nav .ui.menu .menu-box ul.menu > li > a.active,
#header .nav .ui.menu .menu-box ul.menu > li > a:hover {

}
#header .nav .ui.menu .menu-box ul.menu > li > a.active::after,
#header .nav .ui.menu .menu-box ul.menu > li > a:hover::after {
  left: -5%;
  width: 110%;
}
#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;
  z-index: 1;
  font-size: 15px;
  font-weight: 400;
  background: #fff;
  top: 100%;
  left: 0;
  width: 220px;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  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-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 #000;
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li {
  display: block;
  float: none;
  padding: 0 15px;
  line-height: 40px;
  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;
  background: 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 a {
  color: #fff;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover ul.sub-menu {
  opacity: 1;
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .menu-box ul.menu > li.active > a::before {
  opacity: 1;
}
#header .nav .ui.menu .menu-box ul.menu > li:last-child {
  margin-right: 0;
}
#header .nav .ui.menu .menu-box ul.menu > li.menu-about {
  position: unset;
}
#header .nav .ui.menu .menu-box ul.menu > li.menu-about .menu-content {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  opacity: 0;
}
#header .nav .ui.menu .menu-box ul.menu > li.menu-about .menu-content .ui.container {
  background: #fff;
  padding: 30px;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.08);
}
#header .nav .ui.menu .menu-box ul.menu > li.menu-about .menu-content .one {
  width: 45%;
  padding: 0 15px;
}
#header .nav .ui.menu .menu-box ul.menu > li.menu-about .menu-content .one .aboutTitle {
  font-size: 32px;
  color: #111;
  line-height: 1.4;
  margin-bottom: 19px;
}
#header .nav .ui.menu .menu-box ul.menu > li.menu-about .menu-content .one .aboutDesc {
  font-size: 16px;
  line-height: 30px;
  color: #333;
  margin-bottom: 32px;
  width: 80%;
}
#header .nav .ui.menu .menu-box ul.menu > li.menu-about .menu-content .one .aboutDesc p {
  margin-bottom: 11px;
}
#header .nav .ui.menu .menu-box ul.menu > li.menu-about .menu-content .one .aboutDesc p:last-child {
  margin-bottom: 0;
}
#header .nav .ui.menu .menu-box ul.menu > li.menu-about .menu-content .one .aboutMore {
  font-size: 14px;
  line-height: 2;
}
#header .nav .ui.menu .menu-box ul.menu > li.menu-about .menu-content .one .aboutMore a {
  color: var(--color);
}
#header .nav .ui.menu .menu-box ul.menu > li.menu-about .menu-content .one .aboutMore:hover {
  color: var(--color);
}
#header .nav .ui.menu .menu-box ul.menu > li.menu-about .menu-content .two {
  width: 25%;
  padding: 0 15px;
}
#header .nav .ui.menu .menu-box ul.menu > li.menu-about .menu-content .two .link {
  margin-top: 16px;
}
#header .nav .ui.menu .menu-box ul.menu > li.menu-about .menu-content .two .link a {
  padding: 0;
  margin: 0;
  font-size: 16px;
  display: inline-block;
  position: relative;
  color: var(--color);
}
#header .nav .ui.menu .menu-box ul.menu > li.menu-about .menu-content .two .link a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: var(--color);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
#header .nav .ui.menu .menu-box ul.menu > li.menu-about .menu-content .two .link a:hover::before {
  width: 100%;
}
#header .nav .ui.menu .menu-box ul.menu > li.menu-about .menu-content .two .link:first-child {
  margin-top: 0;
}
#header .nav .ui.menu .menu-box ul.menu > li.menu-about .menu-content .three {
  width: 30%;
  padding: 0 15px;
}
#header .nav .ui.menu .menu-box ul.menu > li.menu-about .menu-content .three img {
  width: 100%;
}
#header .nav .ui.menu .menu-box ul.menu > li.menu-about .menu-content .three .shipingbiaoti {
  margin-top: 10px;
  font-size: 16px;
  color: var(--color);
}
#header .nav .ui.menu .menu-box ul.menu > li.menu-about:hover .menu-content {
  -webkit-transform: rotate3d(0, 0, 0, -90deg);
  -moz-transform: rotate3d(0, 0, 0, -90deg);
  transform: rotate3d(0, 0, 0, -90deg);
  opacity: 1;
}
#header .nav .ui.menu .menu-box ul.menu > li.menu-product {
  position: unset;
}
#header .nav .ui.menu .menu-box ul.menu > li.menu-product .menu-content {
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.08);
  color: #333;
  padding: 20px 0;
}
#header .nav .ui.menu .menu-box ul.menu > li.menu-product .menu-content .left {
  width: 70%;
  position: relative;
  border-right: 1px solid #ccc;
}
#header .nav .ui.menu .menu-box ul.menu > li.menu-product .menu-content .left .left-nav-product {
  font-size: 14px;
  width: 33.33%;
  padding-right: 20px;
}
#header .nav .ui.menu .menu-box ul.menu > li.menu-product .menu-content .left .left-nav-product .child-title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}
#header .nav .ui.menu .menu-box ul.menu > li.menu-product .menu-content .left .left-nav-product .child-title:hover {
  color: var(--color);
}
#header .nav .ui.menu .menu-box ul.menu > li.menu-product .menu-content .left .left-nav-product .child-img {
  width: auto;
}
#header .nav .ui.menu .menu-box ul.menu > li.menu-product .menu-content .left .left-nav-product ul {
  font-size: 16px;
}
#header .nav .ui.menu .menu-box ul.menu > li.menu-product .menu-content .left .left-nav-product ul li {
  margin-top: 10px;
}
#header .nav .ui.menu .menu-box ul.menu > li.menu-product .menu-content .left .left-nav-product ul li:hover {
  color: var(--color);
}
#header .nav .ui.menu .menu-box ul.menu > li.menu-product .menu-content .right {
  width: 30%;
  padding: 0 23px 20px;
  font-size: 14px;
  top: 0;
  color: #333;
}
#header .nav .ui.menu .menu-box ul.menu > li.menu-product .menu-content .right ul li {
  width: 50%;
  padding: 10px;
}
#header .nav .ui.menu .menu-box ul.menu > li.menu-product:hover .menu-content {
  -webkit-transform: rotate3d(0, 0, 0, -90deg);
  -moz-transform: rotate3d(0, 0, 0, -90deg);
  transform: rotate3d(0, 0, 0, -90deg);
  opacity: 1;
}
#header .nav .ui.menu .yuy {
  margin-left: 23px;
}
#header .nav .ui.menu .yuy span {
  display: block;
  width: 30px;
  height: 30px;
  background: var(--color);
  line-height: 30px;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 14px;
}
#header .nav .ui.menu .h-search {
  padding: 0 33px 0 24px;
  cursor: pointer;
}
#header.active {
  background: #fff;
  -webkit-box-shadow: 0 8px 10px rgba(0, 0, 0, 0.25);
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.25);
}
#header.active .nav .ui.menu {
  border-right-color: rgba(0, 0, 0, 0.2);
}
#header.active .nav .ui.menu .logo .i1{
  display: none;
}
#header.active .nav .ui.menu .logo .i2 {
  display: block;
}
#header.active .nav .ui.menu .menu-box {
  border-right-color: rgba(0, 0, 0, 0.2);
}
#header.active .nav .ui.menu .menu-box ul.menu > li {
  color: #000;
}
#header.active .nav .ui.menu .menu-box ul.menu > li > a::before {
  -webkit-filter: invert(1);
  filter: invert(1);
}
#header.active .nav .ui.menu .h-search img {
  -webkit-filter: invert(1);
  filter: invert(1);
}
.font-24 {
  line-height: 1.8;
}
.font-18 {
  line-height: 1.6;
}
.font-16 {
  line-height: 1.8;
}
#banner {
  position: relative;
}
#banner .swiper {
  z-index: 2;
  width: 100%;
  overflow: hidden;
  position: relative;
}
#banner .swiper .swiper-wrapper {
  height: 100%;
}
#banner .swiper .swiper-wrapper .swiper-slide {
  background-size: 100% auto;
  position: relative;
  width: 100%;
  height: 56vw;
  max-height: 977px;
  background-size: cover;
  z-index: 2;
}
#banner .swiper .swiper-wrapper .swiper-slide .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
}
#banner .swiper .swiper-wrapper .swiper-slide .box {
  color: #fff;
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 750px;
}
#banner .swiper .swiper-wrapper .swiper-slide .box .text_cont {
  width: 100%;
  position: relative;
  z-index: 1;
}
#banner .page .box .text_cont .numC {
  font-size: 18px;
  line-height: 1;
  color: #fff;
}
#banner .page .box .text_cont .numC .sub {
  margin: 0 5px;
}
#banner .page .box .text_cont .numC .activeNum {
  font-size: 58px;
  font-weight: bold;
  margin-top: 10px;
}
#banner .swiper .swiper-wrapper .swiper-slide .box .text_cont .title {
  margin-top: 40px;
  font-size: 58px;
  font-weight: bold;
}
#banner .swiper .swiper-wrapper .swiper-slide .box .text_cont .link {
  display: block;
  width: 62px;
  height: 62px;
  border: solid 1px #ffffff;
  border-radius: 50%;
  line-height: 62px;
  margin-top: 74px;
}
#banner .swiper .swiper-wrapper .swiper-slide .box .text_cont .link img {
  display: inline-block;
  vertical-align: middle;
}
#banner .swiper .swiper-wrapper .swiper-slide .box .text_cont .link:hover {
  background: var(--color);
  border-color: var(--color);
}
#banner .swiper .swiper-wrapper .swiper-slide-active .box .text_cont .title {
  -webkit-animation: fadeInLeftSmall 1s linear;
  -moz-animation: fadeInLeftSmall 1s linear;
  animation: fadeInLeftSmall 1s linear;
}
#banner .swiper .swiper-wrapper .swiper-slide-active .box .text_cont .link {
  -webkit-animation: fadeInUp 1s linear;
  -moz-animation: fadeInUp 1s linear;
  animation: fadeInUp 1s linear;
}
#banner .banner1 .text .ui.container{
  max-width: 560px;
  color: rgba(255, 255, 255, 0.8);
}
#banner .banner1 .text .tit{
  font-size: 52px;
  line-height: 1.3;
  font-weight: bold;
}
#banner .banner1 .text .con{
  font-size: 21px;
  line-height: 1.5;
  margin-top: 46px;
}
#banner .banner1 .text .img{
  margin-top: 40px;
}
#banner .banner2 .text{
  width: 100%;
  top: 60%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#banner .banner2 .text .tit{
  font-size: 39px;
  font-weight: bold;
  background: linear-gradient(155deg, #ffc45e 10%, #fe6c05 100%);
  background-clip: text;
  color: transparent;
}
#banner .banner2 .text .desc{
  max-width: 702px;
}
#banner .banner2 .text .desc .img{
  margin-top: 47px;
}
#banner .banner2 .icon{
  right: 46px;
  bottom: 39px;
}
#banner .banner3 .text{
  width: 100%;
  top: 60%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#banner .banner3 dd{
  color: #fff;
  font-size: 32px;
  line-height: 1.3;
  font-weight: bold;
  margin-bottom: 30px;
}
#banner .banner3 dd:last-child{
  margin-bottom: 0;
}
#banner .banner3 .img{
  margin-top: 101px;
}
#banner .banner4 .text{
  width: 100%;
}
#banner .banner4 .ig{
  max-width: 722px;
  margin: 0 0 0 auto;
}
#banner .banner4 .ig .tit{
  font-size: 39px;
  font-weight: bold;
  background: linear-gradient(155deg, #ffc45e 10%, #fe6c05 100%);
  background-clip: text;
  color: transparent;
  padding-left: 27px;
}
#banner .banner4 .ig .img{
  margin-top: 56px;
}
#banner .banner4 .icon{
  right: 0;
  bottom: 0;
}
#banner .page{
  bottom: 6%;
  left: 0;
  width: 100%;
  z-index: 2;
}
#banner .sPage {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 2;
}
#banner .sPage .cont {
  position: absolute;
  right: 0;
  bottom: 0;
}
#banner .sPage .cont .swiper-pagination-bullets {
  width: 70px;
  position: absolute;
  bottom: 181px;
  right: -11px;
  left: unset;
}
#banner .sPage .cont .swiper-pagination-bullets .swiper-pagination-bullet {
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
  color: #fff;
  background: 0 0;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 46px;
}
#banner .sPage .cont .swiper-pagination-bullets .swiper-pagination-bullet .num {
  font-size: 16px;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
}
#banner .sPage .cont .swiper-pagination-bullets .swiper-pagination-bullet .cir {
  border-radius: 50%;
  width: 14px;
  height: 14px;
  background-color: #fff;
  margin-left: 10px;
}
#banner .sPage .cont .swiper-pagination-bullets .swiper-pagination-bullet-active .num {
  position: relative;
  -webkit-transform: scale(1.6) translateX(-6px);
  -moz-transform: scale(1.6) translateX(-6px);
  -ms-transform: scale(1.6) translateX(-6px);
  transform: scale(1.6) translateX(-6px);
}
.i-tag {
  font-size: 16px;
  line-height: 30px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}
.i-title {
  font-size: 36px;
  line-height: 1.4;
}
.tr_5 {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
@-webkit-keyframes sh {
  0% {
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@-moz-keyframes sh {
  0% {
    -moz-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }
  to {
    -moz-transform: none;
    transform: none;
  }
}
@keyframes sh {
  0% {
    -webkit-transform: translate3d(0, 10%, 0);
    -moz-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }
  to {
    -webkit-transform: none;
    -moz-transform: none;
    transform: none;
  }
}
#index-body .i-category {
  padding: 110px 0;
  position: relative;
}
#index-body .i-category .slick-arrow {
  display: none!important;
}
#index-body .i-category .Tit {
  font-size: 46px;
  line-height: 1.2;
}
#index-body .i-category .desc {
  color: #878787;
  font-size: 16px;
  line-height: 30px;
  max-width: 590px;
}
#index-body .i-category .btns a {
  padding: 10px 20px;
  display: inline-block;
  letter-spacing: .2em;
  background: var(--color);
  color: #fff;
  border: 2px solid var(--color);
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
#index-body .i-category .btns a + a {
  margin-left: 30px;
}
#index-body .i-category .btns a:hover {
  background: transparent;
  color: var(--color);
}
#index-body .i-category .left {
  padding-right: 7.49%;
}
#index-body .i-category .left .img img {
  width: 100%;
}
#index-body .i-category .left .img .tit {
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
  padding: 17px 80px 16px 29px;
}
#index-body .i-category .right ul {
  margin: -20px -30px;
}
#index-body .i-category .right ul li {
  padding: 20px 30px;
}
#index-body .i-category .right .bag {
  padding: 20px;
  text-align: center;
  background-color: #f5f5f5;
}
#index-body .i-category .right .bag .imgs .img.active {
  display: block;
}
#index-body .i-category .right .bag .colors {
  font-size: 0;
}
#index-body .i-category .right .bag .colors span {
  margin: 0 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
  background-size: 64px;
  background-position: 50%;
}
#index-body .i-category .right .bag .name {
  font-size: 16px;
  line-height: 30px;
}
#index-body .i-category .page {
  position: absolute;
  bottom: 12%;
  left: 40%;
  color: #fff;
  font-size: 15px;
  opacity: .9;
  font-style: italic;
}
#index-body .i-category .page span {
  display: inline-block;
  margin: 0 2px;
}
#index-body .i-category .page span.s2 {
  opacity: 1;
  font-size: 18px;
  font-weight: bold;
}
#index-body .our-product {
  background: url(../images/pbg.png) no-repeat center;
  padding: 50px 0 90px;
  background-size: 100% 100%;
}
#index-body .our-product .tab li {
  width: auto;
  padding: 0 70px;
}
#index-body .our-product .tab li span {
  cursor: pointer;
  line-height: 1.8;
}
#index-body .our-product .tab li.active span {
  color: var(--color);
}
#index-body .our-product .tab li + li {
  border-left: 2px solid #000000;
}
#index-body .our-product .desc {
  font-size: 16px;
  line-height: 30px;
  color: #878787;
  max-width: 754px;
  margin: 0 auto;
}
#index-body .our-product .list {
  margin-top: 40px;
  position: relative;
}
#index-body .our-product .list .item {
  padding: 0 5%;
  position: relative;
}
#index-body .our-product .list .item:not(.active) {
  width: 100%;
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
#index-body .our-product .list .item.active {
  opacity: 1;
  position: static;
  visibility: visible;
  -webkit-transition: 1.5s ease;
  -moz-transition: 1.5s ease;
  transition: 1.5s ease;
  -webkit-animation-duration: 1.5s;
  -moz-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-name: sh;
  -moz-animation-name: sh;
  animation-name: sh;
}
#index-body .our-product .list .arrow {
  top: 40%;
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 34px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #000000;
  cursor: pointer;
}
#index-body .our-product .list .arrow svg {
  vertical-align: middle;
}
#index-body .our-product .list .arrow.arrow_l {
  left: 0;
}
#index-body .our-product .list .arrow.arrow_r {
  right: 0;
}
#index-body .our-product .list ul {
  margin: -15px;
}
#index-body .our-product .list ul li {
  padding: 15px;
  text-align: center;
}
#index-body .our-product .list ul li .img {
  position: relative;
}
#index-body .our-product .list ul li .img img {
  -webkit-transition: opacity .5s ease;
  -moz-transition: opacity .5s ease;
  transition: opacity .5s ease;
}
#index-body .our-product .list ul li .img img:last-of-type {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
#index-body .our-product .list ul li .img:hover img:first-of-type {
  opacity: 0;
}
#index-body .our-product .list ul li .img:hover img:last-of-type {
  opacity: 1;
}
#index-body .our-product .list ul li .name {
  font-size: 16px;
  line-height: 30px;
}
#index-body .application .left {
  width: 70%;
}
#index-body .application .left ul {
  width: 100%;
}
#index-body .application .left ul li .slide-box {
  height: 856px;
  padding-top: 12.23958333333333vw;
  padding-left: 10.52083333333333vw;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
#index-body .application .left ul li .slide-box .title {
  font-size: 52px;
  color: #fff;
  font-weight: bold;
  line-height: 1.4;
  max-width: 587px;
}
#index-body .application .left ul li .slide-box .intro {
  max-width: 652px;
  color: #ffffff;
  line-height: 30px;
  margin-top: 42px;
  margin-bottom: 55px;
}
#index-body .application .left ul li .slide-box::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
#index-body .application .right {
  width: 30%;
  position: relative;
  z-index: 1;
}
#index-body .application .right ul {
  margin-left: -2.708333vw;
  margin-top: 2.916667vw;
  margin-bottom: -34px;
  width: 74.25%;
}
#index-body .application .right ul .slide-box img {
  -webkit-transform-origin: right top;
  -moz-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
  -webkit-transform: scale(0.64319249);
  -moz-transform: scale(0.64319249);
  -ms-transform: scale(0.64319249);
  transform: scale(0.64319249);
  border: solid 5px #fff;
}
#index-body .application .right ul .slick-current .slide-box img {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
#index-body .application .right ul .slick-current + div .slide-box {
  -webkit-transform: translateY(1vw);
  -moz-transform: translateY(1vw);
  -ms-transform: translateY(1vw);
  transform: translateY(1vw);
}
#index-body .application .right ul .slick-current + div + div .slide-box {
  -webkit-transform: translateY(-3.177083vw);
  -moz-transform: translateY(-3.177083vw);
  -ms-transform: translateY(-3.177083vw);
  transform: translateY(-3.177083vw);
}
#index-body .application .right .big-title {
  position: absolute;
  right: 7px;
  bottom: 0;
  z-index: -1;
  font-size: 117px;
  line-height: 1;
  font-weight: bold;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.7);
  letter-spacing: 3px;
}
#index-body .application .right .application-arrow-box {
  width: 140px;
  height: 70px;
  position: absolute;
  bottom: 0;
  left: -70px;
}
#index-body .application .right .application-arrow-box .prev,
#index-body .application .right .application-arrow-box .next {
  width: 50%;
  height: 100%;
  font-size: 35px;
  background-color: #fff;
  color: var(--color);
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
  cursor: pointer;
}
#index-body .application .right .application-arrow-box .prev span,
#index-body .application .right .application-arrow-box .next span {
  -webkit-transform: scaleX(0.6);
  -moz-transform: scaleX(0.6);
  -ms-transform: scaleX(0.6);
  transform: scaleX(0.6);
}
#index-body .application .right .application-arrow-box .prev:hover,
#index-body .application .right .application-arrow-box .next:hover {
  background-color: var(--color);
  color: #fff;
}
#index-body .about {
  padding: 106px 0 110px;
}
#index-body .about .top .left {
  max-width: 426px;
  text-align: right;
}
#index-body .about .top .left .title {
  font-weight: bold;
  font-size: 46px;
  line-height: 1.4;
}
#index-body .about .top .left .title::after {
  content: '';
  width: 103px;
  height: 6px;
  background-color: #000000;
  display: block;
  margin: 8px 0 0 auto;
}
#index-body .about .top .left .link {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 3px;
  margin-top: 39px;
}
#index-body .about .top .left .link i {
  margin: 0 10px 2px 0;
  font-size: 16px;
}
#index-body .about .top .right {
  font-size: 16px;
  line-height: 30px;
  max-width: 900px;
}
#index-body .about .top .right h1 {
  display: inline;
}
#index-body .about .top .right div {
  margin-top: 25px;
}
#index-body .about .top .right div:first-child {
  margin-top: 0;
}
#index-body .about .img {
  margin-top: 66px;
}
#index-body .about .img .play-btn {
  background: transparent;
  top: 48%;
}
#index-body .about .img .play-btn::before,
#index-body .about .img .play-btn::after {
  background: #000;
}
#index-body .advantage {
  background: url(../images/adbg.jpg) no-repeat center;
  background-size: 100% 100%;
  background-attachment: fixed;
  color: #fff;
  padding: 95px 0 109px;
}
#index-body .advantage .content {
  margin-top: 50px;
}
#index-body .advantage .content .swiper{
  overflow: hidden;
}
#index-body .advantage .content .swiper-slide {
  padding: 0 16px;
  border-left: 2px solid rgba(255, 255, 255, 0.2);
}
#index-body .advantage .content .swiper-slide .box {
  position: relative;
  z-index: 2;
  padding: 30px;
}
#index-body .advantage .content .swiper-slide .box .shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: -1;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  opacity: 0;
}
#index-body .advantage .content .swiper-slide .box .cir {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #fff;
  font-size: 20px;
  margin-left: auto;
}
#index-body .advantage .content .swiper-slide .box .img {
  height: 80px;
  margin-top: 70px;
  position: relative;
}
#index-body .advantage .content .swiper-slide .box .img img {
  height: 100%;
}
#index-body .advantage .content .swiper-slide .box .cont2 {
  -webkit-transform: translateY(87px);
  -moz-transform: translateY(87px);
  -ms-transform: translateY(87px);
  transform: translateY(87px);
}
#index-body .advantage .content .swiper-slide .box .cont2 .title {
  margin-top: 20px;
}
#index-body .advantage .content .swiper-slide .box .cont2 .des {
  margin-top: 20px;
  overflow: hidden;
  opacity: 0;
}
#index-body .advantage .content .swiper-slide .box:hover .cir {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
#index-body .advantage .content .swiper-slide .box:hover .shadow {
  opacity: 1;
}
#index-body .advantage .content .swiper-slide .box:hover .cont2 {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
#index-body .advantage .content .swiper-slide .box:hover .cont2 .des {
  opacity: 1;
}
#index-body .advantage .content .swiper-slide-active {
  border-left: 2px solid rgba(255, 255, 255, 0);
}
#index-body .news {
  padding: 101px 0;
}
#index-body .news .content {
  margin-top: 32px;
}
#index-body .news .content ul {
  margin-right: -40px;
}
#index-body .news .content ul li {
  padding-right: 40px;
}
#index-body .news .content ul li .img-box {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .news .content ul li .img-box a {
  display: block;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0) scale(1.2);
  -moz-transform: translate3d(0, 0, 0) scale(1.2);
  transform: translate3d(0, 0, 0) scale(1.2);
}
#index-body .news .content ul li .img-box a img {
  -webkit-transform: translate3d(-6.66%, 0, 0) scale(1);
  -moz-transform: translate3d(-6.66%, 0, 0) scale(1);
  transform: translate3d(-6.66%, 0, 0) scale(1);
  width: -webkit-calc(110%);
  width: -moz-calc(110%);
  width: calc(110%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .news .content ul li .img-box span {
  position: absolute;
  top: 20px;
  left: 0;
  background-color: rgba(242, 97, 0, 0.8);
  padding: 15px 6px 15px 7px;
  font-size: 14px;
  letter-spacing: 3px;
  line-height: 2;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  color: #fff;
}
#index-body .news .content ul li .text {
  margin-top: 15px;
}
#index-body .news .content ul li .text .tit {
  font-size: 20px;
  line-height: 1.8;
}
#index-body .news .content ul li .text p {
  font-size: 16px;
  line-height: 30px;
  color: #5d5d5d;
  overflow: hidden;
}
#index-body .news .content ul li .text .mores {
  font-size: 15px;
  line-height: 2;
  letter-spacing: 1px;
  text-decoration: underline;
}
#index-body .news .content ul li:hover .img-box {
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  -moz-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
}
#index-body .news .content ul li:hover .img-box a img {
  -webkit-transform: translate3d(-8.6%, 0, 0);
  -moz-transform: translate3d(-8.6%, 0, 0);
  transform: translate3d(-8.6%, 0, 0);
}
#footer {
  position: relative;
  background: url(../images/fbg.jpg) no-repeat center bottom;
  color: #fff;
  padding: 68px 0 32px;
  background-size: 100% 100%;
}
#footer .f-header {
  max-width: 904px;
  margin: 0 auto;
}
#footer .f-header .title {
  font-size: 24px;
  line-height: 1.8;
  max-width: 417px;
  margin: 0 auto;
}
#footer .f-header .form {
  margin-top: 14px;
}
#footer .f-header .form form {
  margin: -6px;
}
#footer .f-header .form input {
  margin: 6px;
  width: 22.271%;
  height: 49px;
  background: rgba(255, 255, 255, 0.2);
  border: 0;
  padding: 0 12px;
  color: #fff;
}
#footer .f-header .form input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.48);
}
#footer .f-header .form input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.48);
}
#footer .f-header .form input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.48);
}
#footer .f-header .form input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.48);
}
#footer .f-header .form input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}
#footer .f-header .form input.content {
  width: 45.197%;
}
#footer .f-header .form button {
  width: 6.11%;
  height: 49px;
  background-color: #ffffff;
  text-align: center;
  line-height: 46px;
  margin: 6px 0 6px 2px;
}
#footer .f-header .form button img {
  display: inline-block;
  vertical-align: middle;
}
#footer .f-header .form button:hover {
  background: var(--color);
}
#footer .f-header .form button:hover img {
  -webkit-filter: invert(1);
  filter: invert(1);
}
#footer .f-content {
  margin: 58px 0 127px;
}
#footer .f-content .tit {
  font-size: 24px;
  line-height: 1.8;
  font-weight: bold;
}
#footer .f-content ul li {
  font-size: 15px;
  line-height: 2;
}
#footer .f-content ul li a {
  padding-left: 13px;
  position: relative;
}
#footer .f-content ul li a::before {
  content: "\f105";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: 'fontAwesome';
}
#footer .f-content ul li a:hover {
  color: var(--color);
}
#footer .f-content ul li ul {
  display: none;
}
#footer .f-content .f-contact {
  width: 28.227%;
}
#footer .f-content .f-contact .item p {
  font-size: 16px;
  line-height: 30px;
  margin-top: 3px;
}
#footer .f-content .f-contact .item:last-child {
  margin-top: 57px;
}
#footer .f-content .f-code {
  text-align: center;
}
#footer .f-content .f-code #ewm {
  width: 113px;
  border: 9px solid #fff;
  margin-top: 19px;
}
#footer .f-content .f-code .share {
  margin-top: 17px;
}
#footer .f-content .f-code .share a {
  display: inline-block;
  font-size: 18px;
  margin-right: 9px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#footer .f-content .f-code .share a:last-child {
  margin-right: 0;
}
#footer .f-content .f-code .share a:hover {
  color: var(--color);
}
#footer .f-copy {
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  letter-spacing: 1px;
}
#footer .f-copy svg {
  display: inline-block;
  vertical-align: middle;
  width: auto;
  max-height: 27px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  margin-top: -3px;
  fill: #fff;
  text-transform: capitalize;
}
#footer .f-copy svg text {
  fill: #fff;
}
@media screen and (max-width: 1680px) {
  .ui.container {
    max-width: 1420px;
  }
  #index-body .i-category .left {
    padding-right: 5%;
  }
  #index-body .i-category .Tit {
    font-size: 36px;
  }
  #index-body .i-category .right ul {
    margin: -15px -20px;
  }
  #index-body .i-category .right ul li {
    padding: 15px 20px;
  }
  .fixed-toolbar {
    bottom: 12%;
  }
}
@media screen and (max-width: 1440px) {
  .ui.container {
    max-width: 1260px;
  }
  #banner .sPage {
    padding-right: 20px;
  }
  #index-body .i-category .right ul {
    margin: -15px;
  }
  #index-body .i-category .right ul li {
    padding: 15px;
  }
  #index-body .application .left ul li .slide-box {
    padding-left: 15px;
    height: 720px;
  }
  #index-body .application .right {
    padding-right: 15px;
  }
  #index-body .about .top .right {
    max-width: 760px;
  }
}
@media screen and (max-width: 1280px) {
  .ui.container {
    max-width: 1130px;
  }
  #header .nav .ui.menu .menu-box {
    padding-right: 20px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    font-size: 14px;
    margin-right: 26px;
  }
  #banner {
    margin-top: 0 !important;
  }
  #banner .swiper .swiper-wrapper .swiper-slide .box .text_cont .numC .activeNum {
    font-size: 46px;
  }
  #banner .swiper .swiper-wrapper .swiper-slide .box .text_cont .title {
    margin-top: 20px;
    font-size: 46px;
  }
  #banner .swiper .swiper-wrapper .swiper-slide .box .text_cont .link {
    margin-top: 37px;
  }
  #index-body .i-category .desc {
    font-size: 16px;
  }
  #index-body .i-category .page {
    bottom: 16%;
    left: 38%;
  }
  #index-body .application .left ul li .slide-box {
    height: 650px;
  }
  #index-body .application .left ul li .slide-box .title {
    font-size: 45px;
  }
  #index-body .application .right .big-title {
    font-size: 100px;
  }
  #index-body .about .top .right {
    max-width: 506px;
  }
}
@media screen and (max-width: 1000px) {
  #banner {
    padding-top: 60px;
  }
  .seoIndustry.Auxil-industry{
  display: none!important;
  }
  #banner .sPage {
    display: none;
  }
  #banner .swiper .swiper-wrapper .swiper-slide .cont {
    padding-left: 0;
  }
  #banner .swiper .swiper-wrapper .swiper-slide .box .text_cont .numC {
    display: none;
  }
  #banner .swiper .swiper-wrapper .swiper-slide .box .text_cont .title {
    margin-top: 0;
    font-size: 30px;
  }
  #index-body .i-category {
    padding: 60px 0;
  }
  #index-body .i-category .Tit {
    font-size: 24px;
  }
  #index-body .i-category .left {
    width: 100%;
    padding-right: 0;
    float: none;
  }
  #index-body .i-category .left .img {
    display: none;
  }
  #index-body .i-category .right {
    width: 100%;
    float: none;
  }
  #index-body .our-product {
    padding: 60px 0;
  }
  #index-body .our-product .tab li {
    padding: 0 35px;
  }
  #index-body .our-product .list .item {
    padding: 0;
  }
  #index-body .our-product .list .arrows {
    text-align: center;
    margin-top: 40px;
  }
  #index-body .our-product .list .arrow {
    position: static;
    margin: 0 10px;
  }
  #index-body .application .left {
    width: 100%;
  }
  #index-body .application .left ul li .slide-box {
    height: unset;
    padding-top: 25px;
    padding-bottom: 25px;
  }
  #index-body .application .left ul li .slide-box .title {
    font-size: 35px;
  }
  #index-body .application .right {
    width: 100%;
  }
  #index-body .application .right ul {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 15px;
    width: 100%;
  }
  #index-body .application .right ul .slick-current .slide-box img {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  #index-body .application .right ul .slick-current + div .slide-box {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  #index-body .application .right ul .slick-current + div + div .slide-box {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  #index-body .application .right .application-arrow-box {
    position: initial;
    left: 15px;
    padding: 15px 15px 0;
  }
  #index-body .application .right .big-title {
    position: unset;
    -webkit-writing-mode: unset;
    -ms-writing-mode: unset;
    writing-mode: unset;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }
  #index-body .about {
    padding: 60px 0;
  }
  #index-body .about .top .left {
    text-align: center;
    max-width: 100%;
  }
  #index-body .about .top .left .title {
    font-size: 40px;
  }
  #index-body .about .top .left .title::after {
    margin: 8px auto 0;
  }
  #index-body .about .top .right {
    max-width: 100%;
    margin-top: 20px;
  }
  #index-body .advantage {
    padding: 60px 0;
  }
  #index-body .news {
    padding: 60px 0;
  }
  #footer .f-header .form input {
    width: 48%;
  }
  #footer .f-header .form input.content {
    width: 100%;
  }
  #footer .f-header .form button {
    width: 8%;
  }
  #footer .f-content {
    margin: 56px 0 60px;
  }
  #footer .f-content .f-contact {
    width: 60%;
  }
  #footer .f-content .f-nav,
  #footer .f-content .f-product,
  #footer .f-content .f-about {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  #index-body .i-category {
    padding: 30px 0;
  }
  #index-body .i-category .desc {
    font-size: 14px;
  }
  #index-body .i-category .btns a {
    letter-spacing: .1em;
  }
  #index-body .i-category .right .bag .name {
    font-size: 14px;
  }
  #index-body .our-product .tab li span {
    font-size: 16px;
  }
  #index-body .our-product .desc {
    font-size: 14px;
  }
  #index-body .our-product .list li .name {
    font-size: 14px;
  }
  #index-body .application .right .big-title {
    font-size: 80px;
  }
  #index-body .about {
    padding: 30px 0;
  }
  #index-body .about .top .left .title {
    font-size: 36px;
  }
  #index-body .about .img {
    margin-top: 30px;
  }
  #index-body .advantage {
    padding: 30px 0;
  }
  #index-body .advantage .content .swiper-slide .box {
    padding: 20px;
  }
  #index-body .news {
    padding: 30px 0;
  }
  #index-body .news .content {
    margin-right: -20px;
  }
  #index-body .news .content li {
    padding-right: 20px;
  }
  #footer {
    padding: 30px 0;
  }
  #footer .f-header .form input {
    width: 47.5%;
  }
  #footer .f-header .form button {
    width: 12%;
  }
  #footer .f-content {
    margin: 30px 0;
  }
  #footer .f-content .f-contact .item:last-child {
    margin-top: 6px;
  }
  #footer .f-copy {
    font-size: 15px;
  }
  .fixed-toolbar {
    zoom: .8;
  }
}
@media screen and (max-width: 500px) {
  #banner .swiper .swiper-wrapper .swiper-slide {
    height: 260px;
  }
  #banner .swiper .swiper-wrapper .swiper-slide .box .text_cont .title {
    font-size: 24px;
  }
  #banner .swiper .swiper-wrapper .swiper-slide .box .text_cont .more {
    width: 40px;
    height: 40px;
    margin-top: 16px;
  }
  #index-body .i-category .right,
  #index-body .i-category .page {
    display: none;
  }
  #index-body .our-product {
    padding: 30px 0;
  }
  #index-body .our-product .tab li {
    padding: 0 20px;
  }
  #index-body .our-product .list {
    margin-top: 20px;
  }
  #index-body .advantage .content {
    margin-top: 20px;
    padding: 0;
  }
  #index-body .advantage .content .swiper-slide {
    padding: 0 5px;
  }
  #index-body .advantage .content .swiper-slide .box {
    padding: 20px 10px;
  }
  #index-body .advantage .content .swiper-slide .box .shadow {
    opacity: 1;
  }
  #index-body .advantage .content .swiper-slide .box .cont2 {
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
  }
  #index-body .advantage .content .swiper-slide .box .cont2 .des {
    opacity: 1;
  }
  #index-body .advantage .content .swiper-slide .box .img {
    height: 50px;
    margin-top: 30px;
  }
  #index-body .application {
    display: none;
  }
  #index-body .about .top .left .title {
    font-size: 26px;
    line-height: 1.4;
  }
  #index-body .about .top .right {
    font-size: 14px;
    line-height: 2;
  }
  .i-tag {
    font-size: 14px;
    line-height: 2;
  }
  .i-title {
    font-size: 26px;
  }
  #footer .f-header .form input {
    width: 100%;
  }
  #footer .f-header .form button {
    width: 16%;
  }
  .pr-95 {
    padding-right: 20px;
  }
  #footer .f-content .tit {
    font-size: 20px;
  }
  #footer .f-content .f-contact {
    width: 100%;
  }
  #footer .f-content .f-contact .item p {
    font-size: 14px;
    line-height: 2;
  }
  #footer .f-content .f-code {
    display: none;
  }
  #footer .f-copy {
    font-size: 14px;
    line-height: 2;
  }
  #footer .f-copy svg {
    max-height: 24px;
  }
}
#pups_shadow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.6;
  z-index: 21;
  display: none;
}
#pups_from {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-height: 80%;
  width: 500px;
  max-width: 90%;
  -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 22;
  background: white;
  padding: 30px;
  overflow: auto;
}
#pups_from h4 {
  font-size: 18px;
  color: #222;
  text-transform: capitalize;
  line-height: 1;
  font-weight: 600;
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  padding: 15px 20px;
  background: #f5f5f5;
  -o-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
#pups_from form {
  margin-top: 40px;
}
#pups_from i.close {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 10px;
  right: 10px;
  background: #eee;
  cursor: pointer;
  cursor: hand;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#pups_from i.close::after,
#pups_from i.close::before {
  content: '';
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  width: 70%;
  height: 2px;
  margin-top: -1px;
  background: black;
  position: absolute;
  top: 50%;
  left: 15%;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#pups_from i.close::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#pups_from i.close:hover {
  background: var(--color);
}
#pups_from i.close:hover::before,
#pups_from i.close:hover::after {
  background: white;
}
#pups_from ul li {
  margin-bottom: 10px;
  position: relative;
}
#pups_from ul li label {
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
}
#pups_from ul li label em {
  color: red;
  margin-right: 2px;
}
#pups_from ul li input,
#pups_from ul li textarea {
  width: 100%;
  line-height: 24px;
  padding: 6px 15px;
  border: 1px solid #eee;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  font-size: 16px;
}
#pups_from ul li input:focus,
#pups_from ul li textarea:focus {
  border-color: var(--color);
}
#pups_from ul li textarea {
  height: 80px;
}
#pups_from ul li input[type="submit"] {
  width: auto;
  padding: 6px 40px;
  display: inline-block;
  background: var(--color);
  color: white;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#pups_from ul li input[type="submit"]:hover {
  opacity: 0.7;
}
#pups_from ul li:last-child {
  margin-bottom: 0;
}
.list-page {
  height: 100vh;
}
.list-page .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0 10%;
  justify-items: end;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
.list-page .image {
  position: relative;
  width: 300px;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
}
.inner-page .m-link {
  font-size: 16px;
  line-height: 30px;
}
.inner-page .m-link a {
  display: block;
}
.inner-page .m-link a:hover {
  text-decoration: underline;
}

.inner-banner {
    height: 650px;
    background-position: center;
    background-size: cover;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -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;
    text-align: center;
    color: #fff;
    padding-top: 3.5%;
}
.inner-banner .box .ig {
  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;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 79px 0 45px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.85);
}
.inner-banner .box .ig .left {
  position: relative;
  z-index: 1;
  width: 64%;
}
.inner-banner .box .ig .left .mbx {
  font-size: 18px;
  position: relative;
}
.inner-banner .box .ig .left .tit {
  font-size: 36px;
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 5px;
  position: relative;
}
.inner-banner .box .ig .left::after {
  content: '';
  width: 299px;
  height: 299px;
  position: absolute;
  bottom: -90px;
  left: -126px;
  z-index: -1;
  background: url(../images/in-icon.png) no-repeat;
}
.inner-banner .box .ig .right {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.65);
  width: 36%;
  margin-bottom: 10px;
}
@media screen and (max-width: 1680px) {
  .inner-banner .box .ig .left::after {
    left: -80px;
  }
  .inner-banner .box .ig .left .tit {
    font-size: 70px;
  }
}
@media screen and (max-width: 1440px) {
  .inner-banner .box .ig .left::after {
    left: -70px;
  }
  .inner-banner .box .ig .left .tit {
    font-size: 60px;
  }
}
@media screen and (max-width: 1280px) {
  .inner-banner .box .ig .left::after {
    left: -50px;
  }
  .inner-banner .box .ig .left .tit {
    font-size: 50px;
  }
}
@media screen and (max-width: 1100px) {
  .inner-banner .box .ig .left .tit {
    font-size: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .inner-banner {
    padding: 60px 0 30px;
  }
  .inner-banner .box .ig {
    display: block;
    padding: 30px 0;
  }
  .inner-banner .box .ig .left {
    width: 100%;
  }
  .inner-banner .box .ig .left::after {
    display: none;
  }
  .inner-banner .box .ig .right {
    display: none;
  }
  .xian {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  .inner-banner .box .ig .left .mbx {
    font-size: 16px;
  }
  .inner-banner .box .ig .left .tit {
    font-size: 30px;
    line-height: 1.2;
  }
}
@media screen and (max-width: 500px) {
  .inner-banner .box .ig {
    padding: 20px 0;
  }
  .inner-banner .box .ig .left .mbx {
    font-size: 14px;
    line-height: 2;
  }
  .inner-banner .box .ig .left .tit {
    display: none;
  }
}


.gallery-page {
  padding: 100px 0;
}
.gallery-page .list ul {
  margin: -10px;
}
.gallery-page .list ul li {
  padding: 10px;
}
.gallery-page .list ul li a.img-box {
  display: block;
  border-radius: 5px;

}

.inner-page a.link {
  font-size: 15px;
  line-height: 2;
  display: inline-block;
  padding-bottom: .3em;
  font-weight: 500;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page a.link:before {
  content: '';
  width: 100%;
  height: 1px;
  background-color: black;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page a.link img {
  margin-left: 1em;
  -webkit-filter: brightness(0);
  filter: brightness(0);
  max-width: .7em;
  display: inline-block;
  vertical-align: middle;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page a.link:hover {
  color: var(--color);
}
.inner-page a.link:hover:before {
  width: 0;
}
.inner-page a.link:hover img {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.inner-page .slideBarBox .slideBarLeft {
  width: 30%;
}
.inner-page .slideBarBox .slideBarLeft + .slideBarRight {
  padding-left: 4%;
  padding-right: 0;
}
.inner-page .slideBarBox .slideBarLeft .slide {
  margin-bottom: 40px;
  padding: 50px;
  background-color: #efefef;
}
.inner-page .slideBarBox .slideBarLeft .slide span.h5 {
  font-size: 20px;
  font-weight: bold;
  display: block;
  margin-bottom: 1em;
}
.inner-page .slideBarBox .slideBarLeft .slide form {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  background-color: white;
}
.inner-page .slideBarBox .slideBarLeft .slide form input {
  width: 100%;
  padding: 1em;
  border: none;
  background-color: transparent;
  color: black;
}
.inner-page .slideBarBox .slideBarLeft .slide form input[type="submit"] {
  width: 4em;
  background-image: url("../images/icon-search-black.png");
  background-position: center;
  background-repeat: no-repeat;
  padding: 0;
}
.inner-page .slideBarBox .slideBarLeft .slide.search {
  background-color: var(--color);
  color: white;
}
.inner-page .slideBarBox .slideBarLeft .slide .postList ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
.inner-page .slideBarBox .slideBarLeft .slide .postList ul li:last-child {
  margin-bottom: 0;
}
.inner-page .slideBarBox .slideBarLeft .slide .postList ul li a.img {
  width: 30%;
  background-size: cover;
  background-position: center;
}
.inner-page .slideBarBox .slideBarLeft .slide .postList ul li .content {
  width: 70%;
  padding: 10px 0;
  padding-left: 5%;
}
.inner-page .slideBarBox .slideBarLeft .slide .postList ul li .content span.h6 {
  font-size: 16px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 1.6;
  height: 3.2em;
}
.inner-page .slideBarBox .slideBarLeft .slide .postList ul li .content time {
  display: block;
  font-size: 14px;
  margin-top: .5em;
}
.inner-page .slideBarBox .slideBarLeft .slide .nav {
  font-size: 14px;
  font-weight: 500;
}
.inner-page .slideBarBox .slideBarLeft .slide .nav ul li {
  margin-bottom: 1em;
}
.inner-page .slideBarBox .slideBarLeft .slide .nav ul li a {
  padding: 1.5em;
  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: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: white;
  background-color: var(--color);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .slideBarBox .slideBarLeft .slide .nav ul li a i {
  width: 1.5em;
  height: 1.5em;
  border-radius: 100%;
  background-color: white;
  color: black;
  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;
}
.inner-page .slideBarBox .slideBarLeft .slide .nav ul li a:hover {
  background-color: var(--color);
}
.inner-page .slideBarBox .slideBarLeft .slide:last-child {
  margin-bottom: 0;
}
.inner-page .slideBarBox .slideBarRight {
  width: 70%;
  padding-right: 4%;
}
.inner-page .product_list ul {
  margin: -15px;
}
.inner-page .product_list ul li {
  padding: 15px;
}
.inner-page .product_list ul li a.img-box {
  display: block;
}
.inner-page .product_list ul li span.h6 {
  font-size: 20px;
  font-weight: 500;
  display: block;
  margin: 1em 0 .5em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .product_list ul li span.h6:hover {
  color: var(--color);
}
.inner-page .m-page {
  margin-top: 60px;
  text-align: center;
  font-size: 18px;
  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;
}
.inner-page .m-page a,
.inner-page .m-page span {
  width: 2.5em;
  height: 2.5em;
  border-radius: 5px;
  border: 1px solid #c7c7c7;
 display: inline-block;
  text-align: center;
  line-height: 2.5em;
  margin: 0 .3em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .m-page a:hover,
.inner-page .m-page span.current {
  background-color: var(--color);
  color: white;
  border-color: var(--color);
}

.inner-page a.btn {
  font-size: 15px;
  line-height: 4.53333333em;
  height: 4.53333333em;
  padding: 0 2.4em;
  display: inline-block;
  font-weight: 500;
  color: white;
  background-color: var(--color);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page a.btn img {
  display: inline-block;
  vertical-align: middle;
  margin-left: 1em;
  max-width: .7em;
}
.inner-page a.btn:hover {
  background-color: black;
}
.inner-page .form ul {
  margin: -10px;
}
.inner-page .form ul li {
  padding: 10px;
  font-size: 14px;
}
.inner-page .form ul li label {
  display: block;
  margin-bottom: .5em;
  font-weight: 500;
}
.inner-page .form ul li input,
.inner-page .form ul li textarea {
  display: block;
  width: 100%;
  border: none;
  background-color: transparent;
  padding: .5em 0;
  border-bottom: 1px solid #999;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .form ul li input:focus,
.inner-page .form ul li textarea:focus {
  border-color: var(--color);
}
.inner-page .form ul li textarea {
  height: 80px;
}
.inner-page .form ul li.wid-100 {
  width: 100%;
}
.news-page .news-1 {
  padding: 100px 0;
}
.news-page .news-1 .list ul {
  margin: -15px;
}
.news-page .news-1 .list ul li {
  padding: 15px;
}
.news-page .news-1 .list ul li a.img-box {
  display: block;
}
.news-page .news-1 .list ul li .content {
  -o-box-shadow: 0px 5px 43px 0px rgba(27, 26, 26, 0.06);
  -webkit-box-shadow: 0px 5px 43px 0px rgba(27, 26, 26, 0.06);
  box-shadow: 0px 5px 43px 0px rgba(27, 26, 26, 0.06);
  padding: 8% 6%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
  z-index: 1;
  background-color: white;
}
.news-page .news-1 .list ul li .content time {
  font-size: 14px;
  line-height: 2;
    display: block;
    margin-bottom: 10px;
    margin-top: 10px;
}
.news-page .news-1 .list ul li .content span.h6 {
  font-size: 20px;
  font-weight: 500;
  display: block;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  height: 4.5em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.news-page .news-1 .list ul li .content .text {
  font-size: 14px;
  line-height: 2;
}
.news-page .news-1 .list ul li .content .pre {
  position: relative;
  z-index: 1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.news-page .news-1 .list ul li .content .pre .text {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  height: 9em;
}
.news-page .news-1 .list ul li .content a.link {
  margin-top: 2em;
}
.news-page .news-1 .list ul li:hover .content {
  margin-top: -30px;
}
.news-page .news-1 .list ul li:hover .content span.h6 {
  opacity: 0;
}
.news-page .news-1 .list ul li:hover .content .text {
  opacity: 1;
}
.news-page .news-1 .list ul li:hover .content .pre {
  padding-bottom: 30px;
}
.newdet-page {
  padding: 100px 0;
}
.newdet-page .slideBarRight time {
  font-size: 14px;
  line-height: 2;
  display: block;
}
.newdet-page .slideBarRight h1 {
  font-size: 40px;
  line-height: 1.2;
  font-weight: bold;
}
.newdet-page .slideBarRight .text {
  margin: 2em 0;
}
.newdet-page .slideBarRight .text p {
  margin-top: 1em;
      font-size: 16px;
      line-height: 30px;
}
.newdet-page .slideBarRight .text p:first-child {
  margin-top: 0;
}
.newdet-page .slideBarRight .share {
  font-size: 14px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2em;
}
.newdet-page .slideBarRight .share a {
  margin-left: 1em;
  width: 1.5em;
  height: 1.5em;
  background-color: black;
  color: white;
  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;
  border-radius: 100%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.newdet-page .slideBarRight .share a:hover {
  background-color: var(--color);
}
.newdet-page .slideBarRight span.h5 {
  font-size: 20px;
  font-weight: 500;
  margin: 2em 0 1em;
  display: block;
}
.inner-page .side-title h4 {
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  text-transform: uppercase;
  color: #000000;
}

@media screen and (max-width: 1700px) {
  .newdet-page,
  .news-page .news-1,
  .gallery-page{
    padding: 70px 0;
  }
  .newdet-page .slideBarRight h1{
     font-size: 32px;
   }
   .inner-page .slideBarBox .slideBarLeft .slide {
    padding: 30px;
  }
  .inner-page .product_list ul li span.h6 {
    font-size: 18px;
  }
  .news-page .news-1 .list ul li .content{
    padding: 7%;
  }
  .news-page .news-1 .list ul li .content span.h6{
    font-size: 18px;
  }
}
@media screen and (max-width: 1450px) {
  .newdet-page .slideBarRight h1{
    font-size: 28px;
  }
  .inner-page a.link {
    font-size: 14px;
  }
    .inner-page .slideBarBox .slideBarLeft .slide {
    padding: 20px;
  }
  .inner-page .slideBarBox .slideBarLeft .slide .nav ul li a {
    padding: 1em;
  }
  .inner-page .slideBarBox .slideBarLeft .slide span.h5 {
    font-size: 18px;
  }
  .inner-page .product_list ul li span.h6 {
    font-size: 16px;
  }
  .news-page .news-1 .list ul li .content{
    padding: 5%;
  }
  .news-page .news-1 .list ul li .content span.h6{
    font-size: 16px;
    line-height: 30px;
  }
  .news-page .news-1 .list ul li:hover .content .pre {
    padding-bottom: 50px;
  }
  .news-page .news-1 .list ul li:hover .content {
    margin-top: -50px;
  }
}
@media screen and (max-width: 1250px) {
  .newdet-page .slideBarRight h1{
    font-size: 24px;
  }
    .inner-page .slideBarBox .slideBarLeft + .slideBarRight {
    padding-left: 2%;
  }
    .inner-page .product_list ul li {
    padding: 10px;
  }
  .inner-page .product_list ul {
    margin: -10px;
  }
}
@media screen and (max-width: 1000px) {
    .inner-page .slideBarBox .slideBarLeft {
    display: none;
  }
  .inner-page .slideBarBox .slideBarLeft + .slideBarRight {
    width: 100%;
    padding-left: 0;
  }
}
@media screen and (max-width: 700px) {
  .newdet-page,
  .news-page .news-1{
    padding: 30px 0;
  }

  .newdet-page .slideBarRight h1{
    font-size: 20px;
    line-height: 1.8;
  }

  .news-page .news-1 .list ul li .content .pre .text {
    position: static;
    opacity: 1;
    margin-top: 1em;
  }
  .news-page .news-1 .list ul li:hover .content span.h6 {
    opacity: 1;
  }
  .news-page .news-1 .list ul li:hover .content {
    margin-top: 0;
  }
  .news-page .news-1 .list ul li:hover .content .pre {
    padding-bottom: 0;
  }
  .news-page .news-1 .list ul li .content a.link {
    margin-top: 1em;
  }
}
@media screen and (max-width: 500px) {
  .news-page .news-1 .list ul li .content span.h6,
  .news-page .news-1 .list ul li .content .pre .text {
    height: auto;
    line-height: 2;
  }
}
.about-page .about-1 {
  background-size: 100% auto;
  padding-top: 100px;
      padding-bottom: 80px;
}
.about-page .about-1 .top .left {
    width: 45%;
    padding-right: 8%;
}
.about-page .about-1 .top .left span {
  font-size: 18px;
  line-height: 1.8;
  padding-left: 21px;
  position: relative;
}
.about-page .about-1 .top .left span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #000000;
}
.about-page .about-1 .top .left .title {
    font-size: 44px;
    font-weight: bold;
    line-height: 1.5;
    color: #030303;
}
.about-page .about-1 .top .left .title em {
  display: block;
  text-align: right;
}

.about-page .about-1 .top .right p {
    margin-bottom: 10px;
}
.about-page .about-1 .top .right {
width: 55%;
    font-size: 16px;
    line-height: 30px;
    color: #000;
}
.about-page .about-1 .img {
  padding-top: 65px;
}
.about-page .about-1 .img .box {
  height: 619px;
  position: relative;
  overflow: hidden;
}
.about-page .about-1 .img .box .play{
  position: absolute;
  top: 45%;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 25px;
}
.about-page .about-1 .img .box .play span{
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  text-align: center;
  line-height: 60px;
  padding-left: 5px;
  position: relative;
  z-index: 1;
}
.about-page .about-1 .img .box .play span::before,
.about-page .about-1 .img .box .play span::after{
  content: '';
  position: absolute;
  z-index: -1;
  top: -15px;
  left: -15px;
  bottom: -15px;
  right: -15px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  -webkit-animation: ks 5s linear infinite;
  -moz-animation: ks 5s linear infinite;
  animation: ks 5s linear infinite;
}
.about-page .about-1 .img .box .play span::before{
  -webkit-animation-delay: .5s;
  -moz-animation-delay: .5s;
  animation-delay: .5s;
}
.about-page .about-1 .img .box .mask {
  position: absolute;
  left: 50%;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/a1.jpg);
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform-origin: center;
  -moz-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.about-page .about-1 .bottom {
 padding-top: 70px;
  font-size: 17px;
  line-height: 1.5;
  color: #000000;

}
.about-page .about-1 .bottom p {
    margin-bottom: 10px;
}
.about-page .about-1 .data {
  padding-top: 60px;
}
.about-page .about-1 .data ul {
  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;
}
.about-page .about-1 .data ul li {
  position: relative;
  padding: 0 54px 0 51px;
}
.about-page .about-1 .data ul li:nth-child(2) p{
  margin-left: 10px;
}
.about-page .about-1 .data ul li .num {
  font-size: 143px;
  font-weight: bold;
  color: var(--color);
  opacity: 0.17;
}
.about-page .about-1 .data ul li p {
  position: absolute;
  top: 43%;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 16px;
  line-height: 30px;
}
.about-page .about-1 .data ul li::after {
  content: '';
  position: absolute;
  top: 34%;
  right: 0;
  width: 1px;
  height: 58px;
  background-color: #000000;
  opacity: 0.1;
}
.about-page .about-1 .data ul li:first-child {
  padding-left: 0;
}
/*.about-page .about-1 .data ul li:last-child {
  padding-right: 0;
}*/
.about-page .about-1 .data ul li:last-child p{
  padding-left: 15px;
}
.about-page .about-1 .data ul li:last-child::after {
  display: none;
}

.about-page .about-3 {
  padding: 100px 0;
}
.about-page .about-3 .left {
  width: 58.666%;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}
.about-page .about-3 .left span {
  font-size: 18px;
  line-height: 1.5;
  padding-left: 21px;
  position: relative;
}
.about-page .about-3 .left span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #000000;
}
.about-page .about-3 .left .title {
  font-size: 82px;
  color: #030303;
  line-height: 1;
  font-weight: bold;
  margin-top: 21px;
}
.about-page .about-3 .left .title em {
  display: block;
}
.about-page .about-3 .right {
  width: 41.334%;
  padding-left: 101px;
  position: relative;
}
.about-page .about-3 .right .tag {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}
.about-page .about-3 .right .tag ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: 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-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  height: 100%;
}
.about-page .about-3 .right .tag ul li {
  list-style: none;
  height: 25%;
  position: relative;
  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-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
.about-page .about-3 .right .tag ul li span {
  position: absolute;
  width: 1px;
  height: 0;
  background: #20282d;
  left: 27px;
  bottom: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.about-page .about-3 .right .tag ul li a {
  width: 54px;
  height: 54px;
  line-height: 54px;
  background: #fff;
  color: #20282d;
  position: relative;
  text-align: center;
  border: 1px solid #e6e6e6;
  z-index: 2;
  font-size: 20px;
  font-weight: bold;
}
.about-page .about-3 .right .tag ul li.current span {
  height: 100%;
  bottom: auto;
  top: 0;
}
.about-page .about-3 .right .tag ul li.current a {
  background-color: #000000;
  color: #fff;
  border-color: #000;
}
.about-page .about-3 .right .content ul li {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(90%, rgba(246, 246, 246, 0.8)), to(rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(rgba(246, 246, 246, 0.8) 90%, rgba(255, 255, 255, 0));
  background: -moz-linear-gradient(rgba(246, 246, 246, 0.8) 90%, rgba(255, 255, 255, 0));
  background: linear-gradient(rgba(246, 246, 246, 0.8) 90%, rgba(255, 255, 255, 0));
  padding: 60px 40px 60px 40px;
  margin-bottom: 60px;
}
.about-page .about-3 .right .content ul li .tit {
     font-size: 68px;
    line-height: 1;
    color: #030303;
    font-weight: bold;
}
.about-page .about-3 .right .content ul li .con {
  font-size: 18px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.65);
  margin-top: 21px;
}
.about-page .about-3 .right .content ul li:last-child {
  margin-bottom: 0;
}
.about-page .about-3 .right .content ul li.active {
  background: #f6f6f6;
}
@media screen and (max-width: 1680px) {
  .about-page .about-1 .data ul li {
    padding: 0 50px 0 0;
  }

  .about-page .about-3 .left .title {
    font-size: 72px;
  }
}
@media screen and (max-width: 1440px) {
  .about-page .about-1 .top .left {
    padding-right: 8.5%;
  }
  .about-page .about-1 .data ul li .num {
    font-size: 130px;
  }

  .about-page .about-3 .left .title {
    font-size: 66px;
  }
}
@media screen and (max-width: 1280px) {
  .about-page .about-1 .top .left {
    padding-right: 6%;
  }
  .about-page .about-1 .data ul li {
    padding: 0 26px 0 0;
  }
  .about-page .about-1 .data ul li .num {
    font-size: 110px;
  }
  
  .about-page .about-3 .right .content ul li {
    padding: 60px 20px;
  }
}
@media screen and (max-width: 1100px) {
  .about-page .about-3 .left .title {
    font-size: 53px;
  }
  .about-page .about-3 .right .content ul li {
    padding: 40px 20px;
  }
  .about-page .about-3 .right .content ul li .tit {
    font-size: 60px;
  }
  .about-page .about-3 .right .content ul li .con {
    margin-top: 10px;
  }
}
@media screen and (max-width: 1000px) {
  .about-page .about-1 .top .left {
    width: 100%;
    padding-right: 0;
  }
  .about-page .about-1 .top .right {
    width: 100%;
  }
  .about-page .about-1 .img {
    padding-top: 40px;
  }
  .about-page .about-1 .bottom {
    padding: 30px 0 0 0;
  }
  .about-page .about-1 .data {
    display: none;
  }
  
  .about-page .about-3 .left {
    position: initial;
    width: 100%;
  }
  .about-page .about-3 .right {
    width: 100%;
    margin-top: 30px;
  }
  #footer {
    padding: 60px 0 26px;
  }
}
@media screen and (max-width: 700px) {
  .about-page .about-1 {
    background: transparent;
    padding-top: 0;
  }

  .about-page .about-3 .left .title {
    font-size: 46px;
  }
  #footer{
    padding: 20px 0;
  }
}
@media screen and (max-width: 500px) {
  .about-page .about-1 .top .right {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.8;
  }
  .about-page .about-1 .img {
    padding-top: 20px;
  }
  .about-page .about-1 .img .box {
    height: 300px;
  }
  .about-page .about-1 .bottom {
    font-size: 16px;
    line-height: 1.8;
  }

  .about-page .about-3 .left .title {
    font-size: 32px;
  }
  .about-page .about-3 .right {
    padding-left: 0;
  }
  .about-page .about-3 .right .tag {
    display: none;
  }
  .about-page .about-3 .right .content ul li {
    margin-bottom: 20px;
    background: rgba(241, 238, 226, 0.8);
    padding: 30px 15px;
  }
  .about-page .about-3 .right .content ul li .tit {
    font-size: 40px;
  }
  .about-page .about-3 .right .content ul li .con {
    font-size: 16px;
    line-height: 1.8;
  }
}
.inner-page span.tag {
  font-size: 18px;
  line-height: 1.8;
  padding-left: 21px;
  position: relative;
  text-transform: uppercase;
}
.inner-page span.tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #000000;
}
.faq-page {
  padding: 60px 0;  background: url(../images/faq-bg.png) no-repeat right bottom;
}
.faq-page .faq-1 {

}
.faq-page .faq-1 .header {
  max-width: 1134px;
}
.faq-page .faq-1 .header .title {
      font-size: 70px;
    line-height: 1.2;
  font-weight: bold;
  text-transform: uppercase;
}
.faq-page .faq-1 .content {
  margin-top: 82px;
  border-top: 1px solid #bebebe;
}
.faq-page .faq-1 .content ul li {
  border-bottom: 1px solid #bebebe;
  padding: 34px 0 40px;
  color: #030303;
}
.faq-page .faq-1 .content ul li .tit {
  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;
  font-size: 24px;
  line-height: 1.8;
  font-weight: bold;
  cursor: pointer;
}
.faq-page .faq-1 .content ul li .tit em {
  padding-right: 34px;
  width: 90%;
}
.faq-page .faq-1 .content ul li .tit i {
  display: inline-block;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.faq-page .faq-1 .content ul li .tit i img {
  display: inline-block;
  vertical-align: middle;
}
.faq-page .faq-1 .content ul li .con {
  font-size: 18px;
  line-height: 1.8;
  margin-top: 20px;
  display: none;
}
.faq-page .faq-1 .content ul li.active .tit i {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.faq-page .faq-2 .box {
  background: url(../images/faq-1.jpg) no-repeat center center;
  background-size: 100% 100%;
  padding: 11.459% 20% 10.6771%;
  text-align: center;
}
.faq-page .faq-2 .box .play {
  font-size: 36px;
  color: #fff;
  background-color: rgba(71, 26, 26, 0);
  border: 1px solid #fff;
  border-radius: 50%;
  display: inline-block;
  width: 280px;
  height: 280px;
  line-height: 280px;
  position: relative;
  text-align: center;
}
.faq-page .faq-3 {
  background: url(../images/ab-wz.png) no-repeat center top;
  margin-top: 13%;
  padding-top: 7%;
}
.faq-page .faq-3 .header {
  color: #030303;
}
.faq-page .faq-3 .header .title {
  font-size: 70px;
  line-height: 1;
  font-weight: bold;
  text-transform: uppercase;
}
.faq-page .faq-3 .header p {
  font-size: 27px;
  line-height: 1.3;
  margin-top: 12px;
}
.faq-page .faq-3 .search {
  text-align: center;
  margin-top: 87px;
}
.faq-page .faq-3 .search form {
  max-width: 773px;
  margin: 0 auto;
  position: relative;
}
.faq-page .faq-3 .search form input[type="text"] {
  width: 100%;
  height: 54px;
  border: 0;
  border-bottom: 1px solid #000;
  font-size: 18px;
  padding-right: 176px;
}
.faq-page .faq-3 .search form input[type="text"]::-webkit-input-placeholder {
  color: rgba(3, 3, 3, 0.4);
}
.faq-page .faq-3 .search form input[type="text"]:-moz-placeholder {
  color: rgba(3, 3, 3, 0.4);
}
.faq-page .faq-3 .search form input[type="text"]::-moz-placeholder {
  color: rgba(3, 3, 3, 0.4);
}
.faq-page .faq-3 .search form input[type="text"]:-ms-input-placeholder {
  color: rgba(3, 3, 3, 0.4);
}
.faq-page .faq-3 .search form input[type="text"]::placeholder {
  color: rgba(3, 3, 3, 0.4);
}
.faq-page .faq-3 .search form input[type="submit"] {
  background: url(../images/faq-icon.png) no-repeat 29px center;
  text-align: right;
  border: 0;
  position: absolute;
  bottom: 14px;
  right: 0;
  font-size: 18px;
  width: 176px;
  text-transform: uppercase;
  color: #030303;
  border-left: 1px solid #000;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.faq-page .faq-3 .search form input[type="submit"]:hover {
  background-position-x: 30px;
  color: var(--color);
  border-color: var(--color);
}
@media screen and (max-width: 1000px) {
  .faq-page .faq-1 .header .title {
    font-size: 60px;
  }
  .faq-page .faq-3 .header .title {
    font-size: 52px;
  }
  .faq-page .faq-1 {
    background: transparent;
  }
  .inner-page .m-page{
    margin-top: 40px;
  }
}
@media screen and (max-width: 700px) {
  .faq-page .faq-1 .header .title {
    font-size: 45px;
  }
  .faq-page .faq-1 .content {
    margin-top: 40px;
  }
  .faq-page .faq-3 .header .title {
    font-size: 40px;
  }
  .inner-page .m-page{
    margin-top: 20px;
  }
}
@media screen and (max-width: 500px) {
  .faq-page {
    padding-top: 0;
  }
  .faq-page .faq-1 .header .title {
    font-size: 30px;
    line-height: 1.6;
  }
  .faq-page .faq-1 .content {
    margin-top: 20px;
  }
  .faq-page .faq-1 .content ul li .tit {
    font-size: 20px;
    line-height: 1.8;
  }
  .faq-page .faq-1 .content ul li .tit em {
    padding-right: 20px;
  }
  .faq-page .faq-2 .box {
    padding-left: 0;
    padding-right: 0;
  }
  .faq-page .faq-3 {
    background: transparent;
    margin-top: 5%;
  }
  .faq-page .faq-3 .header .title {
    font-size: 36px;
  }
  .faq-page .faq-3 .header p {
    font-size: 20px;
    line-height: 1.4;
  }
  .faq-page .faq-3 .search {
    margin-top: 20px;
  }
  .faq-page .faq-3 .search form input[type="text"] {
    padding-right: 0;
  }
  .faq-page .faq-3 .search form input[type="submit"] {
    position: initial;
    margin-top: 20px;
    border: 1px solid #000;
    height: 50px;
    padding-right: 15px;
    background-position-x: 20px;
  }
}

.service-page .service-1 {
  padding-bottom: 9.8%;
}
.service-page .service-1 .top .left {
  width: 47%;
}
.service-page .service-1 .top .left .title {
  font-size: 90px;
  line-height: 1;
  font-weight: bold;
  color: #030303;
  text-transform: uppercase;
}
.service-page .service-1 .top .right {
  width: 53%;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.65);
  vertical-align: bottom;
  margin-bottom: 10px;
}
.service-page .service-1 .bottom {
  padding: 7.8% 0 0 66px;
}
.service-page .service-1 .bottom ul li {
  /*border-right: 1px solid #dcdcdc;*/
  /*text-align: center;*/
  padding-right: 60px;
  width: 21%;
}
.service-page .service-1 .bottom ul li .ig{
  position: relative;
  padding: 15px 20px 0px 0;
}
.service-page .service-1 .bottom ul li .ig::after{
  content: '';
  display: block;
  height: 100%;
  width: 1px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #dcdcdc;
}
.service-page .service-1 .bottom ul li i{
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.service-page .service-1 .bottom ul li p {
  font-size: 24px;
  line-height: 1.3;
  color: #030303;
  width: 78%;
  margin-top: 18px;
  text-align: left;
}
.service-page .service-1 .bottom ul li .mores {
  display: block;
  margin-top: 38px;
  position: relative;
  top: auto;
  left: auto;
  height: auto;
  width: auto;
  z-index: 1;
  font-size: 15px;
}
.service-page .service-1 .bottom ul li .mores .link_text {
    position: relative;
    margin-right: 0;
    display: inline-block;
    vertical-align: middle;
    text-indent: -110px;
    visibility: hidden;
    white-space: nowrap;
    opacity: 0;
    margin-top: -10px;
    -webkit-transition: visibility 0.4s ease, margin-right 0.4s ease-out, text-indent 0.5s ease-out, opacity 0.4s ease;
    -ms-transition: visibility 0.4s ease, margin-right 0.4s ease-out, text-indent 0.5s ease-out, opacity 0.4s ease;
    transition: visibility 0.4s ease, margin-right 0.4s ease-out, text-indent 0.5s ease-out, opacity 0.4s ease;
}
.service-page .service-1 .bottom ul li .mores .link_icon {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    width: 1.4em;
    height: 1.4em;
    line-height: 1.4em;
    text-align: center;
}
.service-page .service-1 .bottom ul li .mores:hover .link_text{
    opacity: 1;
		text-indent: 0;
		margin-right: 6px;
		visibility: visible;
}
.service-page .service-1 .bottom ul li:last-child{
  padding-right: 0;
  width: 16%;
}
.service-page .service-1 .bottom ul li:last-child .ig::after {
  display: none;
}
.service-page .service-1 .bottom ul li:hover i{
  filter: brightness(0);
}
.service-page .service-2 {
  position: relative;
  padding: 87px 0 79px;
  z-index: 1;
}
.service-page .service-2 .left {
  width: 53.646%;
}
.service-page .service-2 .right {
  width: 46.354%;
  color: #fff;
  padding: 38px 20px 0 0;
}
.service-page .service-2 .right .ig {
  max-width: 706px;
  padding-left: 57px;
}
.service-page .service-2 .right .header {
  text-align: right;
}
.service-page .service-2 .right .header .tag {
  color: #fff;
  padding-right: 138px;
}
.service-page .service-2 .right .header .tag::before {
  background: #fff;
  top: 8px;
}
.service-page .service-2 .right .header .title {
  text-align: center;
  font-size: 90px;
  line-height: 1;
  font-weight: bold;
  margin-top: 6px;
  margin-left: -132px;
}
.service-page .service-2 .right .header .con {
  font-size: 18px;
  line-height: 1.5;
  opacity: .65;
  text-align: left;
}
.service-page .service-2 .right .list {
  margin-top: 75px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.service-page .service-2 .right .list ul li {
  padding: 19px 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.service-page .service-2 .right .list ul li .tit {
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 26px;
}
.service-page .service-2 .right .list ul li .tit em {
  width: 90%;
}
.service-page .service-2 .right .list ul li .tit i {
  position: relative;
  width: 14px;
  height: 14px;
}
.service-page .service-2 .right .list ul li .tit i::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #fff;
  left: 0;
  top: 6px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.service-page .service-2 .right .list ul li .tit i::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 2px;
  background: #fff;
  top: 0;
  left: 6px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.service-page .service-2 .right .list ul li .con {
  font-size: 18px;
  line-height: 1.5;
  opacity: .65;
  display: none;
}
.service-page .service-2 .right .list ul li.active .tit i::after {
  opacity: 0;
}
.service-page .service-2::after {
  content: '';
  position: absolute;
  z-index: -1;
  right: 0;
  top: 0;
  width: 54.115%;
  height: 100%;
  background-color: #ac8e60;
}
.service-page .service-3 {
  padding-top: 7.2%;
}
.service-page .service-3 .header {
  text-align: right;
}
.service-page .service-3 .header .title {
  font-size: 90px;
  color: #030303;
  line-height: 1;
  font-weight: bold;
  margin-top: 5px;
}
.service-page .service-3 .content {
  margin-top: 65px;
}
.service-page .service-3 .content ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: -20px;
}
.service-page .service-3 .content ul li {
  padding-right: 20px;
  width: 20.79%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  cursor: pointer;
}
.service-page .service-3 .content ul li .ig {
  border: solid 1px var(--color);
  border-radius: 20px;
  padding: 55px 35px 30px 37px;
  height: 383px;
}
.service-page .service-3 .content ul li .ig i{
  display: block;
}
.service-page .service-3 .content ul li .ig .tit {
  font-size: 39px;
  font-weight: bold;
  line-height: 1.2;
  margin-top: 15px;
}
.service-page .service-3 .content ul li .ig .con {
  font-size: 18px;
  line-height: 1.5;
  opacity: 0;
  -webkit-transition: opacity 0.1s ease-out, -webkit-transform 0.4s ease-out, -webkit-clip-path 0.6s cubic-bezier(0.25, 0.59, 0.29, 0.96);
  transition: opacity 0.1s ease-out, -webkit-transform 0.4s ease-out, -webkit-clip-path 0.6s cubic-bezier(0.25, 0.59, 0.29, 0.96);
  -moz-transition: opacity 0.1s ease-out, transform 0.4s ease-out, clip-path 0.6s cubic-bezier(0.25, 0.59, 0.29, 0.96), -moz-transform 0.4s ease-out;
  transition: opacity 0.1s ease-out, transform 0.4s ease-out, clip-path 0.6s cubic-bezier(0.25, 0.59, 0.29, 0.96);
  transition: opacity 0.1s ease-out, transform 0.4s ease-out, clip-path 0.6s cubic-bezier(0.25, 0.59, 0.29, 0.96), -webkit-transform 0.4s ease-out, -moz-transform 0.4s ease-out, -webkit-clip-path 0.6s cubic-bezier(0.25, 0.59, 0.29, 0.96);
  transition: opacity 0.1s ease-out, transform 0.4s ease-out, clip-path 0.6s cubic-bezier(0.25, 0.59, 0.29, 0.96), -webkit-transform 0.4s ease-out, -webkit-clip-path 0.6s cubic-bezier(0.25, 0.59, 0.29, 0.96);
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  -webkit-transform: translateX(50px);
  -moz-transform: translateX(50px);
  -ms-transform: translateX(50px);
  transform: translateX(50px);
}
.service-page .service-3 .content ul li .ig .num {
  position: absolute;
  bottom: 30px;
  right: 35px;
  font-size: 16px;
  color: #030303;
  font-weight: bold;
}
.service-page .service-3 .content ul li.active {
  width: 37.63%;
}
.service-page .service-3 .content ul li.active .con {
  opacity: .65;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  -webkit-transition-delay: 0.4s;
  -moz-transition-delay: 0.4s;
  transition-delay: 0.4s;
  -webkit-transform: translate(0);
  -moz-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
}
.service-page .service-4 {
  padding: 10% 0 5.6%;
}
.service-page .service-4 .header .title {
  font-size: 90px;
  font-weight: bold;
  line-height: 1;
  text-transform: uppercase;
  margin-top: 22px;
}
.service-page .service-4 .content {
  margin-top: 51px;
}
.service-page .service-4 .content ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: -18px;
}
.service-page .service-4 .content ul li {
  padding-right: 18px;
  width: 17.544%;
  -webkit-transition: width 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  -moz-transition: width 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  transition: width 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  overflow: hidden;
}
.service-page .service-4 .content ul li .ig {
  position: relative;
  height: 559px;
}
.service-page .service-4 .content ul li .ig .img {
  margin: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  -webkit-transition: height 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  -moz-transition: height 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  transition: height 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
.service-page .service-4 .content ul li .ig .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform: scale(1.06) translateZ(0);
  -moz-transform: scale(1.06) translateZ(0);
  transform: scale(1.06) translateZ(0);
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
  -moz-transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1), -moz-transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
  transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
  transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1), -webkit-transform 0.8s cubic-bezier(0.65, 0, 0.35, 1), -moz-transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}
.service-page .service-4 .content ul li .ig .text {
  background: #fff;
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 34px 8px 51px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  transition: all .5s ease;
}
.service-page .service-4 .content ul li .ig .text .tit {
  font-size: 41px;
  line-height: 1.1;
  font-weight: bold;
  width: 54%;
}
.service-page .service-4 .content ul li .ig .text .mores {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
  padding: 25px 0 19px 38px;
  position: relative;
  z-index: 1;
}
.service-page .service-4 .content ul li .ig .text .mores img {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.service-page .service-4 .content ul li .ig .text .mores em {
  margin-left: 28px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.service-page .service-4 .content ul li .ig .text .mores::after {
  content: '';
  position: absolute;
  left: 59px;
  top: 0;
  width: 57px;
  height: 56px;
  border-radius: 50%;
  border: solid 1px #dcdcdc;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.service-page .service-4 .content ul li .ig .text .mores:hover em {
  -webkit-transform: translateX(-86px);
  -moz-transform: translateX(-86px);
  -ms-transform: translateX(-86px);
  transform: translateX(-86px);
}
.service-page .service-4 .content ul li .ig .text .mores:hover img {
  -webkit-transform: translateX(150px);
  -moz-transform: translateX(150px);
  -ms-transform: translateX(150px);
  transform: translateX(150px);
}
.service-page .service-4 .content ul li.active {
  width: 29.824%;
}
.service-page .service-4 .content ul li.active .ig .img {
  height: 425px;
}
.service-page .service-4 .content ul li.active .ig .img img {
  -webkit-transform: scale(1) translateZ(0);
  -moz-transform: scale(1) translateZ(0);
  transform: scale(1) translateZ(0);
}
.service-page .service-4 .content ul li.active .text {
  opacity: 1;
}
@media screen and (max-width: 1680px) {
  .service-page .service-1 .bottom ul li{
    padding-right: 40px;
  }
  .service-page .service-4 .content ul li.active .text{
    display: block;
  }
  .service-page .service-4 .content ul li .ig .text .tit{
    font-size: 36px;
    width: 100%;
  }
  .service-page .service-4 .content ul li.active .text .mores{
    margin-top: 20px;
  }
}
@media screen and (max-width: 1440px) {
  .service-page .service-1 .bottom ul li p{
    width: 90%;
  }
  .service-page .service-2 .right .header .title{
    font-size: 78px;
    margin-left: -90px;
  }
  .service-page .service-3 .content ul li .ig{
    padding: 40px 30px 30px;
  }
  .service-page .service-3 .content ul li .ig .tit{
    font-size: 32px;
  }
}
@media screen and (max-width: 1280px) {
  .service-page .service-1 .top .left .title{
    font-size: 80px;
  }
  .service-page .service-1 .bottom{
    padding-left: 0;
  }
  .service-page .service-1 .bottom ul li p {
    width: 100%;
  }
  .service-page .service-2{
    padding: 50px 0;
  }
  .service-page .service-2 .left,
  .service-page .service-2 .right{
    vertical-align: middle;
  }
  .service-page .service-2 .right{
    padding-top: 0;
  }
  .service-page .service-2 .right .ig{
    padding-left: 30px;
  }
  .service-page .service-2 .right .header .title {
    font-size: 62px;
    margin-left: 0px;
  }
  .service-page .service-3 .content ul li .ig {
    padding: 40px 20px 30px;
  }
  .service-page .service-3 .content ul li .ig .tit {
    font-size: 29px;
  }
}
@media screen and (max-width: 1100px) {
  .service-page .service-1 .top .left .title {
    font-size: 70px;
  }
  .service-page .service-1 .bottom ul li p{
    font-size: 21px;
  }
  .service-page .service-2 .right .header .title{
    font-size: 53px;
  }
  .service-page .service-2 .right .list{
    margin-top: 40px;
  }
  .service-page .service-3 .content ul li .ig .tit {
    font-size: 26px;
  }
  .service-page .service-4 .content ul li .ig{
    height: 400px;
  }
  .service-page .service-4 .content ul li.active .ig .img{
    height: 300px;
  }
  .service-page .service-4 .content ul li .ig .text{
    padding: 15px 8px 20px;
  }
  .service-page .service-4 .content ul li .ig .text .tit{
    font-size: 30px;
  }
}
@media screen and (max-width: 1000px) {
  .service-page .service-1 .top .left,
  .service-page .service-1 .top .right{
    width: 100%;
  }
  .service-page .service-1 .top .right{
    margin-top: 20px;
  }
  .service-page .service-1 .bottom ul{
    margin-bottom: -20px;
  }
  .service-page .service-1 .bottom ul li:last-child{
    width: 33.3333%;
  }
  .service-page .service-1 .bottom ul li{
    width: 33.3333%;
    margin-bottom: 20px;
  }
  .service-page .service-2 .left{
    display: none;
  }
  .service-page .service-2 .right{
    width: 100%;
  }
  .service-page .service-2::after{
    width: 100%;
  }
  .service-page .service-3 .header .title{
    font-size: 70px;
  }
  .service-page .service-3 .content ul{
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: -10px;
  }
  .service-page .service-3 .content ul li{
    width: 50%;
    margin-bottom: 10px;
  }
  .service-page .service-3 .content ul li.active{
    width: 50%;
  }
  .service-page .service-3 .content ul li .ig .con{
    opacity: .65;
    -webkit-clip-path: polygon(0 0,100% 0,100% 100%,0 100%);
    clip-path: polygon(0 0,100% 0,100% 100%,0 100%);
    -webkit-transition-delay: .4s;
    -moz-transition-delay: .4s;
    transition-delay: .4s;
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
  }
  .service-page .service-3 .content ul li .ig {
    padding: 30px 20px 20px;
  }
  .service-page .service-3 .content ul li .ig .con{
    font-size: 17px;
  }
  .service-page .service-4 .header .title{
    font-size: 66px;
  }
  .service-page .service-4 .content ul{
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: -10px;
  }
  .service-page .service-4 .content ul li{
    width: 50%;
    margin-bottom: 10px;
  }
  .service-page .service-4 .content ul li.active{
    width: 50%;
  }
  .service-page .service-4 .content ul li:last-child{
    width: 100%;
  }
  .service-page .service-4 .content ul li:last-child.active{
    width: 100%;
  }
}
@media screen and (max-width: 700px) {
  .service-page .service-1 .bottom ul li{
    width: 50%;
    padding-right: 20px;
  }
  .service-page .service-1 .bottom ul li:last-child{
    width: 50%;
  }
  .service-page .service-1 .bottom ul li:nth-child(even){
    padding-right: 0;
  }
  .service-page .service-2 .right .list ul li .tit{
    font-size: 22px;
  }
  .service-page .service-3 .header .title {
    font-size: 53px;
  }
  .service-page .service-3 .content{
    margin-top: 20px;
  }
  .service-page .service-3 .content ul li .ig i{
    zoom: .7;
  }
  .service-page .service-3 .content ul li .ig{
    padding: 10px;
  }
  .service-page .service-3 .content ul li .ig .tit{
    font-size: 24px;
    margin-top: 0;
  }
  .service-page .service-3 .content ul li .ig .num{
    bottom: 0;
  }
  .service-page .service-4 .header .title {
    font-size: 50px;
  }
  .service-page .service-4 .content{
    margin-top: 20px;
  }
  .service-page .service-4 .content ul li .ig .text .tit {
    font-size: 24px;
  }
  .service-page .service-4 .content ul li.active .text .mores{
    zoom: .7;
  }
  .service-page .service-4 .content ul li .ig{
    height: 300px;
  }
}
@media screen and (max-width: 500px) {
  .service-page .service-1 .top .left .title {
    font-size: 50px;
  }
  .service-page .service-1 .top .right{
    font-size: 16px;
    line-height: 1.8;
  }
  .service-page .service-1 .bottom ul li{
    width: 100%;
    padding-right: 0;
  }
  .service-page .service-1 .bottom ul li:last-child{
    width: 100%;
  }
  .service-page .service-1 .bottom ul li .ig{
    padding: 0;
  }
  .service-page .service-1 .bottom ul li .ig::after{
    display: none;
  }
  .service-page .service-2 .right{
    padding: 0 15px;
  }
  .service-page .service-2 .right .ig{
    padding-left: 0;
  }
  .service-page .service-2 .right .header .title {
    font-size: 40px;
  }
  .service-page .service-2 .right .header .con{
    font-size: 16px;
    line-height: 1.8;
  }
  .service-page .service-2 .right .list ul li .tit {
    font-size: 20px;
    line-height: 1.4;
  }
  .service-page .service-3 .header .title {
    font-size: 36px;
  }
  .service-page .service-3 .content ul li,
  .service-page .service-3 .content ul li.active{
    width: 100%;
  }
  .service-page .service-3 .content ul li .ig{
    height: auto;
    padding: 20px 15px;
  }
  .service-page .service-3 .content ul li .ig .tit{
    line-height: 1.5;
  }
  .service-page .service-3 .content ul li .ig .con{
    font-size: 16px;
    line-height: 1.8;
  }
  .service-page .service-4 .header .title {
    font-size: 33px;
  }
  .service-page .service-4 .content ul li,
  .service-page .service-4 .content ul li.active{
    width: 100%;
  }
  .service-page .service-4 .content ul li.active .text .mores{
    zoom: 1;
  }
  .service-page .service-4 .content ul li .ig .text .tit{
    line-height: 1.5;
  }
  .service-page .service-4 .content ul li .ig .text{
    opacity: 1;
    display: block;
  }
}
.application-page {
  padding-bottom: 12%;
}
.application-page .application-list .header {
  max-width: 690px;
}
.application-page .application-list .header .title {
  font-size: 90px;
  font-weight: bold;
  line-height: 1.1;
}
.application-page .application-list .swiper {
  margin-top: 132px;
  padding-bottom: 100px;
}
.application-page .application-list .swiper .tit {
  font-size: 30px;
  line-height: 1.3;
  color: #030303;
  text-align: center;
  margin-top: 25px;
  opacity: 0;
  -webkit-transition: opacity .5s ease;
  -moz-transition: opacity .5s ease;
  transition: opacity .5s ease;
}
.application-page .application-list .swiper .swiper-slide {
  cursor: pointer;
}
.application-page .application-list .swiper .swiper-slide:hover .tit {
  opacity: 1;
}
.application-page .application-list .swiper .swiper-pagination {
  bottom: 0;
  height: 41px;
}
.application-page .application-list .swiper .swiper-pagination-bullet {
  position: relative;
  width: 1px;
  height: 16px;
  border-radius: 0px;
  display: inline-block;
  vertical-align: middle;
  background-color: rgba(0, 0, 0, 0.5);
  margin: 0 9px;
  cursor: pointer;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  opacity: 1;
}
.application-page .application-list .swiper .swiper-pagination-bullet-active {
  height: 41px;
  background: #5f5e5f;
}
.tc {
  height: 100%;
  position: fixed;
  z-index: 999;
  top: 79px;
  right: 0;
  width: 100%;
  background: url(../images/beijing.jpg) no-repeat;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.tc .list {
  position: relative;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.tc .list .item {
  position: relative;
  height: 100vh;
  text-align: center;
  padding: 0vh 15vw 0;
}
.tc .list .item .title {
  font-size: 100px;
  line-height: 1;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.tc .list .item .img {
  position: relative;
  max-width: 600px;
  margin: -4% auto 0;
}
.tc .list .item .img .desc {
  position: absolute;
  right: 30px;
  top: 10%;
  /*color: #fff;*/
  font-size: 18px;
  line-height: 1.6;
  font-weight: bold;
}
.tc .list .item .gallery{
  position: absolute;
  bottom: 100px;
  right: 20%;
}
.tc .list .item .gallery ul{
  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;
  margin-right: -20px;
  text-align: right;
  margin: 0 auto;
}
.tc .list .item .gallery ul li{
  padding-right: 20px;
  max-width: 100px;
  cursor: pointer;
}
.tc .list .item .gallery ul li img{
  width: 100%;
}
.tc.active {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

@media screen and (max-width: 1440px) {
  .tc .list .item{
    padding: 0 10vw;
  }
}
@media screen and (max-width: 1280px) {
  .tc .list .item{
    padding: 0 6vw;
  }
  .tc .list .item .title{
    font-size: 66px;
  }
}
@media screen and (max-width: 1000px) {
  .application-page .application-list .header .title{
    font-size: 60px;
  }
  .application-page .application-list .swiper{
    margin-top: 60px;
  }
  .application-page .application-list .swiper .tit{
    font-size: 25px;
    line-height: 1.4;
  }
  .tc .list .item{
    padding: 0 10vw;
  }
  .tc .list .item .title{
    font-size: 60px;
  }

}
@media screen and (max-width: 700px) {
  .application-page .application-list .header .title{
    font-size: 40px;
  }
  .application-page .application-list .swiper{
    margin-top: 30px;
    padding-bottom: 30px;
  }
  .tc .list .item{
    padding: 0 6vw;
  }
  .tc .list .item .gallery{
    position: initial;
    margin-top: 20px;
  }
  .tc .list .item .title{
    font-size: 46px;
  }

}
@media screen and (max-width: 500px) {
  .application-page .application-list .swiper{
    overflow: hidden;
    padding: 0 15px 30px;
  }
  .application-page .application-list .swiper .tit{
    opacity: 1;
    font-size: 24px;
    line-height: 1.5;
    margin-top: 10px;
  }
  .tc .list .item .title{
    font-size: 36px;
  }

}







/* product */
.plp-product-list ul {
  /*margin: -30px;*/
}
.plp-product-list li {
  padding: 30px;
}
.product-card .color-selector {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  cursor: pointer;
}
.product-card .color-selector .color-option {
  width: 20px;
  height: 20px;
  padding: 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.product-card .color-selector .color-option.active {
  border: 1px solid #091010;
  border-radius: 50%;
}
.product-card .color-selector .color-option + .color-option {
  margin-left: 12px;
}
.product-card .color-selector .color-block {
  border-radius: 50%;
  overflow: hidden;
  background-size: 64px;
  background-position: 50%;
  position: relative;
  width: 16px;
  height: 16px;
}

.inner-pro-img .item .absolute-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.inner-pro-img .item .hover-image {
  z-index: 0;
  opacity: 0;
  -webkit-transition: opacity .2s ease-in-out;
  -o-transition: opacity .2s ease-in-out;
  transition: opacity .2s ease-in-out;
}

.inner-pro-img .item:hover .hover-image {
  opacity: 1;
}




/* prodet */
.prodet-1 .left {
  padding-right: 5%;
      position: sticky;
    top: 100px;
}
.prodet-1 .right {

}
.prodet-1 .small-slide {
  margin-top: 30px;
}
.prodet-1 .small-slide ul {
  margin: -15px;
}
.prodet-1 .small-slide li {
  padding: 15px;
}
.prodet-2 {
  margin-bottom: 80px;
}

.pdp-selector {
	border-top: 1px solid #eee;
}
.color-selector {
	padding: 20px 0;
	border-bottom: 1px solid #eee;
}
.color-selector .color-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.color-selector .color-item {
    width: 56px;
    font-size: 14px;
    margin-right: 30px;
    margin-top: 20px;
}
.color-selector .color-item .color-core {
	width: 28px;
    height: 28px;
    border-radius: 50%;
    padding: 2px;
    border: 1px solid transparent;
    margin: 0 auto;
    cursor: pointer;
}
.color-selector .color-item.active .color-core {
	border-color: #091010;
}
.color-selector .color-item .color-core .color-image-box {
	width: 100%;
    height: 100%;
    background-position: 50%;
    background-size: 72px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}
.color-selector .color-item .color-name {
	text-align: center;
    font-size: 14px;
    color: #979797;
    margin-top: 6px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    word-break: break-word;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
}

.pdp-promotions {
	border-top: 1px solid #eee;
}

.pdp-action-btns {
	margin: 32px 0 0;
}

.pdp-action-btns a {
  display: inline-block;
  border: 1px solid #000;
  padding: 10px 30px;
  font-size: 14px;
}

.pdp-share-row {
	margin: 32px 0;
}

.collapse-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid #eee;
    letter-spacing: 1px;
    cursor: pointer;
}
.collapse-header .title {
    font-size: 16px;
    color: #091010;
    line-height: 30px;
}
.collapse-header .i-expand {
    font-size: 12px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}



@media (max-width: 1000px) {
  .prodet-1 .left {
    width: 100%;
    padding-right: 0;
  }

  .prodet-1 .right {
    width: 100%;
    padding-left: 0;
    margin-top: 60px;
  }
}

.t_1 {
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s
}

.flex_cont {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.flex_a_center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.flex_j_center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}
.inner-banner span.h2 {
    font-size: 36px;
    line-height: 1.6;
    font-weight: bold;
}

.inner-banner .mbx {
    font-size: 16px;
    line-height: 30px;
}
.inner-page .sideBarBox .sideBarLeft {
  width: 27%;
  padding-right: 3%;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}
.inner-page .sideBarBox .sideBarLeft form {
  font-size: 16px;
  height: 4.375em;
  border-radius: .25em;
  background-color: #f2f1ec;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
.inner-page .sideBarBox .sideBarLeft form input {
  width: 100%;
  border: none;
  background-color: transparent;
  padding: 0 1.5em;
}
.inner-page .sideBarBox .sideBarLeft form button {
  width: 4.375em;
  background-color: transparent;
  border: none;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .sideBarBox .sideBarLeft form button i {
  font-size: 1.6em;
}
.inner-page .sideBarBox .sideBarLeft form button:hover {
  background-color: var(--color);
  color: white;
}
.inner-page .sideBarBox .sideBarLeft .box {
  margin-top: 45px;
}
.inner-page .sideBarBox .sideBarLeft .box span.h2 {
  font-size: 24px;
  margin-bottom: 1em;
}
.inner-page .sideBarBox .sideBarLeft .box .nav {
  font-size: 18px;
  line-height: 1.8;
}
.inner-page .sideBarBox .sideBarLeft .box .nav ul li {
  padding: .6em 0;
  border-bottom: 1px solid #e7e7e7;
}
.inner-page .sideBarBox .sideBarLeft .box .nav ul li a {
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .sideBarBox .sideBarLeft .box .nav ul li a i {
  margin-right: 1.5em;
  opacity: .8;
  font-size: .8em;
}
.inner-page .sideBarBox .sideBarLeft .box .nav ul li a em {
  padding: 0 .5em;
  border-radius: .25em;
  background-color: #eeede7;
  margin-left: auto;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .sideBarBox .sideBarLeft .box .nav ul li a:hover {
  color: var(--color);
}
.inner-page .sideBarBox .sideBarLeft .box .nav ul li a:hover em {
  background-color: var(--color);
  color: white;
}
.inner-page .sideBarBox .sideBarLeft .box .nav ul li ul {
  padding-left: 2.5em;
  font-size: 0.88888889em;
  margin-top: 1em;
  display: none;
}
.inner-page .sideBarBox .sideBarLeft .box .nav ul li ul li {
  border-bottom: none;
}
.inner-page .sideBarBox .sideBarLeft .box .nav ul li.active ul {
  display: block;
}
.inner-page .sideBarBox .sideBarLeft .box .newsList ul li {
  margin-bottom: 15px;
  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;
}
.inner-page .sideBarBox .sideBarLeft .box .newsList ul li .img-box {
  width: 30%;
  border-radius: 3px;
}
.inner-page .sideBarBox .sideBarLeft .box .newsList ul li .content {
  width: 70%;
  padding-left: 4%;
}
.inner-page .sideBarBox .sideBarLeft .box .newsList ul li .content span.h6 {
  font-size: 18px;
  line-height: 1.33333333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.inner-page .sideBarBox .sideBarLeft .box .newsList ul li .content time {
  display: block;
  font-size: 14px;
  color: #9a9a9a;
  margin-top: .4em;
}
.inner-page .sideBarBox .sideBarLeft .box .newsList ul li:last-child {
  margin-bottom: 0;
}

.inner-page .sideBarBox .right {
    width: 73%;
}
.inner-page .sideBarBox .slideBarRight {
    width: 73%;
}
.newdet-page .slideBarRight .text p img.wscnph {
    width: 49%;
    padding: 20px;
}
.inner-page .sideBarBox .sideBarLeft .box .newsList ul li .img-box img {
    height: 90px;
    object-fit: cover;
    width: 100%;
}
.inner-page .sideBarBox .sideBarLeft .box .newsList {
    margin-top: 2em;
}
/*新闻-end*/



.about-page .about-3 .right .content ul li .con p {
    margin-bottom: 10px;
}



/*about-4*/
.about-4 {
    padding: 100px 0 100px;
    background: url(../images/cailiao-bg.jpg) no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}
.about-4 .container {
    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-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.about-4 .container .left {
    width: 50%;
    text-align: center;
    padding: 0 5%;
}
.about-4 .container .left .content {
    display: inline-block;
    position: relative;
}
.about-4 .container .left .content .ball {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.about-4 .container .left .content .ball .box {
    border-radius: 100%;
    width: 100%;
    height: 100%;
    -webkit-animation: kz 20s infinite linear;
    -moz-animation: kz 20s infinite linear;
    animation: kz 20s infinite linear;
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    position: relative;
}
.about-4 .container .left .content .ball .box .text1 {
    position: absolute;
    top: 0;
    left: -20px;
    border-radius: 100%;
    width: 140px;
    height: 140px;
    line-height: 140px;
    font-size: 26px;
    text-align: center;
    color: #fff;
    background: rgba(18,158,111,.4);
    -webkit-animation: kzs 20s infinite linear;
    -moz-animation: kzs 20s infinite linear;
    animation: kzs 20s infinite linear;
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
}
.about-4 .container .left .content .ball .box .text2 {
    position: absolute;
    top: -40px;
    right: 65px;
    border-radius: 100%;
    width: 125px;
    height: 125px;
    line-height: 125px;
    font-size: 26px;
    color: #fff;
    text-align: center;
    background: rgba(18,158,111,.5);
    -webkit-animation: kzs 20s infinite linear;
    -moz-animation: kzs 20s infinite linear;
    animation: kzs 20s infinite linear;
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
}
.about-4 .container .left .content .ball .box .text3 {
    position: absolute;
    top: 155px;
    right: -75px;
    border-radius: 100%;
    width: 175px;
    height: 175px;
    line-height: 175px;
    font-size: 21.5px;
    color: #fff;
    text-align: center;
    background: rgba(18,158,111,.6);
    -webkit-animation: kzs 20s infinite linear;
    -moz-animation: kzs 20s infinite linear;
    animation: kzs 20s infinite linear;
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
}
.about-4 .container .left .content .ball .box .text4 {
    position: absolute;
    bottom: -40px;
    right: 35px;
    border-radius: 100%;
    width: 170px;
    height: 170px;
    line-height: 170px;
    font-size: 26px;
    color: #fff;
    text-align: center;
    background: rgba(18,158,111,0.8);
    -webkit-animation: kzs 20s infinite linear;
    -moz-animation: kzs 20s infinite linear;
    animation: kzs 20s infinite linear;
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
}
.about-4 .container .left .content .ball .box .text5 {
    position: absolute;
    bottom: 32px;
    left: -50px;
    border-radius: 100%;
    width: 195px;
    height: 195px;
    line-height: 195px;
    font-size: 24px;
    color: #fff;
    text-align: center;
    background: rgba(18,158,111,1);
    -webkit-animation: kzs 20s infinite linear;
    -moz-animation: kzs 20s infinite linear;
    animation: kzs 20s infinite linear;
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
}
@keyframes kz {
  0% {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
    -ms-transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
    -moz-transform: rotate(-360deg);
    -o-transform: rotate(-360deg);
  }
}
@-webkit-keyframes kz {
  0% {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
    -ms-transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
    -moz-transform: rotate(-360deg);
    -o-transform: rotate(-360deg);
  }
}
@-moz-keyframes kz {
  0% {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
    -ms-transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
    -moz-transform: rotate(-360deg);
    -o-transform: rotate(-360deg);
  }
}
.about-4 .container .right {
    width: 50%;
}
.about-4 .container .right .text {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.about-4 .container .right h2 {
    font-size: 60px;
    line-height: .8;
    color: #ffffff;
    font-weight: bold;
}
.about-4 .container .right h3 {
     line-height: 2;
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    font-style: normal;
    text-transform: capitalize;
}
.about-4 .container .right p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,.9);
    margin-top: 10px;
}

/*实力*/

.capacity-1 .top h2 {
    font-size: 36px;
    font-weight: 700;
    text-transform: capitalize;
}
.capacity-1 .top p {
    line-height: 1.8;
    font-size: 17px;
}
.capacity-1 .btnC{
  margin-top: 20px;
}
.capacity-1 .btnC .btn{
  background: #fff;
  color: var(--color);
  border: 1px solid var(--color);
  width: 50px;
  height: 50px;
  cursor: pointer;
  font-size: 40px;
}
.capacity-1 .btnC .btn:hover{
  background: var(--color);
  color: #fff;
}

.capacity-1 .btnC .next{
  margin-left: 20px;
}

.capacity-1 .bottom ul{
margin: 0 -10px;
}

.capacity-1 .bottom ul li{
  padding: 10px;
}
.capacity-1 {
    padding: 80px 0;
}
.capacity-1 .top {
    padding-bottom: 20px;
}


.capacity-2 {
    overflow: hidden;
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
        padding: 80px 0;
  }
  .capacity-2 .container .title_c {
    position: relative;
    z-index: 2;
  }
  .capacity-2 .container .title_c .left .tips {
    position: relative;
    padding-left: 28px;
    color: #fff;
  }
  .capacity-2 .container .title_c .left .tips .sub1 {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    top: 5px;
    left: 0;
  }
  .capacity-2 .container .title_c .left .tips_title {
    margin-top: 10px;
  }
  .capacity-2 .container .title_c .btnC{
    margin: 10px 0 0 auto;
  }
  .capacity-2 .container .title_c .btnC .btn {
    color: #fff;
    border: 1px solid #fff;
    width: 50px;
    height: 50px;
    cursor: pointer;
    font-size: 40px;
  }
  .capacity-2 .container .title_c .btnC .btn:hover{
    background: var(--color);
    color: #fff;
  }
  .capacity-2 .container .title_c .btnC .next{
    margin-left: 10px;
  }
  .capacity-2 .container .title_c .more {
    margin: 10px 0 0 auto;
    color: var(--color);
  }
  .capacity-2 .container .title_c .more .more_sub {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--color);
    font-size: 20px;
    margin-right: 18px;
    color: #fff;
  }
  .capacity-2 .container .title_c .more:hover {
    color: #fff;
  }
  .capacity-2 .container .title_c .more:hover .more_sub {
    background-color: #fff;
    color: var(--color);
  }
  .capacity-2 .container .title_c .sub_2 {
    position: absolute;
    width: 6px;
    height: 6px;
    top: 90px;
    left: 50%;
    background-color: #fff;
    border-radius: 50%;
  }
  .capacity-2 .container .title_c .sub_3 {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 0;
    left: 0;
    border-radius: 50%;
    border: 2px solid #fff;
    top: 80px;
    left: 60%;
  }
  .capacity-2 .container .content {
    margin-top: 30px;
  }
  .capacity-2 .container .content ul {
    margin: 0 -13px;
  }
  .capacity-2 .container .content ul li {
    width: 25%;
    padding: 0 13px;
  }
  .capacity-2 .container .content ul li .box {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
    border: 1px solid #898989;
  }
  .capacity-2 .container .content ul li .box .img {
    height: 70px;
    background-position: left center;
  }
  .capacity-2 .container .content ul li .box .title {
  margin-top: 20px;
    text-transform: capitalize;
    height: 60px;
  }
  .capacity-2 .container .content ul li .box .line {
    height: 1px;
    background-color: #5a5a5a;
    margin: 16px 0;
  }
  .capacity-2 .container .content ul li .box .des {
    color: #d1d1d1;
    /*overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    min-height: 150px;*/
        height: 72px;

  }
  .capacity-2 .container .content ul li .box .more {
    margin-top: 14px;
    color: #d1d1d1;
    line-height: 1;
  }
  .capacity-2 .container .content ul li .box .more .text {
    border-bottom: 1px solid #d1d1d1;
  }
  .capacity-2 .container .content ul li .box .more .sub {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-left: 10px;
    border: 1px solid #fff;
  }
  .capacity-2 .container .content ul li .box .more:hover .text {
    color: var(--color);
    border-bottom: 1px solid var(--color);
  }
  .capacity-2 .container .content ul li .box .more:hover .sub {
    border: 1px solid var(--color);
  }
  .capacity-2 .container .content ul .li2 {
    margin-top: 40px;
  }
  .capacity-2 .container .content ul .li3 {
    margin-top: 80px;
  }
  .capacity-2 .container .content ul .li4 {
    margin-top: 120px;
  }


  .capacity-2 .container .title_c .more {
    margin-left: 0;
  }
  .capacity-2 .container .content ul li {
    width: 50%;
    margin-top: 20px;
  }
  .capacity-2 .container .content ul .li4,
  .capacity-2 .container .content ul .li3,
  .capacity-2 .container .content ul .li2 {
    margin-top: 20px;
  }

  .capacity-2 .container .content ul li:hover .box{
    background: rgba(0,0,0,.5);
        transition: all .5s ease;
}
.capacity-2 .container .content ul li .box{
        transition: all .5s ease;
}

.shuzi span {
    font-size: 60px;
    font-weight: 700;
    opacity: .5;
        color: #000;
}

.capacity-3 {
    padding-top: 90px;
    background: #eee;
    padding-bottom: 10px;
}

.capacity-3 .bottom{
    text-align: center;
    color: white;
    }
    .capacity-3 .bottom h2 {
    font-size: 44px;
    text-transform: uppercase;
    }
    .capacity-3 .bottom .box{
    padding: 0 16%;
    }
    .capacity-3 .bottom .box ul {
    margin: -50px;
    }
    .capacity-3 .bottom .box ul li {
    padding: 50px;
    }
    .capacity-3 .bottom .box ul li .text{
    vertical-align: middle;
    padding-right: 3%;
    text-align: left;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    opacity: 1;
    }
    .capacity-3 .bottom .box ul li .text h6 {
    font-size: 22px;
    color: rgba(0,0,0,.5);
    }
    .capacity-3 .bottom .box ul li .text h6 span {
    font-weight: bold;
    font-size: 36px;
    color: #000;
    vertical-align: top;
    line-height: 1.4;
    }
    .capacity-3 .bottom .box ul li .text h3 {
    font-size: 24px;
    font-weight: bold;
    margin-top: 20px;
    line-height: 1.2;
    color: #000;
    word-break: break-word;
        margin-bottom: 15px;
    }
    .capacity-3 .bottom .box ul li .img {
    position: relative;
    text-align: left;
    vertical-align: middle;
    left: 0;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    }
    .capacity-3 .bottom .box ul li .img img {
    width: 100%;
    }
    .capacity-3 .bottom .box ul li .img .box2 {
    height: 80%;
    top: 10%;
    width: 30%;
    left: -15%;
    background: var(--color);
    padding: 10px;
    position: absolute;
    opacity: 0;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    }
    .capacity-3 .bottom .box ul li .img .box2 span {
    font-size: 22px;
    font-weight: bold;
    }
    .capacity-3 .bottom .box ul li .img .box2 h6 {
    font-size: 12px;
    line-height: 1.2;
    position: absolute;
    padding: inherit;
    width: 100%;
    bottom: 0;
    left: 0;
    }
    .capacity-3 .top h2 {
    font-size: 36px;
    font-weight: 700;
    text-transform: capitalize;
        margin-bottom: 15px;
}
.capacity-3 .top p {
    line-height: 1.8;
    font-size: 17px;
        margin-bottom: 15px;
}
.capacity-3 .top .btns a {
    font-size: 15px;
    font-weight: bold;
}
    .capacity-3 .bottom{
    overflow: hidden;
    margin: 90px 0;
    }
    .capacity-3 .bottom .box ul .slick-list {
    overflow: unset;
    }
    .capacity-3 .bottom .box ul .slick-current+div li .text{
    opacity: 0;
    }
    .capacity-3 .bottom .box ul .slick-current+div li .img{
    left: -45%;
    }
    .capacity-3 .bottom .box ul .slick-current+div li .img .box2 {
    opacity: 1;
    }
    .capacity-3 .bottom .box ul .slick-arrow {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 50%;
    margin-top: -30px;
    left: 0;
    margin-left: -80px;
    z-index: 1;
    background: url('../images/inner-l.png') center center no-repeat;
 
    border: none;
    cursor: pointer;
    cursor: hand;
    color: transparent;
    font-size: 0;
    }
    .capacity-3 .bottom .box ul .slick-arrow.slick-next {
    margin-top: 40px;
    transform: rotate(180deg);
    }
    
    @media screen and (max-width: 1400px) {
    .capacity-3 .bottom h2 {
        font-size: 36px;
    }
    .capacity-3 .bottom .box ul li .text h3 {
        font-size: 40px;
    }
    
    }
    
    
    @media screen and (max-width: 1200px) {
    .capacity-3 .bottom {
        padding: 20px 0;
    }
    .capacity-3 .bottom .box ul li .text h3 {
        font-size: 22px;
    }
    .capacity-3 .bottom .box ul li .text h6 {
        font-size: 18px;
    }
    .capacity-3 .bottom .box ul li .text h6 span {
        font-size: 24px;
    }
    }
    
    @media screen and (max-width: 700px) {
    .capacity-3 .bottom .box ul li {
        padding: 10px;
    }
    .capacity-3 .bottom .box ul {
        margin: -10px;
    }
    .capacity-3 .bottom .box ul .slick-arrow {
        width: 30px;
        height: 30px;
        background-size: 8px;
        display: none !important;
    }
    .capacity-3 .bottom .box ul li .img .box2 h6 {
        display: none;
    }
    .capacity-3 .bottom .box ul .slick-current+div li .img {
        left: 0 !important;
        margin-top: 10px;
    }
    .capacity-3 .bottom .box ul li .img .box2 {
        display: none;
    }
    
    }

    .capacity-4 {
    padding: 100px 0;
}
.capacity-4 .ui.container {
    display: flex;
        align-items: center;
        flex-wrap: wrap;
}
.capacity-4 .left {
    width: 50%;
}
.capacity-4 .right {
    width: 50%;
        padding-left: 50px;
}


.capacity-4 h2.toubu{
    font-size: 36px;
    font-weight: 700;
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 35px;

}

.capacity-4 .right p {
    line-height: 1.8;
    font-size: 16px;
    padding: 5px 0;
}


.capacity-4 .right p em {
font-weight: bold; 
}


.capacity-4 .left ul .slick-arrow {
    width: 60px;
    height: 60px;
    position: absolute;
    bottom: 0;
    right: 40%;
    z-index: 1;
    border: none;
    cursor: pointer;
    color: transparent;
    font-size: 0;
    }
.capacity-4 .left ul .slick-arrow.slick-prev {
          background: url('../images/inner-l.png') center center no-repeat;
          right: 50%;
}
.capacity-4 .left ul .slick-arrow.slick-next {
    background: url('../images/inner-r.png') center center no-repeat;
    }
.capacity-3 .top {
    text-align: center;
}


.capacity-3 .bottom .box ul li .neiro p {
    font-size: 17px;
    color: #222;
}


/*实力*/


#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-product .menu-content .right.last {
    border-left: 1px solid #ccc;
}

#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-product .menu-content .right ul li .box {
    border: 1px solid #eee;
}
#header>.nav>.menu .menu_c .menu-menu-container>.menu>.menu-item.menu-product .menu-content .right ul li h2 {
    -webkit-line-clamp: 2;
    overflow: hidden;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    margin-top: 10px;
}

.product-page .sider-box .left .series {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
        background: #f0f0f0;
    padding: 10px 30px;
}

.product-page .sider-box .left .series h2 {
    font-size: 24px;
    line-height: 1.8;
    margin-bottom: 15px;
    text-transform: capitalize;
    font-weight: bold;
}

.product-page .sider-box .left .series ul li {
    font-size: 16px;
    line-height: 30px;
    padding: 3px 0;
    margin-bottom: 6px;
}
.product-page .sider-box .left .series ul li:hover,
.product-page .sider-box .left .series ul li.active{
  background: var(--color);
  color: #fff;
  padding-left: 10px;
}
.product-page .sider-box .left .series ul li:last-child{
  margin-bottom: 0;
}
.product-page .sider-box .left {
    width: 20%;
        position: sticky;
    top: 130px;
}

.product-page .sider-box .right {
    width: 80%;
        padding-left: 5%;
}

.inner-pro-img .item:hover .op-imge{
      opacity: 0;
}


.product-page .sider-box .left form {
    font-size: 16px;
    height: 50px;
    background-color: #eee;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
        margin-bottom: 40px;
}


.product-page .sider-box .left form input {
    width: 100%;
    border: none;
    background-color: transparent;
    padding: 0 1.5em;
}


.product-page .sider-box .left form button {
    width: 4.375em;
    background-color: transparent;
    border: none;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}

.product-page .sider-box .left form button i {
    font-size: 20px;
}

.plp-product-list li .cate {
    text-align: center;
    line-height: 2;
}

.plp-product-list li .name {
    text-align: center;
}
.inner-page.prodet-page {
    padding: 10px 0 0px;
}
.prodet-1 .right .pdp-promotions .cpdd p {
    font-size: 16px;
    padding: 3px 0;
    line-height: 30px;

}
.pdp-share-row a {
    padding-right: 30px;
}

.collapse.normal .collapse-content {
    margin-bottom: 20px;
    padding-left: 25px;
}
.collapse.normal .collapse-content p {
    font-size: 16px;
    line-height: 30px;
}

.i-category .right li:hover .bag .imgs .img img {
    transform: scale3d(1.05, 1.05, 1);
    transition: all .5s ease;
}
.i-category .right li .bag .imgs .img img {
    transition: all .5s ease;
}


.inner-mbx {
  margin-top: 100px;
    padding: 20px 0;

}
.inner-mbx .mbx {
    font-size: 15px;
        color: #ababab;
}


.inner-mbx span {
    color: #000;
}

.prodet-1 .left .slick-slide img {
    background: #f7f5f4;
}
.prodet-1 .left .dt02 li {
    padding: 15px;
}

.prodet-1 .left .dt02 li img.wscnph {
    background: #f7f5f4;
}


.contact-page .left {
    width: 47% !important;
    padding-right: 5%;
}


/*.contact-page .left .box2:before {
    content: '';
    width: 50%;
    height: 70px;
    position: absolute;
    left: 0;
    bottom: 100%;
    background-color: inherit;
    -webkit-transform: skewX(-30deg);
    -moz-transform: skewX(-30deg);
    -ms-transform: skewX(-30deg);
    transform: skewX(-30deg);
    -webkit-transform-origin: 0 100%;
    -moz-transform-origin: 0 100%;
    -ms-transform-origin: 0 100%;
    transform-origin: 0 100%;
}*/
/*
.contact-page .left .box2:after {
    content: '';
    width: 50%;
    height: 70px;
    position: absolute;
    right: 0;
    bottom: 100%;
    background-color: inherit;
}*/

.contact-page .left .box2 span.h2 {
    font-size: 36px;
    font-weight: 700;
    color: #363636;
    line-height: 1.2;
    display: block;
    margin-bottom: 1.5em;
}

.contact-page .left .box2 .text {
    font-size: 16px;
    color: #7e7f81;
    line-height: 30px;
}

.contact-page .left .box2 .form {
    margin-top: 50px;
    font-size: 16px;
    line-height: 30px;
}

.contact-page .left .box2 .form ul li {
    font-size: 16px;
    color: #666;
}

.contact-page .left .box2 .form ul li label {
    display: block;
    margin: 0.5em 0 .5em;
    font-weight: 600;
}

.contact-page .left .box2 .form ul li label em {
    color: var(--color);
}

.contact-page .left .box2 .form ul li input,
.contact-page .left .box2 .form ul li textarea {
    display: block;
    width: 100%;
    border: none;
    background-color: transparent;
    border-bottom: 1px solid #aaabad;
    padding: .2em 0;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}

.contact-page .left .box2 .form ul li input:focus,
.contact-page .left .box2 .form ul li textarea:focus {
    border-color: var(--color);
}

.contact-page .left .box2 .form ul li textarea {
    height: 70px;
}

.contact-page .left .box2 .form ul li a.more {
    margin-top: 15px;
    border-radius: 15px;
    background-color: var(--color);
    position: relative;
    display: inline-block;
    color: #fff;
    padding: 10px 30px;
}

.contact-page .left .box2 .form ul li a.more:hover {
    background-color: #000;
}

.contact-page .right {
    width: 53% !important;

}

.contact-page .right span.h2 {
    font-size: 36px;
    line-height: 1.6;
    font-weight: 700;
    color: #363636;
    display: block;
}

.contact-page .right span.h2:after {
    content: '';
    width: 2em;
    height: .11111111em;
    background-color: #000;
    display: block;
    margin-top: .2em;
}

.contact-page .right .text {
    font-size: 16px;
    color: #7e7f81;
    line-height: 30px;
    margin: 1em 0 1.5em;
}

.contact-page .right .phone {
    font-size: 16px;
    line-height: 30px;
    color: #fff;
    padding: 1em;
    text-align: center;
    background-color: var(--color);
    position: relative;
    margin-bottom: 30px;
}

.contact-page .right span.h5 {
    font-size: 24px;
    font-weight: 700;
    color: #363636;
    display: block;
    line-height: 1.2;
    margin: 1.5em 0 .5em;
}

.contact-page .right span.h6 {
    display: block;
    font-size: 16px;
    color: #7e7f81;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-page .right .info {
    font-size: 16px;
    line-height: 30px;
    color: #7e7f81;
}

.contact-page .right .info li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: .5em;
}

.contact-page .right .info li i {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: .5em;
    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;
}

.contact-page .right .info li i {
    color: var(--color);
    text-align: center;
    font-size: 16px;
    width: 24px;
}

.contact-page .right iframe {
    margin-top: 25px;
    height: 320px;
    width: 100%;
}


@media screen and (max-width: 1600px) {
  .contact-page .right {
      padding-top: 60px;
  }

  .contact-page {
      padding-bottom: 60px;
  }

  .contact-page .left .box2 span.h2,
  .contact-page .right span.h2 {
      font-size: 28px;
  }

  .contact-page .right span.h5 {
      font-size: 20px;
  }

  .contact-page .right span.h6 {
      font-size: 14px;
  }
}

@media screen and (max-width: 1250px) {

    .contact-page .left .box2:after,
    .contact-page .left .box2:before {
        height: 10px;
    }

    .contact-page .right .phone {
        font-size: 14px;
    }

    .contact-page .right .info {
        font-size: 14px;
        line-height: 2;
    }

    .contact-page .right span.h5 {
        font-size: 18px;
    }

    .contact-page .right iframe {
        height: 280px;
    }

    .contact-page .left .box2 span.h2,
    .contact-page .right span.h2 {
        font-size: 24px;
    }

}

@media screen and (max-width: 1000px) {
  .contact-page .left {
      width: 100% !important;
      padding-right: 0;
  }

  .contact-page .right {
      width: 100% !important;
      padding-left: 0;
  }

  .contact-page .left .box2 {
      padding: 20px 15px;
  }

  .contact-page .left .box2 .form {
      margin-top: 20px;
  }
}

@media screen and (max-width: 500px) {
  .contact-page .left .box2 span.h2,
  .contact-page .right span.h2 {
        font-size: 20px;
    }
}




.about-5 {
  margin-top: 120px;
  padding-bottom: 120px;
  overflow: hidden;
}

.about-5 .left {
  width: 46%;
  z-index: 10;
  right: 0;
  position: absolute;
  top: 18px;
}

.about-5 .right {
  padding-right: 50%;
}

.about-5 .right .topic {
  margin-bottom: 5vw;
  position: relative;
  padding: 50px 0;
  height: 150px;
  z-index: 8;
  overflow: hidden;
}

.about-5 .right .topic ._num {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  pointer-events: none;
  width: 100%;
  left: 0;
  font-size: 150px;
  opacity: 0;
  z-index: 8;
  color: #d70c18;
}

.about-5 .right .topic ._num.on {
    opacity: 1;
}

.about-5 .loop {
  position: relative;
  height: 120px;
  margin-top: 100px;
}

.about-5 .loop .list {
  position: relative;
  z-index: 10;
  height: 100%;
}
.about-5 .loop .t-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 1px;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.1);
}

.about-5 .loop .list ul {
  height: 100%;
}

.about-5 .loop .list ul .slick-list {
  height: 100%;
}

.about-5 .loop .list ul .slick-track {
  height: 100%;
  justify-content: flex-start;
  display: flex;
  align-items: center;
}

.about-5 .loop .list ul .slick-slide {
  height: auto;
}

.about-5 .loop .list ul .slick-current li .msg,
.about-5 .loop .list li:hover .msg {
  color: #d70c18;
}

.about-5 .loop .list ul .slick-current li .dot,
.about-5 .loop .list li:hover .dot {
    background-color: #fff;
}
.about-5 .loop .list ul .slick-current li .dot:before,
.about-5 .loop .list li:hover .dot:before {
    opacity: 1;
}
.about-5 .loop .list ul .slick-current li .dot:after,
.about-5 .loop .list li:hover .dot:after {
    background-color: #fff;
}
.about-5 .loop .list li {
  text-align: center;
  position: relative;
  cursor: pointer;
}
.about-5 .loop .list li .msg {
  left: 0;
  top: 100%;
  display: inline-block;
  width: 100px;
  text-align: center;
  height: 40px;
  line-height: 40px;
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
.about-5 .loop .list li .dot {
  position: relative;
  display: block;
  line-height: 40px;
  height: 40px;
  width: 50px;
  margin: auto;
  margin-bottom: 18px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
.about-5 .loop .list li .dot:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -3px;
  margin: 5px auto;
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  line-height: 15px;
  text-align: center;
  background-color: #d70c18;
  opacity: 0;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
.about-5 .loop .list li .dot:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  margin: 5px auto;
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  line-height: 9px;
  text-align: center;
  background-color: #c1c1c1;
}
.about-5 .loop .pager .f-prev {
  left: -6%;
  z-index: 10;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  pointer-events: auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  line-height: 42px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background-color: #fff;
  text-align: center;
  font-size: 18px;
  line-height: 39px;
  text-indent: -4px;
  cursor: pointer;
  color: #888;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
.about-5 .loop .pager .f-prev:hover {
    color: #fff;
    background-color: #000;
}
.about-5 .loop .pager .f-next {
  position: absolute;
  right: -6%;
  z-index: 10;
  top: 0;
  bottom: 0;
  margin: auto;
  pointer-events: auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  line-height: 42px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background-color: #fff;
  text-align: center;
  font-size: 18px;
  line-height: 39px;
  text-indent: 3px;
  cursor: pointer;
  color: #888;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
.about-5 .loop .pager .f-next:hover {
    color: #fff;
    background-color: #000;
}
.prodet-desc{
  padding: 60px 0 30px;
}
.prodet-desc .option{
  width: auto;
  border-radius: 25px;
}
.prodet-desc .option span{
  font-size: 16px;
  line-height: 1.8;
  padding: 12px 20px;
  background: #eee;
  display: inline-block;
  margin-right: -2px;
  cursor: pointer;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.prodet-desc .option span:first-child{
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px; 
}
.prodet-desc .option span:last-child{
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px; 
}
.prodet-desc .option span:hover,
.prodet-desc .option span.active{
  background: var(--color);
  color: #fff;
}
.prodet-desc .ret{
  margin-top: 30px;
  font-size: 16px;
  line-height: 30px;
}
.prodet-desc .ret table{
  border: 0;
}
.prodet-desc .ret table td{
    border: 0;
    padding: 20px 12px;
}
.prodet-desc .ret table tr:nth-child(odd){
  background: #eee;
}
.prodet-desc .ret table tr:nth-child(1){
  background: var(--color);
  color: #fff;
}
.prodet-desc .ret table tr:nth-child(even){
  background: #fff;
}
.prodet-desc .ret table td:nth-child(1){
  color: var(--color);
  text-decoration: underline;
}
.prodet-con{
  font-size: 16px;
  line-height: 1.8;
}
.prodet-con table{
  border: 0;
}
.prodet-con table td{
  border: 0;
  width: 100px !important;
  padding: 7px 12px;
}
.prodet-con table tr:nth-child(odd){
  background: #eee;
}
.prodet-con table tr:nth-child(1){
  background: var(--color);
  color: #fff;
}
.prodet-con table tr:nth-child(even){
  background: #fff;
}

/*设计*/
.inner-banner .ui.container {
    text-align: left;
}
.inner-page.prodet-page .prodet-1 {
    padding: 80px 0 40px;
}
.contact-page .left .box2 .info span {
    font-size: 18px;
    color: #666;
        text-transform: capitalize;
}
.contact-page .left .box2 .info h2 {
    font-size: 32px;
    text-transform: capitalize;
    font-weight: bold;
        margin-bottom: 30px;
}
.contact-page .left .box2 .info ul li {
    font-size: 17px;
        margin-bottom: 15px;
            display: flex;

}
.contact-page .left .box2 .info ul li i {
     background: var(--color);
    height: 50px;
    width: 50px !important;
    font-size: 22px;
    text-align: center;
    line-height: 50px;
    color: #fff;
    border-radius: 5px;
}

.contact-page .left .box2 .info ul li .nel {
      padding-left: 25px;
    width: 90%;
}
.contact-page .left .box2 .info ul li .nel em {
    color: #888;
    text-transform: capitalize;
}

.contact-page .left .box2 .form ul li:nth-child(1), .contact-page .left .box2 .form ul li:nth-child(2) {
    width: 50%;
    float: left;
    margin-bottom: 10px;
}
.contact-page.inner-page .box {
    padding: 100px 0;
}


.history-page {
    padding: 110px 0;

}

.history-page .historySideBar .historySideLeft {
    width: 32%;
    padding: 0 8% 0 0;
        position: sticky;
    top: 120px;
}

.history-page .historySideBar .historySideLeft span.h3 {
    font-size: 30px;
    padding: 1.83333333em 15%;
    display: block;
    background: var(--color);
    background-size: cover;
    line-height: 1.2;
    color: #fff;
    position: relative
}

/*.history-page .historySideBar .historySideLeft span.h3:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    right: 100%;
    top: 0;
    background: url(../images/historySideLeft-3.jpg) center center no-repeat;
    background-size: cover
}*/

.history-page .historySideBar .historySideLeft span.h3:after {
    content: '';
    width: 1.66666667em;
    height: .13333333em;
    display: block;
    margin-top: .5em;
    background-color: #fff
}

.history-page .historySideBar .historySideLeft .img {
    padding: 10%;
    height: 480px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    background: url(../images/historySideLeft-2.jpg) center center no-repeat;
    background-size: cover;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-content: flex-end;
    -ms-flex-line-pack: end;
    align-content: flex-end;
    color: #fff
}

.history-page .historySideBar .historySideLeft .img span.h6 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    display: block
}

.history-page .historySideBar .historySideLeft .img .text {
    font-size: 16px;
    line-height: 30px;
    margin-top: .5em
}

.history-page .historySideBar .historySideRight {
    width: 68%
    
}

.history-page .historySideBar .historySideRight .list {
    position: relative
}

.history-page .historySideBar .historySideRight .list ul li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex
}

.history-page .historySideBar .historySideRight .list ul li time {
    font-size: 24px;
    color: var(--color);
    line-height: 1.2;
}

.history-page .historySideBar .historySideRight .list ul li .slide {
    padding-left: 30px;
    margin-left: 30px;
    padding-bottom: 30px;
    position: relative
}

.history-page .historySideBar .historySideRight .list ul li .slide:before {
    content: '';
    width: 1px;
    height: 140%;
    position: absolute;
    left: 0;
    top: -20%;
    background: #e5e5e5
}

.history-page .historySideBar .historySideRight .list ul li .slide:after {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 100%;
    border: 3px solid #e5e5e5;
    display: block;
    position: absolute;
    left: -7px;
    top: 5px;
    background: #fff;
    z-index: 1
}

.history-page .historySideBar .historySideRight .list ul li .slide .text {
    font-size: 16px;
    line-height: 30px;
    color: #7e7f81;
    padding-left: 2em;
    padding-bottom: 20px;
    position: relative
}

.history-page .historySideBar .historySideRight .list ul li .slide .text i.fa {
    position: absolute;
    left: 0;
    top: 3px;
    color: #202778;
    font-size: 120%
}

.about-12 .box .right h2 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.5;
    color: #000;
        margin-bottom: 30px;
}
.about-12 .box .right p {
    font-size: 16px;
    line-height: 30px;
    padding: 5px 0;
}
.about-12 .box .right {
    padding-left: 60px;
}

.about-12 .box .left {
    padding-right: 40px;
}
.about-12 .box {
    display: flex;
    align-items: center;
}
.about-12 .box .left img {
    width: 100%;
    object-fit: cover;
    height: 500px;
}
.about-12 {
    margin-bottom: 100px;
}



.about-page .about-14 {
  padding: 80px 0 80px;
  background: linear-gradient(#f2f2f2 63%,#fff 50%);
  background-size: cover;
  color: white;
  text-align: center;
  position: relative;
  margin-bottom: 1%;
}

.about-page .about-14 span.h2 {
    font-size: 36px;
    text-transform: capitalize;
    line-height: 1.2;
    display: block;
    color: #000;
}
.about-page .about-14 .text {
  font-size: 16px;
  margin-top: 1em;
  display: block;
      color: #000;
}
.about-page .about-14 .text:after {
  content: '';
  width: 2em;
  height: 0.25em;
  background: #000;
  display: block;
  margin: 1em auto 0;
}
.about-page .about-14 .list {
  margin-top: 60px;
}
.about-page .about-14 .list ul li {
  padding: 0 30px;
}
.about-page .about-14 .list ul li a {
  display: block;
}
.about-page .about-14 .list ul li a img {
  display: block;
  width: 100%;
}

@media screen and (max-width: 1250px) {
  .about-page .about-14 span.h2 {
    font-size: 28px;
  }
  .about-page .about-14 .text {
    font-size: 14px;
  }
  .about-page .about-14 .text:after {
    margin-top: .5em;
  }
  .about-page .about-14 .list ul li {
    padding: 0 10px;
  }
  .about-page .about-14 .list ul {
    margin: 0 -10px;
  }
  }

  @media screen and (max-width: 1000px) {
  .about-page .about-14 .list {
    margin-top: 30px;
  }
      }


      @media screen and (max-width: 700px) {
          .about-page .about-14 span.h2 {
    font-size: 24px;
  }
           }
           .about-page .slick-arrow{
             position: absolute;
             width: 57px;
             height: 59px;
             bottom: 0;
             z-index: 1;
             border: 0;
           }
.about-page .slick-arrow.slick-prev {
    left: 45%;
    background-image: url(../images/inner-l.png);
}
.about-page .slick-arrow.slick-next {
    right: 45%;
    background-image: url(../images/inner-r.png);
}

.rd-1 ul li .box {
    display: flex;
    align-items: center;
}
.rd-1 ul li .box .left {
    width: 50%;
        padding: 0 50px;
}
.rd-1 ul li .box .right {
    width: 50%;
}
.rd-1 ul li .box .right img {
    width: 100%;
}
.rd-1 ul li .box .left h2 {
    font-size: 28px;
    font-weight: bold;
        margin-bottom: 20px;
}
.rd-1 ul li .box .left p {
    font-size: 17px;
}
.rd-1 ul li:nth-child(even) .box {
    flex-direction: row-reverse;
}
.rd-1 .top {
    text-align: center;
    margin-bottom: 30px;
}
.rd-1 .top h3,
.rd-2 .top h3,
.rd-3 .top h3,
.rd-5 .container .title_c .left .tips h3
 {
    font-size: 36px;
    line-height: 1.6;
    text-transform: capitalize;
    font-weight: bold;
        color: #000;
}
.rd-1 .top p,
.rd-2 .top p,
.rd-3 .top p,
.slide-6-2 .right p,
.slide-6-3 .right p,
.rd-5 .container .title_c .left .tips p {
    font-size: 16px;
    line-height: 30px;
    color: #000;
}

.rd-2 .top p{
      line-height: 1.8;
    padding: 5px 0;
}
.rd-2 .top{
  margin-bottom: 30px
}
.rd-2 .bottom ul li {
    padding: 5px 10px;
}

.rd-2 .bottom ul {
    margin: 0 -10px;
}
.inner-page.rd-page {
    padding: 100px 0;
}
.rd-3 .prodet-desc {
    padding: 30px 0 30px;
}

.slide-2 .bottom{

    }
.slide-2 .bottom h2 {
    margin-top: 25px;
    color: #000;
}
    .slide-2 .bottom .box{
    padding: 0 16%;
    }
    .slide-2 .bottom .box ul {
    margin: -50px;
    }
    .slide-2 .bottom .box ul li {
    padding: 50px;
    }
    .slide-2 .bottom .box ul li .text{
    vertical-align: middle;
    padding-right: 3%;
    text-align: left;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    opacity: 1;
    }
    .slide-2 .bottom .box ul li .text h6 {
    font-size: 22px;
    color: rgba(0,0,0,.5);
    }
    .slide-2 .bottom .box ul li .text h6 span {
    font-weight: bold;
    font-size: 36px;
    color: #000;
    vertical-align: top;
    line-height: 1.4;
    }
    .slide-2 .bottom .box ul li .text h3 {
    font-size: 32px;
    font-weight: bold;
    margin-top: 40px;
    line-height: 1.2;
    color: #000;
    word-break: break-word;
    margin-bottom: 10px;
    }
    .slide-2 .bottom .box ul li .text p {
    font-size: 17px;
    color: #000;
}
    .slide-2 .bottom .box ul li .img {
    position: relative;
    text-align: left;
    vertical-align: middle;
    left: 0;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    }
    .slide-2 .bottom .box ul li .img img {
    width: 100%;
    }
    .slide-2 .bottom .box ul li .img .box2 {
    height: 80%;
    top: 10%;
    width: 30%;
    left: -15%;
    background: var(--color);
    padding: 10px;
    position: absolute;
    opacity: 0;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    }
    .slide-2 .bottom .box ul li .img .box2 span {
    font-size: 22px;
    font-weight: bold;
    }
    .slide-2 .bottom .box ul li .img .box2 h6 {
    font-size: 12px;
    line-height: 1.2;
    position: absolute;
    padding: inherit;
    width: 100%;
    bottom: 0;
    left: 0;
    }
    .slide-2 .bottom{
    overflow: hidden;
    margin: 50px 0;
    }
    .slide-2 .bottom .box ul .slick-list {
    overflow: unset;
    }
    .slide-2 .bottom .box ul .slick-current+div li .text{
    opacity: 0;
    }
    .slide-2 .bottom .box ul .slick-current+div li .img{
    left: -45%;
    }
    .slide-2 .bottom .box ul .slick-current+div li .img .box2 {
    opacity: 1;
    }
    .slide-2 .bottom .box ul .slick-arrow {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 50%;
    margin-top: -30px;
    left: 0;
    margin-left: -80px;
    z-index: 1;
    background: url('../images/inner-l.png') center center no-repeat;
 
    border: none;
    cursor: pointer;
    cursor: hand;
    color: transparent;
    font-size: 0;
    }
    .slide-2 .bottom .box ul .slick-arrow.slick-next {
    margin-top: 40px;
    transform: rotate(180deg);
    }
    
    @media screen and (max-width: 1400px) {
    .slide-2 .bottom h2 {
        font-size: 36px;
    }
    .slide-2 .bottom .box ul li .text h3 {
        font-size: 40px;
    }
    
    }
    
    
    @media screen and (max-width: 1200px) {
    .slide-2 .bottom {
        padding: 20px 0;
    }
    .slide-2 .bottom .box ul li .text h3 {
        font-size: 22px;
    }
    .slide-2 .bottom .box ul li .text h6 {
        font-size: 18px;
    }
    .slide-2 .bottom .box ul li .text h6 span {
        font-size: 24px;
    }
    }
    
    @media screen and (max-width: 700px) {
    .slide-2 .bottom .box ul li {
        padding: 10px;
    }
    .slide-2 .bottom .box ul {
        margin: -10px;
    }
    .slide-2 .bottom .box ul .slick-arrow {
        width: 30px;
        height: 30px;
        background-size: 8px;
        display: none !important;
    }
    .slide-2 .bottom .box ul li .img .box2 h6 {
        display: none;
    }
    .slide-2 .bottom .box ul .slick-current+div li .img {
        left: 0 !important;
        margin-top: 10px;
    }
    .slide-2 .bottom .box ul li .img .box2 {
        display: none;
    }
    
    }


.slide-3 .bottom .right h2,
.slide-4 .bottom .right h2,
.slide-5 .bottom .right h2 {
    font-size: 24px;
    font-weight: bold;
}
.slide-3 .bottom .right p,
.slide-4 .bottom .right p,
.slide-5 .bottom .right p,
.slide-6 .right p {
    font-size: 17px;
    line-height: 1.8;
    padding: 5px 0;
}
.slide-3 .bottom .left,
.slide-4 .bottom .left,
.slide-5 .bottom .left,
.slide-6-1 .top .left {
    padding-right: 50px;
        width: 50% !important;
}

.slide-3 .bottom .right,
.slide-5 .right,
.slide-6-1 .right {
    width: 50% !important;
    padding-left: 0 !important;
}

.slide-3 .top,
.slide-4 .top,
.slide-5 .top {
    margin-bottom: 30px;
}
.slide-4 .bottom .right h1 {
    font-size: 17px;
    color: var(--color);
    margin-top: 15px;
}
.slide-4 .bottom .right {
    height: 460px;
    overflow: overlay;
        width: 50%;
            padding-left: 0;
}


.slide-6-1 .top .left img {
    width: 100%;
  
}

.slide-6-1 .top .right h2,
.slide-6-2 .right h2,
.slide-6-3 .right h2 {
    font-size: 24px;
    text-transform: capitalize;
    font-weight: bold;
}
.slide-6-1 .top,
.slide-6-1 .main{
    margin-bottom: 50px;
}
.slide-6-1 .bottom .right {
    width: 70% !important;
}
.slide-6-1 .bottom .left {
    width: 30%;
}

.slide-6-1 .bottom {
    display: flex;
        align-items: center;
            margin-bottom: 40px;
}
.slide-6-1 .bottom .right ul li img {
    width: 100%;
}
.slide-6-1 .main ul li img {
    width: 100%;
}
.slide-6-1 .main ul li,
.slide-6-1 .bottom .right ul li {
    padding: 15px;
}
.slide-6-1 .main ul,
.slide-6-1 .bottom .right ul {
    margin: 0 -15px;
}
.rd-3 .prodet-desc span {
       padding: 10px 30px;
}




.rd-5 {
    overflow: hidden;
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
 
  }
  .rd-5 .container .title_c {
    position: relative;
    z-index: 2;
  }

  .rd-5 .container .title_c .left .tips .sub1 {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #d9b765;
    position: absolute;
    top: 5px;
    left: 0;
  }
  .rd-5 .container .title_c .left .tips_title {
    margin-top: 10px;
  }
  .rd-5 .container .title_c .btnC{
    margin: 10px 0 0 auto;
  }
  .rd-5 .container .title_c .btnC .btn {
    color: #d9b765;
    border: 1px solid #d9b765;
    width: 50px;
    height: 50px;
    cursor: pointer;
    font-size: 40px;
  }
  .rd-5 .container .title_c .btnC .btn:hover{
    background: #d9b765;
    color: #fff;
  }
  .rd-5 .container .title_c .btnC .next{
    margin-left: 10px;
  }
  .rd-5 .container .title_c .more {
    margin: 10px 0 0 auto;
    color: #d9b765;
  }
  .rd-5 .container .title_c .more .more_sub {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #d9b765;
    font-size: 20px;
    margin-right: 18px;
    color: #fff;
  }
  .rd-5 .container .title_c .more:hover {
    color: #fff;
  }
  .rd-5 .container .title_c .more:hover .more_sub {
    background-color: #fff;
    color: #d9b765;
  }
  .rd-5 .container .title_c .sub_2 {
    position: absolute;
    width: 6px;
    height: 6px;
    top: 90px;
    left: 50%;
    background-color: #d9b765;
    border-radius: 50%;
  }
  .rd-5 .container .title_c .sub_3 {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 0;
    left: 0;
    border-radius: 50%;
    border: 2px solid #d9b765;
    top: 80px;
    left: 60%;
  }
  .rd-5 .container .content {
    margin-top: 30px;
  }
  .rd-5 .container .content ul {
    margin: 0 -13px;
  }

  .rd-5 .container .content ul li .box {
    position: relative;
    z-index: 2;
    padding: 20px 20px;
    /*border: 1px solid #898989;*/
        background: #f0f0f0;
  }
  .rd-5 .container .content ul li .box .img {
    height: 70px;
    background-position: left center;
  }
  .rd-5 .container .content ul li .box .title {
    margin-top: 20px;
    font-weight: bold;
        color: #000;
  }
  .rd-5 .container .content ul li .box .line {
    height: 1px;
    background-color: #5a5a5a;
    margin: 16px 0;
  }
  .rd-5 .container .content ul li .box .des {
color: #000;
    height: 100px;
    /*overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    min-height: 150px;*/
  }
  .rd-5 .container .content ul li .box .more {
    margin-top: 14px;
    color: #d1d1d1;
    line-height: 1;
  }
  .rd-5 .container .content ul li .box .more .text {
    border-bottom: 1px solid #d1d1d1;
  }
  .rd-5 .container .content ul li .box .more .sub {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-left: 10px;
    border: 1px solid #fff;
  }
  .rd-5 .container .content ul li .box .more:hover .text {
    color: #d9b765;
    border-bottom: 1px solid #d9b765;
  }
  .rd-5 .container .content ul li .box .more:hover .sub {
    border: 1px solid #d9b765;
  }
  .rd-5 .container .content ul .li2 {
    margin-top: 40px;
  }
  .rd-5 .container .content ul .li3 {
    margin-top: 80px;
  }
  .rd-5 .container .content ul .li4 {
    margin-top: 120px;
  }


  .rd-5 .container .title_c .more {
    margin-left: 0;
  }

  .rd-5 .container .content ul .li4,
  .rd-5 .container .content ul .li3,
  .rd-5 .container .content ul .li2 {
    margin-top: 20px;
  }

  .rd-5 .container .content ul li:hover .box{
    background: rgba(0,0,0,.5);
        transition: all .5s ease;
}
.rd-5 .container .content ul li .box{
        transition: all .5s ease;
}
.rd-5 .container .content ul:nth-child(2) {
    justify-content: center;
}
.rd-5 .container .content ul li {
    padding: 10px;
}


h3.desc-h3{
    font-size: 36px;
    line-height: 1.6;
    text-transform: capitalize;
    font-weight: 700;
    color: #000;
}
p.desc-p{
    font-size: 17px;
    color: #000;
}
.rd-6 .right .bottom ul li {
    margin-bottom: 20px;
}
.rd-6 .right .bottom ul li .box {
    display: flex;
}
.rd-6 .right .bottom ul li .box .left {
     background: var(--color);
    width: 60px !important;
    height: 60px;
    line-height: 60px;
    padding: 10px;
        display: inline-block;
}
.rd-6 .right .bottom ul li .box .right {
    width: 100% !important;
    padding-left: 20px !important;
}
.rd-6 .right .bottom ul li .box .right h2 {
    font-size: 18px;
    font-weight: bold;
}

.rd-6 .right .bottom ul li .box .right p {
    font-size: 17px;
}
.rd-6 .right .top {
    margin-bottom: 30px;
}

.rd-6 .left {
    padding-right: 20px;
    width: 50% !important;
        display: none;
}
.rd-6 .right {
    width: 100% !important;
    padding-left: 20px !important;
}
.rd-7 .top {
    margin-bottom: 40px;
}
.rd-7 .bottom h3.desc-h3 {
    margin-bottom: 15px;
}
.rd-7 .bottom ul li span {
    text-transform: capitalize;
    font-size: 17px;
}

.rd-7 .bottom ul li img {
    margin-bottom: 20px;
}
.rd-8 .top {
    margin-bottom: 25px;
}
.rd-8 .bottom ul {
    margin: 0 -15px;
}

.rd-8 .bottom ul li {
    padding: 15px;
}
.rd-1 .right {
    padding-left: 0 !important;
}

.slide-6-2 .left,
.slide-6-3 .left {
    width: 50% !important;
}

.slide-6-2 .right,
.slide-6-3 .right  {
    width: 50% !important;
}

.rd-5 .title_c .left {
    width: 100%;
}
.rd-7 .bottom ul {
    margin: 0 -10px;
        text-align: center;
}

.rd-7 .bottom ul li {
    padding: 10px;
}
h2.desc-h2 {
    font-size: 20px;
    line-height: 1.8;
    font-weight: bold;
        margin-bottom: 10px;
            text-transform: capitalize;
}
p.desc-xp {
    font-size: 16px;
        line-height: 30px;
}
.facilities-1 .box .left ul li {
    margin-bottom: 30px;
        list-style: circle;
}
.facilities-1 .box .left h3.desc-h3 {
    margin-bottom: 40px;
}
.facilities-1 {
  padding: 80px 0; 
}


.about-page .about-2 {
  padding: 80px 0;
  background-color: #f8f7f7;
}
.about-page .about-2 .flex {
  -webkit-box-align: flex-start;
  -webkit-align-items: flex-start;
  -moz-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
}
.about-page .about-2 .left span.h2 {
  margin-bottom: 1em;
}
.about-page .about-2 .left .text {
  max-width: none;
  line-height: 2.22222222;
}
.about-page .about-2 .right {
  margin: 0 auto;
  width: 30%;
}
.about-page .about-2 .right .info {
  font-size: 18px;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background-color: white;
  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
  -moz-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -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;
  padding: 6% 10%;
}
.about-page .about-2 .right .info i.iconfont {
  color: var(--color);
  margin-right: 1.5em;
  border-radius: 100%;
  flex-shrink: 0;
}
.about-page .about-2 .options .right .info i.iconfont {
  /*color: transparent;*/
  color: var(--color);
  /*border: 1px solid var(--color);*/
}
.about-page .about-2 .options .right .info p.active i.iconfont {
  color: #fff;
  border-color: transparent;
}
.about-page .about-3 {
  padding: 100px 0;
}
.about-page .about-3 span.h2 {
  margin-bottom: 1em;
}
.about-page .about-3 .list {
  position: relative;
}
.about-page .about-3 .list ul {
  margin: 0 -35px;
}
.about-page .about-3 .list ul li {
  padding: 0 35px;
}
.about-page .about-3 .list ul li a.img-box {
  display: block;
}
.about-page .about-3 .list ul li span {
  font-size: 18px;
  color: #222;
  display: block;
  margin-top: 1.2em;
  text-align: center;
}
.about-page .about-3 .list .btn div {
  position: absolute;
  top: 45%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.7);
  margin: 0;
}
.about-page .about-3 .list .btn div.prev {
  left: 0;
}
.about-page .about-3 .list .btn div.next {
  right: 0;
}
.about-page .about-3 .list .btn div:hover {
  background-color: var(--color);
}
.about-page .about-4 {
  padding: 100px 0;
  background-color: #f8f7f7;
}
.about-page .about-4 .left {
  width: 40%;
  padding-right: 3%;
}
.about-page .about-4 .left .text {
  font-size: 17px;
  margin-top: 1.5em;
}
.about-page .about-4 .left a.more {
  margin-top: 3.52941176em;
}
.about-page .about-4 .right {
  width: 60%;
}
.about-page .about-4 .right .list {
  padding-top: 25px;
  overflow: hidden;
}
.about-page .about-4 .right .list .slick-list {
  overflow: unset;
}
.about-page .about-4 .right ul {
  margin: -7px;
}
.about-page .about-4 .right ul li {
  padding: 7px;
}
.about-page .about-4 .right ul li img {
  width: 100%;
  position: relative;
  top: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.about-page .about-4 .right ul .slick-current li img {
  top: -25px;
}
.about-page .about-5 .box {
  position: relative;
  padding: 110px 0;
}
.about-page .about-5 .box .mask {
  position: absolute;
  top: 0;
  height: 100%;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.2%;
  z-index: -1;
}
.about-page .about-5 .box .mask i {
  width: 100%;
  border-left: 1px solid #f9f9f9;
  border-right: 1px solid #f9f9f9;
}
.about-page .about-5 span.h2 {
  margin-bottom: 1em;
}
.about-page .about-5 .list {
  padding-top: 130px;
  overflow: hidden;
  padding-left: 1px;
  padding-right: 3px;
}
.about-page .about-5 .list .slick-list {
  overflow: unset;
}
.about-page .about-5 .list li a {
  height: 250px;
  border: 1px solid #f9f9f9;
  margin: 0 -1px;
  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;
  background-color: white;
  position: relative;
  top: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.about-page .about-5 .list li a img {
  max-height: 100%;
}
.about-page .about-5 .list .slick-current li a,
.about-page .about-5 .list .slick-current + div + div li a,
.about-page .about-5 .list .slick-current + div + div + div + div li a {
  top: -130px;
}

.about-page .about-2 .options .right .info p.active{
  background: var(--color);
  color: #fff;
}




    @media screen and (max-width: 1000px) {

  .about-page .about-2 .flex .left {
    width: 100%;
    padding-right: 0;
  }
  .about-page .about-2 .flex .right {
    width: 100%;
    padding-left: 0;
    margin-top: 30px;
  }
  .about-page .about-2 .flex {
    flex-wrap: wrap;
  }
  .facilities-page .about-2 .left .text {
    min-height: auto;
  }
  .about-page .about-2 .right .info {
    padding: 5%;
  }
    }


.facilities-page .about-2 .flex .left {
    width: 65%;
    padding-right: 140px;
}
.facilities-page .about-2 .flex .right {
    width: 35%;
}
.facilities-page .about-2 .flex .left span.h2 {
    margin-bottom: 0.5em;
}
.facilities-page .about-2 .flex .right p {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
        cursor: pointer;
            padding: 10px;
                line-height: 2;
                max-width: 100%;
                margin-bottom: 10px;
}
.facilities-page .about-2 .left .text {
      min-height: 280px;
}

.text {
    font-size: 17px;
    color: #222;
    line-height: 1.7;
}
.facilities-2 {
    background: url(../images/adbg.jpg) no-repeat center;
      padding: 100px 0 100px;
    background-size: cover;
    background-attachment: fixed;
}
.facilities-2 h3.desc-h3 {
    color: #fff;
    text-align: center;
    text-transform: capitalize;
        margin-bottom: 30px;
}
.facilities-2 p.desc-xp {
    color: #fff;
    text-align: center;
}

.facilities-2 a.play.play-btn {
    margin-top: 150px;
}
.facilities-3 .bottom {
    padding-top: 30px;
}
.facilities-3 .bottom ul {
    margin: 0 -20px;
}
.facilities-3 .bottom ul li {
    padding: 20px;
}
.facilities-3 .bottom ul li .box {
    background: #f0f0f0;
    padding: 30px;
}

.facilities-3 .bottom ul li .box .img {
    margin-bottom: 20px;
}
.facilities-3 .bottom ul li .box .con h2.desc-h2 {
    height: 60px;
}
.facilities-3 .bottom ul li .box .con p.desc-xp {
    height: 178px;
        overflow: overlay;
}
.facilities-3 {
    padding-top: 80px;
}



.facilities-4 .ui.container {
    display: flex;
}
.facilities-4 .left {
    width: 50%;
    padding-right: 30px;
}
.facilities-4 .right {
    width: 50%;
    padding-left: 30px;


}

.facilities-4 .right ul li .box .con h2.desc-h2 {
    font-size: 16px;
    font-weight: 400;
}
 
.facilities-4 .left .img img {
    width: 100%;
}
.facilities-4 .left .img {
    margin-top: 30px;
}
.facilities-4 .left p.desc-xp {
    padding: 5px 0;
}
.facilities-4 .right ul li {
    padding: 15px;
}
.facilities-4 .right ul {
    margin: -15px;
}
.facilities-4 .right ul li .box .img {
    margin-bottom: 20px;
}
.facilities-4 .right ul li .box .con {
    text-align: center;
}

.facilities-4 {
    margin-top: 80px;
    padding: 80px 0;
    background-color: #f8f7f7;
}

.facilities-5 .top .right {
margin-bottom: 20px;
}
.facilities-5 h3.desc-h3 {
    text-align: center;
    margin-bottom: 35px;
}
.facilities-5 {
    padding: 80px 0;
}
.facilities-5 .left img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.facilities-5 .bottom .main-01 {
    position: relative;
        padding-right: 20px;
}
.facilities-5 .bottom .main-01 h2.desc-h2 {
    position: absolute;
    bottom: 20px;
    left: 30px;
    color: #fff;
}
.facilities-5 .bottom .main-02 {
    padding-left: 20px;
}
.facilities-5 .bottom .main-02 li {
    padding: 15px 0;
}
.facilities-5 .bottom .main-02 ul li .box {
    display: flex;
        align-items: center;
}
.facilities-5 .bottom .main-02 ul li .box .img {
    width: 30%;
    padding-right: 15px;
}
.facilities-5 .bottom .main-02 ul li .box .con {
    width: 70%;
    padding-left: 20px;
}
.facilities-5 .top {
    margin-bottom: 80px;
}
.facilities-6 {
    background: url(../images/adbg.jpg) no-repeat center;
    padding: 160px 0 260px;
    position: relative;

}
.facilities-6 .top {
    position: absolute;
    background: var(--color);
    color: #fff;
    width: 50%;
    right: 0;
    padding: 60px;
}
.facilities-6 p.desc-xp {
    padding: 5px 0;
}
.facilities-7 .top{
  padding-top: 330px;
}
.facilities-7 .bottom{
  padding-top: 80px;
}
.facilities-7 .top h3.desc-h3,
.facilities-7 .bottom h3.desc-h3 {
    margin-bottom: 20px;
}
.facilities-7 .top ul,
.facilities-7 .bottom ul {
    margin: 0 -15px;
}
.facilities-7 .top ul li,
.facilities-7 .bottom ul li {
    padding: 15px;
}
.facilities-7 .top ul li .box .con,
.facilities-7 .bottom ul li .box .con {
    padding: 15px;
}
.facilities-7 {
    padding-bottom: 80px;
}
.why-us-page {
    padding: 100px 0;
}

.why-us-1 h3.desc-h3 {
    margin-bottom: 20px;
}

.why-us-1 h2.desc-h2 {
    margin-top: 20px;
}

.why-us-1 .main-01 h2.desc-h2 {
    margin-bottom: 50px;
}
.why-us-1 .main-01 h2.desc-h2 {
    margin-bottom: 50px;
}

.why-us-1 .main-02 .left {
    width: 50%;
}
.why-us-1 .main-02 .right {
    width: 50%;
    padding: 0 5%;
}
.why-us-1 .main-02 .grid-box {
    margin-bottom: 50px;
}
.why-us-1 .main-01 {
    margin-bottom: 100px;
}
.product-page .sider-box .left.mulu {
    width: 25%;
    padding-right: 3%;
            position: sticky;
    top: 130px;
}
.product-page .sider-box .right.mulu {
    width: 75%;
    padding-left: 2%;
    border-left: 1px solid #eee;
}
.why-us-2 .main-01 h3.desc-h3 {
    margin-bottom: 15px;
}
.why-us-2 .main-01 .img {
    margin-top: 30px;
        margin-bottom: 40px;
}
.why-us-2 .main-01 .img img {
    width: 100%;
    /*object-fit: cover;
    height: 400px;*/
}

.why-us-2 .main-02 h2.desc-h2 {
    margin-bottom: 30px;
}

.why-us-2 .main-02 ul li {
    display: table;
        margin-bottom: 25px;
}
.why-us-2 .main-02 ul li .left {
      font-size: 18px;
    font-weight: 700;
    text-align: center;
    position: relative;
    width: 140px;
    height: 140px;
    display: table-cell;
    vertical-align: middle;
    border-radius: 50%;
    border: 12px solid #f0f0f0;
        top: 0;
}
.why-us-2 .main-02 ul li .left::after{
    content: '';
    position: absolute;
    top: -12px;
    right: -15px;
    width: 140px;
    height: 140px;
    border: 13px solid orange;
    border-radius: 50%;
    clip-path: polygon(50% 0%,100% 0%,100% 3600%,50% 50%);
    -webkit-clip-path: polygon(50% 0%,100% 0%,100% 3600%,50% 50%);
}
.why-us-2 .main-02 ul li .right {
    width: auto;
    display: table-cell;
    vertical-align: middle;
}

.why-us-2 .main-02 ul li .right .box {
    font-size: 17px;
    border-left: 15px solid #eee;
    padding: 20px 0;
    padding-left: 15px;
}
.why-us-2 .main-02 {
    margin-bottom: 80px;
}
.why-us-2 .main-03 .left {
    width: 40%;
}
.why-us-2 .main-03 .right {
    width: 60%;
    padding-left: 3%;
}

.why-us-2 .main-03 .right .top {
    margin-bottom: 20px;
}

.why-us-2 .main-03 .right .bottom img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.why-us-2 .main-03 .left img {
    width: 100%;
    object-fit: cover;
    height: 620px;
}

.why-us-2 .main-04 {
    margin: 80px 0 0 0;
}

.why-us-2 .main-04 .top {
    margin-bottom: 25px;
}
.why-us-2 .main-04 .bottom img {
    width: 100%;

    object-fit: cover;
}



.why-us-3 .main-02 {
    padding-top: 80px;
}
.why-us-3 .main-02 .left-1 {
    width: 45%;
}

.why-us-3 .main-02 .right-1 {
    width: 55%;
        padding-left: 50px;
}
.why-us-3 .main-02 .right-1 .top {
    margin-bottom: 15px;
}
.why-us-3 .main-02 .right-1 .bottom ul {
    margin-bottom: 16px;
}
.why-us-3 .main-02 .right-1 .bottom ul li {
    font-size: 15px;
    line-height: 1.8;
    list-style: inside;
}
.why-us-3 .main-02 .left-1 img {
    width: 100%;
    height: 680px;
    object-fit: cover;
}
.why-us-3 .main-03 .left-1 {
    width: 20%;
}
.why-us-3 .main-03 .right-1 {
    width: 80%;
}
.why-us-3 .main-03 .right-1 .bottom ul li {
    padding: 20px;
}
.why-us-3 .main-03 .right-1 .bottom ul {
    margin: 0 -15px;
}
.why-us-3 .main-03 .left-1 h2.desc-h2:after {
    content: '';
    width: 40px;
    height: 5px;
    background-color: var(--color);
    display: block;
}
.why-us-3 .main-03 {
    padding-top: 85px;
}
.why-us-3 .main-04 {
    padding-top: 60px;
}
.why-us-3 .main-04 h2.desc-h2 {
    text-align: center;
    margin-bottom: 20px;
}

.why-us-3 .main-04 ul li {
    padding: 15px;
        text-align: center;
            font-size: 15px;
}
.why-us-3 .main-04 ul {
    margin: 0 -15px;
}
.why-us-3 .main-04 ul li img {
    margin-bottom: 20px;
}
.why-us-3 .main-05 .left-1 {
    padding-right: 25px;
}
.why-us-3 .main-05 .right-1 {
    padding-left: 25px;
}
.why-us-3 .main-05 .left-1 img {
     width: 100%;
    margin-bottom: 25px;
    object-fit: cover;
    height: 420px;
}
.why-us-3 .main-05 {
    padding-top: 80px;
}
.why-us-3 .main-05 .right-1 h3.desc-h3 {
    margin-bottom: 10px;
}

.why-us-3 .main-05 .right-1 li {
    margin-bottom: 15px;
        list-style: circle;
}
.why-us-3 .main-06 {
    padding-top: 80px;
}
.why-us-3 .main-06 .left-1 {
    padding-right: 20px;
}
.why-us-3 .main-06 .right-1 ul li {
    padding: 10px;
}
.why-us-3 .main-06 .right-1 ul {
    margin: 0 -10px;
}
.why-us-3 .main-06 .left-1 .img img {
    width: 100%;
    object-fit: cover;

}
.why-us-3 .main-06 .left-1 .img {
    margin-top: 15px;
        position: relative;
}
.why-us-3 .main-07 {
    padding-top: 80px;
}
.why-us-3 .main-07 .top {
    text-align: center;
        margin-bottom: 25px;
}
.why-us-3 .main-07 .bottom ul {
    margin: 0 -10px;
}
.why-us-3 .main-07 .bottom ul li {
    padding: 10px;
}
.why-us-3 .main-07 .bottom ul li .img {
    padding: 10px;
    background: #eee;
}
.why-us-3 .main-07 .bottom ul li .con {
    padding: 12px 20px;
    background: #eee;
        height: 195px;
}
.why-us-3 .main-08 {
    padding: 80px 0;
}
.why-us-3 .main-08 .left-1 {
    padding-right: 35px;
}
.why-us-3 .main-08 .right-1 img,
.why-us-3 .main-09 .left-1 img {
    width: 100%;
}
.why-us-3 .main-09 .right-1 {
    padding-left: 35px;
}
.why-us-3 .main-08,
.why-us-3 .main-09 {

      display: flex;
    align-items: center;
}
.gudu p.desc-xp strong {
    text-transform: capitalize;
}
.gudu {
    margin-top: 40px;
}
.slide-2 .bottom .xin-box {
    margin-top: 40px;
}
.slide-2 .bottom .xin-box ul {
    margin: 0 -10px;
}
.slide-2 .bottom .xin-box ul li {
    padding: 10px;
}
.slide-2 .bottom .xin-box ul li p {
    text-align: center;
    padding-top: 10px;
    text-transform: capitalize;
    font-size: 15px;
}
.slide-5 .main {
    margin-top: 70px;
    text-align: center;
}
.slide-5 .main ul li {
    padding: 8px;
}

.slide-5 .main ul {
    margin: 0 -8px;
}
.anzhuang h3.desc-h3 {
    margin-top: 80px;
    text-align: center;
        margin-bottom: 25px;
}


.facilities-page .about-2 .left .text ul li p.img.three a {
    padding: 10px;
    text-align: center;
    font-size: 17px;
    text-transform: capitalize;
}

.facilities-page .about-2 .left .text ul li p.img.three a img {
    margin-bottom: 10px;
}
.facilities-page .about-2 .left .text ul li p.img.three {
    margin: 0 -10px;
}
.facilities-page .about-2 .left .text ul li p.img.five a {
    padding: 5px;
    line-height: 1.2;
}
.facilities-page .about-2 .left .text ul li p.img.five {
    margin: 0 -5px;
    text-align: center;
}
.facilities-page .about-2 .left .text ul li p.img.five a span {
    font-size: 15px;
}
.facilities-page .about-2 .left .text ul li p.img.five a img {
    margin-bottom: 15px;
    margin-top: 25px;
}
.workshop ul li {
    padding: 20px;
}
.workshop {
    margin-top: 25px;
}
.why-us-3 .main-06 .left-1 .img p.xuanfu {
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 17px;
    color: #fff;
    width: 100%;
    background: rgba(0,0,0,.3);
    padding: 15px;
}
.why-us-3 .main-06 .right-1 ul li p {
    font-size: 17px;
    text-align: center;
    padding: 10px;
    background: #eee;
}
.why-us-3 .main-03 .right-1 .bottom {
    display: none;
}
.slide-6-2, .slide-6-3 {
    display: flex;
    align-items: center;
}

.slide-6-2 .right, .slide-6-3 .right {
    padding-right: 50px;
}

.facilities-1 .right .top {
    margin-bottom: 30px;
}
.plp-product-list ul li .inner-pro-img {
    margin-bottom: 20px;
}
.plp-product-list ul li .name {
    font-size: 16px;
    text-transform: capitalize;
    line-height: 30px;
}
.plp-product-list ul li:hover {
    background-color: #f5f5f5;
}
.product-page .sider-box .right .miaoshu p {
    font-size: 16px;
    line-height: 30px;
}
.prodet-2 .mt-60.mb-60.font-18.txt-center {
    text-transform: capitalize;
    font-size: 16px;
    line-height: 30px;
}

    @media screen and (max-width: 1780px) {
.rd-3 .prodet-desc span {
    padding: 10px 20px;
}

      }


    @media screen and (max-width: 1440px) {
.rd-3 .prodet-desc span {
    padding: 10px 15px;
    font-size: 15px;
}

      }
.rd-2 .top p strong {
    text-transform: capitalize;
}


/*设计-end*/

@media screen and (max-width: 1450px) {
  .product-page .sider-box .left .series{
    padding: 10px 15px;
  }
  .about-page .slick-arrow.slick-prev{
    left: 43%;
  }
  .about-page .slick-arrow.slick-next{
    right: 43%;
  }
  #banner .banner2 .text .desc .img,
  #banner .banner4 .ig .img{
    zoom: .7;
  }
  #banner .banner3 .img{
    margin-top: 30px;
  }
}
@media screen and (max-width: 1250px) {
  .inner-banner{
    margin-top: 0;
  }
  .product-page .sider-box .left{
    display: none;
  }
  .product-page .sider-box .right{
    width: 100%;
    padding: 0;
  }
  .history-page .historySideBar .historySideLeft{
    display: none;
  }
  .history-page .historySideBar .historySideRight{
    width: 100%;
  }
  .inner-page .sideBarBox .sideBarLeft{
    display: none;
  } 
  .inner-page .sideBarBox .slideBarRight,
  .inner-page .sideBarBox .right{
    width: 100%;
  }
   #banner .banner2 .text{
    top: 40%;
  }
  #banner .banner2 .text .desc .img{
    zoom: .3;
  }
  #banner .banner3 .text{
    top: 45%;
  }
  #banner .banner3 dd{
    font-size: 24px;
    margin-bottom: 15px;
  }
  #banner .banner3 .img{
    zoom: .4;
    margin-top: 20px;
  }
   #banner .banner4 .ig .img{
    margin-top: 20px;
    zoom: .3;
  }
  .product-page .sider-box .right.mulu{
    width: 100%;
    padding: 0;
  }
  .product-page .sider-box .left{
    position: initial;
  }
  .rd-1 ul li .box .left{
    display: block;
  }
}
@media screen and (max-width: 1000px) {
  .inner-banner{
    height: 400px;
  }
  .font-24 {
   font-size: 24px;
  }
  .plp-product-list li{
    padding: 30px 15px;
  }
  .prodet-1 .left{
    position: initial;
  }
  .about-12 .box .left{
    padding-right: 0;
  }
  .about-12 .box .left img{
    height: auto;
  }
  .about-12 .box .right{
    padding-left: 30px;
  }
  .about-page .slick-arrow{
    zoom: .8;
  }
  .about-page .slick-arrow.slick-prev{
    left: 42%;
  }
  .about-page .slick-arrow.slick-next{
    right: 42%;
  }
  .inner-page.rd-page,
  .contact-page.inner-page .box,
  .history-page{
    padding: 60px 0;
  }
  #banner .banner1 .text .con{
    font-size: 16px;
    margin-top: 20px;
  }
  .contact-page .left .box2{
    padding: 0;
  }
  .rd-1 ul li .box .left{
    padding: 0 20px;
  }
  .slide-2 .bottom .xin-box ul li{
    width: 20%;
  }
  .product-page .sider-box .right,
  .slide-3 .bottom .right, .slide-5 .right, .slide-6-1 .right{
    width: 100% !important;
  }
  .facilities-page .about-2 .flex .left{
    width: 100%;
    padding-right: 0;
  }
  .facilities-page .about-2 .flex .right{
    display: none;
  }
  .facilities-6 .top{
    width: 100%;
    padding: 30px 20px;
  }
  .facilities-3 .bottom ul{
    margin: 0 -10px;
  }
  .facilities-3 .bottom ul li{
    padding: 10px;
  }
  .facilities-3 .bottom ul li .box{
    padding: 20px 15px;
  }
  .facilities-3 .bottom ul li .box .con h2.desc-h2{
    height: 80px;
  }
  .why-us-2 .main-02 ul li .right{
    width: 80% !important;
  }
}
@media screen and (max-width: 700px) {
  .inner-banner{
    height: 300px;
  }
  .inner-banner span.h2{
    font-size: 30px;
  }
  .inner-banner .mbx{
    font-size: 16px;
  }
  .facilities-3,
  .facilities-2,
  .facilities-1,
  .facilities-4,
  .about-page .about-2,
  .inner-page.rd-page,
  .contact-page.inner-page .box,
  .newdet-page, .news-page .news-1, .gallery-page,
  .inner-page.prodet-page .prodet-1{
    padding: 30px 0;
  }
  .facilities-4{
    margin-top: 0;
  }
  .prodet-2 .mt-60.mb-60.font-18.txt-center{
    font-size: 24px;
  }
  .about-page .about-1{
    padding-bottom: 30px;
  }
  .about-12{
    margin-bottom: 30px;
  }
  .about-page .about-14{
    padding: 30px 0;
  }
   .about-12 .box{
    display: block;
  }
  .about-12 .box .left{
    padding-right: 0;
    width: 100%;
  }
  .about-12 .box .right{
    padding-left: 0;
    width: 100%;
  }
  .about-page .slick-arrow{
    zoom: .7;
  }
  .about-page .slick-arrow.slick-prev{
    left: 38%;
  }
  .about-page .slick-arrow.slick-next{
    right: 38%;
  }
  .history-page{
    padding: 30px 0;
  }
  #banner .swiper .swiper-wrapper .swiper-slide .box .text_cont .link{
    margin-top: 20px;
    zoom: .8;
  }
  #banner .banner2 .text .tit,
  #banner .banner1 .text .tit{
    font-size: 30px;
  }
  #banner .banner1 .text .con,
  #banner .banner2 .text .desc .img{
    display: none;
  }
  #banner .page .box .text_cont .numC .activeNum{
    font-size: 40px;
  }
  #banner .banner2 .icon{
    bottom: 52px;
  }
  .rd-1 ul li{
    margin-bottom: 15px;
  }
  .rd-1 ul li .box{
    display: block;
  }
  .rd-1 ul li .box .left{
    width: 100%;
    padding: 0 0 20px;
  }
  .rd-1 ul li .box .right{
    width: 100%;
  }
  .slide-2 .bottom .xin-box ul li{
    width: 33.3333%;
  }
  .facilities-4 .ui.container{
    display: block;
  }
  .facilities-4 .left{
    width: 100%;
    padding: 0;
  }
  .facilities-4 .right{
    width: 100%;
    padding: 20px 0 0;
  }
  .facilities-5 .left img{
    height: auto;
  }
  .facilities-5 .bottom .main-02 ul li .box{
    display: block;
  }
  .facilities-5 .bottom .main-02 ul li .box .img{
    width: 100%;
    padding: 0;
  }
  .facilities-5 .bottom .main-02 ul li .box .con{
    width: 100%;
    padding: 20px 0 0 0;
  }
  .facilities-6 .top{
    width: 100%;
    padding: 20px 15px;
  }
  .facilities-5 .bottom .main-02{
    padding-left: 0;
  }
  p.desc-xp{
    font-size: 14px;
  }
  .facilities-7 .bottom{
    padding-top: 30px;
  }
  .facilities-7{
    padding-bottom: 30px;
  }
  h3.desc-h3{
    font-size: 30px;
  }
  .why-us-2 .main-02 ul li{
    display: block;
  }
  .why-us-2 .main-02 ul li .right{
    width: 100% !important;
    display: block;
  }
  .why-us-3 .main-02 .left-1{
    width: 100%;
  }
  .why-us-3 .main-02 .left-1 img,
  .why-us-3 .main-05 .left-1 img{
    height: auto;
  }
  .why-us-3 .main-02 .right-1{
    width: 100%;
    padding: 0;
  }
  .why-us-3 .main-06,
  .why-us-3 .main-03{
    padding-top: 30px;
  }
  .why-us-3 .main-05 .left-1,
  .why-us-3 .main-03 .left-1,
  .why-us-3 .main-03 .right-1,
  .why-us-3 .main-05 .right-1,
  .why-us-3 .main-06 .left-1,
  .why-us-3 .main-06 .right-1,
  .why-us-3 .main-09 .left-1,
  .why-us-3 .main-09 .right-1{
    width: 100%;
    padding: 0;
  }
  .why-us-3 .main-08, .why-us-3 .main-09{
    display: block;
  }
}
@media screen and (max-width: 500px) {
  .about-page .about-1 .top .left span{
    font-size: 16px;
    line-height: 30px;
  }
  .about-page .about-1 .top .left span::before{
    top: 5px;
  }
  .about-page .about-1 .top .left .title,
  .about-12 .box .right h2{
    font-size: 30px;
  }
  #banner .banner4 .ig .tit,
  #banner .banner2 .text .tit,
  #banner .banner1 .text .tit{
    font-size: 24px;
  }
  #banner .banner2 .text .desc .img,
  #banner .banner1 .text .img{
    margin-top: 20px;
  }
  #banner .banner3 .text{
    top: 50%;
  }
  #banner .banner3 dd{
    font-size: 20px;
    margin-bottom: 15px;
  }
  #banner .banner2 .text .desc{
    zoom: .7;
  }
  #banner .banner2 .icon{
    bottom: 70px;
  }
  #banner .banner4 .ig .img,
  #banner .banner4 .icon,
  #banner .banner3 .img{
    display: none;
  }
  #banner .page .box .text_cont .numC .activeNum{
    font-size: 36px;
  }
  .contact-page .left .box2 .form ul li:nth-child(1), .contact-page .left .box2 .form ul li:nth-child(2){
    width: 100%;
  }
  .slide-2 .bottom .xin-box ul li{
    width: 50%;
  }
}
.font-20{
  line-height: 1.8;
}
.seoPublic .title{
  line-height: 1.6;
}
.seoPublic .Auxil-about .box .right .text,
.seoPublic .Auxil-news .list ul li .content p,
.seoPublic .Auxil-news .list ul li .content a.link{
  line-height: 30px;
}
.seoPublic .Auxil-about .box .right div.h3,
.seoPublic .Auxil-news .list ul li .content div.h6{
  line-height: 1.8;
}
.seoPublic .Auxil-news .list ul li .content time,
.font-14{
  line-height: 2;
}