@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;    
    z-index: 9;
    position: fixed;
    
}
.header .logo img{
    height: 45px;
    margin-right: 10px;
    width: auto;
    transition: all .5s;  
}
.header{
    padding: 20px 0px;   
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    border-bottom: 1px solid #ffffff3d;      
}
.header.on{
     background: rgba(0,0,0,0.85);
}
header .nav{
    padding: 0px 0px;
    display: flex;
    justify-content: flex-end;
}
header .nav>ul{   
    transition: all .5s;
    display: flex;
    justify-content: flex-end;
    flex-wrap: nowrap;
}
header .nav>ul>li{
    display: inline-block;   
    padding: 0px 18px;
    position: relative;    
}
header .nav>ul>li>a{   
    position: relative;
    font-size: 18px;
    text-transform: uppercase;
    color: #fff;  
    padding: 0px 0px;   
    line-height: 45px;
    white-space: nowrap;
    transition: all 0.3s;
}
header .nav>ul>li:hover a,header .nav>ul>li.active a{
    color: #ffe714;
    font-weight: 600;
}

header .nav>ul>li.custom,header .nav>ul>li.tel{
    color: #fff;
    padding: 0px 0px;
}
header .nav>ul>li.custom span,header .nav>ul>li.tel span{
    font-weight: 600;
}
header .nav>ul>li.custom>a,header .nav>ul>li.tel{
    padding: 0px 5px;
}

