@charset "utf-8";
header{
    width:100%;
    position: fixed;
    top:0px;
    left:0;
    z-index:99;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    background-color: rgba(0,0,0,0.5);
}
.header .logo .logo{
    height: 60px;
    transition: all .5s;
}
.header{
    padding:20px 0px;
    width:100%;
    position: relative;
    color:#fff;
}
.header .nav>ul{
    margin:0;    
    transition: all .5s;
}
.header .nav>ul>li{
    display: inline-block;
    padding: 0 15px;
    position: relative;
}
.header .nav>ul>li>a{
    display: block;
    position: relative;
    color:#fff;
    font-size: 18px;
    padding:15px 0 15px 0;
}
.header .nav>ul>li>a>b{
    display: block;
    height:3px;
    width:100%;
    background:#fff;
    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>b{
    transform: rotateY(0);
    -webkit-transform: rotateY(0);
    -o-transform: rotateY(0);
}
.header .nav ul.submenu {
    display: none;
    position: absolute;
    left: 50%;
    top: 50px;
    margin-left: -80px;
    width: 160px;
    background: #fff;
    border-radius: 4px;
}
.header .nav ul.submenu:before{content:"\e253"; 
font-family: 'Glyphicons Halflings'; position:absolute; left:50%; 
top:-15px; transform: translate(-50%, 0); 
font-size:16px; color:#fff; font-style:normal; -webkit-font-smoothing: antialiased; 
-webkit-text-stroke-width: 0.2px; -moz-osx-font-smoothing: grayscale;}

.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:#0072b4; background:#edf8ff;}
.header .nav>ul>li:hover ul.submenu{
    display: block;
}
.header .header-tel{
    line-height: 60px;
    margin: 0px 0px 0px;
    transition: all .5s;
}
.header .header-tel span{
    font-size: 20px;
    color:#fff;
    margin: 0px 5px;
    cursor: pointer;
}
.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:81px;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:#0072b4;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{   
    background-color:rgba(0,0,0,0.4);
    box-shadow: 0 0 10px #494949b8;
    top: 0;
}
header.on .header{
    padding: 10px 0px;
}
header.on .header .logo .logo{
    height: 50px;
}
@media (max-width: 1199px){
    .header .nav>ul>li{
        padding-left:0;
    }    
}
@media (max-width: 992px){    
    .m-btn{
        display: block;
    }
    header{
        background-color: #000000c7;
    }
    .header{
        position: relative;       
        padding:10px 0px;
    }    
    header.on .header .logo .logo, .header .logo .logo{
        height:35px !important;
    }    
    .header .nav{
        position: absolute;
        left:-100vw;
        padding-top: 55px;
        top:55px;
        width:70%;
        height:calc(100vh - 55px);
        background:#2c2c2c;       
        z-index:999;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
    }
    .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;
        line-height: 1.2 !important;
        padding:0 20px;
        border-bottom: 1px solid #fff;
    }
    .header .nav ul li a{
        font-size: 15px;        
    }
    @media(max-width:1200px){
        .header .nav .submenu li {
            display: none !important;
        }
    }
}
/* banner */
.banner{
    position: relative;
}
.banner .carousel-caption{
    text-align: left;
    width:100%;
    position: absolute;
    left:0%;
    top:25%;
    color:#fff;
    padding:0 15px;
    font-weight: bold;
}
.banner .carousel-caption h1{
    font-size: 70px;
    font-weight: 700;
    margin:5px 0px;  
}
.banner .carousel-caption p{
    font-size: 45px;
    margin:0px 0px;
}
.banner .carousel-caption p.sign{
    font-size: 34px;
}
.banner .carousel-caption p.sign:after{
    content: "";
    width: 100px;
    height: 3px;
    background: #fff;
    display: block;
    margin: 10px 0px;
}
.home-btn{margin-top:5%;}
.homeLink{position:relative; display:block; text-align:left; width:180px; height:50px; text-indent:0px; font-size:16px; padding-left:40px;  overflow:hidden; border-radius:50px; line-height:50px; overflow:hidden; color:#fff; background:#13aa1e;transition: all 0.3s ease-in-out;}
.homeLink:after{ content: '→'; font-family: 'iconfont'; position:absolute; right:40px; top:50%; transform: translate(0, -50%); text-indent:0px; font-size:24px; font-style:normal; -webkit-font-smoothing: antialiased; -webkit-text-stroke-width: 0.2px; -moz-osx-font-smoothing: grayscale;}
.homeLink:hover{ width:200px; text-indent:0; color:#fff;}
.Home-swiper .swiper-slide .home-btn{opacity:0; transition:all .4s;}
.Home-swiper .ani-slide .home-btn{opacity:1; }

@media (max-width:1400px){
    .banner .carousel-caption{
        width:100%;
        margin-left:0;
        left:0;
    }
}
@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);
}
@media (max-width:1400px){
    .banner .carousel-caption h1{
        font-size: 35px;
    }
    .banner .carousel-caption p{
        font-size: 16px;
    }
}
@media (max-width:992px){
    .banner .carousel-caption{
        top: auto;
        bottom: 15%;
    }
    .banner .carousel-caption p.sign:after{       
        width: 50px;
        height: 2px;       
        margin: 2px 0px;
    }
    .banner .carousel-caption p.sign,
    .banner .carousel-caption h1{
        font-size: 16px;
    }
    .banner .carousel-caption p{
        font-size: 12px;
    }    
}

