@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;
    z-index: 9;  
}
.header .logo .logo{   
    transition: all .5s;
}
.header .logo{
    line-height: 80px;
}

.header{
    padding:0px 0px;
    width:100%;    
    color:#3b3b3b;  
    background: #fff;     
    box-shadow: 0 0 10px #383232; 
}
.header .language{  
    margin-right:40px; 
    transition: all .5s;
}
.header .language span{
    font-size: 16px;
    color: #fff;
}
.header .header-tel{
    transition: all .5s;
    font-size: 16px;
    color:#fff;
}
@media(max-width:991px){
    .header .language,.header .header-tel{ 
        margin-top: 20px;
    }
}
@media(min-width:768px){
    .header .language,.header .header-tel{ 
        line-height: 80px;
    }
}
.header .header-tel i{
    font-size: 16px;
    color:#fff;
    margin: 0px 10px;
    cursor: pointer;
}
.header a{
    color: #2b2b2b;
}
header .nav>ul{
    margin:0px auto 0px auto;   
    transition: all .5s;
    text-align: center;

}
header .nav>ul>li{
    display: inline-block;
    height: 80px;
   
    padding: 0 30px;
    position: relative;
}

@media(max-width:1229px){
   
    header .nav>ul>li{
        padding: 0 13px;
    }
}
@media(max-width:991px){
    header .nav>ul>li{
        height: 60px;
    }
}


header .nav>ul>li>a{
    display: block;
    position: relative;
    color:#2b2b2b;  
    font-size: 16px;
    line-height: 80px;
    
}

header .nav>ul>.active a{
     color: #0079bf;
     font-weight: normal;
}
header .nav>ul>li>a>b{
    display: block;
    height:3px;
    width:100%;
    background:#0079bf;
    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 {
    background-color: #0079bf;
    font-weight: normal;
}
header .nav>ul>li:hover a{
    color: #fff;
}
header .nav>ul>li:hover a>b{
    transform: rotateY(0);
    -webkit-transform: rotateY(0);
    -o-transform: rotateY(0);
}

@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: -62px;
    width: 124px;
    background: #fff;
   padding-top: 1px;
    overflow: hidden;
}
@media(max-width:991px){
    header .nav li:last-child ul.submenu {
        display: block;
        left: 0%;   
        margin-left: 0px;
    }
}
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 12px; text-align:left; }
@media(max-width:991px){
    header .nav ul.submenu li a{
        padding:4px 2%;
    }
}
header .nav ul.submenu li a:hover{color:#fff; background:#0079bf;}
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:80px;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:#13aa1e;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;
}


@media (max-width: 991px){
    .header .nav>ul>li{
        padding-left:0;
    }    
}
@media (max-width: 992px){   
    .m-btn{
        display: block;
    }    
    .header{
        position: relative;    
        padding:0;
    }
    header .nav>ul{
        display: block;
    }    
 
    .header .header-mail {
        margin: 8px 45px 0px;
        line-height: 45px;
    }
    header .nav{
        position: absolute;
        left:-100vw;
        top:80px;
        width:70%;
        height:calc(100vh - 60px);
        background:#fff;
        box-shadow: 0 0 10px #383232;
        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:#2b2b2b;
        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;
    }
    .header .nav li:last-child .submenu li {
        display: block !important;
    }
}
.input_text{
    width: 142px;
    margin-top: 27px;
    height: 26px;
    border:1px solid #e2e2e2;
    padding:0px;
    text-indent: 10px;
    outline: none;
    float:left;
    border-radius: 20px;
    
    padding-right: 25px;
}
.m_right{
    position: relative;
}
.m_right .submit{
    position: absolute;
    cursor:pointer;
    top:32px;
    right: 10px;
    z-index: 99;
    line-height: 15px;
    background: url(../img/sousuo.png) no-repeat;
    width: 15px;
    border: 0;
    height: 15px;
}
/* banner */
.ny-ban{
    padding-top: 80px;
}
@media(max-width:1629px){
    .ny-ban img{
        height: 335px;
        width: 100%;
        object-fit: cover;
    }
}
@media(max-width:991px){
    .ny-ban img{
        height: 200px;
        width: 100%;
        object-fit: cover;
    }
}
.ny-ban img{
    width: 100%;
}
.banner{
    position: relative;
    padding-top: 80px;
}
.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 80px;    
    overflow:hidden; 
    color:#fff; 
    background:#92d14f;
    transition: all 0.3s  1s 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: 100%;
        margin-left: 0%;
        height: auto;
    }     
}

