@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;
    background: url(../img/top.jpg) no-repeat center #fff;
    position: relative;
}
.header .logo {
    padding: 15px 0px 5px;
}
.header .logo img{
    height: 65px;
    width: auto;
    transition: all .5s;  
}
.header{
    padding:0px 0px;   
    max-width:1920px;
    border-bottom: 1px solid #e4e4e4;
}
@media(max-width:767px){
    .header .logo{
        padding: 0px 0px;
    }
    .header .logo img{ 
        height: 45px;
    }   
}
/*小导航*/
header .menu{
    padding: 35px 0px 0px;
}
header .menu ul{
    margin:0px auto 0px auto;
    transition: all .5s;
    display: flex;
    justify-content: flex-end;
    flex-wrap: nowrap;
}
header .menu ul li{
    display: inline-block;
    padding: 0 0px;
    padding-left:35px;
    position: relative;
}
header .menu ul li:before{
    content: "";
    position: absolute;
    width: 1px;
    height: 18px;
    left: 15px;
    top: 50%;
    margin-top: -9px;
    background: #606060;
}
header .nav{
    padding: 0px 0px 0px;
}
header .nav>ul{
    margin:0px auto 0px auto;
    transition: all .5s;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}
header .nav>ul>li{
    display: inline-block;     
    position: relative;
}
header .nav>ul>li>a{
    display: block;
    position: relative;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;     
    line-height: 75px;
}
header .nav>ul>li>a>b{
    display: block;
    height:4px;
    width:100%;
    background:#4472c6;
    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,header .nav>ul>li.active a{
    color: #4472c6;
}
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: "\f107";
    font-family: FontAwesome;
    font-size: 12px;
    font-weight: normal;
    margin-left: 5px;
    margin-top: 5px;
    float: right;
}
header .nav ul.submenu {
    display: none;
    position: absolute;
    left: 50%;
    top: 100%;
    margin-left: -80px;
    width: 190px;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
}
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:#3c4a76; background:#f2fcfa;}
header .nav>ul>li:hover ul.submenu{
    display: block;
}
.top-drop{
    min-width: 120px;
    padding: 10px;
    text-align: center;
}
header.on{
    position: fixed;
}
header.on .header .logo img{
    height: 60px;
}
header.on .nav {
    padding: 10px 0px 0px;
}
@media(max-width:767px){
    header.on .header .logo img{
        height: 45px;
    }
}
@media (max-width: 1199px){
    .header .nav>ul>li{
        padding-left:10px;
    }
}
@media (max-width: 992px){    
    .header{
        position: relative;
        padding:10px 0px;
    }
    header .nav>ul{
        display: block;
    } 
    header .nav{
        position: absolute;
        left:-100vw;
        top:64px;
        width:70%;
        height:calc(100vh - 60px);
        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: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;
        border-bottom: 1px solid #efefef;
    }
    header .nav ul li a{
        color:#424242;
        line-height: 3;
        font-size: 14px;
    }
    header .nav>ul>li::before,
    header .nav>ul>li:last-child::after{
        border-left: 0px dotted #c1c1c1;
    }
    header .nav>ul>li.has-children > a::after {
        content: "";    
    } 
}
@media(max-width:1200px){
    .header .nav .submenu li {
        display: none !important;
    }
}
/* banner */
.banner{
    position: relative;
    overflow: hidden;
}
.banner img{
    width: 100%;
}
.banner .ban-title{
    width:100%;
    position: absolute;
    bottom:12%;
    color:#fff;
    z-index: 9;
}
.banner .ban-title h5.cntitle{
    font-size: 35px; 
    font-weight: 300;
    line-height: 1;    
}
.banner .ban-title h5.cntitle:after{
    content: "";
    width: 60px;
    height: 2px;
    display: block;
    margin-top: 15px;
    background-color: #fff;
}
.banner .ban-title p{
    font-size: 16px; 
}
@media(max-width:991px){
    .banner .ban-title h5.cntitle{
        font-size: 22px;
    } 
}