/* 搜索 */
.search{
    height:100px;
    background:#f8f8f8;
}
.search .keywords{
    line-height: 100px;
}
.search .keywords a{
    display: inline-block;
    padding:0 10px;

}
.search .search-box{
    margin-top:35px;
}
.search .search-n{
    width:385px;
    height:40px;
}
.search .search-n form{
    width:100%;
    height:100%;
}
.search .search-n form input{
    width:325px;
    height:100%;
    border:1px solid #ddd;
    padding:0 0 0 10px;
}
.search .search-n form input:-moz-placeholder {
    font-size: 14px;
}
.search .search-n form input:-ms-input-placeholder{
    font-size: 14px;
}
.search .search-n form input::-webkit-input-placeholder{
    font-size: 14px;
}
.search .search-n form button{
    background:#0064ba;
    border:none;
    width:60px;
    color:#fff;
    height:100%;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}
@media (max-width:992px){
    .search{
        height:60px;
    }
    .search .keywords{
        overflow: hidden;
        text-overflow:ellipsis;
        line-height: 60px;
    }
}
.common{
    padding:80px 0;
}
/* 关于我们 */
.about{
    background: url(../img/about.jpg) no-repeat top center #004f8d;
}
.about .about-box .title{
    color: #fff;
}
.about .about-box .title span{  
    color: #2692d0;
}
.about .about-box .title:after{
    background: #fff;
}
.about .about-box .about-intro{
    color: #fff;
    font-size: 14px;
    margin-bottom: 100px;
}
.about .about-box .about-intro p{
    margin: 0px 0px;
}
@media (max-width:992px){
    .common{
        padding:40px 0;
    } 
}
/* 通用标题 */
.title{
    font-size: 32px;
    font-weight: bold;
    color:#2b2b2b;
    line-height: 1;
    margin-bottom: 25px;
    text-align: center;
}
.title span{
    display: block;
    color: #dfdfdf;
    font-size: 50px;
    text-transform: uppercase;
}
.title:after{
    content: "";
    width: 70px;
    height: 2px;
    background: #0072b4;
    margin: 10px auto;
    display: block;
}
/*解决方案*/
.solution .sol-img{
    position: relative;
    overflow: hidden;
    margin: 15px 0px;
}
.solution .sol-img img{
    width: 100%;
    transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
}
.solution .sol-img h5{
    position: absolute;
    width: 100%;
    color: #fff;
    font-weight: bolder;
    font-size: 20px;
    line-height: 1.2;
    bottom: 0px;
    padding: 20px 20px;
}
.solution .sol-img h5 span{
    display: block;
    font-size: 14px;
    font-weight: normal;
}
.solution .sol-img h5 span:after{
    content: "";
    display: block;
    background: #fff;
    width: 30px;
    height: 2px;
    transition: all 0.6s;
    margin: 10px 0px;
}
.solution .sol-img h5 img{
    width: auto;
    float: right;
}
.solution .sol-img:hover img{
    transform:  scale(1.1);
    -webkit-transform:  scale(1.1);
    -o-transform:  scale(1.1);
    opacity: 0.8;
}
@media (max-width: 992px){
    .solution .row {
        margin-right: -5px;
        margin-left: -5px;
    }
    .solution .sol-img {
        margin: 5px -10px;
    }
    .solution .sol-img h5 {        
        font-size: 14px;        
        padding: 5px 10px;
        text-align: center;
    }
    .solution .sol-img h5 img {        
        float: none;
        width: 45px;
        display: block;
        margin: 0px auto;
    }
}
/*产品*/
.product{
    background:url(../img/product-bg.jpg) no-repeat center top;
    overflow: hidden;
}
.product .pro-nav{
    margin-top: 10px;  
    overflow: hidden;
}
.pro-nav li .sign a{  
    padding: 15px 10px;
    font-size: 16px;
    text-align: center;
    background:#fff;   
    margin-bottom: 15px;
    transition: all .5s;    
    display: block;
}
.pro-nav li:hover .sign a{
    background:#0072b4;
    text-align: center;
    color: #fff;
}
/*产品*/
.product-box{
    position: relative;
}
.product-box .pro-con{
    border: 1px solid #eaeaea;
    padding: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    background: #fff;
    box-shadow: 0 0 8px #bbb;
}
.product-box .pro-img {
    overflow: hidden;
    text-align: center;    
}
.product-box .pro-img img{
    max-width:100%;   
    transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s; 
}
.product-box .pro-con h5{
    text-align: center;
    padding:8px 0 8px 0px;
    line-height: 1.2;
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
}
.product-box .pro-con h5 span{
    display: block;
    height: 20px;
    font-weight: normal;
}
.product-box .pro-con .category{
    font-size: 14px;
    text-align: center;
}
.product-box .pro-con .category:after{
    display: block;
    content: "";
    width: 40px;
    height: 2px;
    margin: 5px auto 5px;
    background: #0072b4;
}
.product-box .pro-con .more a{
    text-align: center;
    display: block;
    font-size: 16px;
    color: #d9d9d9;
    transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
}
.product-box .pro-con .more:hover a{    
    color: #ef2020;
}
@media(max-width:992px){      
    .product-box .pro-con h5{
        font-size: 16px;
    }     
}
.product-box .pro-img:hover img{
    transform:  scale(1.1);
    -webkit-transform:  scale(1.1);
    -o-transform:  scale(1.1);
}
.swiper-button-next, .swiper-button-prev{
    background-size: 16px 32px;
}
.product-box .swiper-button-next, .product-box .swiper-button-prev{
    background-size: 26px 32px;
}
.product-box .swiper-button-prev{
    left: -30px;
}
.product-box .swiper-button-next{
    right: -30px;
}

