@charset "utf-8";
header{
    width:100%;       
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s; 
    position: fixed;
    padding: 15px 0px;
    z-index: 9;  
}
.header .logo .logo{   
    transition: all .5s;
    height: 80px;
}
.header .logo .logo.pcon{
    display: none;
}
.header{
    padding:0px 0px;
    width:100%;    
    color:#3b3b3b;        
}
.header .language{      
    transition: all .5s;
    margin: 15px auto 15px auto;
}
.header .language span{
    font-size: 16px;
    color: #fff;
}
.header .header-tel{
    transition: all .5s;
    margin: 15px auto 15px auto;
    font-size: 16px;
    color:#fff;
}
@media(max-width:767px){
    .header .language,.header .header-tel{ 
        margin-top: 10px;
    }
    .header .language{
        margin-right: 40px
    }
}
@media(min-width:768px){
    .header .language,.header .header-tel{ 
        line-height: 50px;
    }
}
.header .header-tel i{
    font-size: 16px;
    color:#fff;
    margin: 0px 10px;
    cursor: pointer;
}
.header a{
    color: #fff;
}
header .nav{
    margin:15px auto 15px auto;
}
header .nav>ul{
    margin: 0px auto 0px auto;   
    transition: all .5s;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}
header .nav>ul>li{
    display: inline-block;
    padding: 0 25px;
    position: relative;
}
header .nav>ul>li>a{
    display: block;
    position: relative;
    color:#fff;  
    font-size: 18px;
    line-height: 1;
    padding:16px 0 15px 0;
}
header .nav>ul>li>a>b{
    display: block;
    height:3px;
    width:100%;
    background:#44b274;
    position: absolute;
    left:0;
    bottom:0;
    transform: rotateY(90deg);
    -webkit-transform: rotateY(90deg);
    -o-transform: rotateY(90deg);
    transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
}
header .nav>ul>li:hover a{
    color: #44b274;
}
header .nav>ul>li:hover a>b{
    transform: rotateY(0);
    -webkit-transform: rotateY(0);
    -o-transform: rotateY(0);
}
header .nav>ul>li.has-children > a::after {
    content: "\f078";
    font-family: FontAwesome;
    font-size: 12px;
    font-weight: normal;
    color: #fff;
    margin-left: 10px;
    float: right;
}
header.on .nav>ul>li.has-children > a::after {
    color:#424242;
}
@media(max-width:991px){
    header .nav>ul>li.has-children > a::after { 
        display: none;
    }
}
header .nav ul.submenu {
    display: none;
    position: absolute;
    left: 50%;
    top: 100%;
    margin-left: -80px;
    width: 160px;
    background: #fff;
    border-radius: 4px;
    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:20px; padding:12px 2%; text-align:center; }