header .nav ul.sub-menu {
    display: none;
    position: absolute;
    left: 0%;
    top: 100%;
    width: 100%;
    background: #fff;
    border-radius: 2px;
}
header .nav ul.sub-menu li{width:100%; border-bottom:1px solid rgba(0,0,0,.05);}
header .nav ul.sub-menu li a{display:block;font-size:14px;font-weight: 300; background: #fff; color:#444; line-height:20px; padding:12px 2%; text-align:center; }
header .nav ul.sub-menu li a:hover{color:#ffe714; background:#5f5f5f;}
header .nav>ul>li:hover ul.sub-menu {
    display: block;
}

@media(max-width:992px){
    .header {
        padding: 15px 0px;
    }
    .header .logo img{
        height: 35px;
    }
    header .nav{
        width: 65vw;
    }
    header .nav ul {
        display: block;
        padding-top: 60px;
        transition: all .5s;
        max-width: 100%;
    }
    header .nav ul li a.nav-link{
        font-size: 18px;
        line-height: 30px;
    }
    header .nav .sub-menu {       
        padding: 6px 0px 6px 38px;
    }
    header .nav{
        position: fixed;
        right:-100vw;
        top: 0px;
        width: 100vw;
        height:calc(100vh - 0px);
        background:#fff;
        transform: translateX(0);
        overflow: hidden;
        background: -o-linear-gradient(60deg,#f32837,#b8a260 100%);
        background: linear-gradient(60deg,#f32837,#b8a260 100%);
        background: url(../img/nav.jpg) no-repeat right bottom #000;
        z-index:-1;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;   
    }
    header .nav ul{
        padding: 90px 10px 20px 50px;
        transition: all .5s;    
        counter-reset: offcanvas-counter;   
    }
    header .nav ul li{
        display: block;
        padding: 0 0px;    
        position: relative;
    }
    header .nav ul li a.nav-link{    
        display: block;
        color: #fff;
        position: relative;
        font-size: 16px;
        font-weight: 600;
        counter-increment: offcanvas-counter;
    }
    header .nav ul li a.nav-link:before {
        content: counter(offcanvas-counter,decimal-leading-zero);    
        position: absolute;
        top: 6px;
        left: -35px;
        color: #0091d2;
        font-size: 20px;
        font-weight: 600;
        line-height: 1;
        margin-right: 1.5625rem;
    }
    header .nav ul.sub-menu {
        position: relative;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;     
        max-width: 100%;   
        padding: 0px 0px 1px 0px;
        background: transparent;
    }
    header .nav ul.sub-menu li{
        margin-right: 6px;
        width: auto;
        display: inline-block;
    }
    header .nav ul.sub-menu li a{
        display: -ms-inline-flexbox;
        display: inline-flex;
        -ms-flex-align: center;
        align-items: center;
        font-size: 14px;
        color: #fff;
        padding: 0px 0%;
        text-align: left;
        background: transparent;
        line-height: 1;
        font-weight: 300;
        padding-right: 6px;
        background: transparent;
        border-right: 1px solid #f7f7f7;
    }
    header .nav ul.sub-menu li:last-child a{
        border-right: 0px solid #fff;
    }
    header .nav>ul>li .logo{
        padding-bottom: 50px;
    }
    header .nav.show{
        right: 0;
    }
    header .nav>ul>li.tel,header .nav>ul>li.custom {
        padding-left: 0px;
        margin-left: -35px;
        padding-right: 40px;
        display: inline-block;
        float: left;
    }
    header .nav>ul>li.tel:nth-last-child(3) {
        padding-left: 0px;
        margin-left: -35px;
        display: block;
    }
}
/* banner */
.banner{
    position: relative;
    overflow: hidden;
    background: #000;
}
.banner img{
    transition: all .6s ease-out;
}
.banner:hover img {
    transform: scale(1.01);
}
.banner .banner-txt{       
    width:100%;    
    position: absolute;
    left: 0%;
    bottom: 30%;
    color: #fff;
    z-index: 99;
}
.banner .banner-txt h3{
    font-size: 40px;  
   font-weight: 500;
}
.banner .banner-txt span{
    display: block;
    font-size: 80px;
    font-weight: 900;
}
@media(max-width:1299px){
    .banner .banner-txt h3{
        font-size: 32px;
    }
    .banner .banner-txt h3 span{
        font-size: 54px;
    }
}
@media(max-width:991px){
    .banner .banner-txt h3{
        font-size: 26px;
    }
    .banner .banner-txt h3 span{
        font-size: 46px;        
    }
}
@media(max-width:767px){
    .banner .banner-txt h3{
        font-size: 16px;
    }
    .banner .banner-txt h3 span{
        font-size: 28px;
    }
}
@media (min-width: 993px){
    .vedio {
        width: 100%;
        position: relative;
        background: #000;
        display: block;
    } 
}



.common{
    padding-top: 100px;
}
.title{
    font-size: 25px;    
    line-height:1.2;     
    text-transform: uppercase;
    position: relative;
    font-weight: 900;
    margin-bottom: 20px;
}
.title span{
    display: block;
    font-weight: 900;
    font-size: 40px;
}
.title:after {
    display: block;
    content: "";
    width: 45px;
    height: 3px;
    background: #00169d;
    margin: 15px 0px;
}

@media (max-width:767px){
    .common{
       padding-top:30px;
       padding-bottom:30px;
    }
    .title{
        font-size: 20px;
        padding-bottom: 0px;
    }
    .title span{       
        font-size: 30px;
    } 
}

/*首页关于我们*/
.about{
    background: #f7f7f7;    
}
.about .title{
    font-size: 40px;
    line-height: 1.0;
    font-weight: 900;
    color: #00169d;
}
.about .title span{
    font-size: 70px;
    color: #2b2b2b;
}
.about .about-txt{
    width: 95%;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 50px;
}
.about-img{
    margin-bottom: 60px;
}
.about .sign{
    background: url(../img/about-nav.jpg) no-repeat center;
    padding: 60px 0px;   
}
.about .sign ul {
    display: flex;
    width: 50%;
    flex-wrap: wrap;
    justify-content: space-between;
}
.about .sign ul li{
    width: 23.5%;
    margin: 10px 0px;
}
.about .sign ul li a{
    font-size: 16px;
    text-align: center;
    padding: 12px 10px;
    display: block;
    background: #fff;
    transition: all 0.6s;    
}
.about .sign ul li a:after{
    content: "";
    display: block;
    background: #d9d9d9;
    width: 30px;
    height: 2px;
    transition: all 0.6s;
    margin: 5px auto;
}
.about .sign ul li a:hover{
    background: #00169d;
    color: #fff;
}
.about .sign ul li a:hover:after{
    background: #ffe714;
}
.about .more{
    font-size: 20px;
    font-weight: 900;
}
@media (max-width:767px){
    .about .title,.about .title span{
        font-size: 30px;
    }
    .about .about-txt,.about .more{
        width: 100%;
        font-size: 16px;      
    }    
    .about .sign{
        padding: 30px 0px;
    }
    .about .sign ul {
        width: 100%;
    }
    .about .sign ul li a{
        font-size: 12px;
        padding: 12px 2px;
    }
}
/*产品*/
.product{
    background: #fff; 
    overflow: hidden;
}
.product .case-img{
    overflow: hidden;
    text-align: center;
    position: relative; 
    transition: all 0.6s;
}
.product .gallery-top{
    width: 75%;
}
.product .swiper-slide h5{   
    font-size: 24px;
    font-weight: 400;
    text-align: center;
}

.product .case-img img{
    max-width: 100%;
    width: auto; 
    transition: all 0.6s;
}
.product .case-img:hover img{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
}
.product .gallery-thumbs .swiper-slide h5{
    font-size: 18px;
}
.product .gallery-thumbs .swiper-slide.swiper-slide-thumb-active h5:after{
    display: block;
    content: "";
    width: 40px;
    height: 2px;
    background: #00169d;
    margin: 10px auto;   
}
@media (max-width:991px){
    .product .gallery-top {
        width: 100%;
        margin-bottom: 15px;
    }
    .product .gallery-thumbs .swiper-slide h5{
        font-size: 14px;
        padding: 10px 0px;
    }
}
/*制造实力*/
.equipment{
    background: #fff;
    overflow: hidden;
    position: relative;
}

.equipment .equ-con{  
    font-size: 16px;
    position: absolute;
    width: 100%;
    top: 20%;
    bottom: 0;
    z-index: 99;
    color: #fff;   
}
.equipment .equ-con .equ-desc{
    width: 35%;
}
.equipment .equ-btn{
    position: absolute;
    width: 20%;
    top: 0;
    right: 8%;
    bottom: 0;
    z-index: 9;
}
.equipment .swiper-button-next, .equipment .swiper-button-prev{    
    border: 1px solid #fff;
    padding: 40px 35px;
    width: 45%;
}
.equipment .swiper-button-next,.product .swiper-button-next{
    right: 0px;
}
.equipment .swiper-button-prev,.product .swiper-button-prev{
    left: 0px;
}
.equipment .equ-con h5{
    font-size: 70px;
    font-weight: 900;   
    padding: 4% 0px 20px;
}
.equipment .equ-con .more{ 
    font-size: 25px;
    font-weight: 900;
    color: #ffe714;   
 }
.equipment .equ-img img{
    width: 100%;
    transition: all 0.6s;
}
.equipment .swiper-slide:hover .equ-img img{   
    transform: scale(1.05);
}
@media (max-width:991px){   
    .equipment .equ-con{
        margin-bottom: 15px;
    }
    .equipment .equ-con h5 {
        font-size: 20px;
        padding: 10px 0px;
    }
    .equipment .equ-con .more {
        font-size: 16px;
    }
    .equipment .swiper-slide img{
        width: 400%;
    }
    .equipment .equ-btn{
        width: 60%;
    }
}
/*合作伙伴*/
.cooperation ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-top: 1px solid #efefef;
    border-left: 1px solid #efefef;
}
.cooperation ul li{
    width: 20%;
    border-bottom: 1px solid #efefef;
    border-right: 1px solid #efefef;
}
.cooperation .cooper-img{
    text-align: center;
    margin: 40px 0px;
}
.cooperation .cooper-img img{
    width: auto;
    max-width: 100%;
    opacity: 1.0;    
    transition: all 0.6s;
}
.cooperation .cooper-img:hover img{
    transform: translateY(-8px);
    -webkit-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
}
@media (max-width:991px){ 
    .cooperation ul li{
        width: 33.3%;
    }
    .cooperation ul li:last-child{
        display: none;
    }
    .cooperation .cooper-img {        
        margin: 15px 0px;
    }
}
/* 新闻 */
.news{
    background: #f7f7f7;
}
.news-nav,.news-nav li{
    display: inline-block;
    margin-top: -50px;
}
.news-nav li a{
    font-size: 20px;
    font-weight: lighter;
    margin-left: 15px;
    transition: all 0.3s;
}
.news .news-con{
    margin-bottom: 40px;
}
.news .news-title{
    overflow: hidden;    
    text-overflow: -o-ellipsis-lastline;
    text-overflow: ellipsis;
    font-size: 16px;
    font-weight: 400;
    white-space: nowrap;
}
.news .news-title span{
    float: right;
}
.news .news-img{
    overflow: hidden;
    margin: 10px 0px;
}
.news .news-img img {    
    width: 100%;
    transition: all 0.3s;
}
.news .news-con:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
}
@media (max-width:991px){    
    .news .news-con{
        margin-bottom: 10px;
    }
    .news .news-con a{
        display: flex;
        justify-content: space-between;
    }
    .news .news-con a .news-img{
        width: 22%;        
        margin: 0px 0px;
    }
    .news .news-con a .news-title{
        width: 74%;
        font-size: 14px;
    }
    .news .news-con a .news-title span{
        font-size: 12px;
        display: block;
        padding-left: 10px;
        float: none;
    }  
}