@charset "utf-8";
header{
    width:100%; 
}
/*................*/
.header{
    padding: 0px 0px;
    max-width:1920px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    z-index: 999;   
    position: relative;
    width: 100%;
    top: 0px;
    background: #fff;
    border-bottom: 1px solid;
    border-color: rgba(0,0,0,0.05);
}
.header .logo{
    font-size: 22px;
    font-weight: 900;
    color: #3334a0;
}
.header .logo img{
    height: 90px;
    width: auto;
    transition: all .5s;  
}
header .nav>ul>li.tel{
    padding: 0px 0px 0px 15px;
}
header .nav>ul>li.tel i{
    color: #ff1312;
}
header .nav>ul>li.tel span{
    color: #3334a0;
    font-weight: 900;    
}
header .nav{
    padding: 20px 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: 0px 13px;
    position: relative;
}
header .nav>ul>li>a{   
    position: relative;
    font-size: 18px;
    text-transform: uppercase;   
    font-weight: 400;
    padding: 0px 0px;   
    line-height: 55px;
    white-space: nowrap;
    transition: all 0.3s;
}
header .nav>ul>li:hover a,header .nav>ul>li.active a{
    color: #3334a0;
    font-weight: 600;
}
header .nav>ul>li:hover a>b{
    transform: rotateY(0);
    -webkit-transform: rotateY(0);
    -o-transform: rotateY(0);
}
header .nav ul.submenu li a.has-children:after {
    content: "\f105";
    font-family: FontAwesome;
    font-size: 12px;
    font-weight: normal;
    margin-left: 5px;
    margin-top: 5px;
    position: absolute;
    right: 15px;
    top: 7px;
}
header .nav ul.submenu {
    display: none;
    position: absolute;
    left: 0%;
    top: 100%;
    margin-left: 0px;
    min-width: 120px;
    background: #fff;
    border-radius: 2px;    
}
header .nav ul.submenu li{width:100%; position: relative; border-bottom:1px solid rgba(0,0,0,.05);}
header .nav ul.submenu li a{
font-weight: 300;    
    display:block;font-size:14px; 
    color:#444; line-height:20px;
    padding:12px 25px; text-align:left;
    white-space: nowrap;
    text-overflow: ellipsis;
}
header .nav ul.submenu li a:hover{color:#3c4a76; background:#f2fcfa;}
header .nav>ul>li:hover ul.submenu{
    display: block;
}
header .nav ul.xmenu{
    position: absolute;
    display: none;
    top: 0px;
    left: 100%;    
    background: #fff;
    border-radius: 4px;
    box-shadow: 2px 2px 2px rgba(0,0,0,0.25);
}
header .nav ul.submenu li:hover ul.xmenu{
    display: block;
}
header .nav ul.xmenu li{
    float: none;    
}
header .nav ul.xmenu li a{
    display: block;
    text-align: left;
    font-size: 14px;
    padding: 10px 10px;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    text-overflow: ellipsis;    
    font-weight: normal;
}
.header.on{
    position: fixed;
}

@media(max-width:767px){
    .header.on .header .logo img{
        height: 55px;
    }
}
@media (max-width: 1199px){
    .header .nav>ul>li{
        padding: 0px 10px;
    }
}
@media (max-width: 992px){  
    .header{
        position: relative;
    }
    header .nav>ul{
        display: block;
    }    
    .header.on .logo img, .header .logo img{
        height: 60px !important;
    }    
    header .nav{
        position: absolute;
        left:-100vw;
        top:61px;
        width:80%;
        height:calc(100vh - 60px);
        background:#000;        
        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:#fff;
        display: block;
        padding: 0px 10px;
        line-height: 35px;
        font-size: 14px;
        border-bottom: 1px solid #c1c1c1;
    }
    header .nav ul li.tel a{
        border-bottom: 0px solid #fff;
    }
}
@media(max-width:1200px){
    .header .nav .submenu li {
        display: none !important;
    }
}
/* banner */
.banner{
    position: relative;
    overflow: hidden;
}
.common{
    padding-top: 100px;
    padding-bottom: 100px;
}
.title{
    font-size: 35px;
    text-transform: uppercase;
    line-height: 1.0;   
    position: relative;
    font-weight: 900;    
    padding-bottom: 30px;
}
.title span{
    font-size: 70px;
    display: block;
    color: #e2e2e2;
}
.title span:after{
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    margin: 5px 0px;
    background: #ff1312;
}
.title .more{
    font-weight: 300;
    display: block;
    font-size: 20px;
    margin-top: 5px;
    transition: all 0.3s ease-in-out;    
}
.title a.more{
    font-weight: 600;
    padding: 15px 30px;
    float: right;
    background: #3334a0;
    color: #fff;
    font-size: 18px;
    margin-top: 5px;
    transition: all 0.3s ease-in-out;    
}
.title a.more i{
    font-style: normal;
    font-size: 22px;
}
.title .more:hover{margin-right: 5px;}


@media (max-width:767px){
    .common{
       padding-top:30px;
       padding-bottom:30px;
    }
    .title{
        font-size: 22px;        
    }
    .title span{
        font-size: 30px;
    }
    .title a.more{
        padding: 10px 15px;
    }    
    .title .more,.title a.more i{ 
        font-size: 14px;
    }    
}
/*产品*/
.product{
    background: url(../img/product.jpg) no-repeat top center #fff;
    position: relative;
    overflow: hidden;    
}
.product .title{
    color: #fff;
}
.product .title span{
    color: #5f60db;
}
.box-content{
    position: relative;
}
.product .pro-more,.project .case-more{
    background: transparent;
    border: 1px solid #e0e0e0;
    color: #ff1312;   
    display: block;
    padding: 15px 15px;
    font-size: 18px;
    font-weight: 600;    
    text-align: center;
    margin-top: 20px;
}
.project .case-more{
    background: #f7f7f7;
}
/*HOT PRODUCTS*/
.project,.case-img{
    overflow: hidden;
    position: relative;   
}
.case-cover{
    position: absolute;
    width: 100%;
    top: 50%;
    margin-top: -25px;
    text-align: center;
}
.case-cover i{
    color: #fff;
    font-size: 44px;
}
.case-img img{
    width: 100%;
    transition: all .5s;
}
.case-img:hover img{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
}
.case-con{
	background: #fff;
	padding: 20px 0px;
    color: #2b2b2b;
    border-bottom: 0px solid #d1a354;
    margin-bottom: 20px;
}
.case-con h5{ 
    font-size: 18px;
}
.case-con h5:after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    margin: 10px 0px;
    background: #ff1312;
}
.case-con .more{ 
    font-size: 14px;
    color: #c8c8c8;
}
@media (max-width:991px){
    .product .pro-more, .project .case-more {       
        padding: 5px 15px;
        font-size: 14px;      
        margin-top: 10px;
    }
    .case-con h5 { 
        font-size: 14px;
    }
    .case-con{
        padding: 10px 0px;
        margin-bottom: 0px;
    }
}

