@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: 999;
    position: fixed;    
}
header:before{
    content: "";
    background: url(../img/top.jpg) repeat #fff;
    display: block;
    width: 21%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0;
}
header:after{
    content: "";
    background: rgba(0,20,61,0.9);
    display: block;
    width: 80%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 20%;    
}
.header{    
    width:100%;
    position: relative;
    z-index: 9;    
    padding: 0px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/*头部logo*/
.header .logo .logo{   
    transition: all .5s;
    background: url(../img/top.jpg) repeat #fff;
    padding: 0px 10px 0px;
    border-right: 30px solid #ff2b2b;
}
/*头部导航*/  
header .nav{   
    transition: all .5s;
    padding: 0px 0px;
}
header .nav>ul{   
    transition: all .5s;
    display: flex;
    justify-content: flex-end;
    flex-wrap: nowrap;
}
header .nav>ul>li{
    display: inline-block;
    padding: 0 0px;
    position: relative;    
}
header .nav>ul>li>a{ 
    position: relative;
    display: block;
    width: 100%;
    font-size: 18px; 
    padding: 12px 24px;
    font-weight: 400;
    color: #fff;   
    -webkit-transition: border 15ms ease-out,all .15s ease-in-out;
    -o-transition: border 15ms ease-out,all .15s ease-in-out;
    transition: border 15ms ease-out,all .15s ease-in-out;
    -webkit-transition-delay: .08s;
    -o-transition-delay: .08s;
    transition-delay: .08s;
}
header .nav>ul>li>a>b{
    display: block;
    height: 2px;
    width: 30px;
    background:#c02128;
    position: absolute;
    left: 50%;
    margin-left: -15px;
    bottom: 8px;
    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>b{
    transform: rotateY(0);
    -webkit-transform: rotateY(0);
    -o-transform: rotateY(0);
}
header .nav>ul>li:hover a,header .nav>ul>li a:hover{
    color: #ff4747;
}
header .nav ul li.tel a{
    color:#ff4747;
    font-weight: 600;
}

@media (max-width: 992px){ 
    header{
        position: relative;
    }
    header .nav>ul{
        display: block;
        margin: 10px 20px;
    }    
    .header .logo .logo{
        height: 55px !important;
        padding: 0px 0px 0px;
        border-right: 15px solid #ff2b2b;       
    }   
    header .nav{
        position: absolute;
        left:-100vw;
        top:55px;
        width:90%;
        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:-15px;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        overflow-y: scroll;
    }
    header .nav ul li{
        display: block !important; 
        padding:0 20px;
    }    
    header .nav ul li a{
        color:#424242;
        font-size: 14px;
    }
}

/* banner */
.banner{
    position: relative;
}
.banner .swiper-slide img{
    width: 100%;
}
.banner .swiper-pagination-bullet{
    width: 14px;
    height: 14px;
    background-color: #fff;
    opacity: 1.0;
    border: 1px solid #fff;
}
.banner.swiper-container-horizontal>.swiper-pagination-bullets{
    bottom: 5%;
}
.banner .swiper-pagination-bullet-active{
    background-color: #ff2b2b;
    border: 1px solid #ff2b2b;
}
.ion-ios-play:before {
    content: "\f105";
}

.common{
    padding-top: 150px;
    padding-bottom: 150px;
}
.title{
    font-size: 36px;    
    font-weight: 300;
    line-height: 1.4;
    text-transform: uppercase;   
    position: relative;    
}
.title .more{
    font-family: Rajdhani,sans-serif;
    float: right;
    font-size: 18px;
}
.title:before{
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    margin-bottom: 35px;
    background-color: #ff2b2b;
}  
.com-info{
    font-size: 20px;
    opacity: 0.9;
}
@media (max-width:767px){
    .common{
       padding-top:20px;
       padding-bottom:20px;
    }    
    .title{
        font-size: 24px;
    } 
    .title .more,.com-info{
        font-size: 14px;
    } 
}

/*产品*/
.product{
    background: #fff;
    overflow: hidden;
}
.product:nth-child(even){
    background: #f0f0f0;
}
.product ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
}
.product:nth-child(even) ul{    
    flex-direction: row-reverse;
}
.product ul li.info-section {
    width: calc(64.5% - 30px);
}

.product ul li.media-section {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 35.5%;
}
.product:nth-child(even) ul .info-section {
    text-align: right;
}

.btn-more{    
    border-radius: 0px;
    color: #fff;
    background: #193773;
    font-size: 18px;    
    padding: 15px 55px;
    margin-top: 25px;
    transition: all 0.3s ease-in-out;
}
.btn-more:hover{    
    background: #001e5a;
    color: #fff;
}
.product h5 b{
    display: block;
    color: #ececec;
    font-size: 70px;   
}
.product h5 b:after{
    display: block;
    content: "";
    width: 80px;
    height: 3px;
    margin: 10px 0px;
    background: #ff2b2b;
}
.product:nth-child(even) h5 b {
    color: #fff;
}
.product:nth-child(even) b:after {
    margin: 10px 0px 10px auto;
}
.product h5{     
    font-size: 36px;
    font-weight: 300;
    margin: 0px 0px 35px;       
    transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all 0.5s ease;
}
.product h5 span{
    display: block;
    font-size: 28px;
    opacity: 0.7;
}
@media only screen and (max-width: 1024px){
    .product h5 {
        font-size: 20px;
    }
    .product h5 b {    
        font-size: 34px;
    }
    .product h5 span{
        font-size: 14px;
    }
    .product:nth-child(even) ul{
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        background-size: 100%;
        background-position: center 50px;
    }
    .product ul li.info-section {
        width: 100%;
        padding-right: 0;        
    }
    .product ul li.media-section{
        width: 100%;
    }
    .product:nth-child(odd) ul .info-section {
        width: 100%;
        padding-right: 0px;
        padding-left: 0px;
    }
    .btn-more {    
        font-size: 14px;
        padding: 10px 30px;
        margin-top: 10px;   
    }
}

/*合作伙伴*/
.cooperation{
    background: url(../img/brand.jpg) no-repeat center #f0f0f0;
    color: #fff;
}
.cooperation .title .more{
    color: #fff;
}
.cooperation .info,.product .info{
    font-size: 18px;
    width: 62%;
    margin-bottom: 3%;
}
.cooperation .cooper-box{
    position: relative;
}
.cooperation .cooper-box .swiper-button-prev, .cooperation .cooper-box .swiper-container-rtl .swiper-button-next{
    left: -40px;
}
.cooperation .cooper-box .swiper-button-next, .cooperation .cooper-box .swiper-container-rtl .swiper-button-prev{
    right: -40px;
}
.cooperation .cooper-img,.ny-cooper .cooper-img{
    text-align: center;    
    padding: 50px 0px;
    background: #fff;
    border-radius: 2px;   
}
.ny-cooper .cooper-img{
    margin-bottom: 25px;
}
.cooperation .cooper-img img,.ny-cooper .cooper-img img{
    width: auto;
    max-width: 100%;
    opacity: 1.0;    
    transition: all 0.6s;
}
.cooperation .cooper-img:hover img,.ny-cooper .cooper-img:hover img{
    transform: translateY(-8px);
    -webkit-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
}
.ny-cooper{
    background: #f0f0f0;
}
@media (max-width:992px){ 
    .cooperation .info, .product .info {
        font-size: 14px;
        width: 100%;
        margin-bottom: 3%;
    }
    .cooperation .cooper-img,.ny-cooper .cooper-img{
        text-align: center;
        background-color: #fff;
        padding: 8px 2px;
        margin: 5px 0px;
    }
}

/*Featured Products*/
.business{
    overflow: hidden;
    background: #f0f0f0;
}
.business ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}
.business ul li{
    width: 20%;
    background:#000;
    color: #fff;
    position: relative;
    overflow: hidden; 
    font-size: 16px;   
    transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all 0.5s ease;
}
.business ul li:hover{
    width: 50%;
}
.business ul li .buss-img{
    overflow: hidden;
    position: relative;
}
.business ul li .buss-img img{
    width: auto; 
    max-width: none;    
    transition: all 0.6s;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray;
}
.business ul li:hover .buss-img img{    
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    filter: grayscale(0%);
    filter: unset;
}
.business .buss-sort,.business h5{
    position: absolute;
    bottom: 0px;
    left: 25px;
    width: 100%;
    transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all 0.5s ease;
    margin-bottom: 50px;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.1;
    color: #fff;    
}
.business .buss-sort{    
    top: 0px; 
    font-size: 14px;    
    margin-top: 50px;
}
.business h5 span,.business .buss-sort span{
    font-size: 14px;
    display: block;
    text-transform: uppercase;
    font-weight: 300;
}
@media (max-width:991px){
    .business ul{
        flex-wrap: wrap;
    }
    .business ul li{
        width: 100%;
        height: 95px;
        margin-bottom: 10px;
    }
    .business ul li:hover{
        width: 100%;
    }
    .business ul li .buss-img {    
        margin-top: -50%;
    }
    .business h5 {    
        margin-bottom: 25px;
        font-size: 16px;   
    }
    .business h5 span{
        font-size: 12px;
    }
}
/* 新闻 */
.news{
    background: #fff;
}
.news .news-box {
    padding-top: 30px;
    overflow: hidden;
}
.news-box .img{
    width: 100%;
    overflow: hidden;
    border-radius: 0px;
    margin-bottom: 20px;   
}
.news-box .img img{
    width: 100%;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.news-box .img:hover img{
   -webkit-transform: scale(1.1) translateX(13px);
    -ms-transform: scale(1.1) translateX(13px);
    transform: scale(1.1) translateX(13px);
}
.news-box .news-con{   
    width: 100%;
    overflow: hidden;
    position: relative;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.news-box .news-time{
    color: #c2c2c2;
    font-weight: 600;
    font-size: 18px;
    line-height: 2;
    display: block;
    padding: 10px 0px;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;    
}
.news-box .news-title{
    overflow: hidden;      
    text-overflow: ellipsis;
    white-space: nowrap;    
    font-size: 18px;
    width: 100%;   
    text-transform: uppercase;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out; 
}
.news-box .news-title:after {
    content: '';   
    display: block;
    width: 40px;
    height: 2px;
    margin: 20px 0px;
    background-color: #cacaca;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.news-box .news-desc{
    overflow: hidden;
    text-overflow: -o-ellipsis-lastline;   
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical; 
    vertical-align: middle;
    margin: 0px 0px;   
}
.news-box .news-con:hover .news-title{
    color: #193773;
}
.news-box .news-con:hover .news-time{
    color: #ff2b2b;
}
.news-box .news-con:hover .news-title:after{
    background: #193773;
}
@media (max-width:991px){ 
    .news-box .news-con{  
        margin-bottom: 15px;
    } 
}