header .nav ul.submenu li a:hover{color:#63a82f; background:#f2fcfa;}
header .nav>ul>li:hover ul.submenu{
    display: block;
}
.search-from{position:absolute;top:-125px;
    z-index:8;
    padding:20px;
    box-shadow:0 0 5px rgba(0,0,0,.2);
    background:#fff;
    left:50%;
    margin-left: -150px;
    opacity:0;transition:.5s all ease-in-out}
.search-from.active{top:100px;opacity:1;transition:.5s all ease-in-out}
.search-from form{justify-items:center}
.search-from #txtSearch{width:300px;border:1px #dedede solid;color: #232323;height:42px;outline:0;padding-left:10px}
.search-from .btnSearch{border:none;font-size:16px;height:42px;background:#44b274;width:90px;color:#fff}


.m-btn{
    display: none;
    position: absolute;
    cursor: pointer;
    right:20px;
    top:35px;
}
.m-btn span{
    display: block;
    width:20px;
    height:2px;
    background:#424242;
    position: relative;
    -webkit-transition: all 200ms cubic-bezier(.4,0,0,1);
    -o-transition: all 200ms cubic-bezier(.4,0,0,1);
	transition: all 200ms cubic-bezier(.4,0,0,1);
}
.m-btn span::before, .m-btn span::after{
    content:'';
    display: block;
    height:2px;
    width:20px;
    background:#424242;
    position: absolute;
	left: 0;
    -webkit-transition: all 200ms cubic-bezier(.4,0,0,1);
    -o-transition: all 200ms cubic-bezier(.4,0,0,1);
	transition: all 200ms cubic-bezier(.4,0,0,1);
}
.m-btn span:before {
	top: -8px;
}
.m-btn span:after {
	bottom: -8px;
}
.m-btn.active span {

	margin-left: 10px;
}
.m-btn.active span:before {
    transform: rotate(-48deg) translate(-6px, 5px);
    -webkit-transform: rotate(-48deg) translate(-6px, 5px);
    -o-transform: rotate(-48deg) translate(-6px, 5px);
	width: 24px;
}
.m-btn.active span:after {
    transform: rotate(48deg) translate(-6px, -5px);
    -webkit-transform: rotate(48deg) translate(-6px, -5px);
    -o-transform: rotate(48deg) translate(-6px, -5px);
	width: 24px;
}

header.on{
    color:#424242;
    background:#fff;
    padding: 10px 0px;
    box-shadow: 0 0 10px #eee;
}
header.on .header .nav ul li a{
    color:#424242;
}
header.on .header .logo .logo{
    height: 65px;
}
header.on .header .logo .logo.pc{
    display: none;
}
header.on .header .logo .logo.pcon{
    display: block;
}
header.on .language a,header.on .language span,header.on .header-tel,header.on .header-tel i{
    color:#2b2b2b;
}
header.on .nav,header.on .header-tel,header.on .language {
    margin: 7px auto 7px auto;
}
@media (max-width: 991px){
    .header .nav>ul>li{
        padding-left:0;
    }    
}
@media (max-width: 992px){   
    .m-btn{
        display: block;
    }    
    header{
        padding: 0px 0px;
    }
    .header{
        position: relative;    
        padding:0;
    }
    header .nav>ul{
        display: block;
    }    
    header.on .header .logo .logo, .header .logo .logo{
        height:60px !important;       
    }
    .header .header-mail {
        margin: 8px 45px 0px;
        line-height: 45px;
    }
    header .nav{
        position: absolute;
        left:-100vw;
        top:64px;
        width:70%;
        height:calc(100vh - 60px);
        background:#fff;
        box-shadow: 0 0 10px #eee;
        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;
        padding-left: 15px;
    }
    header .nav>ul>li::before,
    header .nav>ul>li:last-child::after{
        border-left: 0px dotted #c1c1c1;        
    } 
}
@media(max-width:991px){
    .header .nav .submenu li {
        display: none !important;
    }
}
@media (max-width: 540px){
    header.on .header .logo .logo, .header .logo .logo {
        height: 45px !important;
        margin-top: 10px;
    }
}
/* banner */
.banner{
    position: relative;
}
.banner .carousel-caption{
    text-align: left;
    width:100%;
    margin-top:-150px;
    position: absolute;
    left:0%;
    top:50%;
    color:#fff;
    padding:0 15px;
}
.banner .carousel-caption h3{
    font-size: 75px;  
    font-family: Nunito, sans-serif;
}
.banner .carousel-caption p{
    font-size: 22px;
    line-height: 1.2;
    margin:20px 0px;
    width: 56%;
}
.homeLink{
    position:relative; 
    display: inline-block;    
    line-height:50px;
    font-size:20px;
    font-weight: bold;
    text-align: center;
    border-radius:35px;
    padding: 8px 100px;    
    overflow:hidden; 
    color:#fff; 
    background:#44b274;
    transition: all 0.3s ease-in-out;
}
.homeLink:hover{  padding: 8px 150px; color:#fff;}

@media not all, (-webkit-transform-3d) {
    .carousel-inner>.item{
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        perspective: 1000px;
    }
}
@-webkit-keyframes scaleUpDown {
    from {opacity: 0.8; -webkit-transform: scale(1.2); transform: scale(1.2); }
    to { opacity: 1;  -webkit-transform: scale(1); transform: scale(1);}
}

@keyframes scaleUpDown {
    from {opacity: 0.8; -webkit-transform: scale(1.2); transform: scale(1.2);}
    to { opacity: 1;  -webkit-transform: scale(1); transform: scale(1);}
}
.banner .carousel-inner .item img{
    -webkit-animation: scaleUpDown 3.2s forwards cubic-bezier(0.250, 0.460, 0.450, 0.940);
    animation: scaleUpDown 3.2s forwards cubic-bezier(0.250, 0.460, 0.450, 0.940);
}
@media (max-width:991px){
   
    .banner .carousel-inner>.item>a>img, .banner .carousel-inner>.item>img, .img-responsive, .thumbnail a>img, .thumbnail>img {
        display: block;
        max-width: 112%;
        margin-left: -11%;
        height: auto;
    }     
}

.common{
    padding-top:50px;
    padding-bottom:50px;
}
.title{
    font-size: 40px;
    color:#363f3f;
    line-height:1.2;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: bolder;
    position: relative;
}
.title span,.title strong{
    font-size: 30px;
    display: block;
    font-weight: normal;
}
.title::before{
    display: block;
    content: "";
    width: 60px;
    height: 4px;
    background: #44b274;
    margin: 15px auto;
}
@media (max-width:991px){
    .common{
       padding-top:20px;
       padding-bottom:20px;
    }
    .title{
        font-size: 24px;
    }  
}

/* 关于我们 */
.about{
    background: url(../img/about.jpg) no-repeat bottom center;
    padding-top: 100px;
}
.about .about-box .about-intro{
    line-height: 1.5;
    font-size: 18px;
    margin-bottom: 40px;
    width: 75%;
    margin:0px auto 50px auto 
}
.about .about-box .more,.ny-about .more{ 
    color:#fff;
    display: inline-block;
    padding: 10px 50px;
    font-weight: bolder;
    background: #0088e5;
    margin-top: 30px;  
}
.about .about-box img{
    max-width: 100%;
}
@media (max-width:991px){  
    .about .about-box .about-intro {       
        width:100%;
        font-size: 16px;
        margin-bottom: 0px;
    }
}

.product{
    background: #fff;
    padding-bottom: 100px;
    overflow: hidden;  
}

.pro-tab{
    display: flex;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 50px;    
}
.pro-tab li{
    width: 21%;
    text-align: center;
}
.pro-tab li a{   
    padding: 8px 25px;
    margin: 0px 10px;
    border: 1px solid #dedede;
    border-radius: 30px;
    font-size: 20px;
    display: block;
    transition: all 0.6s;
}
.pro-tab li.active a,.pro-tab li a:hover{
    color: #fff;
    background: #44b274;
}
@media (max-width:991px){ 
    .pro-tab li a {
        padding: 8px 5px;
        margin: 0px 3px;
        border-radius: 30px;
        font-size: 12px;
    }    
     
}
/*优势特点*/
.services{
    background: url(../img/service.jpg) no-repeat top center;
    padding: 40px 0px;
}
.services .title{
    color: #fff;
}
.services .ser-con{
    background: rgba(255,255,255,1.0);
    border-radius: 5px;
    padding: 25px 30px;   
    margin-bottom: 40px;
    transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all 0.5s ease;
    box-shadow: 10px 10px 20px 0 rgba(0,0,0,.2);
}
.services .ser-con .ser-img img{
    max-width: 100%;
}
.services .ser-con h5{
    font-size: 16px;
    line-height: 1.4;
    min-height: 60px;

}
.services .ser-con h5::before{
    display: block;
    content: "";
    width: 30px;
    height: 3px;
    background: #44b274;
    border-radius: 10px;
    margin: 10px auto;  
}
.services .ser-con:hover{   
    transform: scale(1.05);
}

.news-content .news-list,
.ny-notice .news-list{   
    border-bottom: 1px solid #f7f7f7;
}

.news-content .news-list .news-title,
.ny-notice .news-list .news-title{
    font-size: 14px;
    line-height: 4;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding-left: 30px;
    position: relative;    
}
.news-content .news-list .news-title span,
.ny-notice .news-list .news-title span{
    font-size: 14px;
    float: right;
}
.news-content .news-list .news-title::before,
.ny-notice .news-list .news-title::before{
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -6px;
    left: 10px;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background: transparent;
    border: 2px solid #dcdcdc;
}

/* 新闻 */
.news-box .img{
    width: 100%;
    overflow: hidden;
    border-radius: 1px;
    height: 260px;
}
.news-box .img img{
    width: 100%;
    transition: all .5s;
}
.news-box .img:hover img{
    transform:  scale(1.1);
    -webkit-transform:  scale(1.1);
    -o-transform:  scale(1.1);
}
.news-box .news-con{   
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;    
}
.news-box .news-time{
    color: #44b274;
    font-size: 14px;
    line-height: 3;
    border-bottom: 3px solid #f7f7f7;
}
.news-box .news-time::after{
    display: block;
    content: "";
    width: 50px;
    height: 3px;
    margin-bottom: -3px;
    background: #44b274;
}
.news-box .news-title{
    overflow: hidden;
    text-overflow: -o-ellipsis-lastline;   
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: 16px;
    line-height: 1.4;
    font-weight: bold;    
    width: 100%;
    margin: 10px 0;   
}
.news-box .news-desc{
    border-top: 1px solid #f7f7f7;
    padding-top: 10px; 
    font-size: 14px;
}
.news-box .more{
    font-size: 16px;
    color: #44b274;
    display: block;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.6s;
}
.news-box .more:hover{
    color: #000;
}
@media (max-width:991px){
   .news-content {  
        padding: 20px;
    } 
}
.messsage{
    background: url(../img/messsage.png) no-repeat bottom center;
    padding-top: 50px;
    padding-bottom: 350px;
}