body{
  overflow-x: hidden;
  background-color: #eee;
}
.layout{
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.header-box{
  width: 100%;
  position: relative;
}
.header{
  width: 100%;
  height: 100px;
  background-color: #fff;
  position: relative;
  top: 0;
  left: 0;
  z-index: 1000;
}
.indexs .header{
  background-color: transparent;
  position: fixed;
}
.header.fixed{
  background-color: #fff;
  filter: drop-shadow(0 1px 10px rgba(0, 0, 0, 0.06));
  position: fixed;
}
.header .layout{
  width: 100%;
  max-width: 100%;
}
.logo{
  float: left;
  margin-left: 30px;
  margin-top: 26px;
}
.logo a{
  display: flex;
  width: 84px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo img{
  max-width: 100%;
  max-height: 100%;
}
.language-box{
  float: right;
  margin-top: 40px;
  margin-right: 30px;
  position: relative;
}
.language-box .dropdown-toggle{
  font-size: 14px;
  color: #6f7070;
  display: block;
  padding-left: 22px;
  background-image: url(../images/lan_cn.jpg);
  background-position: 0 center;
  background-repeat: no-repeat;
}
.language-box .has-dropdown{
  width: 80px;
  position: absolute;
  left: 50%;
  top: 30px;
  margin-left: -40px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: .15s ease-out;
}
.language-box:hover .has-dropdown{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.language-box .has-dropdown::before{
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: -10px;
  z-index: 5;
  margin-left: -10px;
  border-bottom: 10px solid #fff;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}
.language-box .has-dropdown::after{
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: -12px;
  margin-left: -12px;
  border-bottom: 12px solid rgba(0, 0, 0, 0.1);
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
}
.language-box .has-dropdown dl{
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .1);
}
.language-box .has-dropdown a{
  display: block;
  padding: 5px 10px;
  text-align: center;
  font-size: 14px;
  color: #333;
}
.language-box .has-dropdown a:hover{
  background-color: #d32388;
  color: #fff;
}
.language-box .has-dropdown img{
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-right: 5px;
}
.search-btn{
  width: 20px;
  height: 20px;
  text-align: center;
  border-radius: 5px;
  float: right;
  margin-top: 17px;
  margin-right: 12px;
  font-size: 18px;
  display: none;
}
.search-box{
  width: 145px;
  height: 20px;
  margin-top: 40px;
  margin-left: 60px;
  margin-right: 30px;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  float: right;
  position: relative;
}
.search-box .text{
  width: 100%;
  height: 100%;
  padding: 0 5px;
  font-size: 12px;
  color: #333;
  background-color: #fff;
  border: none;
}
.search-box .btn{
  width: 28px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  background-color: #fff;
  border: none;
  font-size: 12px;
  color: #333;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  display: none;
}
.nav{
  float: right;
}
.nav>ul{
  display: flex;
  align-items: center;
}
.nav>ul>li{
  margin-right: 26px;
  position: relative;
}
.nav ul li a{
  font-size: 16px;
  color: #4e4d4d;
  display: block;
  height: 100px;
  line-height: 100px;
  position: relative;
}
.nav>ul>li>a::after{
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #d32388;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: 100%; -webkit-transform-origin: 100%;
  -webkit-transition: -webkit-transform .3s cubic-bezier(.4,0,.2,1);
  transition:-webkit-transform .3s cubic-bezier(.4,0,.2,1);
  transition:transform .3s cubic-bezier(.4,0,.2,1);
  transition:transform .3s cubic-bezier(.4,0,.2,1),-webkit-transform .3s cubic-bezier(.4,0,.2,1);
  transform: scaleX(0);
  -webkit-transform: scaleX(0);
  visibility: hidden\9;
}
.nav ul li:hover>a::after,
.nav ul li.active>a::after,
.nav ul li.is-active>a::after{
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  transform-origin: 0;
  -webkit-transform-origin: 0;
  visibility: visible\9;
}
.nav ul li:hover>a,
.nav ul li.active>a,
.nav ul li.is-active>a{
  color: #d32388;
}
.nav ul li .nav-body{
  width: 160px;
  background-color: #fff;
  border-top: 3px solid #d32388;
  box-shadow: 2.5px 4.33px 8px 0px rgba(0, 0, 0, .094);
  position: absolute;
  left: 50%;
  top: 100px;
  z-index: 5;
  margin-left: -80px;
  opacity: 0; 
  visibility: hidden;
  transform: translateY(10px);
  transition: .25s ease-out;
}
.nav ul li:hover .nav-body,
.nav ul li.active .nav-body{
  opacity: 1;
  visibility: visible;
  z-index: 10;
  transition: all .5s 0s;
  transform: translateY(0);
}
.nav ul li .nav-body a{
  font-size: 12px;
  color: #666;
  padding: 6px;
  height: auto;
  line-height: 22px;
  text-align: center;
  background: #fff;
  display: block;
  transition: 0.5s;
}
.nav ul li .nav-body a:hover{
  background: rgba(211, 35, 136, .1);
  color: #e03451;
}
.mobile-nav{
  width: 240px; 
  height: 100%; 
  background-color: #444; 
  position: fixed;
  left: 0;
  top: 0;
  z-index: 3000;
  overflow: auto;
  overflow-x: hidden;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform .5s ease-in-out, box-shadow .5s ease-in-out;
  transition: transform .5s ease-in-out, box-shadow .5s ease-in-out;
}
.mobile-nav.open{
  box-shadow: -10px 0 100px 10px rgba(0, 0, 0, .7);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.mobile-nav .logos{
  width: 100%;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
}
.mobile-nav .logos img{
  max-width: 160px;
}
.mobile-nav .nav-close{
  width: 24px;
  height: 24px;
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0;
  visibility: hidden;
}
.mobile-nav .nav-close::before,
.mobile-nav .nav-close::after{
  content: '';
  width: 25px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 12px;
}
.mobile-nav .nav-close::before{
  -moz-transform: rotate(225deg);
  -webkit-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}
.mobile-nav .nav-close::after{
  -moz-transform: rotate(-225deg);
  -webkit-transform: rotate(-225deg);
  -o-transform: rotate(-225deg);
  -ms-transform: rotate(-225deg);
  transform: rotate(-225deg);
}
.mobile-nav.open .nav-close{
  visibility: visible;
}
.mobile-nav>nav>ul{
  padding-top: 60px;
}
.mobile-nav>nav>ul>li>a{
  background: rgba(33,33,33,0.8);
  -webkit-transform-origin: -100% 0%;
  -moz-transform-origin: -100% 0%;
  -o-transform-origin: -100% 0%;
  -ms-transform-origin: -100% 0%;
  transform-origin: -100% 0%;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: perspective(800px) rotateX(90deg) rotateY(0deg) rotateZ(0deg);
  -moz-transform: perspective(800px) rotateX(90deg) rotateY(0deg) rotateZ(0deg);
  -o-transform: perspective(800px) rotateX(90deg) rotateY(0deg) rotateZ(0deg);
  -ms-transform: perspective(800px) rotateX(90deg) rotateY(0deg) rotateZ(0deg);
  transform: perspective(800px) rotateX(90deg) rotateY(0deg) rotateZ(0deg);
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
.mobile-nav>nav>ul>li:nth-child(1)>a{transition-delay: 150ms;}
.mobile-nav>nav>ul>li:nth-child(2)>a{transition-delay: 250ms;}
.mobile-nav>nav>ul>li:nth-child(3)>a{transition-delay: 350ms;}
.mobile-nav>nav>ul>li:nth-child(4)>a{transition-delay: 450ms;}
.mobile-nav>nav>ul>li:nth-child(5)>a{transition-delay: 550ms;}
.mobile-nav>nav>ul>li:nth-child(6)>a{transition-delay: 650ms;}
.mobile-nav>nav>ul>li:nth-child(7)>a{transition-delay: 750ms;}
.mobile-nav>nav>ul>li:nth-child(8)>a{transition-delay: 850ms;}
.mobile-nav>nav>ul>li:nth-child(9)>a{transition-delay: 950ms;}
.mobile-nav>nav>ul>li:nth-child(10)>a{transition-delay: 1050ms;}
.mobile-nav.open>nav>ul>li>a{
  background: rgba(68,68,68,1);
  -webkit-transform: perspective(800px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  -moz-transform: perspective(800px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  -o-transform: perspective(800px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  -ms-transform: perspective(800px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  transform: perspective(800px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
}
.mobile-nav nav ul li a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  font-size: 16px;
  color: #fff;
  border-bottom: 1px solid #333;
  position: relative;
}
.mobile-nav nav ul li a.drop{
  color: #d32388;
}
.mobile-nav .has-after{
  display: block;
  width: 10px;
  height: 10px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -6px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.mobile-nav .drop.has-after{
  -webkit-transform: rotate(223deg);
  transform: rotate(223deg);
}
.mobile-nav .has-dropdown{
  display: none;
  padding-left: 15px;
}
.mobile-nav .has-dropdown a{
  font-size: 14px;
}
.mobile-mask{
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -2000;
  background-color: rgba(0,0,0,.7);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .5s, visibility .5s;
  transition: opacity .5s, visibility .5s;
}
.mobile-mask.is-show{
  opacity: 1;
  visibility: visible;
  z-index: 2000;
}
.hamburger-btns{
  width: 55px;
  height: 50px;
  position: absolute;
  left: 0;
  top: 5px;
  z-index: 1020;
  display: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.445, 0.145, 0.355, 1);
  -webkit-transition: all 0.3s cubic-bezier(0.445, 0.145, 0.355, 1);
  -moz-transition: all 0.3s cubic-bezier(0.445, 0.145, 0.355, 1);
}
.hamburger-btns .trans,
.hamburger-btns .trans:hover{
  -webkit-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -moz-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -o-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  transition:all 0.4s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -ms-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}
.hamburger-btns .trans-fast,
.hamburger-btns .trans-fast:hover{
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  -ms-transition: all 200ms ease-in-out;
}
.hamburger-btns .burger{
  width: 17px;
  height: 3px;
  background-color: #d32388;
  display: block;
  position: absolute;
  top: 16px;
  left: 50%;
  z-index: 5; 
  margin: 0 0 0 -10px;
  transform-origin: center;
  -webkit-transform-origin: center;
  -moz-transform-origin: center;
  -o-transform-origin: center;
  -ms-transform-origin: center;
}
.hamburger-btns .burger-2{
  top: 25px;
  width: 25px;
}
.hamburger-btns .burger-3{
  top: 33px;
  width: 21px;
}
.hamburger-btns.is-active .burger-1{
  top: 25px;
  width: 21px;
  -moz-transform: rotate(225deg);
  -webkit-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}
.hamburger-btns.is-active .burger-2{
  top: 25px;
  width: 21px;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); filter: alpha(opacity=0);
  opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  left: 100%;
}
.hamburger-btns.is-active .burger-3{
  top: 25px;
  width: 21px;
  -moz-transform: rotate(-225deg);
  -webkit-transform: rotate(-225deg);
  -o-transform: rotate(-225deg);
  -ms-transform: rotate(-225deg);
  transform: rotate(-225deg);
}

/* banner */
.banner{
  width: 100%;
  overflow: hidden;
  position: relative;
}
.banner figure{
  display: block;
  line-height: 1;
  overflow: hidden;
}
.banner .mo-img{
  display: none;
}
.banner .slick-active figure{
  -webkit-animation: slideIn 2s;
  animation: slideIn 2s;
}
.banner .slick-active figure img{
  -webkit-animation: imgIn 2s;
  animation: imgIn 2s;
}
#idx_banner .slick-active figure{
  -webkit-animation: none;
  animation: none;
}
#idx_banner .slick-active figure img{
  -webkit-animation: none;
  animation: none;
  width:100%;
}

@-webkit-keyframes slideIn{
  0% { -webkit-transform: translateX(-100%); opacity: 1; }
  100% { -webkit-transform: translateX(0); opacity: 1; }
}
@keyframes slideIn{
  0% { transform: translateX(-100%); opacity: 1; }
  100% { transform: translateX(0); opacity: 1; }
}
@-webkit-keyframes imgIn{
  0% { -webkit-transform: -webkit-translateX(100%); opacity: 1; }
  100% { -webkit-transform: -webkit-translateX(0); opacity: 1; }
}
@keyframes imgIn{
  0% { transform: translateX(100%); opacity: 1; }
  100% { transform: translateX(0); opacity: 1; }
}
.banner .slick-arrow{
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 50%;
  border: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  font-size: 0;
  font-weight: bold;
  cursor: pointer;
  opacity: 0;
  transition: all .4s;
}
.banner .slick-arrow:hover{
  background-color: #d32388;
  color: #fff;
}
.banner:hover .slick-arrow{
  opacity: 1;
}
.banner .slick-prev{
  left: 0;
}
.banner:hover .slick-prev{
  left: 2%;
}
.banner .slick-next{
  right: 0;
}
.banner:hover .slick-next{
  right: 2%;
}
.banner .slick-dots{
  width: 100%;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 30px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner .slick-dots li{
  width: 30px;
  height: 4px;
  margin: 0 5px;
  background-color: #fff;
  font-size: 0;
  cursor: pointer;
}
.banner .slick-dots li button{
  display: block;
  width: 0;
  height: 100%;
  background-color: #d32388;
  border: none;
  font-size: 0;
}
.banner .slick-dots li.slick-active button{
  -webkit-animation: buttonUp 3s forwards cubic-bezier(0.250, 0.460, 0.450, 0.940);
  animation: buttonUp 3s forwards cubic-bezier(0.250, 0.460, 0.450, 0.940);
}
@-webkit-keyframes buttonUp{
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes buttonUp{
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.banner figure img{width:100%}
.contain{
  padding-top: 40px;
  padding-bottom: 40px;
}
.contain-box{
  background-color: #fff;
  border-radius: 10px;
  padding: 35px 15px;
  overflow: hidden;
}
.wide-96{
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.wide-12{
  max-width: 1230px;
  margin-left: auto;
  margin-right: auto;
}
.GoTop{
  width: 40px;
  height: 40px;
  background-color: #fff;
  /*box-shadow: 0 0 10px rgba(0, 0, 0, .18);*/
  box-shadow: 0 5px 10px rgba(51, 51, 51, .18);
  border-radius: 50%;
  position: fixed;
  right: -50px;
  bottom: 5%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}
.GoTop:hover{
  background-color: #d32388;
  color: #fff;
}
.GoTop.is-active{
  right: 2%;
  opacity: 1;
  visibility: visible;
}
.code-modal{
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 3000;
  background-color: rgba(0, 0, 0, .7);
  display: flex;
  align-items: center;
  justify-content: center;
}
.code-modal>div{
  position: relative;
  background-color: #fff;
  padding: 10px;
}
.history-modal>div{
  background: none;
  padding: 0;
}
.code-modal>div img{
  max-width: 300px;
}
.history-modal>div img{
  max-width: 400px;
}
.code-modal i{
  position: absolute;
  right: 0;
  top: -40px;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}
.code-modal i:hover{
  transform: rotate(90deg);
}

/* index */
.indexs{
  padding-top: 0;
  background-color: #f6e6c0;
}
.indexs .banner{
  border: none;
  border-radius: 0;
  margin: 0;
}
.indexs .footer{
  /*background-color: transparent;*/
}
.indexs .footer-nav>nav>ul>li{
  /*border-bottom: 1px solid #efd390;*/
}
.index-about .layout{
  background-color: #f5f5f5;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.index-about .pic img{
  width: 100%;
}
.index-about .info-group{
  color: #71413b;
  position: relative;
  z-index: 5;
}
.index-about .h2{
  font-size: 24px;
  line-height: 1.6;
  margin-top: 20px;
}
.index-about .h2::first-letter{
  text-indent: 0;
}
.index-about .info-desc{
  font-size: 12px;
  line-height: 1.6;
  margin-top: 20px;
}
.index-about .info-desc p{
  margin-top: 15px;
}
.index-about .more{
  margin-top: 30px;
  text-align: right;
}
.index-about .more a{
  font-size: 12px;
  color: #71413b;
}
.index-about .more a:hover{
  color: #d32388;
  text-decoration: underline;
}
.index-about .slick-arrow{
  width: 30px;
  height: 30px;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  z-index: 5;
  font-size: 0;
  font-weight: bold;
  cursor: pointer;
  transition: all .4s;
  display: none !important;
  align-items: center;
  justify-content: center;
}
.index-about .slick-arrow:hover{
  background-color: #d32388;
  border-color: #d32388;
  color: #fff;
}
.index-about .slick-prev{
  right: 40px;
}
.index-about .slick-next{
  right: 0;
}
.index-about .slick-dots{
  width: 100%;
  margin-top: 15px;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.index-about .slick-dots li{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ddd;
  margin: 0 2px;
}
.index-about .slick-dots li.slick-active{
  background-color: #d32388;
}
.index-about .slick-dots li button{
  display: none;
}
.index-product .wide-16{
  padding-bottom: 50px;
}
.index-product .product-group{
  width: 100%;
  padding-top: 30px;
}
.index-product .slick-list{
  margin-left: -15px;
  margin-right: -15px;
}
.index-product .item{
  padding-left: 15px;
  padding-right: 15px;
}
.index-product .block{
  padding-top: 100px;
  padding-bottom: 10px;
}
.index-product .pro-box{
  width: 340px;
  height: 475px;
  background-color: #fff;
  border: 3px solid #fff;
  border-radius: 5px;
  display: block;
  text-align: center;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
}
.index-product .pro-group{
  width: 100%;
  background-color: #fff;
  border: 3px solid #fff;
  border-radius: 5px;
  text-align: center;
  display: none;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
}
.index-product .pic{
  width: 100%;
  padding-bottom: 100%;
  height: 0;
  position: relative;
}
.index-product .pic img{
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.index-product .info-box{
  padding: 20px;
}
.index-product .tit{
  margin-top: 20px;
  margin-left: 15px;
  margin-right: 15px;
  font-size: 18px;
  color: #71413b;
}
.index-product .tit a{
  color: #71413b;
}
.index-product .tit a:hover{
  color: #d32388;
}
.index-product .line{
  width: 100%;
  height: 1px;
  background-color: #71413b;
}
.index-product .info-desc{
  font-size: 14px;
  color: #71413b;
  height: 42px;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: left;
}
.index-product .btn-group{
  font-size: 12px;
  color: #71413b;
  display: flex;
  align-items: center;
  justify-content: center;
}
.index-product .btn-group a{
  color: #71413b;
  margin-left: 10px;
  margin-right: 10px;
  display: flex;
  align-items: flex-end;
}
.index-product .btn-group img{
  margin-right: 8px;
  vertical-align: bottom;
}
.index-product .slick-current .block{
  padding-top: 5px;
}
.index-product .slick-current .pro-box{
  display: none;
}
.index-product .slick-current .pro-group{
  display: block;
}
.index-product .parents .hover-active .block{
  padding-top: 0;
}
.index-product .parents .slick-current .pro-group{
  display: none;
}
.index-product .parents .hover-active .pro-box{
  display: none;
}
.index-product .parents .hover-active .pro-group{
  display: block;
}
.index-product .slick-arrow{
  width: 30px;
  height: 30px;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  font-size: 0;
  font-weight: bold;
  cursor: pointer;
  transition: all .4s;
  display: none !important;
  align-items: center;
  justify-content: center;
}
.index-product .slick-arrow:hover{
  background-color: #d32388;
  border-color: #d32388;
  color: #fff;
}
.index-product .slick-prev{
  left: 0;
  margin-left: -60px;
}
.index-product .slick-next{
  right: 0;
  margin-right: -60px;
}
.index-product .slick-dots{
  width: 100%;
  margin-top: 15px;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.index-product .slick-dots li{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ddd;
  margin: 0 2px;
}
.index-product .slick-dots li.slick-active{
  background-color: #d32388;
}
.index-product .slick-dots li button{
  display: none;
}
.index-news .layout{
  background-color: #f5f5f5;
}
.index-news .list{
  width: 100%;
  margin-top: 30px;
}
.index-news .slick-list{
  margin-left: -12px;
  margin-right: -12px;
}
.index-news .item{
  padding-left: 12px;
  padding-right: 12px;
}
.index-news .item .block{
  width: 100%;
  background-color: #f3f3f3;
  display: block;
}
.index-news .item .pic{
  width: 100%;
  padding-bottom: 64.6%;
  height: 0;
  position: relative;
}
.index-news .item .pic img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.index-news .item .info-group{
  margin-top: 10px;
}
.index-news .item .h2{
  font-size: 14px;
  font-weight: bold;
  color: #333;
}
.index-news .index-more{
  width: 100%;
  text-align: center;
  margin-top: 15px;
}
.index-news .index-more a{
  width: 110px;
  height: 35px;
  line-height: 35px;
  background-color: #fff;
  border: 1px solid #ddd;
  font-size: 14px;
  color: #333;
  display: inline-block;
}
.index-news .index-more a:hover{
  background-color: #d32388;
  border-color: #d32388;
  color: #fff;
}
.index-news .item .block:hover .h2{
  /*color: #d32388;*/
}
.index-news .item .date{
  font-size: 12px;
  color: #666;
  margin-top: 5px;
  text-align: right;
}
.index-news .slick-arrow{
  width: 30px;
  height: 30px;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  font-size: 0;
  font-weight: bold;
  cursor: pointer;
  transition: all .4s;
  display: none !important;
  align-items: center;
  justify-content: center;
}
.index-news .slick-arrow:hover{
  background-color: #d32388;
  border-color: #d32388;
  color: #fff;
}
.index-news .slick-prev{
  left: -60px;
}
.index-news .slick-next{
  right: -60px;
}
.index-news .slick-dots{
  width: 100%;
  margin-top: 15px;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.index-news .slick-dots li{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ddd;
  margin: 0 2px;
}
.index-news .slick-dots li.slick-active{
  background-color: #d32388;
}
.index-news .slick-dots li button{
  display: none;
}
.index-parenting ul{
  margin-top: 10px;
  margin-left: -10px;
  margin-right: -10px;
}
.index-parenting ul li{
  padding: 10px;
}
.index-parenting ul li .block{
  width: 100%;
  display: block;
  position: relative;
}
.index-parenting ul li .pic{
  width: 100%;
  position: relative;
  overflow: hidden;
}
.index-parenting ul li .pic img{
  width: 100%;
}
.index-parenting ul li .text{
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  background-color: rgba(0, 0, 0, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all .5s;
}
.index-parenting ul li .block:hover .text{
  opacity: 1;
  visibility: visible;
}
.index-block{
  padding: 40px 15px;
  background-color: #fff;
  overflow: hidden;
}
.index-title{
  border-left: 1px solid #d32388;
  padding-left: 15px;
  font-size: 18px;
  color: #71413b;
  line-height: 1;
}
.index-title .subtit{
  font-family: 'Times','MontserratRegular';
  font-size: 24px;
  opacity: .48;
}

/*about*/
.about-title{
  font-size: 24px;
  color: #14161b;
  text-align: center;
}
.about-info{
  max-width: 780px;
  margin: 0 auto;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #666;
  line-height: 2;
}
.about-list{
  max-width: 1230px;
  margin: 0 auto;
}
.about-list ul li{
  margin-top: 40px;
}
.about-list ul li .info-group{
  margin-top: 25px;
}
.about-list ul li .pic img{
  width: 100%;
}
.about-list ul li .num{
  font-size: 30px;
  font-weight: bold;
  color: #000;
  display: block;
  line-height: 1;
}
.about-list ul li .line{
  width: 40px;
  height: 2px;
  background-color: #bfbdbd;
  margin: 10px 0;
}
.about-list ul li .tit{
  font-size: 24px;
  color: #000;
}
.about-list ul li .info-desc{
  font-size: 14px;
  color: #666;
  line-height: 2;
  margin-top: 20px;
}
.category-list{
  width: 100%;
  margin-top: 30px;
  text-align: center;
}
.category-list ul{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.category-list ul li{
  margin: 0 7px 7px 7px;
}
.category-list ul li a{
  display: block;
  border: 1px solid #d2d2d2;
  padding: 5px 20px;
  font-size: 14px;
  color: #d32388;
}
.category-list ul li:hover a,
.category-list ul li.active a{
  background-color: #d32388;
  border-color: #d32388;
  color: #fff;
}

/*history*/
.history-info{
  max-width: 900px;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
}
.history-info .item{
  text-align: center;
}
.history-info .year{
  font-family: 'MontserratRegular';
  font-size: 36px;
  color: #d32388;
}
.history-info .info{
  font-size: 18px;
  color: #666;
  margin-top: 20px;
}
.history-info .slick-arrow{
  width: 30px;
  height: 30px;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  font-size: 0;
  font-weight: bold;
  cursor: pointer;
  transition: all .4s;
  color: #333;
}
.history-info .slick-arrow:hover{
  background-color: #d32388;
  border-color: #d32388;
  color: #fff;
}
.history-info .slick-prev{
  left: 0;
}
.history-info .slick-next{
  right: 0;
}
.history-info .slick-dots{
  width: 100%;
  margin-top: 15px;
  display: none !important;
  align-items: center;
  justify-content: center;
}
.history-info .slick-dots li{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ddd;
  margin: 0 2px;
}
.history-info .slick-dots li.slick-active{
  background-color: #d32388;
}
.history-info .slick-dots li button{
  display: none;
}
.history-year{
  max-width: 755px;
  margin: 0 auto;
  background-image: url(../images/history_year.jpg);
  background-position: 0 170px;
  background-repeat: no-repeat;
}
.history-year .block{
  padding-top: 140px;
  padding-bottom: 140px;
  display: block;
  text-align: center;
  position: relative;
}
.history-year .year{
  font-family: 'MontserratRegular';
  font-size: 18px;
  color: #333;
  position: relative;
}
.history-year .year::before{
  content: '';
  width: 1px;
  height: 50px;
  background-color: #6a768a;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 39px;
  opacity: 0;
}
.history-year .pic{
  width: 50px;
  height: 50px;
  /*background-color: #04aab8;*/
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: -25px;
  opacity: 0;
}
.history-year .pic img{
  width: 34px;
  height: 34px;
  /*border-radius: 50%;*/
  object-fit: cover;
}
.history-year .item:nth-child(even) .block{
  padding-top: 182px;
}
.history-year .item:nth-child(even) .year::before{
  top: auto;
  bottom: 39px;
}
.history-year .item:nth-child(even) .pic{
  top: 43px;
  bottom: auto;
}
.history-year .slick-current .year::before{
  opacity: 1;
}
.history-year .slick-current .pic{
  opacity: 1;
}

/*brand*/
.brand-list{
  max-width: 1000px;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
}
.brand-list ul li{
  padding-top: 5px;
  padding-top: 5px;
}
.brand-list ul li .info-desc{
  width: 100%;
  height: 100%;
  padding: 15px 10px;
  text-align: center;
  background-color: #f6e7c0;
  font-size: 14px;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-list ul li:nth-child(2) .info-desc{
  background-color: #bfd9be;
}
.brand-list ul li:nth-child(3) .info-desc{
  background-color: #b0d6ec;
}
.brand-group{
  max-width: 1000px;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
}
.brand-group .pic{
  text-align: center;
}
.brand-group .info-group{
  margin-top: 20px;
}
.brand-group .info-group ul li{
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #333;
}
.brand-group .info-group ul li img{
  width: 40px;
  flex-shrink: 0;
  margin-right: 15px;
}
.brand-group .info-group ul li p:nth-child(1){
  color: #d32388;
}

/*honor*/
.honor-group{
  max-width: 620px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.honor-group::before{
  content: '';
  width: 2px;
  height: 100%;
  border-left: 2px dotted #555;
  position: absolute;
  left: 50%;
  top: 10px;
  margin-left: -1px;
  z-index: -1;
}
.honor-group ul li{
  width: 100%;
  padding-left: 50%;
}
.honor-group ul li .year{
  font-family: 'MontserratRegular';
  font-size: 20px;
  font-weight: bold;
  color: #000;
  padding-left: 25px;
  position: relative;
}
.honor-group ul li .year::before{
  content: '';
  width: 14px;
  height: 14px;
  border: 2px solid #000;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  left: -7px;
  top: 9px;
}
.honor-group ul li .info-desc{
  margin-top: 10px;
  margin-left: 25px;
  font-size: 12px;
  color: #333;
  line-height: 1.6;
}
.honor-group ul li .pic{
  width: 80px;
  text-align: center;
  flex-shrink: 0;
  margin-right: 20px;
  margin-bottom: 15px;
}
.honor-group ul li .info-group:hover .year{
  color: #d32388;
}
.honor-group ul li .info-group:hover .year::before{
  border-color: #d32388;
}
.honor-group ul li .info-group:hover .info-desc{
  color: #d32388;
}
.honor-group ul li:nth-child(even){
  padding-left: 0;
  padding-right: 50%;
}
.honor-group ul li:nth-child(even) .year{
  padding-left: 0;
  padding-right: 25px;
  text-align: right;
}
.honor-group ul li:nth-child(even) .year::before{
  left: auto;
  right: -7px;
}
.honor-group ul li:nth-child(even) .info-desc{
  flex-direction: row-reverse;
  margin-left: 0;
  margin-right: 25px;
}
.honor-group ul li:nth-child(even) .pic{
  margin-left: auto;
  margin-right: 0;
}

/*production*/
.production-list{
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.production-list ul li{
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
}
.production-list ul li .pic img{
  width: 100%;
}
.production-list ul li .info-group{
  margin-top: 20px;
}
.production-list ul li .h3{
  font-size: 14px;
  color: #d32388;
  margin-bottom: 10px;
}
.production-list ul li .info-desc{
  font-size: 12px;
  color: #666;
  line-height: 1.6;
}
.production-list ul li .info-desc p{
  margin-top: 10px;
}

/*oem*/
.oem-info{
  max-width: 1000px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}
.oem-info .h3{
  font-size: 20px;
  color: #d32388;
  margin-bottom: 10px;
}

/*product*/
.pro-category .first-list{
  overflow-x: auto;
}
.pro-category .first-list ul{
  display: flex;
  flex-wrap: wrap;
}
.pro-category .first-list li a{
  display: block;
  font-size: 15px;
  color: #333;
  padding: 16px 15px 10px 15px;
  text-align: center;
  white-space: normal;
}
.pro-category .first-list li.active a{
  background-color: #fff;
  color: #d32388;
}
.pro-category .sub-list{
  border-radius: 20px;
  padding: 25px 15px 120px 15px;
  background-image: url(../images/sub_list.jpg);
  background-repeat: repeat-x;
  min-height: 170px;
}
.pro-category .sub-list ul{
  display: none;
  flex-wrap: wrap;
}
.pro-category .sub-list ul.is-show{
  display: flex;
}
.pro-category .sub-list ul li{
  margin: 0 8px 5px 8px;
}
.pro-category .sub-list ul li a{
  font-size: 14px;
  color: #333;
}
.pro-category .sub-list ul li:hover a,
.pro-category .sub-list ul li.active a{
  color: #d32388;
}
.pro-list{
  width: 100%;
  margin-top: -100px;
}
.pro-list ul{
  margin-left: -5px;
  margin-right: -5px;
  display: flex;
  flex-wrap: wrap;
}
.pro-list ul li{
  width: 50%;
  padding: 5px;
}
.pro-list ul li .block{
  display: block;
  border: 1px solid #fff;
  background-color: #fff;
  text-align: center;
}
.pro-list ul li .block:hover{
  border-color: #d32388;
  transform: translateY(-3px);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .1);
}
.pro-list ul li .pic{
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  overflow: hidden;
  position: relative;
}
.pro-list ul li .pic img{
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.pro-list ul li .info-group{
  padding: 15px 10px;
  font-size: 14px;
  color: #333;
}
.load-more{
  width: 100%;
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
}
.load-more a{
  color: #666;
}
.load-more i{
  width: 30px;
  height: 30px;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.load-more span{
  display: block;
  color: #333;
  text-decoration: underline;
  margin-top: 5px;
}
.load-more a:hover,
.load-more a:hover span{
  color: #d32388;
}
.modal-box{
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .7);
  position: fixed;
  left: 0;
  top: 0;
  z-index: -3000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}
.modal-box.is-show{
  opacity: 1;
  visibility: visible;
  z-index: 3000;
}
.modal-box .layout{
  max-width: 1110px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-box .block{
  width: 100%;
  max-height: 90%;
  background-color: #fff;
  padding: 40px 20px;
  overflow: auto;
  position: relative;
}
.modal-box .close{
  position: absolute;
  right: 15px;
  top: 10px;
  color: #999;
}
.modal-box .close i{
  display: inline-block;
  font-size: 20px;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}
.modal-box .close:hover i{
  transform: rotate(90deg);
}
.modal-box .slick-dots{
  width: 100%;
  margin-top: 15px;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.modal-box .slick-dots li{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ddd;
  margin: 0 2px;
}
.modal-box .slick-dots li.slick-active{
  background-color: #d32388;
}
.modal-box .slick-dots li button{
  display: none;
}
.modal-box .slick-arrow{
  width: 30px;
  height: 30px;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  font-size: 0;
  font-weight: bold;
  cursor: pointer;
  transition: all .4s;
}
.modal-box .slick-arrow:hover{
  background-color: #d32388;
  border-color: #d32388;
  color: #fff;
}
.modal-box .slick-prev{
  left: -15px;
}
.modal-box .slick-next{
  right: -15px;
}
.modal-box .slick-gallery .pic{
  padding-bottom: 77.9%;
  /*height: 350px;*/
  position: relative;
}
.modal-box .slick-gallery .pic img{
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.modal-box .slick-thumbs{
  max-width: 450px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: none;
}
.modal-box .slick-thumbs .item{
  padding-left: 5px;
  padding-right: 5px;
}
.modal-box .slick-thumbs .pic{
  border: 1px solid #eee;
  padding-bottom: 111.9%;
  position: relative;
  cursor: pointer;
}
.modal-box .slick-thumbs .slick-current .pic{
  border-color: #d32388;
}
.modal-box .slick-thumbs .pic img{
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.modal-box .info-group{
  padding-top: 20px;
}
.modal-box .info-group .h2{
  font-size: 18px;
  font-weight: bold;
  color: #000;
  margin-bottom: 10px;
}
.modal-box .info-group .info-desc{
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

/*news*/
.news-hot{
  width: 100%;
}
.news-hot ul li .block{
  width: 100%;
  background-color: #f3f3f3;
  display: block;
}
.news-hot ul li .info-group{
  padding: 30px 20px;
}
.news-hot ul li .h2{
  font-size: 18px;
  font-weight: bold;
  color: #333;
}
.news-hot ul li .info-desc{
  font-size: 14px;
  color: #666;
  margin-top: 10px;
  margin-bottom: 15px;
}
.news-hot ul li .date{
  font-size: 14px;
  color: #666;
}
.news-hot ul li .block:hover .h2{
  color: #d32388;
  text-decoration: underline;
}
.news-list{
  width: 100%;
  margin-top: 30px;
}
.news-list ul{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
.news-list ul li{
  width: 100%;
  padding: 10px;
}
.news-list ul li .block{
  width: 100%;
  background-color: #f3f3f3;
  display: block;
}
.news-list ul li .pic{
  width: 100%;
  padding-bottom: 64.6%;
  height: 0;
  position: relative;
}
.news-list ul li .pic img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.news-list ul li .info-group{
  padding: 20px 15px;
}
.news-list ul li .h2{
  font-size: 14px;
  font-weight: bold;
  color: #333;
}
.news-list ul li .block:hover .h2{
  color: #d32388;
}
.news-list ul li .date{
  font-size: 12px;
  color: #666;
  margin-top: 10px;
}

/*newsDetails*/
.news-details .h2{
  font-size: 24px;
  color: #333;
  text-align: center;
}
.news-details strong{font-weight:bold;}
.news-details .info-group{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #999;
  margin-top: 10px;
}
.news-details .info-group i{
  vertical-align: middle;
  margin-right: 5px;
}
.news-details .info-group .vise{
  margin-right: 30px;
}
.news-details .info-group .vise i{
  font-size: 22px;
}
.news-details .info-desc{
  font-size: 14px;
  color: #666;
  line-height: 2;
  margin-top: 30px;
  margin-bottom: 35px;
}
.news-details .info-more{
  font-size: 14px;
  color: #333;
}
.news-details .info-more li{
  margin: 5px 0;
}
.news-details .info-more a{
  color: #999;
  margin-left: 2px;
}
.news-details .info-more a:hover{
  color: #d32388;
}

/*parenting*/
.parenting-title{
  font-size: 18px;
  color: #d32388;
  padding-bottom: 2px;
  border-bottom: 1px solid #818181;
}
.parenting-title i{
  font-size: 12px;
  font-weight: bold;
  color: #999;
}
.parenting-group{
  margin-top: 30px;
  margin-bottom: 40px;
}
.parenting-group .slick-track{
  display: flex;
}
.parenting-group .item{
  padding-left: 10px;
  padding-right: 10px;
  transform: scale(.9);
}
.parenting-group .block{
  width: 230px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
.parenting-group .pic img{
  width: 100%;
}
.parenting-group .info-group{
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(211, 35, 136, .3);
  color: #fff;
  text-align: center;
  opacity: 0;
  visibility: hidden;
}
.parenting-group .info-group .text{
  max-width: 180px;
  margin-left: auto;
  margin-right: auto;
}
.parenting-group .info-group span{
  font-size: 14px;
  text-decoration: underline;
}
.parenting-group .info-group .info{
  margin-top: 10px;
}
.parenting-group .slick-arrow{
  width: 30px;
  height: 30px;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  font-size: 0;
  font-weight: bold;
  cursor: pointer;
  transition: all .4s;
  display: none !important;
}
.parenting-group .slick-arrow:hover{
  background-color: #d32388;
  border-color: #d32388;
  color: #fff;
}
.parenting-group .slick-prev{
  left: 0;
}
.parenting-group .slick-next{
  right: 0;
}
.parenting-group .slick-dots{
  width: 100%;
  margin-top: 15px;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.parenting-group .slick-dots li{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ddd;
  margin: 0 2px;
}
.parenting-group .slick-dots li.slick-active{
  background-color: #d32388;
}
.parenting-group .slick-dots li button{
  display: none;
}
.parenting-group .slick-current{
  padding-top: 30px;
  transform: none;
}
.parenting-group .slick-current .info-group{
  opacity: 1;
  visibility: visible;
}
.parenting-list{
  width: 100%;
  margin-top: 30px;
}
.parenting-list ul{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
.parenting-list ul li{
  width: 50%;
  padding: 5px;
}
.parenting-list ul li .block{
  width: 100%;
  display: block;
}
.parenting-list ul li .pic{
  width: 100%;
  padding-bottom: 68.2%;
  height: 0;
  position: relative;
}
.parenting-list ul li .pic img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.parenting-list ul li .info-group{
  margin-top: 10px;
}
.parenting-list ul li .h2{
  font-size: 14px;
  font-weight: bold;
  color: #333;
}
.parenting-list ul li .block:hover .h2{
  color: #d32388;
}

/*contact*/
.contact-group{
  width: 100%;
}
.contact-group ul li{
  width: 100%;
  margin-top: -1px;
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid #818181;
}
.contact-group ul li:first-child{
  border: none;
}
.contact-group ul li .map{
  width: 100%;
  height: 300px;
  overflow:hidden;
}
.contact-group ul li .map iframe{
  width: 100% !important;
  /*height: 100% !important;*/
}
.contact-group ul li .map img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-group ul li .info-group{
  margin-top: 20px;
}
.contact-group ul li .h2{
  font-size: 16px;
  font-weight: bold;
  color: #333;
}
.contact-group ul li .info-desc{
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-top: 10px;
}

/*footer*/
.footer{
  width: 100%;
  background-color: #e3e3e3;
  padding-top: 70px;
  padding-bottom: 60px;
}
.footer-nav>nav>ul>li{
  border-bottom: 1px solid #ccc;
}
.footer-nav ul li a{
  font-size: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.footer-nav ul li .has-dropdown{
  display: none;
}
.footer-nav ul li ul{
  padding-left: 10px;
  padding-bottom: 10px;
}
.footer-nav ul li ul li{
  padding: 5px 0;
}
.footer-nav ul li ul a{
  font-size: 14px;
}
.footer-nav ul li .has-drop{
  display: block;
  position: relative;
}
.footer-nav ul li .has-after{
  position: absolute;
  right: 0;
  top: 10px;
  transition:all 0.4s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}
.footer-nav>ul>li>a>.has-after{
  top: 8px;
}
.footer-nav ul li .has-after.drop{
  transform: rotate(45deg);
}
.footer-nav>ul{
  display: flex;
  justify-content: space-between;
  margin-left: -10px;
  margin-right: -10px;
}
.footer-nav>ul>li{
  padding: 0 10px;
}
.footer-nav>ul>li>a{
  display: block;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  position: relative;
}
.footer-nav>ul>li ul li{
  margin-top: 10px;
}
.footer-info{
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  align-items: flex-end;
  margin-top: 30px;
}
.footer-info .foot-sns{
  width: 136px;
}
.footer-info .foot-sns ul{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.footer-info .foot-sns ul li{
  width: 30px;
}
.footer-info .foot-sns ul li img{
  border-radius: 5px;
  transition: all .7s;
}
.footer-info .foot-desc{
  max-width: 450px;
  padding-right: 20px;
}
.footer-info .foot-desc .info-desc{
  display: flex;
  align-items: flex-start;
}
.footer-info .foot-desc .info-desc .m-logo{
	display:none;
}
.footer-info .foot-desc .info-desc .code{
  width: 66px;
  flex-shrink: 0;
  cursor: pointer;
}
.footer-info .foot-desc .info-desc .info{
  padding-left: 20px;
  font-size: 12px;
  color: #000;
}
.footer-info .foot-desc .info-desc .info img{
  margin-bottom: 5px;
  width:85px;
}
.footer-info .foot-desc .copy{
  margin-top: 20px;
  font-size: 12px;
  color: #9d9d9d;
}
.footer-info .foot-desc .copy a{
  color: #9d9d9d;
}
.footer-info .foot-desc .copy a:hover{
  color: #d32388;
}

@media (min-width: 768px) {
  .layout {
    width: 750px;
    max-width: 750px;
  }
  .contain-box{
    padding: 40px;
  }
  .brand-list ul{
    display: flex;
    margin-left: -10px;
    margin-right: -10px;
  }
  .brand-list ul li{
    width: 33.333%;
    padding-left: 10px;
    padding-right: 10px;
  }
  .brand-group{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
  .brand-group .pic{
    width: 500px;
    width: 50%;
  }
  .brand-group .info-group{
    width: 450px;
    width: 45%;
  }
  .honor-group ul li .info-desc{
    display: flex;
    align-items: flex-start;
  }
  .honor-group ul li:nth-child(even) .pic{
    margin-left: 20px;
    margin-right: 0;
    margin-bottom: 0;
  }
  .production-list ul li{
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
  .production-list ul li .pic{
    width: 480px;
    width: 48%;
  }
  .production-list ul li .info-group{
    width: 480px;
    width: 48%;
    margin-top: 0;
  }
  .production-list ul li:nth-child(odd){
    flex-direction: row-reverse;
  }
  .production-list ul li:nth-child(odd) .info-group{
    text-align: right;
  }
  .modal-box .block{
    padding: 60px;
  }
  .modal-box .close{
    right: 20px;
  }
  .modal-box .close i{
    font-size: 40px;
  }
  .modal-box .modal-group{
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .modal-box .slick-thumbs{
    display: block;
  }
  .modal-box .zoom-area{
    width: 430px;
    width: 45.2%;
  }
  .modal-box .info-group{
    width: 380px;
    width: 39.9%;
  }
  .modal-box .slick-dots{
    display: none !important;
  }
  .modal-box .info-group{
    padding-top: 40px;
  }
  .modal-box .info-group .h2{
    margin-bottom: 20px;
  }
  .load-more{
    margin-top: 40px;
  }
  .news-list{
    margin-top: 50px;
  }
  .news-list ul li{
    width: 50%;
  }
  .parenting-list ul li{
    width: 50%;
  }
  .parenting-list ul li .info-group{
    margin-top: 20px;
  }
  .parenting-group .block{
    width: 200px;
  }
  .contact-group ul li{
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
  .contact-group ul li .info-group{
    width: 316px;
    width: 33%;
    margin-top: 0;
  }
  .contact-group ul li .h2{
    font-size: 18px;
  }
  .contact-group ul li .map{
    width: 55.4%;
    height: 200px;
  }
  .index-block{
    padding: 50px 40px;
  }
  .index-product .wide-12{
    padding-bottom: 720px;
  }
  .index-product .wide-16{
    margin-top: -710px;
    padding-bottom: 50px;
  }
  .index-product .wide-16{
    padding-left: 40px;
    padding-right: 40px;
  }
  .index-product .product-group{
    padding-top: 30px;
  }
  .index-news .slick-arrow{
    display: flex !important;
  }
  .index-product .block{
    padding-top: 87px;
  }
  .index-product .pro-box{
    width: 290px;
    height: 465px;
  }
  .index-product .pro-group{
    width: 350px;
  }
  .index-parenting ul{
    margin-top: 18px;
    margin-left: -12px;
    margin-right: -12px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .index-parenting ul li{
    width: 50%;
    padding: 12px;
  }
  .code-modal>div img{
    max-width: 450px;
  }

}
@media (min-width: 992px) {
  .layout {
    width: 970px;
    max-width: 970px;
  }
  .contain-box{
    padding: 50px 60px;
  }
  .footer .layout{
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: flex-end;
  }
  .indexs .footer .layout{
    max-width: 1260px;
  }
  .footer-nav{
    width: 100%;
    max-width: 350px;
  }
  .footer-nav>nav>ul{
    display: flex;
    justify-content: space-between;
  }
  .footer-nav>nav>ul>li{
    margin-right: 10px;
    border-bottom: none;
  }
  .indexs .footer-nav>nav>ul>li{
    border-bottom: none;
  }
  .footer-nav>nav>ul>li:last-child{
    margin-right: 0;
  }
  .footer-nav ul li a{
    font-size: 14px;
    color: #4e4e50;
    padding-top: 0;
    padding-bottom: 0;
  }
  .footer-nav ul li a:hover{
    color: #d32388;
  }
  .footer-nav ul li .has-drop{
    display: block;
  }
  .footer-nav ul li .has-after{
    display: none;
  }
  .footer-info{
    max-width: 664px;
  }
  .footer-info{
    display: block;
    margin-top: 0;
  }
  .footer-info .foot-sns{
    margin-bottom: 20px;
  }
  .about-list ul li{
    display: flex;
    justify-content: space-between;
  }
  .about-list ul li:nth-child(even){
    flex-direction: row-reverse;
  }
  .about-list ul li .pic{
    width: 590px;
    width: 46.9%;
  }
  .about-list ul li .info-group{
    margin-top: 0;
    width: 570px;
    width: 45.3%;
  }
  .about-list ul li .num{
    font-size: 48px;
  }
  .about-list ul li .tit{
    font-size: 30px;
  }
  .about-list ul li .line{
    width: 2px;
    height: 56px;
    margin: 20px 0;
  }
  .about-list ul li:nth-child(5) .info-group{
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
  .about-list ul li:nth-child(5) .info-tit{
    width: 590px;
    width: 46.9%;
    display: flex;
    align-items: center;
  }
  .about-list ul li:nth-child(5) .info-desc{
    width: 570px;
    width: 45.3%;
  }
  .about-list ul li:nth-child(5) .line{
    width: 56px;
    height: 2px;
    margin: 0 15px;
  }
  .about-list ul li:nth-child(6) .info-group{
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .about-list ul li:nth-child(6) .info-tit{
    width: 590px;
    width: 46.9%;
  }
  .about-list ul li:nth-child(6) .info-desc{
    width: 570px;
    width: 45.3%;
  }
  .pro-category .first-list li a{
    font-size: 18px;
    padding: 20px 15px 10px 15px;
  }
  .pro-list ul li{
    width: 25%;
  }
  .news-hot ul li .block{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .news-hot ul li .pic{
    width: 658px;
    width: 53.5%;
  }
  .news-hot ul li .info-group{
    width: 46.5%;
    padding: 20px 50px;
  }
  .news-hot ul li .info-desc{
    margin-top: 20px;
    margin-bottom: 30px;
  }
  .news-list{
    margin-top: 70px;
  }
  .news-list ul li{
    width: 33.333%;
  }
  .parenting-list ul li{
    width: 33.333%;
  }
  .parenting-group{
    padding-left: 24px;
    padding-right: 24px;
    margin-top: 60px;
    margin-bottom: 80px;
  }
  .parenting-group .block{
    width: 230px;
  }
  .parenting-group .slick-arrow{
    display: block !important;
  }
  .parenting-group .slick-dots{
    display: none !important;
  }
  .index-about .layout{
    margin-top: -60px;
    padding-top: 50px;
  }
  .index-about .item{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .index-about .pic{
    width: 604px;
    width: 63%;
  }
  .index-about .info-group{
    width: 315px;
    width: 37%;
    padding-left: 35px;
  }
  .index-about .h2{
    font-size: 45px;
    line-height: 1.6;
    text-indent: -3rem;
    margin-left: -80px;
    margin-top: 0;
  }
  .index-about .info-desc{
    margin-top: 40px;
  }
  .index-about .slick-arrow,
  .index-product .slick-arrow{
    display: flex !important;
  }
  .index-about .slick-dots,
  .index-product .slick-dots{
    display: none !important;
  }
  .index-product .slick-list{
    margin-left: -10px;
    margin-right: -10px;
  }
  .index-product .item{
    padding-left: 10px;
    padding-right: 10px;
  }
  .index-product .pro-box{
    width: 250px;
    height: 465px;
  }
  .index-product .pro-group{
    width: 350px;
  }

}
@media (min-width: 1200px) {
  .layout {
    width: 1140px;
    max-width: 1140px;
  }
  .contain{
    padding-bottom: 70px;
  }
  .wide-12 {
    width: 100%;
    max-width: 1230px;
  }
  .section-main>.wide-16{
    width: 100%;
    max-width: 1600px;
  }
  .logo{
    margin-left: 160px;
    margin-left: 8.333333vw;
  }
  .search-box.active .btn{
    display: block;
  }
  .footer-info{
    display: flex;
  }
  .footer-info .foot-sns{
    margin-bottom: 0;
  }
  .category-list{
    margin-top: 60px;
  }
  .about-title{
    font-size: 30px;
  }
  .about-list ul li{
    margin-top: 100px;
  }
  .history-info{
    margin-top: 80px;
  }
  .history-year .pic{
    width: 62px;
    height: 62px;
    margin-left: -31px;
  }
  .history-year .pic img{
    width: 46px;
    height: 46px;
  }
  .brand-list{
    margin-top: 70px;
  }
  .brand-list ul{
    margin-left: -30px;
    margin-right: -30px;
  }
  .brand-list ul li{
    width: 33.333%;
    padding-left: 30px;
    padding-right: 30px;
  }
  .brand-group{
    margin-top: 60px;
  }
  .honor-group{
    margin-top: 80px;
  }
  .production-list ul li{
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .oem-info{
    margin-top: 70px;
  }
  .oem-info .h3{
    font-size: 24px;
  }
  .pro-category .first-list li a{
    font-size: 20px;
    padding: 20px 20px 10px 20px;
  }
  .pro-category .sub-list{
    border-radius: 20px;
    padding: 36px 30px 40px 30px;
    min-height: 220px;
  }
  .pro-category .sub-list ul li{
    margin: 0 15px 10px 15px;
  }
  .pro-category .sub-list ul li a{
    font-size: 16px;
  }
  .pro-list ul{
    margin-left: -15px;
    margin-right: -15px;
  }
  .pro-list ul li{
    width: 25%;
    padding: 15px;
  }
  .news-list ul{
    margin-left: -32px;
    margin-right: -32px;
  }
  .news-list ul li{
    padding: 32px;
  }
  .news-details .h2{
    font-size: 32px;
  }
  .parenting-list ul{
    margin-left: -32px;
    margin-right: -32px;
  }
  .parenting-list ul li{
    padding: 32px;
  }
  .parenting-group .block{
    width: 270px;
  }
  .contact-group ul li{
    padding-top: 62px;
    padding-bottom: 62px;
  }
  .contact-group ul li .map{
    width: 55.4%;
    height: 340px;
  }
  .index-about .layout{
    margin-top: -80px;
    padding-top: 70px;
  }
  .index-product .slick-list{
    margin-left: -15px;
    margin-right: -15px;
  }
  .index-product .item{
    padding-left: 15px;
    padding-right: 15px;
  }
  .index-product .pro-box{
    width: 308px;
    height: 485px;
  }
  .index-product .pro-group{
    width: 370px;
  }
  .index-parenting ul li .text{
    font-size: 36px;
  }
  .index-title .subtit{
    font-size: 30px;
  }
  .index-news .slick-dots{
    display: none !important;
  }
  .footer-info .foot-sns ul li img:hover{
    transform: scale(1.5);
  }
  
}
@media (min-width: 1440px) {
  .wide-14, .wide-16 {
    width: 1400px;
    max-width: 1400px;
  }
  .pro-category .first-list li a{
    font-size: 18px;
    padding: 24px 30px 10px 30px;
  }
  .index-about .layout{
    margin-top: -150px;
  }
  .index-product .pro-box{
    width: 285px;
    height: 475px;
  }
  .index-product .pro-group{
    width: 360px;
  }

}
@media (min-width: 1640px) {
  .wide-16 {
    width: 1600px;
    max-width: 1600px;
  }
  .index-product .slick-list{
    margin-left: -20px;
    margin-right: -20px;
  }
  .index-product .item{
    padding-left: 21px;
    padding-right: 21px;
  }
  .index-product .block,
  .index-product .parents .slick-current .block{
    padding-top: 105px;
  }
  .index-product .parents .hover-active .block{
    padding-top: 5px;
  }
  .index-product .pro-box{
    width: 325px;
    height: 507px;
  }
  .index-product .pro-group{
    width: 405px;
  }

}
@media (max-width: 1199px){
  body{
    padding-top: 60px;
  }
  .header{
    width: 100%;
    height: 60px;
    background-color: #fff;
    filter: drop-shadow(0 1px 10px rgba(0, 0, 0, 0.06));
    position: fixed;
    top: 0;
    left: 0;
  }
  .indexs .header{
    background-color: #fff;
  }
  .logo{
    margin-top: 7px;
    margin-left: 20px;
  }
  .nav ul li a{
    height: 60px;
    line-height: 60px;
  }
  .nav ul li .nav-body{
    top: 60px;
  }
  .language-box{
    margin-top: 19px;
    margin-right: 5px;
  }
  .search-btn{
    display: block;
  }
  .search-box{
    width: 100%;
    height: 50px;
    border-top: 1px solid #eee;
    position: fixed;
    top: 60px;
    left: 0;
    margin: 0;
    padding-left: 15px;
    display: none;
  }
  .search-box.is-active{
    display: block;
  }
  .search-box .btn{
    width: 49px;
    height: 49px;
    top: 0;
    display: block;
  }
  .pro-list{
    overflow: hidden;
  }

}
@media (max-width: 890px){
  body,.indexs{
    padding-top: 60px;
  }
  .nav{
    display: none;
  }
  .logo{
    position: absolute;
    left: 50%;
    margin-left: -28px;
  }
  .hamburger-btns{
    display: block;
  }

}
@media (max-width: 767px){
  .layout{
    max-width: 720px;
  }
  .banner{
    width: auto;
    border: none;
    border-radius: 0;
  }
  .banner .mo-img{
    display: block;
  }
  .banner .pc-img{
    display: none;
  }
  .banner .slick-arrow{
    display: none !important;
  }
  .banner .slick-dots{
    bottom: 15px;
  }
  .banner .slick-dots li{
    width: 8px;
    height: 8px;
    border-radius: 4px;
    margin: 0 2px;
  }
  .banner .slick-dots li.slick-active{
    background-color: #d32388;
  }
  .banner .slick-dots li button{
    display: none;
  }
  .GoTop{
    width: 36px;
    height: 36px;
  }
  .footer{
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .footer-nav>ul{
    display: block;
  }
  .footer-nav>ul>li>a{
    font-size: 14px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 20px;
    border-bottom: 1px solid #4b4b4b;
  }
  .footer-nav ul li .has-after{
    display: block;
  }
  .footer-info{
    display: block;
  }
  .footer-info .foot-sns{
    margin: 0 auto;
  }
  .footer-info .foot-desc{
    max-width: 100%;
    padding-right: 0;
    padding-top: 20px;
  }
  .foot-sns1{
	  position:inherit !important;
	  margin-top:20px !important;
  }
  .footer-info .foot-desc .info-desc .info img{
	position: absolute;
    left: 5px;
    bottom: 29%;
  }
  .footer-info .foot-desc .info-desc .m-logo{
	display:block;
	width: 85px;
    display: block;
    margin-top: -57px;
  }
  .footer-info .foot-desc .info-desc .info img{
	  display:none;
  }
  .footer-info .foot-desc .info-desc .code{
	  margin-left:-75px;
  }
  .category-list{
    display: none;
  }
  .category-list.p-list{
	display:block
  }
  .news-hot ul li .block{
    display: flex;
    background-color: transparent;
    position: relative;
    padding-bottom: 12px;
  }
  .news-hot ul li .pic{
    width: 160px;
    flex-shrink: 0;
  }
  .news-hot ul li .info-group{
    padding: 0 0 0 15px;
  }
  .news-hot ul li .h2{
    font-size: 14px;
  }
  .news-hot ul li .info-desc{
    font-size: 12px;
  }
  .news-hot ul li .date{
    font-size: 12px;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .news-list{
    margin-top: 20px;
  }
  .news-list ul li .block{
    display: flex;
    background-color: transparent;
  }
  .news-list ul li .pic{
    width: 160px;
    padding-bottom: 21%;
    flex-shrink: 0;
  }
  .news-list ul li .info-group{
    width: 100%;
    padding: 0 0 0 15px;
    overflow: hidden;
  }
  .news-list ul li .h2{
    font-size: 14px;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .index-product .wide-16{
    background-color: #fff;
    margin-top: -35px;
  }
  .index-product .slick-list,
  .index-news .slick-list,
  .index-parenting ul{
    margin-left: -5px;
    margin-right: -5px;
  }
  .index-product .item,
  .index-news .item,
  .index-parenting ul li{
    padding-left: 5px;
    padding-right: 5px;
  }
  .index-product .block{
    padding-top: 0;
  }
  .index-product .pro-box,
  .index-product .slick-current .pro-box{
    width: 100%;
    height: auto;
    display: block;
    border-width: 2px;
  }
  .index-product .slick-current .pro-group{
    display: none;
  }
  .index-product .tit{
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 14px;
  }
  .index-parenting ul{
    display: flex;
  }
  .index-parenting ul li{
    width: 50%;
    padding: 5px;
  }
  .index-parenting ul li .text{
    font-size: 16px;
  }

}