.common{
    padding-top:50px;
    padding-bottom:50px;
}
.title{
    font-size: 24px;  
    font-weight: 800;    
    text-transform: uppercase;
    position: relative;
    margin-bottom: 20px;
    background: url(../img/title.png) repeat-x bottom;          
}
.title:after {
    content: "";
    display: block;
    background: #4472c6;
    width: 40px;
    height: 7px;
    margin: 5px 0;
}
@media (max-width:767px){
    .common{
       padding-top:25px;
       padding-bottom:25px;
    }    
    .title{
        font-size: 18px;
    }      
}
/*热销产品*/
.employ{
    background: url(../img/Advantage.jpg) no-repeat top center #fff;
    padding-top: 50px;
}
.employ .adv-img img{
    width: auto;
    max-width: 100%;   
}
.employ .adv-con{    
    position: relative;
    transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    overflow: hidden;
    padding: 30px 10px;
    line-height: 1.2;
    background: #f1f3f5;
    font-size: 14px; 
    font-weight: lighter;
    border-radius: 10px;
    border: 1px solid #e9e9e9;
    margin-bottom: 18px;
    white-space: nowrap;
}
.employ .adv-con a span {
    display: block;
    text-align: center;
    font-weight: 600;
    color: #4472c6;
}
.employ .adv-con span{
    font-size: 14px;
    padding: 0px 10px;
}
.employ .adv-con img{
    float: left;
    width: 50%;
    max-width: 100%;
}
.employ .adv-con:hover{
    background: #fff;
}
@media (max-width:991px){    
    .employ .adv-con{
        margin-bottom: 15px;
    }   
}
/*解决方案*/
.casebox{
    position: relative;
}
.casebox .swiper-slide{
    border: 1px solid #eeeeee;
    padding: 15px;
}
.casebox .case-img{
    overflow: hidden;
    text-align: center;
    transition: all 0.6s;
    margin-bottom: 10px;
}
.casebox .case-img img{
    width: 100%; 
    transition: all 0.6s;
}
.casebox .case-img:hover img{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
}
.casebox .case-desc{
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    line-clamp: 6;
    -webkit-box-orient: vertical;
}
.casebox .case-more a{
    display: block;
    background: #4472c6;
    font-weight: 500;
    text-align: center;
    margin-top: 20px;
    padding: 5px 10px;
    color: #fff;
}
/*关于我们*/
.about{
    background: #fff;
}
.about .title{
    text-align: left;
}
.about .title:after{
    margin: 5px 0px;
}
.about p{
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 9;
    line-clamp: 9;
    -webkit-box-orient: vertical;
}
.about .about-img{
    overflow: hidden;
}
.about img{
    width: auto;
    max-width: 100%;
}
/*热门职位*/
.job{
   background: olive linear-gradient(to bottom, rgba(255,255,255,1.0), rgba(244,244,244,1.0)); 
}
.job .more{
    padding: 10px 35px;
    font-size: 16px;
}
.job-box{
    border: 1px solid #eeeeee;
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    background: #fff;
    margin-bottom: 20px;
}
.job-box h5{
    border-bottom: 1px dotted #ebebeb;
    line-height: 2;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    margin: 5px 0px;
}
.job-box h5 span.company{
    color: #0c74eb;
    margin-right: 5px;
}
.job-box h5 span.time{
    float: right;
}
/*员工安排现场*/
.scene .scene-img{
    overflow: hidden;
    text-align: center;
    margin-bottom: 10px;
    transition: all 0.6s;
}
.scene .scene-img img{
    width: 100%; 
    transition: all 0.6s;
}
.scene .scene-img:hover img{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
}
/* 新闻 */
.news{
    padding-bottom: 50px;
}
.news-con h5{
    font-size: 16px;
    display: block;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 10px;   
}
.news-con h5 span{
    display: block;
    padding: 8px 0px;
    font-size: 14px;
    color: #f97e14;   
    font-weight: lighter;
}
.news-con h5:after {
    content: "";
    display: block;
    background: #dddddd;
    width: 40px;
    height: 3px;
    margin-bottom: 0px;
    transition: all 0.6s;
}
.newsbox .news-img{
    overflow: hidden;
    border-radius: 15px;
}
.newsbox .news-img img{
    width: 100%;   
    transition: all 0.6s;
}
.newsbox .news-img:hover img{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
}
.news-con .news-more a{
    color: #cbcbcb;
    font-weight: 500;
}
.news-con .news-intro{
    font-size: 14px;
    margin-bottom: 10px;
}
@media (max-width:991px){  
    .about p{        
        -webkit-line-clamp: 4;
        line-clamp: 4;
    }
    .casebox .case-desc{        
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }
    .scene .scene-img{
        margin-bottom: 10px;
    }
    .news-con h5 {
        font-size: 14px;
        margin-bottom: 5px;
        margin-top: 5px;
    }
    .news-con h5 span {        
        padding: 4px 0px;
        font-size: 12px;
    }
    .news-con .news-intro {
        font-size: 12px;
        margin-bottom: 5px;
    }
    .news-con .news-more{
        border-bottom: 1px solid #dcdcdc;
        margin-bottom: 10px;
    }
}