@charset "utf-8";
header{
    width:100%;
    position: relative;     
    z-index: 999;   
}
.header{
    width:100%;    
    padding: 12px 0px;
    position: fixed;
    max-width:1920px;
    top: 0px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
}
.header .language{    
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-left: 20px;
}
.header .language li{    
    padding-left: 12px;
    position: relative;
}
.header .language li a,
.header .language a i{
    color: #1dab03;
    font-size: 21px;
}
.header .language li span{
    font-weight: 600;
    font-size: 16px;
}
.header .language li.weChat .er-box{
    position: absolute;
    top: 100%;
    margin-left: -50px;
    width: 10px;
    height: 10px;    
    opacity: 0.0;
    transition: all 0.3s;
    z-index: 9;
}
.header .language li.weChat .er-box img{
    border: 8px solid #fff;
}
.header .language li.weChat:hover .er-box{
    opacity: 1.0;
    width: 120px;
    height: 120px;
}
.header .logo img{
    height: 55px;
    width: auto;
    transition: all .5s;  
}
@media(max-width:767px){    
    .header .logo img{ 
        height: 45px;
    }
}
header .nav{
    padding: 0px 0px;
    display: flex;
    justify-content: flex-end;
}
header .nav>ul{
    margin: 0px 0px;
    transition: all .5s;
    display: flex;
    justify-content: flex-end;
    flex-wrap: nowrap;
}
header .nav>ul>li{
    display: inline-block;
    padding-left: 35px;
    position: relative;
}
@media(max-width:1180px){
    header .nav>ul>li{
        padding-left: 20px;
    } 
}
header .nav>ul>li>a{
    display: block;
    color: #fff;
    position: relative;
    font-size: 16px;
    font-weight: 400;    
    line-height: 55px;
}
header .nav>ul>li:hover a,header .nav>ul>li.active a{
    color: #1dab03;
}
header .nav ul.submenu {
    display: none;
    position: absolute;
    left: 50%;
    top: 100%;
    margin-left: -55px;
    width: 155px;
    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; color:#444; line-height:18px; padding:12px 4%; text-align:center; }
header .nav ul.submenu li a:hover{color:#3c4a76; background:#f2fcfa;}
header .nav>ul>li:hover ul.submenu{
    display: block;
}
.header.on{
    background: rgba(0,0,0,0.8);    
    box-shadow: 0 0 10px #383232;
}
@media (max-width: 992px){  
    .header{
        position: relative;
        padding:10px 0px;
        background: #000;
    }
    header .nav>ul{
        display: block;
    }
    header .nav .language{
        border-top: 1px solid #dcdcdc;
    }
    header .nav{
        position: absolute;
        left:-100vw;
        top: 64px;
        width:70%;
        height:calc(100vh - 64px);
        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 li{
        display: block !important; 
        padding:0 20px;
    }
    header .nav ul li a{
        color:#424242;
        font-size: 14px;
    }
    header .nav>ul>li::before,
    header .nav>ul>li:last-child::after{
        border-left: 0px dotted #c1c1c1;
    } 
}
@media(max-width:992px){
    .header .nav .submenu li {
        display: none !important;
    }
}
/* banner */
.banner{
    position: relative;
    overflow: hidden;
}
.banner .banner-txt{   
    text-align: left;
    width:100%;    
    position: absolute;
    left:0%;
    top: 0px;
    z-index: 9;
    color:#fff;
    top: 40%;    
}
.banner .banner-txt h3{
   font-size: 60px;
   margin-bottom: 5px; 
   font-weight: 900;
}
.banner .banner-txt p{
    width: 50%;
    font-size: 20px;  
    display: block;
    line-height: 1.5;
}
@media(max-width:1299px){
    .banner .banner-txt{ 
        top: 20%;    
    }
    .banner .banner-txt h3{
        font-size: 32px;
    }
    .banner .banner-txt p{
        font-size: 18px;       
    }
}
@media(max-width:991px){
    .banner .banner-txt h3{
        font-size: 18px;
    }
    .banner .banner-txt p{
        font-size: 12px;
        width: 100%;
    }
}
.common{
    padding-top: 80px;
    padding-bottom: 80px;
}
.title{
    font-size: 40px;
    line-height: 1.1;
    text-transform: uppercase;
    position: relative;
    font-weight: 800;
    text-align: center;   
    margin-bottom: 25px;    
}
.title span{
    display: block;
    font-size: 24px;
    color: #0d7d00;
}
.more{
    display: inline-block;
    border: 3px solid #0d7d00;
    border-radius: 30px;
    padding: 5px 45px;
    font-weight: 600;
    font-size: 18px;
    color: #0d7d00;
    margin-top: 30px;
    transition: all 0.6s;
}
.more:hover{    
    background: #0d7d00;
    color: #fff;
    padding: 5px 55px;
}
@media (max-width:767px){
    .common{
       padding-top:30px;
       padding-bottom:30px;
    }
    .title{
        font-size: 20px;
        margin-bottom: 15px;
    }
    .title span{ 
        font-size: 16px;
    }
    .more {
        border: 2px solid #0d7d00;
        padding: 5px 25px;
        font-size: 14px;
        margin-top: 15px;
    }
    .more:hover{
        padding: 5px 35px;
    } 
}
/*关于我们*/
.about{
    background: url(../img/about.jpg) no-repeat center bottom;
}
.about .about-info h3{
    font-size: 45px;
    font-weight: 600;
    color: #0d7d00;
    margin: 50px 0px 15px;
}
.about .about-info{
    width: 80%;
    font-size: 16px;
    text-align: center;
    margin: 0px auto;
}
/*首页关于我们*/
.sign{
    height: 400px;
}
@media (max-width:767px){
    .about .about-info {
        width: 100%;
        font-size: 14px;
        text-align: left;
    }
    .about .about-info h3 {
        font-size: 18px;
    }
}

/*产品*/
.product{
    background: #fff;
    overflow: hidden;    
}
.product .navlist{
    display: flex;
    position: relative;
    flex-wrap: wrap;
    justify-content: space-between;
    border-bottom: 2px solid #dddddd;
}
.product .navlist:after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    bottom: 2px;
    background: #dddddd;
}
.product .navlist li{
    width: 15.5%;
    transition: all 0.6s;
} 
.product .navlist li h5 {     
    font-size: 16px; 
    line-height: 1.2;
    text-transform: uppercase;
    position: relative;
    font-weight: lighter;    
    width: 100%;
    padding: 50px 0px;
}
.product .navlist li h5 i{
    float: right;
    color: #b2b2b2;
    font-size: 40px;
    margin-left: 10px;
    transition: all 0.6s;
}
.product .navlist li h5:before {
    display: block;
    content: "";
    width: 35px;
    height: 3px;
    background: #d2d2d2;
    margin-bottom: 15px;
    transition: all 0.6s;
}
.product .navlist li:hover h5{
    font-weight: 600;
}
.product .navlist li:hover h5:before{
    background: #0d7d00;
}
.product .navlist li:hover h5 i{
    color: #0d7d00;
    font-weight: 400;
}
@media(max-width:991px){
    .product .navlist li {
        width: 47%;
    }
    .product .navlist li h5{
        padding: 20px 0px;
    }
    .product .navlist li h5 i{
        font-size: 26px;
    }
}
/*服务支持*/
.support{
    position: relative;
    overflow: hidden;    
}
.support ul{
    display: flex;
    justify-content:space-between;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    padding-bottom: 80px;
    border-bottom: 2px solid #dddddd;
}
.support ul:after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    bottom: 2px;
    background: #dddddd;
}
.support ul li{ 
    width: 49%;    
    position: relative;
    margin: 10px 0px;    
}
.support ul li .app-img{      
    width: 100%;
    height: 100%;  
    overflow: hidden;
}
.support ul li .app-img img{
    width: auto;    
    object-fit: cover;
    transition: all 1s;
}
.support ul li .app-img:hover img{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
}
.support ul li .app-img h5 { 
    color: #fff;
    font-size: 16px; 
    line-height: 1.2;
    text-transform: uppercase;
    position: relative;
    font-weight: lighter;
    position: absolute;
    bottom: 0px;
    width: 100%;
    padding: 35px;
}
.support ul li .app-img h5 span{
    display: block; 
    font-size: 30px;
    font-weight: 600;    
}
.support ul li .app-img h5 i{
    float: right;
    font-size: 40px;
}
@media (max-width:992px){
    .support ul{
        padding-bottom: 20px;
    }
    .support ul li {
        width: 100%;
        margin-bottom: 15px;
    }
    .support ul li .app-img h5{
        font-size: 14px;
    }
    .support ul li .app-img h5 span{
        font-size: 18px;
    }
    .support ul li .app-img h5 i{
        font-size: 28px;
    }
}

/*案例*/
.case{
    background: url(../img/case.jpg) no-repeat center;
    background-size: cover;
    overflow: hidden;
}
.case .title,.case .title span{
    color: #fff;
}
.case .more{
    color: #fff;
    border: 3px solid #fff;
}
.case .case-box{
    position: relative;
    width: 80%;
    margin: 50px auto;
}
.case .case-list{ 
    width: 52%;
    margin: 0px auto;
    text-align: center; 
    color: #fff; 
    transition: all 0.6s;     
    margin-bottom: 10px;    
}
.case .case-list h5{  
    font-size: 30px;
    font-weight: 900;
}
.case .case-list .sortname{
    display: block;
    font-size: 16px;
    font-weight: normal;
    margin: 10px 0px;   
}
.case .case-list .case-more a {
    font-size: 18px;
    color: #fff;
    font-weight: 900;
    display: block;
    margin-top: 30px;
    transition: all 0.6s;    
}
.nav-list .nav-hover{
    position: absolute;
    bottom: 0px;
    color: #fff;
    padding: 30px 35px;
    width: 100%;
    z-index: 2;
    transition: all 0.6s;
}
.nav-list:hover .nav-hover{
    bottom: 10px;
}
.nav-list:hover .nav-img img{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
}
.nav-list:hover:after{
    opacity: 0.5;
    height: 100%;
}
@media (max-width:992px){
    .case .case-box {
        width: 100%;
        margin: 20px auto;
    }
    .nav-list .nav-hover{
        padding: 10px 15px;
    }
    .nav-list h5{
        font-size: 14px;
    }
    .nav-list .more{
        font-size: 13px; 
    }
    .case .case-list h5{
        font-size: 16px;
    } 
    .case-box .swiper-button-next{
        right: 0px;
    }
    .case-box .swiper-button-prev {
        left: 0px;
    }
    .case .case-list .case-more a{
        font-size: 14px;
    }
}
/*伙伴*/
.partner{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.partner li{
    width: 15%;
    margin: 10px 0px;
}
.partner li .par-img img{
    width: auto;
    max-width: 100%;
    opacity: 1.0;    
    transition: all 0.6s;
}
.partner li .par-img:hover img{
    transform: translateY(-8px);
    -webkit-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
}
/* 新闻 */
.news{
    background: #fff;
}
/*新闻分类*/
.news-nav{
   display: flex;
   justify-content: center;
   margin-bottom: 25px;
}
.news-nav li {
    position: relative;
    padding: 0px 30px;    
    display: inline-block;
}
.news-nav li a{
    font-size: 18px;
    color: #0d7d00;
}
.news-nav li:first-child:after {
    content: "";
    position: absolute;
    width: 2px;
    background: #0d7d00;
    height: 20px;
    top: 50%;
    right: 0px;
    margin-top: -10px;
}
.news-box .news-list{    
    margin-bottom: 15px;
    background: #fff;
}
.news-box .news-list .img{   
    overflow: hidden;
}
.news-box .news-list .img img{
    width: 100%;   
    transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
}
.news-box .news-list .img:hover img{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
}
.news-list .news-time{
    font-size: 40px;
    line-height: 1.4;    
    font-family: "din-m";
    color: #999999;
}
.news-list .news-title{
    overflow: hidden;
    font-weight: 600; 
    text-overflow: ellipsis;
    white-space: nowrap;  
    font-size: 20px;   
    line-height: 1.4;
    margin: 10px 0px;
}
.news-list .news-desc{
    overflow: hidden;    
    text-overflow: -o-ellipsis-lastline;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;    
    -webkit-box-orient: vertical;
    font-size: 16px;
    line-height: 1.4;
    margin: 5px 0px;
}
@media (max-width:991px){
   .news-list .news-title{
     font-size: 16px;
   }
   .news-list .news-desc{
    font-size: 14px;
   }
   .news-list .news-time {
     font-size: 20px;
    }
}