/* .top_title */
.top_title h1{
    font-size: 27px;
    line-height: 34px;
    font-weight: lighter;
}
.top_title h2{
    font-size: 37px;
    line-height: 44px;
    font-weight: lighter;
}
.top_title h2:after{
    content: '';
    display: block;
    width: 80px;
    height:4px;
    background:#2d4798;
    margin-top: 13px;
    margin-bottom: 22px;
}

/* .about */
.main .list .img{
    margin-top: 30px;
}
.main .list .img img {
    width: 100%;
}

.about{
    padding-top: 94px;
}
.ny-comm.about{
    padding-top: 0px  !important;
}
.about .about_list{
    margin-right: -5px;
    margin-left: -5px;
}
.about .about_img{
    width: 20%;
    padding-left: 5px;
    padding-right: 5px;
    margin-top: 15px;
    margin-bottom: 5px;
    float: left;
    overflow: hidden;

}
.about .a1{
    display: none;
}
@media(max-width:991px){
    .about .about_img{
        width: 33.33%;
    }
    .about .about_img.a1{
        display: block !important;
    }
}
@media(max-width:767px){
    .about .about_img{
        width: 50%;
    }
    .about .about_img.a1{
        display: block !important;
    }
}
.about .right img{
    width: 100%;
}
.about .about_img img{
    width: 100%;
    transition-duration:1s;
}

.about .about_img:hover img{
    transform:scale(1.1);
}
.about .left p:nth-child(1){
    font-size: 14px;
    color: #2b2b2b;
    line-height: 28px;
    width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
    overflow: hidden;
}

.about .content .bottom{
   margin-top: 60px;
}
.about .content .bottom .col-xs-6{
    margin-top: 14px;
}
.about .content .bottom h1{
    font-size: 28px;
    font-weight: bold;
    color: #2b2b2b;
    line-height: 34px;
}
.about .content .bottom h1:after{
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: #0079bf;
    margin-top: 3px;
    margin-bottom: 3px;
}
.about .content .bottom h5{
    color: #2b2b2b;
    font-size: 16px;
    line-height: 20px;
    font-weight: lighter;
}
/* products */

