@charset "utf-8";
header{
    width:100%;
    z-index: 999;
    position: relative;
}
.top-bar{
    padding: 5px 0px;   
    max-width:1920px;
    background: #0e2c7e;
    color: #fff;
}
.top-bar .language{    
    display: flex;
    justify-content: space-between;    
}
.top-bar .language li span{
   font-weight: 600;
}
.top-bar .language i,
.top-bar .language a{
    font-size: 16px; 
    color: #fff;  
}

/*................*/
.header{
    padding: 12px 0px;
    max-width:1920px;
    background: #fff;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;    
    border-bottom: 1px solid;
    border-color: rgba(255,255,255,0.2);
}
.header .logo img{
    height: 75px;
    width: auto;
    margin-right: 5px;
    transition: all .5s;  
}
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;
    margin-right: -15px;
}
header .nav>ul>li{
    display: inline-block;   
    padding: 0px 18px;
    position: relative;    
}
header .nav>ul>li>a{   
    position: relative;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 400;
    padding: 0px 0px;   
    line-height: 75px;
    white-space: nowrap;
    transition: all 0.3s;
}
header .nav>ul>li:hover a,header .nav>ul>li.active a{
    color: #0e2c7e;
    font-weight: 600;
}

header .nav ul.xmenu li a:hover{
    color: #ea5404;
    font-weight: 600;
}
header .nav>ul>li:hover a>b{
    transform: rotateY(0);
    -webkit-transform: rotateY(0);
    -o-transform: rotateY(0);
}
header .nav .sub-menu {
    display: block;
    position: absolute;
    left: 0%;
    opacity: 0;
    top: 71px;   
    background: #f5f5f5;
    border-radius: 0px;
    transition: .3s;  
    z-index: 1;
    height: 0;
    width: 100%;
    overflow: hidden;        
}
header .nav ul li:hover .sub-menu{
    opacity: 1.0;
    height: auto;
    z-index: 15;
    padding: 2.5em 0;
}
header .nav ul li:hover .sub-menu ul li h5{
    height: 50px;
}
header .nav ul li:hover ul.xmenu li a{
    height: 34px;
}
header .nav .sub-menu ul{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
header .nav .sub-menu ul li {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}
header .nav .sub-menu ul li h5{
    font-size: 18px;
    font-weight: normal;
    color: #000;
    height: 0px;
    line-height: 50px;
    border-bottom: 1px solid #b3b3b3;
    letter-spacing: 3px;
    margin: 10px 0px;
    transition: all 0.3s;
}

.has-children:not(.sub-menu) {
    position: relative;
}
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{   
    margin-left: -15px;
    margin-right: -15px;
}
header .nav ul.xmenu li{
    position: relative; 
}
header .nav ul.xmenu li a{
    display: block;
    color: #2b2b2b;
    text-align: left;
    font-size: 14px; 
    height: 0px;   
    line-height: 34px;
    text-transform: uppercase;
    white-space: nowrap;
    text-overflow: ellipsis;    
    font-weight: normal;
    transition: all 0.3s;
}
header .nav ul.xmenu li:after {
    content: "\f105";
    font-family: FontAwesome;
    font-size: 12px;
    font-weight: normal;
    margin-left: 5px;
    margin-top: 5px;
    position: absolute;
    right: 15px;
    top: 1px;
}
.header.on{
    position: fixed;
    z-index: 999;
    width: 100%;
    top: 0px;
    background: #fff;
}
@media(max-width:767px){
    .header.on .header .logo img{
        height: 55px;
    }
}

@media (max-width: 992px){  
    .header{
        position: relative;
    }
    header .nav>ul{
        display: block;
    }    
    .header.on .logo img, .header .logo img{
        height:45px !important;
    }    
    header .nav{
        position: absolute;
        left:-100vw;
        top:62px;
        width:100%;
        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;
        border-bottom: 1px solid #343333;
        line-height: 45px;
        font-size: 14px;
    }
    
}
@media(max-width:1200px){
    .header .nav .submenu li {
        display: none !important;
    }
}
/* banner */
.banner{
    position: relative;
    overflow: hidden;
}
.banner-txt{
    position: absolute;
    width: 100%;
    color: #fff;
    line-height: 1.1;
    top: 32%;
    z-index: 99;  
}
.banner-txt h3{
    font-size: 55px;
}
.banner-txt h6{
    display: block;
    font-size: 30px;
}
.banner-txt h3 span{
    display: block;
    font-weight: 400;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    font-size: 34px;
}
.common{
    padding-top: 80px;
    padding-bottom: 80px;
}
.title{
    font-size: 35px;
    color: #0e2c7e;  
    text-transform: uppercase;
    line-height: 1.0;   
    position: relative;
    font-weight: 900;    
    margin-bottom: 30px;
}
.title span{
    display: block;   
    color: #e1e1e1;
    font-size: 60px;
}
.title p{
    font-size: 22px;    
    font-weight: 300; 
}

.title .more{
    float: right;
    font-weight: 300;
    font-size: 25px;
    transition: all 0.3s ease-in-out;    
}
.title .more:hover{padding-right: 5px;}

.pro-info{font-size: 18px; line-height: 1.4; margin-bottom: 30px;}
@media (max-width:992px){
    .common{
       padding-top:30px;
       padding-bottom:30px;
    }
    .title{
        font-size: 22px;
        margin-bottom: 15px;        
    }
    .title span{
        font-size: 28px;        
    }
    .title p,
    .title .more{ 
        font-size: 16px;
    }
    .banner-txt{
        font-size: 20px;
    }
    .banner-txt h3 {
        font-size: 32px;
    }
    .banner-txt h6 {        
        font-size: 18px;
    }
}
/*HOT PRODUCTS*/
.project{
    overflow: hidden; 
    background: #f6f6f6;
}
.project ul{
    overflow: hidden;
    display: flex;
    flex: 1;
    justify-content: space-between;
}
.project ul li{   
    float: left;
    width: 14.2857%;
    height: 400px;
    padding: 50px 30px;
    border-right: 1px solid #ececec;
    background: #fff;
    cursor: pointer;
    transition: all .4s ease 0s;
    overflow: hidden;
    position: relative;
}
.ny-business .compet-img{
    height: 400px;
    padding: 50px 30px;
    border: 1px solid #ececec;
    margin-bottom: 20px;
    background: #fff;
    cursor: pointer;
    transition: all .4s ease 0s;
    overflow: hidden;
    position: relative;
}
.project .compet_heading,.ny-business .compet_heading{
    font-size: 16px;
    font-weight: 300;
}
.project .compet_heading span,.ny-business .compet_heading span{
    font-size: 14px;
    text-transform: uppercase;
    display: block;
}
.project .compet-title,.ny-business .compet-title{  
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px; 
}
.project li img,.ny-business img{
   width: auto;
}
.project .compet-body,.ny-business .compet-body{    
    bottom: 0px;
    right: 30px;
    left: 30px;
    position: absolute;
}
.project .compet-body:after,.ny-business .compet-body:after {
    display: block;
    content: "";
    width: 40px;
    height: 2px;
    background: #fc3439;  
    margin: 50px 0px;
    transition: all .5s;
}
.project li:hover .compet-body:after {    
    background: #fff;
}
.project .compet-desc,.ny-business .compet-img .compet-desc{      
    overflow: hidden;
    height: 0px;
    font-size: 14px;
    line-height: 1.4;
    transition: all .5s;
}
.project .compet-desc span,.ny-business .compet-desc span{
    display: block;
    margin-top: 10px;
    font-weight: 600;
    font-size: 16px;
    color: #fff;   
}
.project .imghover .compet-desc,.ny-business .compet-img:hover .compet-desc{
     height: 70px;
}
.project a:hover .compet-img{
    color: #fff;
}
.ny-business a:hover .compet-img{
    background: #0e2c7e;
    color: #fff;
}
.project .imghover{
    width: 38%;
    background: #0e2c7e;
    color: #fff;
}

@media (max-width:991px){
   .project ul {    
        flex-wrap: wrap;    
    }
    .project ul li {    
        width: 50%;
        height: 150px;
        padding: 15px 15px;
        border-bottom: 1px solid #ececec;    
    }
    .project .imghover{
        width: 50%;   
    }
    .ny-business .compet-img{
        height: 150px;
        padding: 15px 15px;
    }
   .project .compet-title, .ny-business .compet-title{
        font-size: 14px;
   }
   .project .imghover .compet-desc,.ny-business .compet-img:hover .compet-desc{
        height: 00px;
    }
   .project .compet-body:after, .ny-business .compet-body:after{
        margin: 15px 0px;
   }
   .project .compet-body, .ny-business .compet-body {        
        right: 15px;
        left: 15px;        
    }
}
/*服务方案*/
.solution{
    background: #fff;
    position: relative;
}
.solution .case-nav{   
}
.solution .case-nav li{
    width: 100%;
}
.solution .case-nav li.on a{ 
    font-weight: 900;  
}
.solution .case-nav li a{
    display: block;
    padding: 32px 0px;   
    line-height: 1.2;
    font-size: 18px;   
    position: relative; 
    border-bottom:1px solid #ebebeb;
    transition: all .5s;
}

.case-r{
    position: absolute;
    top: 0px;
    z-index: 0;
    width: 100%;
    height: 100%;
    opacity: 0.0;
    transition: .6s;   
}
.case-r.on{
    opacity: 1.0;
    z-index: 2;
}
.case-img{
    position: relative;
}
.case-img img{
    width: 100%;
}
.case-r .overview{
    font-size: 16px;
    line-height: 1.6;
    position: absolute;
    bottom: 0px;
    padding: 30px;
    color: #fff;
    z-index: 99;
}
.case-r .overview h5{
    font-size: 24px;
}
.case-r .overview .more{
    display: block;
    color: #fff;
    font-weight: 600;
}
.case-r .overview h5:after {
    display: block;
    content: "";
    width: 35px;
    height: 2px;
    background: #fff;
    margin: 10px 0 15px;
}
@media(max-width:992px){ 
    .solution .case-nav {
        padding: 20px 30px 20px;
    }
    .solution .case-nav li a {        
        padding: 15px 0px;
        font-size: 14px;
    }
}
.case{
    overflow: hidden; 
    background: #f6f6f6;
}
.process{
    margin-bottom: 2%;
}
.process .cer-img{
    position: relative;
    background: #000;
    margin-bottom: 12%;
    overflow: hidden;
    transition: all 0.6s;
}
.process .cer-img img{
    width: 100%;
    opacity: 0.8;    
    transition: all 0.6s;
}
.process .cer-img:hover{
    box-shadow: 10px 10px 20px 0 rgba(0,0,0,.3);
}
.process .cer-img:hover img{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
}
.cover-txt{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    color: #fff;
}
.cover-txt .logo img{
    height: 50px;
    width: auto; 
}
.cover-txt h5{
   font-size: 24px;
   font-weight: 600;
   text-transform: uppercase; 
}
.cover-txt h5 span{
    display: block;
    font-size: 16px;
    font-weight: 300;
}
.cover-txt h5:after{
    content: "";
    display: block;
    background: #fc3439;
    width: 30px;
    height: 2px;
    margin: 5px 0px;
}
.txt-desc{
    position: absolute;
    bottom: 0px;
    padding: 30px 30px;
    width: 100%;
    font-size: 14px;
    font-weight: 300;
    left: 0;
}
.txt-desc .more{
    margin-top: 5px;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
}
@media (max-width:991px){
    .process .cer-img{
        margin-bottom: 15px;
    }
    .cover-txt {        
        padding: 25px 15px;
        font-size: 14px;
    }
    .cover-txt h5 {
        font-size: 16px;
    }
    .cover-txt h4 {
        font-size: 20px;
    }
    .txt-desc{
       padding: 25px 15px; 
    }
}

/*新闻*/
.news{
    background:#fff;
    font-size: 16px;       
}
.news-box ul li{
    overflow: hidden;
    background: #fff;
    padding: 5px 0px 35px;
    transition: all 0.6s;
}
.news-box .n-title{
    font-weight: 600;    
    overflow: hidden;    
    text-overflow: ellipsis;   
    transition: all 0.6s;
}
.news-box .n-title span{
    display: block;
    font-weight: 300;
}
.news-box .n-title:after{
    content: "";
    display: block;
    background: #fc3439;
    width: 30px;
    height: 2px;
    margin: 5px 0px;
}
.news-box .n-desc{    
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    transition: all 0.6s;   
}
.news-box a:hover .n-title{
    color: #0e2c7e;
}

@media (max-width:991px){ 
    .news-box li .n-time:after{
        margin: 0px 0px 0px;
    }
    .news-box li .n-desc{
        margin: 0px 0px;
        -webkit-line-clamp: 2;
    }
    .news-box li .n-more{
        font-size: 14px;
    }    
}
/*报价体验*/
.stripe{
    background: url(../img/stripe.jpg) no-repeat center;
    border-top: 1px solid #dcdcdc;
}
.stripe ul{
    display: flex;
    justify-content: space-between;
}
.stripe ul li{
    width: 33.3%;
    text-align: center;
    color: #fff;
    border-right: 2px solid #1c3987;
}
.stripe ul li:first-child{   
    border-left: 2px solid #1c3987;
}
.stripe ul li img{
    width: auto;
    max-width: 100%;
}
.stripe ul li h5 span{
    display: block;
    font-size: 16px;
    font-weight: 300;
}
.stripe ul li a{
    background: transparent;
    border: 1px solid #fff;
    border-radius: 25px;
    padding: 0px 50px;
    color: #fff;
    margin-top: 10px;
    display: inline-block;
}
.stripe ul li a:hover{
    background: #813b00;
}
@media (max-width:991px){ 
    .stripe ul li h5 {
        font-size: 15px;
    }
    .stripe ul li a {        
        padding: 0px 25px;
    }
}