@charset "UTF-8";
/**
 * 
 * @authors Your Name (you@example.org)
 * @date    2017-10-18 08:57:34
 * @version $Id$
 */
@font-face {
  font-family: "dbold";
  src: url("../font/din-bold_.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "sMedium";
  src: url("../font/SourceHanSansCN-Medium.ttf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "sRegular";
  src: url("../font/SourceHanSansCN-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
body{
  background-color: #f0f0f4;
}
/* header */
header {
  width: 100%;
  z-index: 22;
  box-shadow: 0px 0px 10px #eaeaea;
  background-color: #fff;
}
.header-main {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}
.logo {
  width: 179px;
  display: block;
}
.logo img {
  display: block;
  width: 100%;
}
.nav-ul {
  display: flex;
  align-items: center;
}
.nav-ul li{
  margin-right:90px;
}
.nav-ul li:last-child {
  margin-right: 0px;
}
.nav-ul li > a {
  display: block;
  font-size: 18px;
  text-align: center;
  color: #222;
  line-height: 100px;
  position: relative;
}
.nav-ul li > a::after{
  position: absolute;
  width: 100%;
  height: 4px;
  bottom: 0px;
  left: 0px;
  content: "";
  background-color: transparent;
  transition: all .5s;
}
.nav-ul li:hover > a,
.nav-ul li.nav-active a {
  color: #9fc62c;
}
.nav-ul li:hover > a::after,.nav-ul li.nav-active a::after{
  background-color: #9fc62c;
}
.lan{
  display: flex;
  align-items: center;
}
.lan a{
  display: block;
  width: 40px;
  height: 27px;
  margin-right: 10px;
}
.lan a:last-child{
  margin-right: 0px;
}
@media (max-width: 1600px) {
  .nav-ul li{
    margin-right: 70px;
  }
}
@media (max-width: 1400px) {
  .nav-ul li{
    margin-right: 50px;
  }
}
@media (max-width: 1200px) {
  .nav-ul li{
    margin-right: 30px;
  }
  .nav-ul li > a{
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .nav-ul {
    display: none;
  }
  .header-main {
    height: 70px;
  }
  .logo {
    width: 150px;
    display: block;
  }
}
@media(max-width:600px){
  .logo {
    width: 115px;
    display: block;
  }
  
}
/* 底部 */
#footer {
  overflow: hidden;
  width: 100%;
  background: #e5e5e5;
  padding-top: 56px;
}
.footer-ul {
  margin-bottom: 48px;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.footer-ul li h3 {
  color: #222;
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 26px;
}
.footer-ul li dl dd > a {
  line-height: 36px;
  display: block;
  color: #666666;
  font-size: 16px;
}
.footer-ul li dl dd span {
  color: transparent;
}
.footer-dl {
  display: flex;
}
.footer-dl dl {
  margin-right: 40px;
}
.footer-dl dl:last-child {
  margin-right: 0px;
}
.code-wrap {
  display: flex;
}
.code-item {
  width: 122px;
  margin-right: 20px;
  text-align: center;
}
.code-item:last-child {
  margin-right: 0px;
}
.code-item p {
  color: #666;
  line-height: 24px;
  margin-top: 18px;
  text-align: center;
}
.copy {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #808080;
  height: 101px;
  border-top: 1px solid #dcdcdc;
}
.copy p {
  font-size: 16px;
  line-height: 30px;
}
@media (max-width: 1200px) {
  .code-item {
    margin-right: 15px;
  }
  .footer-dl dl {
    margin-right: 20px;
  }
}
@media (max-width: 991px) {
  .copy {
    width: 100%;
    height: auto;
    flex-wrap: wrap;
    padding: 15px 0px;
  }
  .copy p {
    width: 100%;
    text-align: center;
  }
  .footer-ul {
    flex-wrap: wrap;
    margin-bottom: 10px;
  }
  .footer-ul li {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
  .footer-ul li h3 {
    margin-bottom: 4px;
  }
  .footer-ul li dl {
    text-align: center;
  }
  .footer-ul li dl dd {
    display: inline-block;
    margin: 0 4px;
  }
  .footer-ul li dl dd > a {
    line-height: 30px;
  }
  .footer-dl dl {
    margin-right: 0px;
  }
  .footer-dl {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  .code-wrap {
    width: 100%;
    justify-content: center;
  }
  .footer-bom {
    padding-top: 25px;
  }
  #footer {
   padding-top: 30px;
  }
}
/* 手机底部导航 */
.mobile-footer{
  height: 120px;
  width: 100%;
  max-width: 750px;
  background-color: #fff;
  border-top: 1px solid #cccccc;
  display: none;
  padding: 0 25px;
  position: fixed;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
}
.bar-list{
  display: flex;
  justify-content: space-between;
}
.bar-item a{
  height: 119px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.bar-icon{
  position: relative;
}
.bar-iconon{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  opacity: 0;
}
.bar-item p{
  font-family: "sMedium";
  font-size: 24px;
  line-height: 24px;
  color: #222;
  margin-top: 15px;
}
.bar-item.on .bar-iconon{
  opacity: 1;
}
.bar-item.on .bar-iconun{
  opacity: 0;
}
.bar-item.on p{
  color: #9fc62c;
}
@media(max-width: 750px){
  body{
    padding-bottom: 120px;
  }
  #footer {
    display: none;
  }
  .mobile-footer{
    display: block;
  }
}
@media(max-width: 559px){
  body{
    padding-bottom: 65px;
  }
  .bar-item p{
    font-size: 14px;
    line-height: 14px;
    margin-top: 5px;
  }
  .mobile-footer{
    height: 65px;
    padding: 0 10px;
  }
  .bar-item{
    height: 64px;
  }
  .bar-item a{
    height: 64px;
  }
  .bar-item:first-child .bar-icon img{
    width: 32px;
    height: 26px;
  }
  .bar-item:nth-child(2) .bar-icon img{
    width: 31px;
    height: 26px;
  }
  .bar-item:nth-child(3) .bar-icon img{
    width: 26px;
    height: 26px;
  }
  .bar-item:nth-child(4) .bar-icon img{
    width: 27px;
    height: 26px;
  }
}
/* 首页产品 */
.home-pro{
  padding-top: 100px;
  overflow: hidden;
  width: 100%;
}
.hpro-main{
  display: flex;
  margin-bottom: 100px;
}
.hpro-main:nth-child(2){
  flex-direction: row-reverse;
}
.hpro-imglist{
  width: 50%;
  padding-right: 50px;
}
.hpro-main:nth-child(2) .hpro-imglist{
  padding-left: 50px;
  padding-right: 0px;
}
.hpro-imglist li{
  width: 100%;
  display: none;
  overflow: hidden;
}
.hpro-imglist li.hpro-imgon{
  display: block;
}
.hpro-imglist li .public-img:hover img{
  transform: scale(1.1);
}
.hpro-right{
  width: 50%;
  padding-left: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hpro-main:nth-child(2) .hpro-right{
  padding-left: 0px;
  padding-right: 50px;
}
.hpro-right h3{
  text-align: center;
  font-size: 48px;
  color: #111111;
  line-height: 48px;
}
.hpro-item{
  text-align: center;
}
.newpro-swiper{
  width: 100%;
}
.patents-swiper{
  width: 100%;
}
.hpro-info{
  margin-top: 58px;
  text-align: center;
}
.hpro-info p{
  color: #222;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 6px;
}
.hpro-info span{
  font-size: 18px;
  line-height: 24px;
  color: #444;
  text-transform: uppercase;
}
.newpro-next,.newpro-prev{
  height: 50px;
  width: 50px;
  border-radius: 50%;
  border: 2px solid transparent;
  top: 50%;
  margin-top: -25px;
  opacity: 1;
  background-size: 16px 14px;
}
.newpro-next{
  right: 60px;
  background-image: url(../img/arrow-next.png);
}
.newpro-prev{
  left: 60px;
  background-image: url(../img/arrow-prev.png);
}
.newpro-next:hover, .newpro-prev:hover{
  border-color: #9fc62c;
}
.newpro-next:hover{
  background-image: url(../img/arrow-next-on.png);
}
.newpro-prev:hover{
  background-image: url(../img/arrow-prev-on.png);
}
.patent-next,.patent-prev{
  height: 50px;
  width: 50px;
  border-radius: 50%;
  border: 2px solid transparent;
  top: 50%;
  margin-top: -25px;
  opacity: 1;
  background-size: 16px 14px;
}
.patent-next{
  right: 60px;
  background-image: url(../img/arrow-next.png);
}
.patent-prev{
  left: 60px;
  background-image: url(../img/arrow-prev.png);
}
.patent-next:hover, .patent-prev:hover{
  border-color: #9fc62c;
}
.patent-next:hover{
  background-image: url(../img/arrow-next-on.png);
}
.patent-prev:hover{
  background-image: url(../img/arrow-prev-on.png);
}
@media(max-width: 1600px){
  .hpro-info{
    margin-top: 30px;
  }
}
@media(max-width: 1400px){
  .hpro-right{
    padding-left: 0px;
  }
  .hpro-main:nth-child(2) .hpro-right{
    padding-right: 0px;
  }
  .hpro-right h3{
    font-size: 40px;
    line-height: 40px;
  }
  .hpro-item img{
    width: 130px;
  }
}
@media(max-width: 1200px){
  .hpro-right h3{
    font-size: 36px;
    line-height: 36px;
    margin-bottom: 30px;
  }
  .hpro-right{
    width: 100%;
  }
  .hpro-main:nth-child(2) .hpro-imglist{
    padding-left: 0px;
  }
  .home-pro{
    padding-top: 80px;
  }
  .hpro-main{
    margin-bottom: 80px;
    flex-wrap: wrap;
  }
  .hpro-imglist{
    width: 100%;
    padding-right: 0px;
    margin-bottom: 30px;
  }
}
@media(max-width: 991px){
  .home-pro{
    padding-top: 40px;
  }
  .hpro-main{
    margin-bottom: 40px;
  }
  .hpro-right h3{
    font-size: 28px;
    line-height: 28px;
    margin-bottom: 20px;
  }
  .newpro-next{
    right: 30px;
  }
  .newpro-prev{
    left: 30px;
  }
  .patent-next{
    right: 30px;
  }
  .patent-prev{
    left: 30px;
  }
}
@media(max-width: 449px){
  .newpro-next{
    right: 0px;
  }
  .newpro-prev{
    left: 0px;
  }
  .patent-next{
    right: 0px;
  }
  .patent-prev{
    left: 0px;
  }
  .hpro-info{
    margin-top: 20px;
  }
  .hpro-main{
    margin-bottom: 30px;
  }
}
/* 发现更多产品 */
.find-pro{
  overflow: hidden;
}
.index-title{
  text-align: center;
  font-size: 50px;
  color: #111;
  line-height: 50px;
  margin-bottom: 60px;
  font-weight: bold;
}
.fpro-main{
  margin-bottom: 100px;
}
.fpro-item{
  width: 100%;
}
.fpro-img{
  border: 2px solid #f0f0f4;
  overflow: hidden;
}
.fpro-img img{
  width: 100%;
  display: block;
  transition: all .5s;
}
.fpro-item p{
  text-align: center;
  font-size: 16px;
  margin-top: 20px;
  line-height: 24px;
  color: #444;
  margin-bottom: 55px;
}
.fpro-swiper .swiper-scrollbar-drag{
  background: #9fc62c;
  height: 4px;
  top: -1px;
  border-radius: 2px;
}
.fpro-swiper .swiper-scrollbar{
  background: #dcdcdc;
  height: 4px;
  left: 0px;
  border-radius: 2px;
  bottom: 0px;
  width: 100%;
}
.fpro-item:hover .fpro-img{
  border-color: #9fc62c;
}
.fpro-item:hover .fpro-img img{
  transform: scale(1.1);
}
.fpro-item:hover p{
  color: #9fc62c;
}
.manu-pro{
  position: relative;
  margin-bottom: 40px;
}
.public-info{
  position: absolute;
  height: 100%;
  left: 0px;
  top: 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 60px;
  color: #222222;
}
.public-info p{
  font-size: 22px;
  line-height: 24px;
  font-family: "Arial";
  margin-bottom: 25px;
}
.public-info h3{
  font-size: 48px;
  line-height: 48px;
  margin-bottom: 58px;
}
.public-more{
  display: flex;
  width: 160px;
  height: 50px;
  align-items: center;
  justify-content: center;
  transition: all .5s;
  color: #222;
}
.public-more span{
  font-size: 22px;
}
.public-more i{
  width: 10px;
  height: 18px;
  background: url(../img/more-arrow.png) no-repeat center;
  margin-left: 14px;
  transition: all .5s;
}
.manu-pro:hover .public-img img{
  transform: scale(1.1);
}
.public-more:hover{
  background-color: #9fc62c;
  color: #fff;
}
.public-more:hover i{
  background-image: url(../img/more-arrow-on.png);
}
.manu-list{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hnews-item{
  width: calc(50% - 20px);
}
.hnews-item .public-info{
  justify-content: flex-end;
  padding-bottom: 45px;
}
.hnews-item .public-info h3{
  margin-bottom: 45px;
}
@media(max-width: 1400px){
  .index-title{
    font-size: 38px;
    line-height: 38px;
    margin-bottom: 40px;
  }
}
@media(max-width: 1200px){
  .public-info{
    padding-left: 40px;
  }
  .public-info h3{
    font-size: 38px;
    line-height: 38px;
    margin-bottom: 40px;
  }
  .public-info p{
    margin-bottom: 18px;
  }
  .hnews-item .public-info h3{
    margin-bottom: 35px;
  }
}
@media(max-width: 991px){
  .index-title{
    font-size: 28px;
    line-height: 28px;
    margin-bottom: 28px;
  }
  .fpro-item p{
    margin-bottom: 35px;
  }
  .fpro-main{
    margin-bottom: 40px;
  }
  .hnews-item{
    width: 100%;
    margin-bottom: 30px;
  }
  .hnews-item:last-child{
    margin-bottom: 0px;
  }
  .public-info{
    padding-left: 20px;
  }
  .public-info h3{
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 20px;
  }
  .public-more{
    width: 120px;
    height: 42px;
  }
  .public-more span{
    font-size: 16px;
  }
  .public-info p{
    margin-bottom: 4px;
    font-size: 16px;
    line-height: 24px;
  }
  .public-more i{
    width: 6px;
    height: 11px;
    background-size: 6px 11px;
    margin-left: 8px;
  }
  .manu-list{
    margin-bottom: 40px;
  }
  .hnews-item .public-info h3{
    margin-bottom: 25px;
  }
  .manu-pro{
    margin-bottom: 30px;
  }
}
@media(max-width: 449px){
  .fpro-item p{
    margin-bottom: 30px;
    margin-top: 15px;
  }
  .public-info p{
    font-size: 12px;
    line-height: 16px;
  }
  .public-info{
    padding-left: 10px;
  }
  .public-info h3{
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 5px;
  }
  .public-more{
    width: auto;
    justify-content: flex-start;
  }
  .hnews-item .public-info{
    padding-left: 25px;
  }
  .hnews-item .public-info h3{
    margin-bottom: 10px;
  }
}
/* 内页导航 */
.inside-nav{
  background-color: #fff;
  border-bottom: 1px solid #cccccc;
}
.inav-main{
  padding: 0 185px;
}
.inav-item{
  text-align: center;
}
.inav-item a{
  display: block;
  font-size: 16px;
  color: #444;
  line-height: 76px;
  border-bottom: 4px solid transparent;
  overflow: hidden;
  text-overflow:ellipsis;
  white-space: nowrap;
}
.inav-item:hover a{
  color: #9fc62c;
  border-bottom-color: #9fc62c;
}
.inav-swiper .swiper-slide.inav-on a{
  color: #9fc62c;
  border-bottom-color: #9fc62c;
}

.news-wrap{
  padding-top: 100px;
  background-color: #fff;
  overflow: hidden;
}
.inside-title{
  text-align: center;
  font-size: 48px;
  line-height: 88px;
  color: #111;
}
.news-top{
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.news-limgs{
  width: 50%;
}
.news-limgs li{
  display: none;
}
.news-limgs li.news-limgon{
  display: block;
}
.news-limgs li .public-img:hover img{
  transform: scale(1.1);
}
.news-right{
  width: 50%;
  background-color: #f0f0f4;
}
.news-info{
  padding-top: 98px;
  padding-left: 50px;
  padding-right: 50px;
}
.news-info h3 a{
  font-size: 30px;
  line-height: 30px;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #222;
  margin-bottom: 25px;
}
.news-info span{
  font-size: 16px;
  color: #888;
  line-height: 24px;
}
.news-info p{
  font-size: 16px;
  line-height: 32px;
  margin-top: 15px;
  color: #444;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.news-swiper{
  padding-bottom: 70px;
}
.news-swiper > .swiper-pagination-bullets{
  bottom: 0px;
}
.news-swiper .swiper-pagination{
  text-align: left;
  padding-left: 50px;
}
.news-swiper .swiper-pagination-bullet{
  width: 10px;
  height: 10px;
  background-color: #1a1a1a;
  opacity: 1;
}
.news-swiper > .swiper-pagination-bullets .swiper-pagination-bullet{
  margin: 0 6px;
}
.news-swiper .swiper-pagination-bullet-active{
  background-color: #9fc62c;
}
.news-info:hover h3 a{
  color: #9fc62c;
}
.news-list{
  margin-left: -17px;
  margin-right: -17px;
}
.news-list li{
  padding: 0 17px;
  width: 33.33%;
  float: left;
  margin-bottom: 34px;
}
.news-item{
  width: 100%;
}
.news-des{
  background-color: #f0f0f4;
  padding: 40px 30px 35px;
}
.news-des h3 a{
  font-size: 24px;
  line-height: 26px;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #222;
  margin-bottom: 20px;
      white-space: nowrap;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-des span{
  font-size: 16px;
  color: #888;
  line-height: 18px;
}
.news-des p{
  margin-top: 10px;
  font-size: 16px;
  line-height: 32px;
  color: #444;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 64px;
}
.news-item:hover .public-img img{
  transform: scale(1.1);
}
.news-item:hover .news-des h3 a{
  color: #9fc62c;
}
.click-more{
  margin: 0 auto 60px;
  width: 180px;
  display: block;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 25px;
  background-color: #9fc62c;
  color: #fff;
}
.news-click{
  margin-top: 26px;
}
@media(max-width: 1600px){
  .news-info{
    padding-top: 68px;
  }
}
@media(max-width: 1400px){
  .inav-main{
    padding: 0 120px;
  }
  .news-info{
    padding-top: 48px;
    padding-left: 30px;
    padding-right: 30px;
  }
  .news-info h3 a{
    font-size: 24px;
  }
  .news-swiper .swiper-pagination{
    padding-left: 30px;
  }
}
@media(max-width: 1200px){
  .inav-main{
    padding: 0 60px;
  }
  .news-wrap{
    padding-top: 80px;
  }
  .news-info{
    padding-top: 30px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .news-swiper .swiper-pagination{
    padding-left: 20px;
  }
  .news-swiper{
    padding-bottom: 40px;
  }
  .news-info p{
    line-height: 30px;
  }
  .news-list li{
    padding: 0 12px;
  }
  .news-list{
    margin-left: -12px;
    margin-right: -12px;
  }
  .news-des{
    padding: 30px 15px 24px;
  }
  .news-des h3 a{
    font-size: 20px;
    margin-bottom: 14px;
  }
  .news-des p{
    line-height: 30px;
  }
  .inside-title{
    font-size: 40px;
    line-height: 40px;
  }
}
@media(max-width: 991px){
  .inav-main{
    padding: 0px;
  }
  .news-wrap{
    padding-top: 40px;
  }
  .news-limgs{
    width: 100%;
  }
  .news-right{
    width: 100%;
  }
  .inside-title{
    font-size: 30px;
    line-height: 30px;
  }
  .news-top{
    margin-top: 28px;
    margin-bottom: 30px;
  }
  .news-right{
    padding-bottom: 30px;
  }
  .news-info h3 a{
    margin-bottom: 12px;
  }
  .news-info p{
    margin-top: 8px;
  }
  .news-list li{
    padding: 0px;
    float: none;
    width: 100%;
    margin-bottom: 30px;
  }
  .news-list{
    margin-left: 0px;
    margin-right: 0px;
  }
  .news-des{
    padding-top: 18px;
    padding-bottom: 16px;
  }
  .news-des p{
    margin-top: 4px;
    height: auto;
  }
  .news-des h3 a{
    margin-bottom: 8px;
  }
  .news-click{
    margin-top: 40px;
  }
  .click-more{
    margin-bottom: 40px;
  }
}
@media(max-width: 559px){
  .inav-item a{
    line-height: 48px;
  }
}
/* 企业简介 */
.about-des{
  color: #444;
  font-size: 16px;
  line-height: 32px;
  text-indent: 32px;
  margin-top: 50px;
  margin-bottom: 52px;
}
.about-des p{
  margin-bottom: 15px;
}
.about-des p:last-child{
  margin-bottom: 0px;
}
.vedio-img{
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-bottom: 100px;
}
.vedio-img img{
  width: 100%;
  display: block;
  transition: all .5s;
}
.play-wrap{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: rgba(0, 0, 0, .25) url(../img/mplay-icon.png) no-repeat center;
}
.vedio-img:hover img{
  transform: scale(1.1);
}
.about-list li{
  margin-bottom: 100px;
  display: flex;
  flex-wrap: wrap;
}
.about-img{
  width: 50%;
  padding-right: 30px;
}
.about-info{
  width: 50%;
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-list li:nth-child(even){
  flex-direction: row-reverse;
}
.about-list li:nth-child(even) .about-img{
  padding-right: 0px;
  padding-left: 30px;
}
.about-list li:nth-child(even) .about-info{
  padding-left: 0px;
  padding-right: 30px;
}
.about-info h3{
  font-size: 48px;
  line-height: 48px;
  color: #111;
  margin-bottom: 30px;
}
.about-info p{
  font-size: 16px;
  line-height: 32px;
  color: #444;
}
.about-img .public-img:hover img{
  transform: scale(1.1);
}
.about-info:hover h3{
  color: #9fc62c;
}
.about-bom{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 92px;
}
.about-item{
  width: calc(50% - 30px);
}
.about-bomdes{
  padding-top: 58px;
}
.about-bomdes h3{
  font-size: 48px;
  line-height: 48px;
  color: #111;
  margin-bottom: 30px;
}
.about-bomdes p{
  font-size: 16px;
  line-height: 32px;
  color: #444;
}
.about-item:hover .public-img img{
  transform: scale(1.1);
}
.about-item:hover .about-bomdes h3{
  color: #9fc62c;
}
@media(max-width: 1200px){
  .about-info h3{
    font-size: 40px;
    line-height: 40px;
  }
  .about-bomdes h3{
    font-size: 40px;
    line-height: 40px;
  }
}
@media(max-width: 991px){
  .about-des{
    margin-top: 20px;
    line-height: 30px;
    margin-bottom: 26px;
  }
  .about-des p{
    margin-bottom: 10px;
  }
  .vedio-img{
    margin-bottom: 40px;
  }
  .about-img{
    width: 100%;
    padding-right: 0px;
  }
  .about-info{
    width: 100%;
    padding-left: 0px;
    margin-top: 25px;
  }
  .about-list li:nth-child(even) .about-img{
    padding-left: 0px;
  }
  .about-list li:nth-child(even) .about-info{
    padding-right: 0px;
  }
  .about-info h3{
    font-size: 28px;
    line-height: 28px;
    margin-bottom: 15px;
  }
  .about-bomdes h3{
    font-size: 28px;
    line-height: 28px;
    margin-bottom: 15px;
  }
  .about-info p{
    line-height: 30px;
  }
  .about-list li{
    margin-bottom: 30px;
  }
  .about-item{
    width: 100%;
    margin-bottom: 25px;
  }
  .about-item:last-child{
    margin-bottom: 0px;
  }
  .about-bomdes p{
    line-height: 30px;
  }
  .about-bomdes{
    padding-top: 25px;
  }
  .about-bom{
    margin-bottom: 38px;
  }
}
/* 产品中心 */
.ipro-main{
  padding-left: 40px;
  padding-right: 40px;
}
.pros-wrap{
  padding-top: 100px;
  padding-bottom: 40px;
}
.pros-list{
  margin-left: -16px;
  margin-right: -16px;
}
.pros-list li{
  float: left;
  width: 25%;
  padding: 0 16px;
  margin-bottom: 10px;
}
.pros-item p{
  text-align: center;
  font-size: 16px;
  line-height: 60px;
  color: #444;
}
.pros-img{
  border: 2px solid transparent;
}
.pros-item:hover .pros-img{
  border-color: #9fc62c;
}
.pros-item:hover .pros-img img{
  transform: scale(1.1);
}
.pros-item:hover p{
  color: #9fc62c;
}
.pros-click{
  margin-top: 30px;
}
@media(max-width: 1200px){
  .ipro-main{
    padding-left: 0px;
    padding-right: 0px;
  }
  .pros-wrap{
    padding-top: 80px;
  }
}
@media(max-width: 991px){
  .pros-wrap{
    padding-top: 40px;
    padding-bottom: 20px;
  }

  .pros-list li{
    width: 50%;
    margin-bottom: 0px;
  }
}
@media(max-width: 449px){
  .pros-list{
    margin-left: 0px;
    margin-right: 0px;
  }
  .pros-list li{
    width: 100%;
    float: none;
    padding: 0px;
  }
  .pros-click{
    margin-top: 16px;
  }
}
/* 产品详情 */
.prodetail-top{
  display: flex;
  background-color: #fff;
  flex-wrap: wrap;
  padding: 40px 0px;
  margin-bottom: 50px;
}
.prodetail-topimg{
  width: 50%;
  padding-left: 40px;
  padding-right: 40px;
}
.prodetail-topimg li{
  display: none;
  border: 1px solid #dcdcdc;
}
.prodetail-topimg li.imgon{
  display: block;
}
.prodetail-topimg li:hover .public-img img{
  transform: scale(1.1);
}
.prodetail-topright{
  width: 50%;
  position: relative;
  padding-right: 40px;
}
.prodetail-topright h3{
  font-size: 30px;
  line-height: 30px;
  color: #222;
  padding-bottom: 58px;
}
.prodetail-topdes{
  border-bottom: 1px solid #d9d9d9;
  padding-top: 32px;
  padding-bottom: 38px;
  line-height: 48px;
  font-size: 16px;
  color: #444;
  border-top: 1px solid #d9d9d9;
  margin-bottom: 60px;
}
.prodetail-bomswiper{
  position: relative;
}
.prodetail-next,.prodetail-prev{
  width: 14px;
  height: 26px;
  margin-top: -13px;
  background-size: 14px 26px;
}
.prodetail-next{
  background-image: url(../img/pro-next.png);
  right: -27px;
}
.prodetail-prev{
  background-image: url(../img/pro-arrow.png);
  left: -27px;
}
.prodetail-next:hover{
  background-image: url(../img/pro-next-on.png);
}
.prodetail-prev:hover{
  background-image: url(../img/pro-arrow-on.png);
}
.prodetail-img{
  border: 1px solid transparent;
  transition: all .5s;
}
.prodetail-img .public-img {
  border: 1px solid #dedede;
}
.prodetail-img:hover{
  border-color: #9fc62c;
}
.prodetail-img:hover .public-img{
  border-color: #9fc62c;
}
.prodetail-bom{
  background-color: #fff;
  padding-top: 100px;
  padding-bottom: 50px;
  text-align: center;
}
.relative-wrap{
  padding-top: 100px;
  padding-bottom: 100px;
}
.relative-main{
  margin-top: 60px;
}
.relative-swiper p{
  color: #444;
  font-size: 16px;
  text-align: center;
  margin-top: 18px;
  line-height: 24px;
}
.relative-swiper .swiper-slide:hover p{
  color: #9fc62c;
}
.relative-swiper .swiper-slide:hover .public-img img{
  transform: scale(1.1);
}
@media(max-width: 1600px){
  .prodetail-topright h3{
    padding-bottom: 48px;
  }
  .prodetail-topdes{
    line-height: 40px;
  }
}
@media(max-width: 1400px){
  .prodetail-topright h3{
    padding-bottom: 30px;
  }
  .prodetail-topdes{
    padding-top: 24px;
    margin-bottom: 58px;
    padding-bottom: 24px;
  }
}
@media(max-width: 1200px){
  .prodetail-topright h3{
    padding-bottom: 20px;
    font-size: 24px;
    line-height: 24px;
  }
  .prodetail-topdes{
    margin-bottom: 36px;
    line-height: 32px;
  }
}
@media(max-width: 991px){
  .prodetail-topimg{
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 20px;
  }
  .prodetail-topright{
    padding-left: 20px;
    width: 100%;
    padding-right: 20px;
  }
  .prodetail-topdes{
    padding-top: 18px;
    margin-bottom: 24px;
    padding-bottom: 18px;
  }
  .prodetail-next{
    right: 10px;
  }
  .prodetail-prev{
    left: 10px;
  }
  .prodetail-top{
    margin-bottom: 30px;
    padding: 30px 0px;
  }
  .prodetail-bom{
    overflow: hidden;
    padding-top: 30px;
    padding-bottom: 0px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .prodetail-bom img{
    width: 100%;
    display: block;
  }
  .relative-wrap{
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .relative-main{
    margin-top: 28px;
  }
}
/* 手机 */
.mobile-wrap{
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}
.mobile-header{
  background-color: #fff;
  padding: 0 25px;
  display: flex;
  height: 100px;
  align-items: center;
  justify-content: space-between;
}
.mobile-main{
  padding: 0 25px;
}
.series-list{
  width: 100%;
  margin: 20px auto;
  padding-top: 35px;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
}
.series-item{
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 34px;
}
.series-icon{
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #9fc62c;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 11px;
}
.series-item p{
  text-align: center;
  color: #111;
  font-size: 24px;
  line-height: 24px;
}
.mobile-main .play-wrap{
  background-color: rgba(0, 0, 0, .15);
}
.mvedio-img{
  margin-bottom: 0px;
}
.mrecommend{
  margin-top: 35px;
}
.mrecommend-title{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.mrecommend-title h3{
  font-size: 30px;
  color: #222;
  line-height: 30px;
}
.mrecommend-more{
  display: flex;
  align-items: center;
}
.mrecommend-more span{
  font-size: 18px;
  color: #444;
  font-family: "sRegular";
}
.mrecommend-more i{
  width: 10px;
  height: 18px;
  background: url(../img/marrow-more.png) no-repeat center;
  background-size: 100% 100%;
  margin-left: 10px;
}
/* banner */
.public-swiper .swiper-container{
  width: 100%;
}
.public-swiper .swiper-slide img{
  width: 100%;
  display: block;
}
.public-swiper .swiper-pagination-bullet{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 1;
  background-color:#9fc62c !important;
  position: relative;
}
.public-swiper .swiper-pagination-bullet-active{
  background-color: #fff !important;
}
.public-swiper > .swiper-pagination-bullets .swiper-pagination-bullet{
  margin: 0 6px;
}
.public-swiper > .swiper-pagination-bullets{
  bottom: 10px;
}
.mrecommend-list{
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.mrecommend-list li{
  width: calc(50% - 10px);
}
.mrecommend-list li p{
  line-height: 56px;
  text-align: center;
  color: #333;
  font-size: 20px;
}
.mpatent{
  margin-top: 20px;
}
@media(max-width: 499px){
  .series-icon{
    width: 60px;
    height: 60px;
  }
  .series-icon img{
    padding: 5px;
   /* width: 45px;*/
  }
  .mobile-header{
    height: 70px;
    padding: 0 15px;
  }
  .series-item{
    margin-bottom: 15px;
  }
  .series-item p{
    font-size: 16px;
  }
  .series-icon{
    margin-bottom: 5px;
  }
  .series-list{
    padding-top: 18px;
  }
  .mobile-main{
    padding: 0 15px;
  }
  .mobile-main .play-wrap{
    background-size: 50px 50px;
  }
  .mrecommend{
    margin-top: 24px;
  }
  .mrecommend-title h3{
    font-size: 24px;
    line-height: 24px;
  }
  .mrecommend-more span{
    font-size: 16px;
  }
  .mrecommend-more i{
    width: 6px;
    height: 11px;
    margin-left: 6px;
  }
  .mrecommend-list li{
    width: calc(50% - 6px);
  }
  .mrecommend-list li p{
    line-height: 48px;
    font-size: 16px;
  }
  .mpatent{
    margin-top: 14px;
  }
}
.mobile-pro{
  display: flex;
}
.mpro-left{
  width: 120px;
}
.mpro-left ul li{
  background-color: #fff;
}
.mpro-left ul li a{
  font-size: 22px;
  color: #222;
  padding-left: 30px;
  display: block;
  line-height: 140px;
  border-bottom: 1px solid #dcdcdc;
  transition: all .5s;
}
.mpro-left ul li:first-child a{
  /* border-top: 1px solid #dcdcdc; */
}
.mpro-left ul li:hover a, .mpro-left ul li.on a{
  color: #9fc62c;
  background-color: #f0f0f4;
}
.mpro-right{
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 25px;
  width: calc(100% - 152px);
}
.mpro-list{
  margin-left: -8px;
  margin-right: -8px;
}
.mpro-list li{
  float: left;
  width: 50%;
  padding: 0 8px;
  margin-bottom: 12px;
}
.mpro-list li p{
  color: #333;
  font-size: 16px;
  text-align: center;
  line-height: 46px;
  display: inline-block;
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}
.footer-bar{
  display: block;
}
@media(max-width: 599px){
  .mpro-left{
    width: 100px;
  }
  .mpro-right{
    padding-left: 15px;
    padding-right: 15px;
    width: calc(100% - 70px);
  }
  .mpro-left ul li a{
    font-size: 14px;
    padding-left: 5px;
    padding-right: 5px;
    line-height: 24px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .mpro-list{
    margin-left: 0px;
    margin-right: 0px;
  }
  .mpro-list li{
    padding: 0px 5px;
    margin-bottom: 12px;
  }
}
.mpro-top{
  padding: 24px 25px 50px;
}
.mpro-top h3{
  text-align: center;
  font-size: 30px;
  color: #222;
  line-height: 30px;
  margin-bottom: 24px;
}
.mprodetail-swiper .swiper-container{
  width: 100%;
}
.mprodetail-swiper .swiper-slide img{
  width: 100%;
  display: block;
}
.mprodetail-swiper .swiper-pagination-bullet{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 1;
  background-color:#1a1a1a !important;
  position: relative;
}
.mprodetail-swiper .swiper-pagination-bullet-active{
  background-color: #9fc62c !important;
}
.mprodetail-swiper > .swiper-pagination-bullets .swiper-pagination-bullet{
  margin: 0 6px;
}
.mprodetail-swiper > .swiper-pagination-bullets{
  bottom: 30px;
}
.mpro-detail{
  width: 100%;
  overflow: hidden;
  background-color: #fff;
}
.mpro-detail img{
  width: 100%;
  display: block;
}
@media(max-width: 499px){
  .mpro-top{
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 30px;
  }
  .mpro-top h3{
    font-size: 24px;
    line-height: 24px;
  }
  .mprodetail-swiper > .swiper-pagination-bullets{
    bottom: 15px;
  }
}
.about-dess{
  padding: 40px 0 20px;
}
.about-dess img{
  max-width: 100%;
}
/* 联系我们 */
.contact-main{
  padding-bottom: 60px;
}
.contact-cont{
  overflow: hidden;
}
.contact-info{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f5f5f5;
  justify-content: center;
}
.contact-info dl dt{
  font-size: 24px;
  color: #9fc62c;
  margin-bottom: 25px;
}
.contact-info dl dd{
  line-height: 30px;
  color: #666;
  font-size: 16px;
}
.contact-img{
  overflow: hidden;
  width: 100%;
}
.contact-img img{
  display: block;
  width: 100%;
}
.contact-ditu{
  margin-top: 28px;
  overflow: hidden;
  width: 100%;
}
.contact-ditu img{
  display: block;
  width: 100%;
}
@media(max-width: 1200px){
  .contact-info dl dt{
    margin-bottom: 15px;
  }
}
@media(max-width: 991px){
  .col-xxs-12{
    width:100%;
  }
  .contact-info{
    padding: 30px 0px;
    margin-bottom: 15px;
  }
  .contact-main{
    padding-bottom: 40px;
  }
}
@media(max-width: 599px){
  .contact-main{
    padding-bottom: 30px;
  }
  .contact-ditu{
    margin-top: 15px;
  }
}

.ipronav-swiper .inav-on a{
  color: #9fc62c;
  border-bottom-color: #9fc62c;
}