@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;  
}
.top-bar{
	background: #333333;
	padding: 5px 0px;
	color: #fff;
}
.top-bar .language{
    transition: all .5s;
}
.top-bar .language i{
    font-size: 16px;
    margin-left: 10px;
    color: #fff;
}
.top-bar a{
    color: #fff;
}
.header .logo .logo{   
    transition: all .5s;
}
.header{
    padding:0px 0px;
    width:100%;    
    color:#3b3b3b;        
}
.header .header-tel{
    line-height: 50px;   
    transition: all .5s;
    font-size: 16px;
    margin-top: 15px;   
}
.header .header-tel i{
    font-size: 16px;
    color: #1e499d;  
    margin: 0px 10px;
    cursor: pointer;
}
@media (max-width: 768px){
    .header .header-tel{
        margin-right: 35px;
        margin-top: 5px;
    }
}
header .nav>ul{
    margin:15px auto 0px auto;   
    transition: all .5s;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}
header .nav>ul>li{
    display: inline-block;
    padding: 0 25px;
    position: relative;
}
header .nav>ul>li>a{
    display: block;
    position: relative;  
    font-size: 18px;
    line-height: 1;
    padding:16px 0 15px 0;
}
header .nav>ul>li>a>b{
    display: block;
    height:3px;
    width:100%;
    background:#1e499d;
    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 a{
    color: #1e499d;
}
header .nav>ul>li:hover a>b{
    transform: rotateY(0);
    -webkit-transform: rotateY(0);
    -o-transform: rotateY(0);
}
header .nav>ul>li.has-children > a::after {
    content: "\f078";
    font-family: FontAwesome;
    font-size: 12px;
    font-weight: normal;
    color: #fff;
    margin-left: 10px;
    float: right;
}
header .nav ul.submenu {
    display: none;
    position: absolute;
    left: 50%;
    top: 100%;
    margin-left: -80px;
    width: 160px;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    z-index: 9;
}
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 2%; text-align:center; }
header .nav ul.submenu li a:hover{color:#1e499d; background:#efefef;}
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:100px;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 {
	background: transparent;
	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;
}
header.on{
    color:#424242;
    background:#fff;
    padding: 10px 0px;
    box-shadow: 0 0 10px #eee;
}
header.on .header .nav ul li a{
    color:#424242;
}
header.on .header .logo .logo{
    height: 40px;
}
header.on .language a,header.on .language span,header.on .header-tel,header.on .header-tel i{
    color:#2b2b2b;
}
@media (max-width: 992px){   
    .m-btn{
        display: block;
    }    
    .header{
        position: relative;    
        padding:0;
    }
    header .nav>ul{
        display: block;
    }
    header .nav>ul>li {
        display: block;
    }    
    header.on .header .logo .logo, .header .logo .logo{
        height:60px !important;       
    }
    .header .header-mail {
        margin: 8px 45px 0px;
        line-height: 45px;
    }
    header .nav{
        position: absolute;
        left:-100vw;
        top:64px;
        width:70%;
        height:calc(100vh - 60px);
        background:#fff;
        box-shadow: 0 0 10px #eee;
        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 a{
        color:#424242;
        font-size: 14px;
    }
    header .nav>ul>li::before,
    header .nav>ul>li:last-child::after{
        border-left: 0px dotted #c1c1c1;        
    } 
}
@media(max-width:1200px){
    .header .nav .submenu li {
        display: none !important;
    }
}
@media (max-width: 540px){
    header.on .header .logo .logo, .header .logo .logo {
        height: 60px !important;
        margin-top: 4px;
    }
}
/* banner */
.banner{
    position: relative;
}
.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;
    transform: skewX(-20deg);
    border-radius: 5px;
    padding: 8px 100px;    
    overflow:hidden; 
    color:#fff; 
    background: #1f3d93;
    background: -moz-linear-gradient(left,  #1f3d93 0%, #0280cd 100%);
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#1f3d93), color-stop(100%,#0280cd));
    background: -webkit-linear-gradient(left,  #1f3d93 0%,#0280cd 100%);
    background: -o-linear-gradient(left,  #1f3d93 0%,#0280cd 100%);
    background: -ms-linear-gradient(left,  #1f3d93 0%,#0280cd 100%);
    background: linear-gradient(to right,  #1f3d93 0%,#0280cd 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1f3d93', endColorstr='#0280cd',GradientType=0 );
    transition: all 0.3s 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);
}

.common{
    padding-top:50px;
    padding-bottom:50px;
}
.title{
    font-size: 40px;
    color:#2b2b2b;
    line-height:1.2;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: bolder;
    position: relative;
}
.title span,.title strong{
    font-size: 18px;
    display: block;
    font-weight: normal;
}
.title::before{
    display: block;
    content: "";
    width: 100px;
    height: 4px;
    background: #1f3d93;
    margin: 15px auto;
}
@media (max-width:992px){
    .common{
       padding-top:20px;
       padding-bottom:20px;
    }
    .title{
        font-size: 24px;
    }  
}

/* 关于我们 */
.about{
    background: url(../img/about.jpg) no-repeat top center #f6f6f6;   
}
.about .title{
	color: #fff;
}
.about .title::before{
	background: #efed43;
}
.about .about-intro{
    line-height: 2;
    font-size: 14px;
    background: #fff;
    padding: 60px;
    box-shadow: 10px 10px 20px 0 rgba(0,0,0,.2); 
}
@media (max-width:992px){  
    .about .about-intro {       
        width:100%;
        font-size: 14px;
        margin-bottom: 0px;
        padding: 15px;
    }
}

.product{
    background: #fff;   
    overflow: hidden;  
}

.pro-tab{
    display: flex;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 50px;    
}
.pro-tab li{
    width: 20%;
    text-align: center;
}
.pro-tab li .nav-bg{
     background: #e9e9e9;
     transform:skewX(-20deg);
     border-radius: 5px;
     margin: 0px 10px; 
     transition: all .6s;
}
.pro-tab li a{   
    padding: 8px 25px;   
    font-size: 20px;
    display: block;
    transform:skewX(20deg);
    transition: all 0.6s;
}
.pro-tab li.active .nav-bg,.pro-tab li .nav-bg:hover{   
    color:#fff;
    background: #1f3d93;
    background: -moz-linear-gradient(left,  #1f3d93 0%, #0280cd 100%);
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#1f3d93), color-stop(100%,#0280cd));
    background: -webkit-linear-gradient(left,  #1f3d93 0%,#0280cd 100%);
    background: -o-linear-gradient(left,  #1f3d93 0%,#0280cd 100%);
    background: -ms-linear-gradient(left,  #1f3d93 0%,#0280cd 100%);
    background: linear-gradient(to right,  #1f3d93 0%,#0280cd 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1f3d93', endColorstr='#0280cd',GradientType=0 );

}
.pro-tab li.active a,.pro-tab li a:hover{
    color: #fff;
}
@media (max-width:992px){  
    .pro-tab {
        display: flex; 
        justify-content:flex-start;
        flex-direction: row;
        flex-wrap: wrap;
        margin-bottom: 10px;
    }
    .pro-tab li .nav-bg {       
        transform: skewX(0deg);
    }
    .pro-tab li {
        width: 33.33333%;
        margin-bottom: 5px;
    }
    .pro-tab li a {
        padding: 8px 15px;
        font-size: 14px; 
        transform: skewX(0deg);
    }
}
/*优势特点*/
.services{
    background: #f6f6f6;
    padding-bottom: 200px;
}
.services .ser-con{    
    transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all 0.5s ease;
    position: relative;  
}
.services .ser-con .ser-img img{
    max-width: 100%;
}
.services .ser-con h5{
    font-size: 24px;
    font-weight: bold;
    line-height: 1.4;
    min-height: 60px;
    position: absolute;
    width: 100%;
    bottom: 0px;
    padding: 30px 40px;
    color: #fff;
    z-index: 10;
}
.services .ser-con h5::after{
    display: block;
    content: "";
    width: 40px;
    height: 3px;
    background: #fff;
    margin-top: 10px;  
}
.services .ser-con:hover{   
    transform: scale(1.05);
    box-shadow: 10px 10px 20px 0 rgba(0,0,0,.2);
}
/*合作伙伴*/
.partners{
	box-shadow: 10px 10px 20px 0 rgba(0,0,0,.2); 
    padding-left: 40px;
    padding-right: 40px;
    background: #fff;
    margin-top: -100px;
}
.partners .brands-box{     
    text-align: center;
    position: relative;
    padding: 0px 80px;
}
.partners .brands .swiper-slide img{
    max-width: 100%;
    transition: all 0.6s;
}
@media(max-width:768px){
    .services {  
        padding-bottom: 100px;
    }
    .services .ser-con{
        margin-bottom: 10px;
    }
    .partners {        
        padding-left: 0px;
        padding-right: 0px;  
        margin-top: -50px;
    }
    .partners .brands-box{
        padding: 0px 40px;
    }
}

.news-content .news-list,
.ny-notice .news-list{   
    border-bottom: 1px solid #f7f7f7;
}

.news-content .news-list .news-title,
.ny-notice .news-list .news-title{
    font-size: 14px;
    line-height: 4;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding-left: 30px;
    position: relative;    
}
.news-content .news-list .news-title span,
.ny-notice .news-list .news-title span{
    font-size: 14px;
    float: right;
}
.news-content .news-list .news-title::before,
.ny-notice .news-list .news-title::before{
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -6px;
    left: 10px;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background: transparent;
    border: 2px solid #dcdcdc;
}

/* 新闻 */
.news-box .img{
    width: 100%;
    overflow: hidden;
    border-radius: 5px;    
}
.news-box .img img{
    width: 100%;
    transition: all .5s;
}
.news-box .img:hover img{
    transform:  scale(1.1);
    -webkit-transform:  scale(1.1);
    -o-transform:  scale(1.1);
}
.news-box .news-con{   
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;    
}
.news-box .news-time{
    color: #1f3d93;
    font-size: 14px;
    line-height: 3;
    border-bottom: 3px solid #f7f7f7;
}
.news-box .news-time::after{
    display: block;
    content: "";
    width: 50px;
    height: 3px;
    margin-bottom: -3px;
    background: #1f3d93;
}
.news-box .news-title{
    overflow: hidden;
    text-overflow: -o-ellipsis-lastline;   
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 16px;
    line-height: 1.4;
    font-weight: bold;    
    width: 100%;
    margin: 10px 0;   
}
.news-box .news-desc{    
    font-size: 14px;
}
.news-box .more{
    font-size: 16px;
    color: #1f3d93;
    display: block;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.6s;
}
.news-box .more:hover{
    color: #000;
}
@media (max-width:992px){
   .news-content {  
        padding: 20px;
    } 
}