@media (max-width:992px){
    .title{
        font-size: 18px;
    }
    .title span{
        font-size: 20px;
    }
    .product-box .top-box .swiper-button-prev{
        left: 0px;
    }
    .product-box .top-box .swiper-button-next{
        right: 0px;
    } 
}
/*客户案例*/
.customer{
    padding-bottom: 80px;
}
.cust-tab{
    display: flex;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 25px;
}
.cust-tab li a{
    padding: 10px 15px;
    margin-right: 10px;    
    font-size: 16px;
    background: #ececec;
    min-width: 200px;
    text-align: center;
    display: block;
    transition: all 0.6s;
}
.cust-tab li.active a,.cust-tab li a:hover{
    color: #fff;
    background: #0072b4;
    font-weight: bold;
}
@media (max-width:767px){
    .cust-tab li a{          
        font-size: 16px;
    }
}
.customer .cust-img{
    text-align: center;   
    padding: 10px;
    overflow: hidden;
    transition: all 0.6s;
}
.customer .cust-img img{
    max-width: 100%;
    width: auto;
    transition: all 0.6s;
}
.customer h5{
    text-align: center;
    margin: 15px 0px 25px;
}
.customer .cust-img:hover img{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
}
/* 企业荣誉 */
.honor{    
    padding: 45px;
    position: relative;
    margin-top: -140px;
    margin-bottom: 80px;
    background: #fff;
}
.honor-box{
    margin-top:30px;
    color: #fff;
    line-height: 28px;
    width: 88%;
}

.honor .honor-img img{
    width: 100%;
    padding: 10px;
    background: #fff;
    border: 1px solid #e9e9e9;
}
@media (max-width:992px){
    .honor {
        padding: 25px 40px;   
        margin-top: -105px;
        margin-bottom: 40px;
    }
}
/* 新闻 */
.news{
    background:url(../img/news.jpg) no-repeat center #f4f4f4;
    background-size: 100% 100%;
    padding-bottom: 60px;
}
.news-box .news-con{
    width: 100%;
    font-size: 14px;     
    position: relative;
    overflow: hidden;  
    margin: 0px 0px;
    padding-top: 15px;
    transition: all 0.6s;       
}
.news-box .news-title{
    overflow: hidden;    
    text-overflow: -o-ellipsis-lastline;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
}
.news-box .news-title:after{    
    content: "";
    display: block;
    background: #0072b4;
    width: 30px;
    height: 2px;
    transition: all 0.6s;
    margin: 10px 0px; 
}
.news-box .news-time{    
    font-size: 15px;
    font-weight: 600;
    line-height: 1.0;
    color: #c3c3c3;
    margin-bottom: 25px;
}
.news-box .news-time span{
    display: block;
    font-size: 45px;
}
.news-box .ny-news-img img{  
    overflow: hidden;
    width: 100%;
    transition: all 0.6s;
}
.news-box .more{    
    font-size: 16px;
    display: block;
    opacity: 0.6;
    margin-top: 20px;   
    text-transform: uppercase;
    transition: all 0.6s;    
}
.news-box .news-con:hover{    
    padding-top: 10px;
}

@media (max-width:992px){
    .pro-pack{
        display: none;
    }
    .pro-con p{
        margin: 0;
    }
    .home-btn{margin-top:0;}
    .news-box .news-time {
        font-size: 14px;
        margin-bottom: 5px;
    }
    .news-box .news-time span {
        font-size: 24px;
    }
    .news-box .news-title {       
        font-size: 16px;
        margin-bottom: 0px;
    }
}