/* 优势*/
.service{
    background: #f7f7f7;    
    position: relative;
    overflow: hidden;
}
.service .box-content{
    position: relative;
    padding: 0px 50px;
}
.service .box-content .app-next{
    right: 0px;
}
.service .box-content .app-prev{
    left: 0px;
}
.app-img{
    background: #000;
    position: relative;
}
.app-img img{
    opacity: 0.7;
    transition: all .5s;
}
.app-img:hover img{
    opacity: 0.95;
}
.app-img h5{
    position: absolute;
    color: #fff;    
    font-weight: 200;
    text-transform: uppercase;
    bottom: 0px;
    padding: 35px;
    width: 100%;
    font-size: 20px;
}
.app-img h5:after {
    display: block;
    content: "";
    width: 20px;
    height: 2px;
    background: #fff;
    margin: 10px 0;
}
.app-img h4{
    position: absolute;
    color: #fff;
    width: 100%;
    top: 0px;
    padding: 35px;
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 200;
    letter-spacing: -.2px;
}
@media (max-width:991px){ 
    .service .box-content {
        padding: 0px 25px;
    }
    .service ul li {
        width: 32%;
        padding:10px 10px;
        font-size: 14px;
    }
    .service ul li h5{
        width:100%;
        font-size: 14px;
    } 
    .service ul li .num {
        font-size: 40px;
    }
    .app-img h4,.app-img h5 { 
        padding: 10px;   
        font-size: 16px;
    }
    .app-img h5:after{
        margin: 5px 0;
    }    
}
.message-con{
    background: #feff00;
    padding: 40px 40px;
    margin-top: 1px;
}
.msg-tel{
    line-height: 1.0;
    font-size: 16px;   
}
.msg-tel span{
    font-size: 30px;
    font-weight: 900;
}
.msg-tel i{
    font-size: 50px;
    font-weight: 900;
    float: left;
    margin-top: -5px;
}
/*首页关于我们*/
.about{
    position: relative;
    
}
.about .atitle{    
    line-height: 1; 
    font-size: 28px;
    color: #3334a0;    
    font-weight: 900;
}
.about .more{
    font-size: 24px;
    color: #d1a354;
    line-height: 1.0;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;   
}
@media (max-width:992px){    
   
    .about .atitle {
        font-size: 16px;
    }     
    
}
.cer-img{
    position: relative;
}
/*优势*/
.Advantage{
    background: #f4f5f6;   
}
.Advantage .title{
    font-size: 55px;
    color: #d9d9d9;
    text-align: center;
    font-weight: 600;
    margin-bottom: 0px;
}
.Advantage .title span{
    font-size: 60px;
    color: #2b2b2b;
    font-weight: 400;
    display: block;
}
.Advantage .title span b{
    font-weight: 800;
}
.Advantage  .title:after{
    background: #d7ba00;
    margin: 5px auto 10px;
}
.Advantage .adv-title{
    font-size: 18px;
    text-align: center;
    margin-bottom: 30px;
}
.Advantage .Advantage-box{
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 50% 100%;
    padding: 100px 0px;
}
.Advantage .Advantage-box ul{
    display: flex;
    justify-content: space-between;
    align-items: center;    
}
.Advantage .Advantage-box:nth-child(2n+1) {   
    background-position: left center;
}
.Advantage .Advantage-box:nth-child(2n+1) ul{
    flex-direction: row-reverse;
}
.Advantage ul li{
    width: 60%;
}
.Advantage .Advantage-content{
    background: #fff;
    padding:50px;
}
.Advantage .Advantage-content img{
    width: 90%;
    max-width: 100%;
    padding-right: 5%;
}
.Advantage .Advantage-content ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5px 0px;
}
.Advantage .Advantage-content ul li:first-child{
    width: 22%;
}
.Advantage .Advantage-content ul li:first-child:after{
    content: "";
    position: absolute;
    right: 2%;
    top: 7%;
    background: #d0d0d0;
    width: 2px;
    height: 85%;
    transition: all 0.6s;
    margin: 0px 0px;
}
.Advantage .Advantage-content ul li{
    width: 76%;
    position: relative;
}
.Advantage .Advantage-content ul li h5{
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 10px;
}
.Advantage .Advantage-content ul li strong{
    color: #d7ba00;
}
.Advantage .Advantage-box:nth-child(2n+1) ul .Advantage-content ul{
    flex-direction: row;
}
/*战略合作*/
.cooperation{
    background: #2b2b2b;
    color: #fff;
}
.cooperation .title span{
    color: #494848;
}
.cooperation .title .more{
    color: #fff;    
}
.cooperation .cooper-img{
    text-align: center;
    margin: 10px 0px;
    padding: 2px 25px;
    background: #fff;
    overflow: hidden;
}
.cooperation .cooper-img img{
    width: auto;
    max-width: 100%;
    opacity: 1.0;    
    transition: all 0.6s;
}
.cooperation .cooper-img:hover{
    box-shadow: 10px 10px 20px 0 rgba(0,0,0,.3);
}
.cooperation .cooper-img:hover img{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
}
/*展会  新闻 */
.newslist ul{
    border-top: 1px solid #dddddd;
}
.ny-news .newslist ul{
    border-top: 0px solid #dddddd;
}
.newslist ul li{
    border-bottom: 1px solid #dddddd;
    font-size: 16px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding: 16px 0px;
}
.newslist ul li i{
    color: #000;
    font-size: 10px;
    margin-right: 10px;
}
.newslist ul li span.time{
    float: right;
    font-size: 14px;
    color: #555555;
}
@media (max-width:991px){
    .trade .trade-box {
        padding: 0px;
        margin-bottom: 15px;
    }
    .trade .t-title{
        margin-bottom: 12px;
    }    
}