@charset "UTF-8";
/**
 * 
 * @authors Your Name (you@example.org)
 * @date    2017-10-18 08:57:34
 * @version $Id$
 */
@font-face{
    font-family: "dBold";
    src: url('../font/din-bold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face{
    font-family: "dMedium";
    src: url('../font/DIN-Medium.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face{
    font-family: "mBold";
    src: url('../font/MicrosoftBold.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face{
    font-family: "BEBAS";
    src: url('../font/BEBAS.TTF') format('opentype');
    font-weight: normal;
    font-style: normal;
}
/* header */
header{
    width: 100%;
    position: relative;
    height: 104px;
/*    border-bottom: 4px solid #1e50a2;*/
    z-index: 22;
}
.logo{
    display: block;
    width: 195px;
    margin-top: 18px;
    float: left;
}
.logo img{
    display: block;
    width: 100%;
}
.header-right{
    float: right;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100px;
}
.nav-ul{
    display: flex;
    justify-content: space-between;
}
.nav-ul li{
    margin-right: 60px;
    position: relative;
}
.nav-ul li:last-child{
    margin-right: 0px;
}
.nav-ul li>a{
    display: block;
    font-size: 18px;
    line-height: 100px;
    color: #111;
    transition: all .3s;
    text-align: center;
    font-family: "mBold";
}
.nav-ul li:hover>a,
.nav-ul li.nav-active>a{
    color: #1e50a2;
}
.lan-wrap{
    display: flex;
    margin-left: 140px;
}
.lan-wrap a{
    display: block;
    margin-right: 14px;
}
.lan-wrap a:last-child{
    margin-right: 0px;
}
@media(max-width: 1700px){
    .lan-wrap{
        margin-left: 80px;
    }
    .nav-ul li{
        margin-right: 40px;
    }
}
@media(max-width: 1600px){
    .lan-wrap{
        margin-left: 60px;
    }
    .nav-ul li{
        margin-right: 25px;
    }
}
@media(max-width: 1400px){
    .lan-wrap a{
        margin-right: 8px;
    }
    .lan-wrap{
        margin-left: 30px;
    }
    .nav-ul li{
        margin-right: 18px;
    }
}
@media(max-width: 1200px){
    .nav-ul li>a{
        font-size: 16px;
    }
    .lan-wrap a{
        margin-right: 5px;
    }
    .lan-wrap a img{
        width: 32px;
        height: 20px;
    }
    .lan-wrap{
        margin-left: 20px;
    }
    .nav-ul li{
        margin-right: 10px;
    }
}
@media(max-width: 991px){
    header{
        height: 70px;
    }
    .logo{
        margin-top: 2px;
        width: 182px;
    }
    .header-right{
        display: none;
    }
}
/* 底部 */
#footer{
    padding-top: 46px;
    overflow: hidden;
    width: 100%;
    background: #2f2f2f;
}
.copy{
    height: 81px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #808080;
    border-top: 1px solid #808080;
	width:100%;
}

.copy a{
	color:#FFF;
	}
.footer-ul{
    margin-bottom: 43px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.footer-ul li h3{
    color: #fff;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 20px;
}
.footer-ul li h3 a{
	color:#FFF;}
.footer-ul li dl dd>a{
    line-height: 30px;
    display: block;
    color: #808080;
    font-size: 16px;
}
.code-item{
    width: 152px;
    text-align: center;
}
.code-item p{
    color: #808080;
    line-height: 24px;
    margin-top: 10px;
    text-align: center;
}
@media(max-width: 1200px){
    .links a{
        margin-right: 6px;
    }
    .copy{
        font-size: 14px;
    }
}
@media(max-width: 991px){
    #footer{
        padding-top: 40px;
    }
    .footer-ul{
        flex-wrap: wrap;
        margin-bottom: 20px;
    }
    .footer-ul li{
        width: 100%;
        text-align: center;
        margin-bottom: 12px;
    }
    .footer-ul li:last-child{
        margin-bottom: 0px;
    }
    .footer-ul li h3{
        margin-bottom: 6px;
    }
    .footer-ul li dl{
        text-align: center;
    }
    .footer-ul li dl dd{
        display: inline-block;
        margin: 0 4px;
    }
    .footer-ul li dl dd>a{
        line-height: 24px;
    }
    .code-item{
        margin: 0 auto;
    }
    .copy{
        flex-wrap: wrap;
        height: auto;
        padding: 15px 0px;
        font-size: 16px;
    }
    .copy p{
        width: 100%;
        line-height: 24px;
        text-align: center;
        margin-bottom: 10px;
    }
    .footer-share{
        margin: auto;
    }
}
/* 右侧浮层 */
.feedback-wrap{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: rgba(0, 0, 0, .5);
    z-index: 999;
    display: none;
    padding-top: 100px;
}
.feedback-main{
    width: 80%;
    background: #f0f0f4;
    margin: 0 auto;
    padding-top: 40px;
    padding-left: 40px;
    padding-right: 40px;
    position: relative;
    padding-bottom: 100px;
}
.feedback-close{
    width: 45px;
    height: 45px;
    position: absolute;
    top: 40px;
    cursor: pointer;
    right: 40px;
}
.feedback-main h3{
    font-size: 40px;
    color: #1e50a2;
    margin-top: 58px;
    margin-bottom: 48px;
    font-family: "mBold";
    text-align: center;
}
.feedback-form{
    width: 62.5%;
    margin: 0 auto;
}
.feedback-formitem{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    width: 100%;
}
.feedback-formitem input{
    display: block;
    width: calc(50% - 20px);
    height: 60px;
    border: none;
    background: #fff;
    outline: none;
    font-size: 16px;
    padding-left: 20px;
    line-height: 60px;
    color: #999;
    box-sizing: border-box;
}
.feedback-formitemall input{
    width: 100%;
}
.feedback-formitem textarea{
    width: 100%;
    height: 200px;
    border: none;
    resize: none;
    padding-top: 14px;
    background: #fff;
    outline: none;
    font-size: 16px;
    padding-left: 20px;
    line-height: 30px;
    color: #999;
}
.feedback-btn{
    width: 100%;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border: none;
    background: #1e50a2;
    display: block;
    font-size: 18px;
    color: #fff;
}
@media(max-width: 1700px){
    .feedback-form{
        width: 80%;
    }
}
@media(max-width: 1600px){
    .feedback-formitem textarea{
        height: 180px;
    }
    .feedback-form{
        width: 84%;
    }
}
@media(max-width: 1400px){
    .feedback-main{
        padding-top: 20px;
        padding-bottom: 60px;
    }
    .feedback-close{
        top: 20px;
    }
    .feedback-main h3{
        margin-top: 40px;
        font-size: 36px;
        line-height: 36px;
        margin-bottom: 35px;
    }
}
@media(max-width: 1200px){
    .feedback-form{
        width: 90%;
    }
    .feedback-main{
        width: 100%;
    }
    .feedback-formitem textarea{
        height: 140px;
    }
    .feedback-formitem input{
        height: 52px;
        line-height: 52px;
    }
}
@media(max-width: 991px){
    .feedback-form{
        width: 100%;
    }
    .feedback-main h3{
        margin-top: 30px;
        font-size: 30px;
        line-height: 30px;
        margin-bottom: 28px;
    }
    .feedback-formitem input{
        width: calc(50% - 10px);
    }
    .feedback-formitemall input{
        width: 100%;
    }
}
/* 首页关于我们 */
.home-about{
    padding-top: 100px;
    padding-bottom: 100px;
    width: 100%;
    overflow: hidden;
}
.habout-main{
    display: flex;
    margin-bottom: 70px;
}
.habout-left{
    width: 50%;
    padding-right: 50px;
}
.habout-left .public-img:hover img{
    transform: scale(1.1);
}
.habout-right{
    width: 50%;
    padding-left: 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.habout-info h2>span{
    display: block;
    line-height: 72px;
    font-size: 72px;
    font-family: "BEBAS";
    color: #1e50a2;
}
.habout-info h3{
    font-size: 36px;
    color: #111;
    line-height: 36px;
    margin-top: 15px;
    margin-bottom: 60px;
}
.habout-des{
    font-size: 16px;
    line-height: 32px;
    color: #444;
}
.habout-des p{
    margin-bottom: 18px;
}
.habout-more{
    display: flex;
    align-items: center;
}
.habout-more span{
    font-size: 18px;
    color: #1e50a2;
    font-family: "BEBAS";
    padding-right: 5px;
}
.habout-more img{
    transition: all .5s;
}
.habout-more:hover img{
    transform: translateX(5px);
}
.habout-num{
    display: flex;
}
.habout-num li{
    border: 1px solid #dedede;
    flex: 1;
    height: 210px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all .3s;
}
.habout-nums{
    display: flex;
    align-items: flex-start;
    color: #444;
}
.habout-nums h3{
    font-size: 56px;
    color: #1e50a2;
    font-family: "dBold";
    margin-right: 8px;
}
.habout-nums span{
    font-size: 18px;
    display: block;
    margin-top: 10px;
}
.habout-num li p{
    font-size: 16px;
    margin-top: 10px;
    color: #444;
}
.habout-num li:hover{
    background: #1e50a2;
}
.habout-num li:hover .habout-nums{
    color: #fff;
}
.habout-num li:hover .habout-nums h3{
    color: #fff;
}
.habout-num li:hover p{
    color: #fff;
}
@media(max-width: 1700px){
    .habout-right{
        padding-left: 32px;
    }
    .habout-info h2>span{
        line-height: 60px;
        font-size: 60px;
    }
    .habout-info h3{
        margin-bottom: 30px;
    }
    .habout-des{
        line-height: 30px;
    }
}
@media(max-width: 1600px){
    .habout-des p{
        overflow : hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp:3;
        -webkit-box-orient: vertical;
    }
}
@media(max-width: 1400px){
    .habout-info h2>span{
        line-height: 48px;
        font-size: 48px;
    }
    .habout-des p{
        margin-bottom: 12px;
    }
}
@media(max-width: 1200px){
    .habout-left{
        padding-right: 30px;
    }
    .habout-right{
        padding-left: 18px;
    }
    .home-about{
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .habout-info h2>span{
        line-height: 40px;
        font-size: 38px;
    }
    .habout-des p{
        margin-bottom: 0px;
    }
    .habout-info h3{
        margin-bottom: 12px;
    }
    .habout-nums h3{
        font-size: 48px;
    }
}
@media(max-width: 991px){
    .habout-main{
        flex-wrap: wrap;
        margin-bottom: 30px;
    }
    .habout-left{
        padding-right: 0px;
        width: 100%;
        margin-bottom: 20px;
    }
    .habout-right{
        padding-left: 0px;
        width: 100%;
    }
    .home-about{
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .habout-info h3{
        line-height: 30px;
        font-size: 30px;
    }
    .habout-des p{
        -webkit-line-clamp:30;
        margin-bottom: 10px;
    }
    .habout-num{
        flex-wrap: wrap;
    }
    .habout-num li{
        width: 50%;
        flex: none;
        height: auto;
        padding: 26px 10px;
    }
    .habout-num li p{
        margin-top: 4px;
    }
}
@media(max-width: 599px){
    .habout-num li{
        width: 100%;
        border-top: none;
    }
    .habout-num li:first-child{
        border-top: 1px solid #dedede;
    }
    .habout-info h2 > span{
        font-size: 36px;
    }
}
/* 企业优势 */
.home-adv{
    background-color: #f6f6f6;
}
.hadv-main{
    display: flex;
}
.hadv-left{
    width: calc(50% - 50px);
    padding-right: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.hadv-title h3{
    margin-bottom: 60px;
}
.hadv-list li{
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}
.hadv-list li strong{
    display: block;
    color: #fff;
    line-height: 120px;
    font-weight: normal;
    font-family: "dMedium";
    font-size: 120px;
    margin-right: 40px;
    transition: all .5s;
    text-shadow: #111 2px 0 0, #111 0 2px 0, #111 -2px 0 0, #111 0 -2px 0;
}
.hadv-info h3{
    font-size: 24px;
    font-weight: bold;
    line-height: 24px;
    color: #111;
    margin-bottom: 12px;
}
.hadv-info p{
    color: #444;
    font-size: 16px;
    line-height: 30px;
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient: vertical;
    height: 60px;
}
.hadv-right{
    width: calc(50% + 50px);
}
.hadv-item{
    width: 100%;
}
.hadv-item P{
    height: 146px;
    background: #1e50a2;
    color: #fff;
    font-size: 60px;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-family: "dBold";
    line-height: 140px;
    text-align: center;
}
.hadv-item .public-img:hover img{
    transform: scale(1.1);
}
.hadv-list li:hover strong, .hadv-list li.on strong{
    color: #1e50a2;
    text-shadow: #1e50a2 2px 0 0, #1e50a2 0 2px 0, #1e50a2 -2px 0 0, #1e50a2 0 -2px 0;
}
.hadv-list li:hover .hadv-info h3, .hadv-list li.on .hadv-info h3{
    color: #1e50a2;
}
.hadv-list li:last-child{
    margin-bottom: 0px;
}
@media(max-width: 1700px){
    .hadv-left{
        padding-right: 80px;
    }
    .hadv-list li{
        margin-bottom: 0px;
    }
}
@media(max-width: 1600px){
    .hadv-list li{
        margin-bottom: 10px;
    }
    .hadv-title h3{
        margin-bottom: 40px;
    }
    .hadv-list li strong{
        height: 62px;
        line-height: 62px;
    }
    .hadv-info p{
        line-height: 26px;
        height: 52px;
    }
}
@media(max-width: 1400px){
    .hadv-left{
        padding-right: 50px;
    }
    .hadv-list li strong{
        margin-right: 15px;
        font-size: 100px;
    }
}
@media(max-width: 991px){
    .hadv-main{
        flex-wrap: wrap;
    }
    .hadv-left{
        padding-right: 0px;
        width: 100%;
        margin-bottom: 25px;
    }
    .hadv-right{
        width: 100%;
    }
    .hadv-list li strong{
        margin-right: 15px;
        font-size: 100px;
    }
    .hadv-list li{
        margin-bottom: 20px;
    }
    .hadv-info p{
        height: auto;
    }
    .hadv-item P{
        height: 86px;
        font-size: 48px;
        line-height: 82px;
    }
    .hadv-title h3{
        margin-bottom: 20px;
    }
}
@media(max-width: 599px){
    .hadv-item P{
        font-size: 36px;
    }
    .hadv-list li strong{
        font-size: 80px;
    }
    .hadv-info h3{
        font-size: 20px;
        line-height: 20px;
        margin-bottom: 5px;
    }
}
@media(max-width: 449px){
    .hadv-list li strong{
        font-size: 60px;
        margin-right: 10px;
    }
}
/* 首页产品 */
.hpro-title{
    text-align: center;
    margin-bottom: 70px;
}
.hpro-title h2{
    font-size: 72px;
    color: #1e50a2;
    line-height: 72px;
    font-family: "BEBAS";
    margin-bottom: 14px;
}
.hpro-title h3{
    font-size: 36px;
    color: #111;
    line-height: 36px;
}
.hpro-list{
    margin-left: -17px;
    margin-right: -17px;
}
.hpro-list li{
    float: left;
    width: 33.3333%;
    padding: 0 17px;
    margin-bottom: 35px;
}
.hpro-item{
    width: 100%;
    background-color: #f0f0f4;
    position: relative;
    padding-bottom: 100px;
}
.hpro-other{
    position: absolute;
    width: 100%;
    left: 0px;
    bottom: 0px;
    text-align: center;
    padding-bottom: 36px;
    overflow: hidden;
}
.hpro-other p{
    color: #111;
    font-size: 24px;
    line-height: 24px;
    margin-top: 36px;
}
.home-pro{
    padding-bottom: 65px;
}
.hpro-item:hover .public-img img{
    transform: scale(1.1);
}
.hpro-item:hover .hpro-other p{
    color: #1e50a2;
}
@media(max-width: 1600px){
    .hpro-other{
        padding-left: 10px;
        padding-right: 10px
    }
    .hpro-other img{
        width: 100%;
        display: block;
    }
}
@media(max-width: 991px){
    .hpro-other{
        padding-left: 10px;
        padding-right: 10px
    }
    .hpro-other img{
        width: auto;
        display: block;
        margin: auto;
    }
    .hpro-list{
        margin-left: 0px;
        margin-right: 0px;
    }
    .hpro-list li{
        float: none;
        width: 100%;
        padding: 0px;
        margin-bottom: 25px;
    }
    .hpro-list li:last-child{
        margin-bottom: 0px;
    }
    .hpro-title h2{
        font-size: 42px;
        line-height: 42px;
    }
    .hpro-title h3{
        font-size: 30px;
        line-height: 30px;
    }
    .hpro-title{
        margin-bottom: 30px;
    }
    .home-pro{
        padding-bottom: 50px;
    }
}
@media(max-width: 449px){
    .hpro-other{
        padding-bottom: 30px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .hpro-other img{
        width: 100%;
        display: block;
    }
    .hpro-other p{
        margin-top: 20px;
    }
}
/* 新闻 */
.hnews-left{
    width: 50%;
    padding-right: 28px;
    display: flex;
    justify-content: space-between;
}
.hnews-leftinfo{
    width: 32.75%;
}
.hnews-leftnav{
    width: 100%;
}
.hnews-title h3{
    margin-bottom: 100px;
}
.hnews-leftnav li{
    margin-bottom: 20px;
}
.hnews-leftnav li a{
    width: 100%;
    line-height: 60px;
    display: block;
    text-align: center;
    font-size: 24px;
    color: #222;
    transition: all .5s;
    background-color: #fff;
}
.hnews-leftnav li:hover a, .hnews-leftnav li.on a{
    background-color: #1e50a2;
    color: #fff;
}
.hnews-img{
    width: 55%;
}
.hnews-imgitem{
    width: 100%;
    display: none;
}
.hnews-on{
    display: block;
}
.hnews-right{
    width: 50%;
    padding-left: 40px;
    display: flex;
}
.hnews-list {
    display: flex;
    flex-direction: column;
}
.hnews-list li{
    padding-left: 50px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 45px;
    border-bottom: 1px solid #dcdcdc;
    transition: all .5s;
}
.hnews-list li a{
    display: flex;
}
.hnews-num{
    font-family: "BEBAS";
    margin-right: 38px;
}
.hnews-num strong{
    font-weight: normal;
    font-size: 60px;
    color: #444444;
    line-height: 60px;
    display: block;
    margin-bottom: 10px;
}
.hnews-num span{
    color: #666;
    font-size: 16px;
    line-height: 24px;
}
.hnews-info h3{
    font-size: 20px;
    color: #222222;
    line-height: 24px;
    margin-bottom: 18px;
}
.hnews-info p{
    color: #444;
    font-size: 16px;
    line-height: 24px;
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient: vertical;
}
.hnews-list li:hover{
    border-bottom-color: #1e50a2;
    background-color: #1e50a2;
}
.hnews-list li:hover .hnews-num strong{
    color: #fff;
}
.hnews-list li:hover .hnews-num span{
    color: #fff;
}
.hnews-list li:hover .hnews-info h3{
    color: #fff;
}
.hnews-list li:hover .hnews-info p{
    color: #fff;
}
@media(max-width: 1400px){
    .hnews-list li{
        padding-left: 30px;
        padding-right: 30px;
    }
    .hnews-list li a{
        align-items: center;
    }
    .hnews-info h3{
        margin-bottom: 10px;
    }
    .hnews-title h3{
        margin-bottom: 60px;
    }
}
@media(max-width: 1200px){
    .hnews-left{
        padding-right: 0px;
    }
    .hnews-img{
        width: 60%;
    }
    .hnews-num{
        margin-right: 16px;
    }
    .hnews-num strong{
        font-size: 46px;
        line-height: 46px;
        margin-bottom: 0px;
        text-align: center;
    }
    .hnews-list li{
        padding-left: 20px;
        padding-right: 20px;
    }
    .hnews-list li a{
        align-items: center;
    }
    .hnews-info h3{
        margin-bottom: 10px;
        font-size: 18px;
    }
    .hnews-info p{
        font-size: 14px;
    }
}
@media(max-width: 991px){
    .hnews-left{
        width: 100%;
        margin-bottom: 10px;
    }
    .hnews-right{
        width: 100%;
        padding-left: 0px;
    }
    .hnews-list li{
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .hnews-info h3{
        margin-bottom: 6px;
    }
    .hnews-list{
        display: block;
		width:100%;
    }
    .hnews-list li{
        flex: none;
    }
    .hnews-info{
        width: calc(100% - 82px);
        overflow: hidden;
    }
    .hnews-num{
        width: 60px;
        margin-right: 12px;
    }
}
@media(max-width: 599px){
    .hnews-title h3{
        margin-bottom: 30px;
    }
    .hnews-leftnav li a{
        line-height: 48px;
        font-size: 18px;
    }
}
@media(max-width: 499px){
    .hnews-leftinfo{
        width: 35%;
    }
    .hnews-leftnav li{
        margin-bottom: 12px;
    }
    .hnews-list li{
        padding: 10px 0px;
    }
    .hnews-info h3{
        width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}
.honor-main{
    width: 50%;
    padding-right: 30px;
}
.hjob-main{
    padding-left: 30px;
    width: 50%;
}
.other-img{
    position: relative;
    border-radius: 8px;
}
.other-img img{
    border-radius: 8px;
}
.other-info{
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 8px;
    top: 0px;
    left: 0px;
    background-color: rgba(0, 0, 0, .5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}
.honor-main .other-info{
    padding-left: 60px;
}
.hjob-main .other-info{
    padding-right: 60px;
    align-items: flex-end;
}
.other-info h3{
    font-size: 36px;
    line-height: 36px;
    margin-bottom: 15px;
}
.other-info span{
    text-overflow: ellipsis;
    font-size: 24px;
    line-height: 24px;
    font-family: "BEBAS";
}
.other-img:hover img{
    transform: scale(1.1);
}
@media(max-width: 1200px){
    .honor-main .other-info{
        padding-left: 30px;
    }
    .hjob-main .other-info{
        padding-right: 30px;
    }
}
@media(max-width: 991px){
    .honor-main{
        width: 100%;
        padding-right: 0px;
        margin-bottom: 30px;
    }
    .hjob-main{
        width: 100%;
        padding-left: 0px;
    }
    .hjob-main .other-info{
        align-items: flex-start;
        padding-right: 0px;
        padding-left: 30px;
    }
}
@media(max-width: 599px){
    .other-info h3{
        font-size: 30px;
        line-height: 30px;
        margin-bottom: 10px;
    }
    .other-info span{
        font-size: 20px;
        line-height: 20px;
    }
}
/*产品中心*/
.inside-nav{
    height: 80px;
}
.insidew{
    display:flex;
    justify-content: space-between;
}
.inside-navl{
    width: calc(100% - 260px);
}
.inside-swiper a{
    display: block;
    border-bottom: 2px solid transparent;
    text-align: center;
    position: relative;
    line-height:78px;
    height: 80px;
    transition: all .3s;
}
.inside-swiper a::after{
    position: absolute;
    width: 1px;
    height: 17px;
    background: #999999;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    right:0;
}
.inside-swiper .swiper-slide:first-child a::before{
    position: absolute;
    width: 1px;
    height: 17px;
    background: #999999;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    left:0;
}
.inside-swiper a:hover {
    border-bottom-color: #1e50a2;
    color: #1e50a2;
}
.inside-swiper .swiper-slide-active a{
   
}
.inside-swiper .swiper-slide.on a{
    border-bottom-color: #1e50a2;
    color: #1e50a2;
}
.inside-navr{
    line-height: 78px;
}
.inside-navr a{
    color: #666666;
}
.inside-navr span{
    color: #666666;
}
.inside-navr a:hover{
    color: #1e50a2;
}
.probox{
    background: #f0f0f4;
    overflow: hidden;
    width: 100%;
    padding-top: 80px;
}
.probox-tit h2{
    font-size: 40px;
    color: #000000;
    text-align: center;
}
.probox-tab{
    margin-top: 40px;
    display: flex;
    justify-content: center;
}
.probox-tab ul{
    display: flex;
}
.probox-tab ul li{
    height: 38px;
    background: #fff;
    line-height: 38px;
    width: 138px;
    text-align: center;
    border: 1px solid #dcdcdc;
    margin: 0 10px;
}
.probox-tab ul li.probox-tabon{
    background: #1e50a2;
    border:1px solid #1e50a2;
} 
.probox-tab ul li.probox-tabon a{
    color:#fff;
}
.probox-tab ul li:hover{
    background: #1e50a2;
    border:1px solid #1e50a2;
} 
.probox-tab ul li:hover a{
    color:#fff;
}
.probox-w  ul{
    margin-top:40px;
}
.probox-w ul li h3{
    background: #fff;
    border-top: 1px solid #dcdcdc;
    height: 52px;
    line-height: 52px;
    text-align: center;
    color: #222222;
}
.pro-img img{
    width: 100%;
    transition: all 0.5s;
}
.probox-w ul li {
    margin-bottom: 26px;
}
.probox-w ul li:hover h3{
    background:#1e50a2;
    color: #fff;
}
.probox-w ul li:hover .pro-img img{
    transform: scale(1.1);
}
.pro-img{
    overflow: hidden;
}
@media(max-width:991px){
    .insidew{
        flex-wrap: wrap;
    }
    .inside-navl{
        width: 100%;
    }
    .inside-nav{
        height: auto;
        padding-top: 12px;
        padding-bottom: 10px;
    }
    .probox-tit h2{
        font-size: 28px;
    }
    .probox{
        padding-top: 40px;
    }
    .probox-tab{
        margin-top: 30px;
    }
    .inside-swiper a{
        line-height:42px;
        height: auto;
    }
    .inside-navr{
        line-height: 40px;
    }
    .probox-w ul li:last-child{
        margin-bottom: 0px;
    }
}
@media(max-width:449px){
    .probox-tab ul li{
        width: auto;
        padding: 0 8px;
    }
}
/* 关于恒生 */
.inav-wrap{
    border-bottom: 2px solid #e6e6e6;
}
.inav-ul{
    display: flex;
    margin-right: 40px;
}
.inav-ul li a{
    width: 100%;
    display: block;
    line-height: 78px;
    border-bottom: 2px solid transparent;
    transition: all .3s;
    padding: 0 35px;
    position: relative;
}
.inav-ul li a::after{
    position: absolute;
    width: 1px;
    height: 17px;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
    background-color: #999999;
    content: "";
}
.inav-ul li:first-child a::before{
    position: absolute;
    width: 1px;
    height: 17px;
    top: 50%;
    transform: translateY(-50%);
    left: 0px;
    background-color: #999999;
    content: "";
}
.inav-ul li:hover a, .inav-ul li.on a{
    color: #1e50a2;
    border-bottom-color: #1e50a2;
}
.about-us{
    padding-top: 78px;
    padding-bottom: 80px;
}
.public-ititle{
    text-align: center;
    font-size: 40px;
    color: #000;
    line-height: 40px;
    margin-bottom: 40px;
}
.about-des{
    text-indent: 32px;
    line-height: 32px;
    font-size: 16px;
    color: #444;
}
.about-des p{
    margin-bottom: 15px;
}
.about-list{
    margin-left: -20px;
    margin-right: -20px;
}
.about-list li{
    padding: 0 20px;
    width: 33.3333%;
    float: left;
}
/* 发展历程 */
.history-wrap{
    background-color: #f0f0f4;
}
.history-list li{
    display: flex;
}
.history-list li:nth-child(even){
    justify-content: flex-end;
}
.history-info{
    width: 50%;
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: 36px;
}
.history-list li:nth-child(odd) .history-info{
    align-items: flex-end;
    padding-right: 50px;
}
.history-list li:nth-child(even) .history-info{
    padding-left: 50px;
}
.history-info h3{
    font-size: 40px;
    line-height: 40px;
    color: #000;
    font-family: "dBold";
    margin-bottom: 6px;
}
.history-info p{
    max-width: 370px;
    text-align: right;
    font-size: 16px;
    color: #444;
    line-height: 36px;
}
.history-list li:nth-child(even) .history-info p{
    text-align: left;
}
.history-info::after{
    width: 18px;
    height: 18px;
    background-color: #000;
    border-radius: 50%;
    content: "";
    position: absolute;
    top: 10px;
}
.history-list li:nth-child(odd) .history-info::after{
    right: -9px;
}
.history-list li:nth-child(even) .history-info::after{
    left: -9px;
}
.history-info::before{
    height: calc(100% + 18px);
    width: 1px;
    background-color: #999;
    position: absolute;
    content: "";
    top: 28px;
    right: 0px;
}
.history-list li:nth-child(even) .history-info::before{
    left: 0px;
}
.history-info:hover h3{
    color: #1e50a2;
}
.history-info:hover::after{
    background-color: #1e50a2;
}
.history-more{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 60px;
    margin: auto;
    color: #fff;
    font-size: 18px;
    background-color: #1e50a2;
    font-family: "BEBAS";
    position: relative;
    z-index: 22;
}
.history-more img{
    margin-left: 5px;
    transition: all .5s;
}
.history-more:hover img{
    transform: translateX(5px);
}
@media(max-width: 1200px){
    .history-info p{
        width: 100%;
        max-width: 100%;
    }
}
@media(max-width: 991px){
    .inav-ul{
        width: 100%;
        margin-right: 0px;
    }
    .inav-ul li a{
        line-height: 42px;
    }
    .about-us{
        padding-top: 45px;
        padding-bottom: 45px;
    }
    .public-ititle{
        font-size: 32px;
        line-height: 32px;
        margin-bottom: 30px;
    }
    .about-list{
        margin-left: 0px;
        margin-right: 0px;
    }
    .about-list li{
        padding: 0px;
        width: 100%;
        float: none;
        margin-bottom: 20px;
    }
    .about-list li:last-child{
        margin-bottom: 0px;
    }
    .history-info{
        margin-bottom: 30px;
    }
    .history-list li:nth-child(odd) .history-info{
        padding-right: 30px;
    }
    .history-list li:nth-child(even) .history-info{
        padding-left: 30px;
    }
    .history-info p{
        line-height: 30px;
    }
}
@media(max-width: 599px){
    .inav-ul li a{
        padding: 0 14px;
    }
}
@media(max-width: 449px){
    .history-info p{
        font-size: 14px;
        line-height: 24px;
    }
    .history-info{
        margin-bottom: 20px;
    }
    .history-info h3{
        margin-bottom: 12px;
    }
}
/* 新闻中心 */
.news-title{
    margin-bottom: 50px;
}
.news-top{
    margin-left: -12px;
    margin-right: -12px;
}
.news-top li{
    float: left;
    width: 33.3333%;
    padding: 0 12px;
}
.news-topitem{
    width: 100%;
}
.news-topinfo{
    padding: 32px 22px;
    background-color: #f0f0f4;
}
.news-topinfo h3{
    font-size: 20px;
    line-height: 20px;
    color: #222;
    margin-bottom: 18px;
}
.time-wrap{
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #999;
    margin-bottom: 12px;
}
.time-wrap img{
    margin-right: 5px;
}
.news-topinfo p{
    line-height: 32px;
    font-size: 16px;
    color: #444;
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient: vertical;
    height: 64px;
}
.news-topitem:hover .public-img img{
    transform: scale(1.1);
}
.news-topitem:hover .news-topinfo h3{
    color: #1e50a2;
}
.news-list li{
    margin-top: 30px;
    padding-left: 50px;
    padding-right: 65px;
    padding-top: 32px;
    padding-bottom: 32px;
    background-color: #f0f0f4;
    transition: all .5s;
}
.news-list li a{
    display: flex;
}
.news-list li:hover .news-num strong{
    color: #1e50a2;
}
.news-list li:hover .news-num span{
    color: #1e50a2;
}
.news-list li:hover .news-info h3{
    color: #1e50a2;
}
.news-wrap{
    padding-bottom: 0px;
}
@media(max-width: 1400px){
    .news-info h3{
        margin-bottom: 18px;
    }
}
@media(max-width: 1200px){
    .news-num strong{
        font-size: 60px;
        line-height: 60px;
        margin-bottom: 5px;
    }
    .news-list li{
        padding-left: 40px;
        padding-right: 45px;
    }
}
@media(max-width: 991px){
    .news-top{
        margin-left: 0px;
        margin-right: 0px;
    }
    .news-top li{
        float: none;
        width: 100%;
        padding: 0px;
        margin-bottom: 20px;
    }
    .news-top li:last-child{
        margin-bottom: 0px;
    }
    .news-title{
        margin-bottom: 30px;
    }
    .news-topinfo{
        padding: 20px;
    }
    .time-wrap{
        margin-bottom: 2px;
    }
    .news-topinfo p{
        line-height: 28px;
        height: auto;
    }
    .news-topinfo h3{
        margin-bottom: 10px;
    }
    .news-list li{
        padding: 20px 30px;
    }
}
@media(max-width: 599px){
    .news-num{
        width: 60px;
    }
    .news-num strong{
        font-size: 42px;
        line-height: 42px;
    }
    .news-list li{
        padding-left: 10px;
        padding-right: 10px;
        margin-top: 20px;
    }
    .news-info h3{
        margin-bottom: 6px;
    }
    .news-list li a{
        align-items: center;
    }
}
/* 产品详情 */
.prodetail-top{
    padding-top: 80px;
    padding-bottom: 40px;
    display: flex;
}
.prodetail-topleft{
    width: 50%;
    padding-right: 40px;
}
.prodetail-topleft .public-img{
    border: 1px solid #c9c9c9;
}
.prodetail-topright{
    width: 50%;
    padding-left: 40px;
}
.prodetail-topright h3{
    font-size: 40px;
    line-height: 40px;
    color: #1e50a2;
    padding-bottom: 35px;
    border-bottom: 1px solid #c9c9c9;
}
.prodetail-topinfo{
    padding-top: 38px;
}
.prodetail-topinfo p{
    font-size: 16px;
    line-height: 30px;
    color: #444;
    margin-bottom: 15px;
}
.prodetail-topinfo p:last-child{
    margin-bottom: 0px;
}
.prodetail-topinfo p>span{
    font-size: 22px;
    color: #000;
    line-height: 30px;
}
.prodetail-argu{
    padding-bottom: 80px;
}
.prodetail-argu .public-img img{
    width: 80%;
    margin: 0 auto;
}
.argu-title{
    width: 100%;
    background-color: #f0f0f4;
    margin-bottom: 75px;
}
.argu-title h3{
    width: 160px;
    line-height: 42px;
    background-color: #1e50a2;
    color: #fff;
    font-size: 20px;
    text-align: center;
}
.ipro-nav{
    border-bottom: 2px solid #e6e6e6;
}
@media(max-width: 1400px){
    .prodetail-topright{
        padding-left: 20px;
    }
    .prodetail-topinfo p{
        font-size: 14px;
        line-height: 26px;
        margin-bottom: 12px;
    }
    .prodetail-topinfo p>span{
        line-height: 26px;
    }
}
@media(max-width: 991px){
    .prodetail-argu{
        padding-bottom: 45px;
    }
    .prodetail-top{
        flex-wrap: wrap;
        padding-top: 40px;
        padding-bottom: 30px;
    }
    .prodetail-topright h3{
        font-size: 32px;
        line-height: 32px;
        padding-bottom: 20px;
    }
    .prodetail-topinfo{
        padding-top: 20px;
    }
    .prodetail-topleft{
        width: 100%;
        padding-right: 0px;
        margin-bottom: 20px;
    }
    .prodetail-topright{
        padding-left: 0px;
        width: 100%;
    }
    .argu-title{
        margin-bottom: 30px;
    }
    .prodetail-topinfo p>span{
        font-size: 20px;
    }
}
/*人才招聘*/
.recruit{
    border-top: 1px solid #e5e5e5;
    margin-top: -1px;
}

.recruit h3{
    font-size: 40px;
    text-align: center;
    color: #000000;
    padding-top: 80px;
}
.recruit-txt{
    margin-top: 45px;
    color: #444444;
    line-height: 35px;
    text-align: center;

}
.recruit-img{
    display: flex;
    margin-top:20px;
    justify-content:space-between;
    padding-bottom: 80px;
}
.recruit-img img{
    width: 100%;
}
.recruit-imgl{
    width: 48%;
    position: relative;
}
.recruit-imgr{
    width: 48%;
    position: relative;
}
.recruit-imgl h4{
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.1);
    top: 0;
    color: #fff;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.recruit-imgr h4{
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.1);
    top: 0;
    color: #fff;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.recruit-imgr h4 span{
    display: block;
    
}
.hiring{
    background: #f0f0f4;
}
.hiring-box h3{
    font-size: 40px;
    text-align: center;
}
.hiring-box{
    padding-top: 80px;
}
.hiring-w{
    margin-top: 50px;
}
.hiring-wtit{
    background: #1e50a2;
    height: 100px;
    color: #fff;
    font-size: 24px;
}
.hiring-wtit dl dd{
    line-height:100px;
}
.hiring-w ul dl{
    display: flex;
    justify-content: space-around;
}
.hiring-w ul li dl dd{
    width: 20%;
    text-align: center;
}
.hiring-wli{
    background: #fff;
    border: 1px solid #dcdcdc;
    margin-top: 4px;
    cursor: pointer;
}
.hiring-wli dl dd{
    height: 78px;
    line-height: 78px;
}
.hiring-wliimg img:last-child{
    display: none;
}
.hiring-wliimg{
    display: flex;
    justify-content: center;
    align-items: center;
}
.hiring-w ul li.hiring-wlion .hiring-wliimg img:last-child{
    display: block;
}
.hiring-w ul li.hiring-wlion .hiring-wliimg img:first-child{
    display: none;
}
.hiring-txt{
    padding:0 60px 60px;
    display: none;
}
.hiring-txtw{
    border-top: 1px solid #dcdcdc;
    color: #444444;
}

.hiring-txtw h5{
    padding-top: 30px;
    margin-bottom: 20px;
}
.hiring-txtw p{
    line-height: 35px;
}
.hiring-txt span{
    color: #1e50a2;
}
.hiring{
    padding-bottom: 80px;
}
@media(max-width:991px){
    .recruit h3{
        font-size: 28px;
        padding-top: 40px;
    }
    .recruit-txt {
        margin-top: 25px;
        line-height: 30px;
    }
    .recruit-imgl h4{
        font-size: 24px;
    }
    .recruit-imgr h4{
        font-size: 24px;
    }
    .recruit-img{
        padding-bottom: 40px;
    }
    .hiring-box h3{
        font-size: 28px;
    }
    .hiring-box{
        padding-top: 40px;
    }
    .hiring-w {
        margin-top: 25px;
    }
    .hiring-wtit{
        font-size: 18px;
    }
}

@media(max-width:767px){
    .hiring-wli{
        font-size:12px;
    }
    .hiring-wtit{
        height: 70px;
    }
    .hiring-wtit dl dd{
        line-height: 70px;
    }
    .hiring-wli dl dd{
        height: 50px;
        line-height: 50px;
    }
    .hiring-txt {
        padding: 0 15px 20px;
    }
    .hiring-txtw p {
        line-height: 28px;
    }
    .hiring-w ul li dl dd:nth-of-type(4){
        width: 35%;
    }
    .hiring-w ul li dl dd:nth-of-type(1){
        width:25%;
    }
    .hiring{
        padding-bottom: 40px;
    }
}
@media(max-width:500px){
    .recruit-imgl h4{
        font-size: 14px;
    }
    .recruit-imgr h4{
        font-size: 14px;
    }
    .hiring-wtit {
        font-size: 12px;
    }
    .hiring-w ul li dl dd{
        white-space: nowrap;      
        overflow: hidden;        
        text-overflow: ellipsis;  
    }
}
/* 联系我们 */
.contact-main{
    padding-bottom: 60px;
}
.contact-cont{
    overflow: hidden;
}
.contact-info{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f3f3f3;
    justify-content: center;
}
.contact-info dl dt{
    font-size: 24px;
    color: #111;
    margin-bottom: 25px;
}
.contact-info dl dd{
    line-height: 30px;
    color: #666;
    font-size: 16px;
}
.contact-img{
    overflow: hidden;
    width: 100%;
}
.contact-img img{
    display: block;
    width: 100%;
}
.contact-ditu{
    margin-top: 28px;
    overflow: hidden;
    width: 100%;
}
.contact-ditu img{
    display: block;
    width: 100%;
}
@media(max-width: 1200px){
    .contact-info dl dt{
        margin-bottom: 15px;
    }
}
@media(max-width: 991px){
    .col-xxs-12{
        width:100%;
    }
    .contact-info{
        padding: 30px 0px;
        margin-bottom: 15px;
    }
    .contact-main{
        padding-bottom: 40px;
    }
}
@media(max-width: 599px){
    .contact-main{
        padding-bottom: 30px;
    }
    .contact-ditu{
        margin-top: 15px;
    }
}

#content_1{
    height:380px;
}

.nav-sub{
    position: absolute;
    width: 180px;
    background: #1e50a2;
    left: -30px;
    display: none;
    padding: 10px 0;
}
.nav-sub dd a{  
    color: #fff;
    display: block;
    height: 40px;
    line-height: 40px;
    padding: 0 10px 0 30px;
}

.nav-sub dd a:hover{
    background: #ffffff;
    color: #1e50a2;
}