@charset "utf-8";
.header-top{
    background: #fff;
    padding: 2px 0px;
    border-bottom: 1px solid #ededed;
}
.header-top .lang {    
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-top .lang a{
    
    display: flex;
    align-items: center;
}
.header-top .lang i{    
    font-size: 22px;
    color: #5a8d00;
}
/*................*/
.header{
    padding: 0px 0px;
    max-width:1920px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    z-index: 999;
    background: #fff;
    position: relative;
    width: 100%;   
}
.header .logo{    
    padding: 0px 0px;
    transition: all .5s;  
}
.header .logo img{
    height: 90px;
    width: auto;
    margin-right: 5px;
    transition: all .5s;  
}
.header .logo a{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.header .logo span{   
    display: block;
    font-weight: 600;
    font-size: 30px;
}
.header .tel{
    float: right;
    font-size: 24px;
    margin-top: 26px;
}
.header .tel i{
    color: #5a8d00;
    font-weight: 600;
    font-size: 24px;
}
header .nav{
    padding: 0px 0px 0px;
    background: #5a8d00;
    position: relative;
     max-width:1920px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;   
    z-index: 99;
}
header .nav .logo img{
    height: 0px;   
    margin-right: 0px;
    transition: all .5s;
}
header .nav ul{    
    transition: all .5s;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}
header .nav ul li{
    width: 16.56%;
    position: relative;
}
header .nav ul li a{   
    position: relative;
    display: block;
    text-align: center;
    font-size: 18px;
    color: #fff;
    font-weight: 400;
    padding: 10px 0px;   
    line-height: 40px;
}
header .nav ul li a.zx{
    background: #78bc00;
    color: #fff!important;
    font-size: 16px;
    line-height: 20px;
    margin-top: 10px;
    border-radius: 30px;
    margin-left: 15px;
}
/*header .nav ul li a:before{
    content: "";
    position: absolute;
    right: -2px;
    width: 1px;
    height: 20px;
    top: 50%;
    margin-top: -10px;
    background: #adc680;
}*/
header .nav ul li::before{
    content: "";
    position: absolute;
    left: -1px;
    width: 1px;
    height: 20px;
    top: 50%;
    margin-top: -10px;
    background: #adc680;
}
header .nav ul li:hover a,header .nav ul li.active a{
     background:#335000;
     color: #fff;
}
header .nav ul.submenu {
    display: none;
    position: absolute;
    left: 0%;
    top: 100%;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    overflow: hidden;
}
header .nav ul.submenu li{width:100%; border-bottom:1px solid rgba(0,0,0,.05);}
header .nav ul.submenu li a{display:block;font-size:14px; background: #5a8d00; color:#fff; line-height:20px; padding:12px 2%; text-align:center; }
header .nav ul.submenu li a:after{
    width: 0px;
}
header .nav ul.submenu li a:hover{color:#fff; background:#335000;}
header .nav ul li:hover ul.submenu{
    display: block;
}
header .nav.on{
    background: #fff;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    border-bottom: 1px solid #e7e7e7;
}
header .nav.on ul{
    margin-top: 1.3%;
}
header .nav.on ul li a{ 
    color: #2b2b2b;
}
header .nav.on ul li:hover a, header .nav.on ul li.active a{
    color: #fff;
}
header .nav.on ul li a:hover{ 
    color: #fff;
}
header .nav.on .logo img{
    height: 90px;
    width: auto;
    max-width: 100%;  
    margin-right: 50px;
    transition: all .5s;
}


@media (max-width: 992px){  
    header{
        position: relative;
    }
    .header .logo{
        position: relative;
        padding: 5px 0px;
    }
    header .nav>ul{
        display: block;
    }    
    header nav.on .logo img, .header .logo img{
        height: 55px !important;
    }    
    header .nav.on,header .nav{
        position: absolute;
        left:-100vw;
        top: 100%;
        width:70%;
        height:calc(100vh - 55px);
        background:#fff;        
        z-index:999;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        padding-top:20px;
    }
    header .nav.show{
        left:0;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
    }
    header .nav ul{
        display: block;
    }
    header .nav ul li{
        display: block !important; 
        padding:0 20px;
        width: 100%;
        border-bottom: 1px solid #c1c1c1;
    }
    header .nav ul li a{
        color:#424242;
        text-align: left;
        font-size: 14px;
        padding: 5px 0px;
    }
    header .nav ul li:hover a, header .nav ul li.active a{
        background: transparent;
        color: #5a8d00;
    }
    header .nav ul li a.zx { 
        margin-bottom: 10px;
        margin-left: 0px;
        padding: 5px 15px;
    }
    header .nav ul li::before{
        width: 0px;
    }
    header .nav ul li:hover ul.submenu{
        display: none;
    } 
}
@media(max-width:1200px){
    .header .nav .submenu li {
        display: none !important;
    }
}
/* banner */
.banner{
    position: relative;
    overflow: hidden;
}
.common{
    padding-top: 80px;
    padding-bottom: 80px;
}
.commonT{
    padding-top: 80px;
}
.title{
    font-size: 40px;    
    line-height: 1.1;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 20px;    
}
.title span{
    display: block;
    font-weight: 600;
    font-size: 1.5rem;
    color: #e1e1e0;
}
.title .more{
   float: right;
   font-size: 1.125rem;
}
.title .tel,.message-box .tel{
   float: right;
   font-weight: 300;
   font-size: 1.5rem;
}
.message-box .tel{
    float: none;
}
.title .tel i,.message-box .tel i{
    font-size: 24px;
    color: #5a8d00;
}
@media (max-width:767px){
    .common{
       padding-top:25px;
       padding-bottom:25px;
    }
    .commonT{
       padding-top:25px;
    }
    .title{
        font-size: 22px;
        margin-bottom: 15px;
    }
    .title span{
        font-size: 1.25rem;
    }    
    .title .more{       
        font-size: 14px;
    }
    .title .tel,.message-box .tel,.title .tel i,.message-box .tel i{
        font-size: 1.25rem;
    }   
}

.line{
    height: 6px;
    margin: 35px 0px;
    border-top: 1px solid #e7e7e7;
}
.line:after{
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    margin-top: 2px;
    background: #e7e7e7;
}

/*产品*/
.product {
  background: #fff;
  overflow: hidden;
  position: relative;
}
.product .navlist {
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.product .navlist li {
  width: 25%;
  background: linear-gradient(90deg,#f9f9f9,#ebecec 100%);
  position: relative;
  padding: 25px 15px;
  display: flex;
  justify-content: space-between;
}
.product .navlist li h5{
    font-size: 1.25rem;
}
.product .navlist li h5:before{
    content: "";
    display: block;
    width: 30px;
    height: 2px;
    background: #dcdcdc;
    margin-bottom: 5px;
}
.product .navlist li a {
  display: block;
  font-size: 0.875rem;
  padding: 0.5rem 0px 0px;
}
.product .box-content {
  position: relative;
}
@media (max-width: 991px) {
    .product .navlist li {
      width: 50%;
      margin-bottom: 0.5rem;
    }
}
/*热销产品*/
.hot-product .advantage-img{
    background: #000;
    overflow: hidden;
    width: 66%;
}
.hot-product .advantage-img img{  
    transition-duration: 0.6s;
    height: 100%;
}
.hot-product .advantage-con{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.hot-product .advantage-con h5{
    font-size: 2.185rem;
    font-weight: 400;
    margin-bottom: 10px;
}
.hot-product .advantage-con h5 span{
    font-size: 1.9rem;
    font-weight: 600;
    color: #5a8d00;
    display: block;
    margin-bottom: 10px;
}
.hot-product .advantage-con .con-txt{
    width: 34%;
    background: #f2f2f2;
    padding: 3rem 2.5rem;
}
.hot-product .advantage-con .con-txt>div{
    height: 150px;
    overflow: hidden;
}
.hot-product .advantage-con .adv-more{    
    display: inline-block;
    border-radius: 35px;
    font-weight: 600;
    padding: 10px 30px 10px 55px;
    color: #5a8d00;
    font-size: 1.125rem;
    white-space: nowrap;
    background: url(../img/more.png) no-repeat 25px center #fff;
    margin-top: 25px;
    transition: all 0.3s ease-in-out;
}
.hot-product .advantage-con .adv-online{    
    display: inline-block;
    border-radius: 35px;
    font-weight: 600;
    padding: 10px 30px;
    color: #fff;
    font-size: 1.125rem;
    white-space: nowrap;
    background: #5a8d00;
    margin-top: 25px;
    transition: all 0.3s ease-in-out;
}
.hot-product .advantage-con .adv-online i{
    font-size: 1.125rem;
}
.hot-product ul li:hover .advantage-con .adv-more{padding: 10px 35px;}

.hot-product ul li:hover .advantage-img img{
    transform: scale(1.1);
    opacity: 0.95;
}
@media (max-width:992px){ 
    .hot-product .advantage-img,.hot-product .advantage-con .con-txt{    
        width: 100%;
    }
    .hot-product .advantage-con .con-txt {    
        padding: 2rem 1.5rem;
    }
    .hot-product .advantage-con h5 {
        font-size: 1.5rem;
    }
    .hot-product .advantage-con h5 span {
        font-size: 1.2rem;
    }
}

/*关于我们*/
.about{
    background: #fff;
    background-size: cover;
    overflow: hidden;
    position: relative;
}
.about ul{
    display: flex;
    position: relative;
    flex-wrap: wrap;
    justify-content: space-between;
}
.about ul li{
    width: 47.5%;
    transition: all 0.6s;
}
.about .about-txt h4,.ny-about .about-txt h4{   
    font-weight: 600;
    font-size: 2.1875rem;
}
.about .about-txt strong,.ny-about .about-txt strong{   
    color: #0f4bb0;
}
.about .more{   
    margin: 40px 0px;
}
.about .more a{   
    display: inline-block;
    border-radius: 1px;
    font-weight: 600;
    padding: 14px 50px;
    font-size: 1.125rem;
    background: transparent;
    border: 1px solid #d2d2d2;
    transition: all 0.3s ease-in-out;
    border-radius: 35px;
}

@media (max-width:992px){  
    .about ul li{
        width: 100%; 
    }  
    .about .more {
        margin: 20px 0px;
    }
    .about .more a{      
        padding: 5px 20px;    
    }
}

/*客户*/
.customer{   
    overflow: hidden;
    background: #f6f6f6;    
}
.customer .partner,.ny-case .partner{
    display: flex;
    justify-content: space-between;
}
.customer .partner li,.ny-case .partner li{
    width: 11%;
    border-radius: 100%;
    overflow: hidden;
}
.ny-case .partner li{
    border: 1px solid #efefef;
}
/*客户心声*/
.client-box{    
    margin: 0px auto;    
    position: relative;
}
.client-box .client-con{    
    min-height: 160px;
}
.client-box .client-list{
    background: #898d90;
    color: #fff;
    transition: all 0.6s;
    padding: 2.2rem 2.2rem;
}
.ny-case .client-box .client-list{
    margin-bottom: 25px;
} 
.client-box .client-list img{
    width: 80px;
    border-radius: 100%;
    border: 2px solid #fff;
}
.client-box .client-list .client-title{
    display: flex;
    font-size: 1.5rem;
    padding: 1.4rem 0px 0px;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid;
    border-color: rgba(255,255,255,0.3);
}
.client-box .client-list.swiper-slide-active,.ny-case .client-box .client-list:hover {
    background: #5a8d00;
}
.client-box .swiper-button-prev,.client-box .swiper-button-next,.product .swiper-button-prev,.product .swiper-button-next{   
    width: 55px;
    height: 55px;
    background: url(../img/wm_button_icon.png) no-repeat #dcdcdc;
    background-position: 0 0;
    background-size: 100%;
    transition: all 0.6s;
    border: 2px solid #dcdcdc;
    border-radius: 100%;
}
.client-box .swiper-button-prev:hover,.client-box .swiper-button-next:hover,.product .swiper-button-prev:hover,.product .swiper-button-next:hover {
    background-color: #5a8d00;
}
.client-box .swiper-button-next,.product .swiper-button-next {    
   background-position: 0 -52px;
}
.client-box .swiper-button-prev{
    left: auto;
    right: 70px;   
}
.client-box .swiper-button-next{
    right: 0px;   
}
.product .swiper-button-prev{
    left: -65px;  
}
.product .swiper-button-next{
    right: -65px;   
}

/*5大优势*/
.advantage ul{
    display: flex;
    justify-content: space-between;
    background: url(../img/advantage.jpg) no-repeat left;
    background-size: auto 100%;
    flex-wrap: wrap;
}
.advantage .advan-content{
    width: 33%;
    padding: 35px;
    color: #fff;    
}
.advantage .advan-content .advan-num{
    font-size: 5rem;
    line-height: 1.0;
    color: #5a8d00;
}
.advantage .advan-content .advan-intro{    
    margin-bottom: 5.2rem;
    font-size: 1.0rem;
    transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
}
.advantage .advan-content .advan-intro h5{
    font-size: 2.2rem;
    margin-bottom: 1rem;
}
.advantage .swiper-pagination{
    text-align: left;   
    bottom: 0%;
}
.advantage .swiper-pagination .swiper-pagination-bullet{
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    opacity: 1.0;
    margin-right: 5px;
    width: 40px;
    border-radius: 40px;
    text-align: center;    
    height: 40px; 
    line-height: 40px;   
    transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;    
}
.advantage .swiper-pagination .swiper-pagination-bullet-active{
    background: #5a8d00;
    border: 1px solid #5a8d00;
    width: 100px;
}
.advantage .advan-img{
    width: 66.6666%;
}
.advantage .advan-img img{
    width: 100%;
}
@media (max-width:992px){ 
    .advantage ul{    
        background-size: 100% 100%;
    }
    .advantage .advan-content,.advantage .advan-img{
        width: 100%;
    }
    .advantage .advan-content .advan-num{
        font-size: 3.8rem;
    }
    .advantage .advan-content .advan-intro h5{
        font-size: 1.4rem;
    }
}
/* 新闻 */
.news ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.news ul li{
    width: 32%;
}
.news ul li a{
   display: block;
   position: relative;
}
.news .img img{
    width: 100%;
}
.news .news-con{
    padding: 15px 0px 0px;
}
.news .news-title{   
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 1.5rem;  
}
.news .news-time{      
    font-size: 1.6rem;
    color: #e1e1e0;
    font-weight: 600;   
}
.news .news-desc {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: normal;
    line-height: 1.3;
}
@media (max-width:992px){    
    .news ul li{
        width: 100%;
        margin-bottom: 3%;
    }
    .news .news-title{
        font-size: 1.35rem;
    }   
}
/*立即咨询*/
.contact-index{
    background: url(../img/contact.jpg) no-repeat center;    
}
.contact-index .title{
    font-size: 30px;
}
.contact-index .contact-box,.message-box{
    display: flex;
    align-items: center;   
    justify-content: space-between;
    width: 100%;
}
.message-box{
    margin-top: 2rem;
}
.message-box .title span{
    color: #5a8d00;
}
.message-box .title b{
    font-size: 1.125rem;
    font-weight: lighter;
    display: block;
}
.message-box .contact-left{
    width: 60%;
}
.contact-index .more{
    padding: 10px 50px 10px 50px;
    font-weight: 600;
    display: inline-block;
    white-space: nowrap;
    background: #5a8d00;
    color: #fff;
    font-size: 1.125rem;
    border-radius: 35px;
    transition: all 0.6s;
}
.contact-index .more:hover{    
    padding: 10px 55px 10px 55px;
}
.contact-index .more i{
    font-size: 1.375rem;
}
.contact-index .er-box,.message-box .er-box{
    text-align: center;
    width: 130px;
    line-height: 1.1;
    padding: 8px;
    background-color: #fff;
}
.message-box .er-box{
    border: 1px solid #e8e8e8;
}
.contact-index .er-box img,.message-box .er-box img{
    margin-bottom: 5px;
}
.contact-index .er-box p span,.message-box .er-box p span{
    display: block;
    font-size: 12px;
}
@media (max-width:992px){ 
    .contact-index .title {
        font-size: 18px;
    }
}