.swiper-container1{
    overflow: hidden;
}
.swiper-button-next{
    background:url(../img/right.png) no-repeat center;
}
.swiper-button-prev{
    background:url(../img/left.png) no-repeat center;
}
.swiper-button-next, .swiper-button-prev{
    width: 100%;
   border: 0 !important;
   outline:none !important;
    position: static;
    line-height: 45px;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    margin-top: 0;
}
.products {
    margin-top: 94px;
}
.products .products_top{
    background: url(../img/product-bj.jpg) no-repeat;
    background-size:cover;
    padding-top: 98px;
    padding-bottom: 40px;
}
.products_top .list_select,.products_top .top_title{
    color: #fff;
}
.products_top .list_select{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.products_top .list_select .select{
    display: inline-block;
    
    cursor:pointer;
}

.products_top .top_title h2:after {
    background: #fff !important;
}
.products_top .list_select .select a {
    color: #fff;
    font-weight: lighter;
}
.products_top .list_select .select.active a, .products_top .list_select .select:hover a{
    color: #fff;
    font-weight: bold;
}
.products_top .list_select .select a span{
    display: inline-block;
    padding-left: 15px;
    background: url(../img/icon2.png) no-repeat 0;
}
.products_top .list_select .select:hover span{
    background: url(../img/icon1.png) no-repeat 0;
}
.products_top .list_select .select:after{
    width: 140px;
    height: 2px;
    content: '';
    display: block;
    background: #fff;
    margin-top: 8px;
}
.products_top .list_select .select:hover:after {
    background: #fff;
}
.products_top .list_select .select:hover{
    font-weight: bold;
}
.products_content{
    background:#f5f5f5;
}
.products_content .products_list_content{
   
    overflow: auto;
    padding-bottom: 35px;
}
.products_content .products_list_content p{
    
    overflow: hidden;
}
.products_list_content {
    background:#f5f5f5;
}
.products_list_content .list_content {
    padding-top:50px;
    width: 100%;
    margin: 0 auto;
    
}
.products_list_content .list_content .content{
    background:#fff;
    padding: 40px 50px 20px 50px;
}
.products_list_content .list_content .contents {
    padding: 20px 50px 40px 50px;
} 
.products_list_content .list_content .content h1{
    font-size: 16px;
    color: #2b2b2b;
    text-align: center;
    line-height: 18px;
    font-weight: lighter;
}
.products_list_content .list_content .content h2{
    font-size: 16px;
    color: #003f82;
    font-weight: bold;
    text-align: center;
    line-height: 24px;
}
.products_list_content .list_content .content h2:after{
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background:#003f82;
    margin-top: 5px;
    left: 0;
    right: 0;
    margin: 0 auto;
    margin-top: 8px;
    margin-bottom: 18px;
}
.products_list_content .list_content .content .img{
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}
.products_list_content .list_content .content .img img{
    width: 100%;
    transition-duration:1s;
}
.products_list_content .list_content .content .img:hover img{
    transform:scale(1.1);
}
.products_list_content .list_content .content p{
    font-size: 15px;
    line-height:22px;
    
    font-weight: lighter;
    color: #2b2b2b;
}

.products_list_content .list_content .content .more{
    text-align: center;
    line-height: 45px;
    font-size: 14px;
    background:#003f82;
    width: 180px;
    margin: 0 auto;
    border-radius: 22px;
}
.products_list_content .list_content .content .more a{
    line-height: 45px;
    font-size: 14px;
    color: #fff;
}

.products_content .tab {
    display: flex;
    justify-content: center;
    padding-bottom: 70px;
}
.products_content .tab .left,.products_content .tab .right{

    width: 200px;
    height: 45px;
    border-radius: 22px;
    text-align: center;
    line-height: 45px;
    cursor:pointer;
    background: #fff;
    margin-left: 15px;
    margin-right: 15px;
    
}
.products_content .tab span{
    font-size: 40px;
    color: #c7c7c7;
}
.products_list_content{
    display: none;
}
.products_list_content.active{
    display: block;
}
.tab_list .container-fluid{
    position: relative;
}
.tab_left{
    position: absolute;
    left: 40px;
    top: 50%;
    cursor: pointer;
}
.tab_right{
    position: absolute;
    right: 40px;
    top: 50%;
    cursor: pointer;
}
/* chose */
.chose{
    padding-top: 95px;
}
.chose_content{
    width: 100%;
    overflow:auto;
}
.chose_content .chose_list{
    position: relative;
    padding: 0;
}
@media(max-width:500px){
    .chose_content .chose_list{
        width: 100%;
    }
}
.chose_content .chose_list .chose_img img{
    width: 100%;
    
}

.chose_content .chose_list .img1{
    position: absolute;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column ;
    height: 100%;
    top: 0;
    transition: .5s;
    background-color: rgba(255, 0, 0, 0);
}
.chose_content .chose_list:hover .img1{
    position: absolute;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column ;
    height: 100%;
    top: 0;
    background-color: rgba(61,106,154,0.5);
}
.chose_content .chose_list .img1 img{
    display: block;
    transition: .5s;
}
.chose_content .chose_list .img1 .title{
    display: none;
    color: #fff;
    font-size: 18px;
}

.chose_content .chose_list .img1:hover .title{
    display: block;
    text-align: center;
}
.chose_content .chose_list .img1:hover .title .more{
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 90px;
    height: 25px;
    border-radius: 12px;
    border:1px solid #fff;
    text-align: center;
    line-height: 25px;
}
/* news */
.news{
    padding-top: 95px;
    padding-bottom: 75px;
}
.news .news_content .news_list{
    margin-bottom: 30px;
}
.news .news_content .news_list .news_img{
    overflow: hidden;
}
.news .news_content .news_list .news_img img{
    width: 100%;
    transition-duration:1s;
}
.news .news_content .news_list .news_img:hover img{
    transform:scale(1.1);
}
.news .news_content .news_list p{
    font-size: 16px;
    line-height: 24px;
    margin-top: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news .news_content .news_list span{
    font-size: 12px;
    color: #0079bf;  
    line-height: 18px;  
}
.news .news_content .news_list .hr{
    margin-top: 15px;
    margin-bottom: 0;
    
    position: relative;
    height: 2px;
    width: 100%;
    background:#f3f3f3;
}
.news .news_content .news_list .hr:after{
    position: absolute;
    left: 0;
    width: 70px;
    height: 2px;
    content: '';
    top: 0;
    background: #0079bf;
    
}

