@charset "UTF-8";
/**
 * 
 * @authors Your Name (you@example.org)
 * @date    2017-10-18 08:57:34
 * @version $Id$
 */
@font-face{
    font-family: "shbold";
    src: url('../font/SourceHanSans-Bold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face{
    font-family: "din";
    src: url('../font/DIN-Medium.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
 /* header */
header{
    width:100%;
    position: relative;
    z-index: 10;
    height: 100px;
}
.logo{
    float: left;
    width: 258px;
    margin-top: 23px;
}
.logo img{
    display: block;
    width: 100%;
}
.header-right{
    float: right;
}
.header-lan{
    display: flex;
    justify-content: flex-end;
    margin-top: 22px;
}
.lan-item{
    display: flex;
    align-items: center;
    height: 18px;
}
.header-lan .lan-item:first-child{
    margin-right: 18px;
}
.lan-item span{
    padding-left: 8px;
    font-size: 16px;
    line-height: 18px;
}
.nav-ul {
    display: flex;
    justify-content: flex-end;
    height: 60px;
    align-items: center;
}
.nav-ul li{
    margin-right: 18px;
    height: 60px;
    position: relative;
}
.nav-ul li:last-child{
    margin-right: 0px;
}
.nav-ul li > a{
    line-height: 36px;
    font-size: 16px;
    padding: 0 18px;
    margin-top: 12px;
    display: block;
    background-color: transparent;
    transition: all 0.3s;
}
.nav-ul li:hover>a, .nav-ul li.nav-active > a{
    background-color: #0f256e;
    color: #fff;
}
.navToggle{
    margin-top: 25px;
}
.nav-sub{
    position: absolute;
    top: 60px;
    left: 0px;
    z-index: 66;
    display: none;
    width: 180px;
    padding-top: 10px;
    padding-bottom: 10px;
    box-sizing: border-box;
    background-color: #0f256e;
}
.nav-sub dl dd a{
    display: block;
    line-height: 32px;
    font-size: 16px;
    color: #fff;
    background-color: transparent;
    transition: all .3s;
    padding-right: 10px;
    padding-left: 20px;
}
.nav-sub dl dd:hover a{
    background-color: #baa067;
}
@media(max-width:1400px){
    .nav-ul li{
        margin-right: 15px;
    }
    .nav-ul li > a{
        padding: 0 15px;
    }
}
@media(max-width:1200px){
    .nav-ul li{
        margin-right: 5px;
    }
    .nav-ul li > a{
        padding: 0 12px;
        font-size: 14px;
    }
    .logo{
        width: 200px;
        margin-top: 30px;
    }
    .nav-sub dl dd a{
        font-size: 14px;
    }
}
@media(max-width:991px){
    header{
        height: 70px;;
    }
    .header-right{
        display: none;
    }
    .logo{
        margin-top: 14px;
    }
}
/* 首页关于我们 */
.public-module{
    padding: 100px 0px;
}
.home-about{
    width: 100%;
    background-color: #f0f0f4;
}
.habout-main{
    display: flex;
    margin-bottom: 60px;
}
.habout-item{
    width: 50%;
}
.habout-main .habout-item:first-child{
    padding-right: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.habout-title h2{
    display: inline-block;
    font-size: 40px;
    color: #111;
    font-weight: bold;
    padding-bottom: 18px;
    margin-bottom: 20px;
    border-bottom: 4px solid #0f256e;
}
.habout-title span{
    display: block;
    font-size: 22px;
    line-height: 24px;
    color: #0f256e;
    margin-bottom: 48px;
}
.habout-info p{
    line-height: 36px;
    font-size: 16px;
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}
.about-more{
    display: block;
    width: 120px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 20px;
    color: #fff;
    background-color: #0f256e;
    transition: all .5s;
}
.about-more:hover{
    background-color: #baa067;
}
.habout-item .public-img{
    width: 100%;
}
.public-img{
    overflow: hidden;
}
.public-img img{
    width: 100%;
    display: block;
    transition: all .6s;
}
.habout-item .public-img:hover img{
    transform: scale(1.1);
}
.data-list{
    display: flex;
    background-color: #fff;
}
.data-list li{
    width: 25%;
    height: 196px;
    display: flex;
    border-right: 2px solid #f7f7f7;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.data-list li:last-child{
    border-right: none;
}
.data-num{
    display: flex;
    margin-bottom: 20px;
}
.data-num h3{
    font-family: 'din';
    font-size: 56px;
    color: #111;
    padding-right: 10px;
}
.data-num p{
    font-size: 18px;
    color: #222;
    margin-top: 6px;
}
.data-list li:hover .data-num h3{
    color: #0f256e;
}
@media(max-width: 1400px){
    .habout-main .habout-item:first-child{
        padding-right: 45px;
    }
    .habout-info p{
        line-height: 32px;
    }
    .data-list li{
        padding: 0 15px;
    }
}
@media(max-width: 1200px){
    .habout-main .habout-item:first-child{
        padding-right: 40px;
    }
    .public-module{
        padding: 80px 0px;
    }
    .habout-title span{
        margin-bottom: 30px;
    }
    .habout-title h2{
        font-size: 36px;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    .habout-info p{
        line-height: 30px;
    }
}
@media(max-width: 991px){
    .public-module{
        padding: 60px 0px;
    }
    .habout-main{
        flex-direction: column-reverse;
        margin-bottom: 40px;
    }
    .habout-item{
        width: 100%;
    }
    .habout-main .habout-item:first-child{
        padding-right: 0px;
        display: block;
        margin-top: 30px;
    }
    .habout-info p{
        margin-bottom: 30px;
    }
    .habout-title h2{
        font-size: 32px;
    }
    .habout-title span{
        font-size: 18px;
        margin-bottom: 20px;
    }
    .data-list{
        flex-wrap: wrap;
    }
    .data-list li{
        width: 50%;
    }
    .data-list li:nth-child(2){
        border-right: none;
    }
}
@media(max-width: 599px){
    .public-module{
        padding: 50px 0px;
    }
    .data-list li{
        width: 100%;
        border-right: none;
        border-bottom: 2px solid #f7f7f7;
        height: auto;
        padding: 25px 15px;
    }
    .data-list li:last-child{
        border-bottom : none;
    }
    .data-num h3{
        font-size: 48px;
    }
    .data-num{
        margin-bottom: 10px;
    }
}
/* 技术实力 */
.htech-title h2{
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    color: #111;
    margin-bottom: 60px;
}
.tech-item{
    width: 100%;
    position: relative;
}
.tech-info{
    width: 100%;
    position: absolute;
    height: 100%;
    background: rgba(15, 37, 110, .5);
    top: 0px;
    left: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    justify-content: center;
}
.tech-info h3{
    font-size: 40px;
    margin-bottom: 40px;
}
.tech-info p{
    line-height: 32px;
    text-align: center;
    width: 47%;
    margin-bottom: 38px;
}
.tech-info a{
    color: #fff;
    transition: all .6s;
}
.tech-info a:hover{
    color: #baa067;
    transform: translateX(10px);
}
.tech-swiper .swiper-button-prev,
.tech-swiper .swiper-button-next{
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin-top: -28px;
    background-size: 11px 18px;
    opacity: 1;
    background-color: #0f256e;
}
.tech-swiper .swiper-button-prev{
    left: 60px;
    background-image: url(../img/strength_prev.png);
}
.tech-swiper .swiper-button-next{
    right: 60px;
    background-image: url(../img/strength_next.png);
}
.tech-swiper .swiper-button-prev:hover,
.tech-swiper .swiper-button-next:hover{
    background-color: #baa067;
}
@media(max-width: 1200px){
    .htech-title h2{
        font-size: 36px;
        margin-bottom: 50px;
    }
    .tech-swiper .swiper-button-prev{
        left: 30px;
    }
    .tech-swiper .swiper-button-next{
        right: 30px;
    }
    .tech-info p{
        width: 70%;
    }
    .tech-info h3{
        font-size: 36px;
        margin-bottom: 30px;
    }
}
@media(max-width: 991px){
    .htech-title h2{
        font-size: 32px;
        margin-bottom: 40px;
    }
    .tech-swiper .swiper-button-prev,
    .tech-swiper .swiper-button-next{
        width: 48px;
        height: 48px;
        margin-top: -24px;
    }
    .tech-swiper .swiper-button-prev{
        left: 20px;
    }
    .tech-swiper .swiper-button-next{
        right: 20px;
    }
    .tech-info{
        padding: 0 75px;
    }
    .tech-info p{
        width: 100%;
        margin-bottom: 20px;
    }
    .tech-info h3{
        font-size: 28px;
        margin-bottom: 20px;
    }
}
@media(max-width: 599px){
    .tech-swiper .swiper-button-prev,
    .tech-swiper .swiper-button-next{
        width: 40px;
        height: 40px;
        margin-top: -20px;
    }
    .tech-swiper .swiper-button-prev{
        left: 10px;
    }
    .tech-swiper .swiper-button-next{
        right: 10px;
    }
    .tech-info p{
        line-height: 22px;
        margin-bottom: 8px;
        font-size: 14px;
        overflow : hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    .tech-info{
        padding: 0 60px;
    }
    .tech-info h3{
        font-size: 20px;
        margin-bottom: 8px;
    }
}
/* 首页产品 */
.home-pro{
    padding-bottom: 50px;
    background-color: #f0f0f4;
}
.hpro-ul{
    margin-left: -25px;
    margin-right: -25px;
}
.hpro-ul li{
    float: left;
    width: 50%;
    padding: 0 25px;
    margin-bottom: 50px;
}
.hpro-item{
    background-color: #fff;
    width: 100%;
    padding: 50px 68px 42px;
    transition: all .6s;
    text-align: center;
}
.hpro-item h3{
    font-size: 40px;
    color: #111;
    font-weight: bold;
    margin-bottom: 20px;
}
.hpro-item .hpro-text{
    font-size: 16px;
    line-height: 24px;
    color: #333;
    text-align: center;
    margin-bottom: 15px;
}
.hpro-more{
    padding: 4px 0px;
    line-height: 24px;
    color: #0f256e;
    display: inline-block;
    border-bottom: 2px solid transparent;
    margin-bottom: 45px;
    transition: all .6s;
}
.hpro-item:hover{
    box-shadow: 0px 0px 10px #eee;
}
.hpro-item:hover .hpro-more{
    border-bottom-color: #0f256e;
    transform: translateX(5px);
}
@media(max-width: 1400px){
    .hpro-item{
        padding: 40px;
    }
}
@media(max-width: 1200px){
    .hpro-item{
        padding: 40px;
    }
    .hpro-ul{
        margin-left: -15px;
        margin-right: -15px;
    }
    .hpro-ul li{
        padding: 0 15px;
        margin-bottom: 30px;
    }
    .hpro-item h3{
        font-size: 36px;
    }
    .hpro-more{
        margin-bottom: 35px;
    }
}
@media(max-width: 991px){
    .hpro-item{
        padding: 40px 30px;
    }
    .hpro-ul li{
        width: 100%;
        margin-bottom: 30px;
    }
    .hpro-ul li:last-child{
        margin-bottom: 0px;
    }
    .hpro-item h3{
        font-size: 30px;
    }
    .hpro-more{
        margin-bottom: 25px;
    }
}
@media(max-width: 599px){
    .hpro-item{
        padding: 30px 20px;
    }
}
.hnews-title {
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #c9c9c9;
}
.hnews-title h2{
    font-size: 56px;
    font-weight: bold;
    color: #111;
}
.hnews-btn{
    height: 56px;
    width: 128px;
    position: relative;
}
.hnews-main{
    display: flex;
}
.hnews-list{
    width: 50%;
    padding-right: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.hnews-list li{
    background-color: #f6f6f6;
    padding: 25px 6px;
}
.hnews-list li a{
    display: flex;
}
.hnews-time{
    /* padding: 0 24px; */
    border-right: 1px solid #dcdcdc;
    width: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.hnews-time span{
    font-size: 16px;
    color: #666;
    line-height: 24px;
}
.hnews-time p{
    font-size: 18px;
    color: #333;
    line-height: 24px;
}
.hnews-info{
    width: calc(100% - 90px);
    padding: 0 25px;
}
.hnews-info h3{
    font-size: 22px;
    color: #111;
    margin-bottom: 12px;
}
.hnews-info p{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #666;
}
.hnews-list li:hover .hnews-info h3{
    color: #0f256e;
}
.hnews-list li.on .hnews-info h3{
    color: #0f256e;
}
.hnews-img:hover img{
    transform: scale(1.1);
}
.hnews-btn .swiper-button-prev,
.hnews-btn .swiper-button-next{
    width: 56px;
    height: 56px;
    border-radius: 0px;
    margin-top: 0px;
    top: 0px;
    background-size: 11px 18px;
    opacity: 1;
    background-color: #0f256e;
}
.hnews-btn .swiper-button-prev{
    left: 0px;
    background-image: url(../img/strength_prev.png);
}
.hnews-btn .swiper-button-next{
    right: 0px;
    background-image: url(../img/strength_next.png);
}
.hnews-btn .swiper-button-prev:hover,
.hnews-btn .swiper-button-next:hover{
    background-color: #baa067;
}
.hnews-imgwrap{
    width: 50%;
}
@media(max-width: 1400px){
    .hnews-list li{
        margin-bottom: 20px;
    }
    .hnews-list li:last-child{
        margin-bottom: 0px;
    }
    .hnews-title h2{
        font-size: 40px;
    }
}
@media(max-width: 1200px){
    .hnews-list{
        padding-right: 25px;
    }
    .hnews-list li{
        padding-left: 0px;
        padding-right: 0px;
    }
    .hnews-list li:last-child{
        margin-bottom: 0px;
    }
    .hnews-time{
        /* padding: 0 14px; */
        width: 70px;
    }
    .hnews-info{
        width: calc(100% - 70px);
        padding: 0 20px;
    }
    .hnews-info h3{
        font-size: 18px;
    }
}
@media(max-width: 991px){
    .hnews-title h2{
        font-size: 32px;
    }
    .hnews-main{
        flex-direction: column-reverse;
    }
    .hnews-list{
        padding-right: 0px;
        width: 100%;
    }
    .hnews-imgwrap{
        width: 100%;
        margin-bottom: 30px;
    }
    .hnews-btn{
        width: 112px;
    }
    .hnews-btn .swiper-button-prev,
    .hnews-btn .swiper-button-next{
        width: 48px;
        height: 48px;
    }
    .hnews-title{
        height: 50px;
        padding-bottom: 20px;
    }
}
@media(max-width: 599px){
    .hnews-time{
        padding: 0px;
        width: 60px;
    }
    .hnews-info{
        padding: 0 10px;
        width: calc(100% - 60px);
    }
}
/* 底部 */
#footer{
    background-color: #313131;
    padding-top: 52px;
    padding-bottom: 55px;
}
.footer-main{
    display: flex;
    justify-content: space-between;
}
.footer-left{
    width: 50%;
}
.footer-logo{
    display: block;
    margin-bottom: 20px;
    width: 409px;
}
.footer-logo img{
    display: block;
    width: 100%;
}
.footer-code{
    width: 100%;
    display: flex;
    margin-top: 16px;
}
.code-img{
    width: 120px;
    height: 120px;
    margin-right: 15px;
}
.code-img img{
    display: block;
    width: 100%;
}
.footer-contat p{
    color: #b2b2b2;
    line-height: 18px;
    margin-bottom: 18px;
}
.footer-contat p:last-child{
    margin-bottom: 0px;
}
.footer-nav{
    width: 50%;
    padding-top: 10px;
}
.footer-ul{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 36px;
}
.footer-ul li a{
    color: #b2b2b2;
    line-height: 24px;
    font-size: 16px;
}
.footer-ul li:hover a{
    color: #fff;
}
.footer-share{
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.footer-share .bshare-custom .bshare-more{
    color: #fff !important;
}
.footer-share .bshare-custom .bshare-more{
    display: none;
}
.footer-share .bshare-custom .bshare-share-count{
    display: none;
}
.footer-share .bshare-custom .bshare-item{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding-left: 0px;
    margin-right: 35px;
    background-color: #0f256e;
    background-repeat: no-repeat;
    background-position: center;
}
.footer-share .bshare-custom .bshare-item:hover{
    background-color: #fff;
    opacity: 1;
}
.footer-share .bshare-custom .bshare-weixin{
    background-image: url(../img/share_wcaht.png);
}
.footer-share .bshare-custom .bshare-weixin:hover{
    background-image: url(../img/share_wchat_on.png);
}
.footer-share .bshare-custom .bshare-sinaminiblog{
    background-image: url(../img/share_wb.png);
}
.footer-share .bshare-custom .bshare-sinaminiblog:hover{
    background-image: url(../img/share_wb_on.png);
}
.footer-share .bshare-custom .bshare-qqim{
    margin-right: 0px;
    background-image: url(../img/share_qq.png);
}
.footer-share .bshare-custom .bshare-qqim:hover{
    background-image: url(../img/share_qq_on.png);
}
.copy{
    color: #b2b2b2;
    font-size: 16px;
    text-align: right;
}
@media(max-width: 1400px){
    .footer-code{
        align-items: center;
    }
}
@media(max-width: 991px){
    .footer-main{
        flex-direction: column-reverse;
    }
    .footer-code{
        width: 100%;
        justify-content: center;
    }
    .footer-left{
        width: 100%;
        align-items: center;
        display: flex;
        flex-direction: column;
    }
    .footer-nav{
        width: 100%;
        justify-content: center;
        margin-bottom: 25px;
    }
    .footer-share{
        justify-content: center;
    }
    #footer{
        padding-top: 30px;
        padding-bottom: 40px;
    }
    .footer-logo{
        margin-bottom: 10px;
    }
    .footer-ul{
        margin-bottom: 20px;
    }
    .footer-share{
        margin-bottom: 20px;
    }
    .copy{
        text-align: center;
    }
}
@media(max-width: 599px){
    .footer-ul{
        flex-wrap: wrap;
    }
    .footer-ul li{
        width: 50%;
        line-height: 36px;
        text-align: center;
    }
    .footer-logo{
        width: 300px;
    }
}
/* 关于我们 */
.inside-main{
    background-color: #f0f0f4;
}
.public-inside{
    position: relative;
}
/* 内页导航 */
.inside-nav{
    background-color: #fff;
    position: absolute;
    height: 80px;
    top: -40px;
    left: 0px;
    box-shadow: 0px 0px 10px #e5e5e9;
    width: 100%;
}
.inside-ul{
    display: flex;
}
.inside-ul li{
    flex: 1;
    text-align: center;
    height: 80px;
    line-height: 80px;
}
.inside-ul li a{
    color: #333;
    font-size: 24px;
    background-color: transparent;
    transition: all .6s;
    width: 100%;
    display: block;
}
.inside-ul li:hover a, .inside-ul li.on a{
    color: #fff;
    background-color: #0f256e;
}
.mobile-inav{
    width: 100%;
    height: 50px;
    display: none;
    margin-top: 30px;
}
.mobile-inav h2{
    float: left;
    font-size: 26px;
    line-height: 50px;
    color: #333;
    padding-left: 20px;
}
.about-main{
    padding-top: 116px;
}
.about-title{
    width: 324px;
    margin: 0 auto 60px;
    padding-top: 20px;
    text-align: center;
    background: url(../img/title_icon.png) no-repeat top center;
}
.about-title h2{
    font-weight: bold;
    color: #111;
    font-size: 40px;
    margin-bottom: 30px;
}
.about-title i{
    display: block;
    width: 156px;
    height: 6px;
    margin: 0 auto;
    background-color: #baa067;
    position: relative;
}
.about-title i::before,
.about-title i::after{
    width: 52px;
    height: 6px;
    position: absolute;
    content: "";
    top: 0px;
    background-color: #0f256e;
}
.about-title i::before{
    left: 0px;
}
.about-title i::after{
    right: 0px;
}
.about-cont{
    padding-bottom: 100px;
}
.about-list{
    display: flex;
    margin-bottom: 50px;
}
.about-list:last-child{
    margin-bottom: 0px;
}
.about-item{
    width: 50%;
}
.about-list .about-item:last-child{
    padding-left: 50px;
}
.about-item:hover img{
    transform: scale(1.1);
}
.about-item p{
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 36px;
    text-indent: 32px;
}
.about-item p:last-child{
    margin-bottom: 0px;
}
@media(max-width: 1400px){
    .about-item p{
        margin-bottom: 10px;
        line-height: 30px;
    }
}
@media(max-width: 1200px){
    .about-cont{
        padding-bottom: 80px;
    }
}
@media(max-width: 991px){
    .mobile-inav{
        display: block;
        background-color: #fff;
    }
    .inside-ul{
        display: none;
    }
    .inside-ul li{
        width: 100%;
        display: block;
        flex: none;
        height: 48px;
        line-height: 48px;
    }
    .inside-ul li a{
        text-align: center;
        border-top: 1px solid #dcdcdc;
        font-size: 16px;
        background-color: #fff;
    }
    .inside-ul li:hover a, .inside-ul li.on a{
        background-color: #fff;
        color: #0f256e;
    }
    .about-list{
        flex-wrap: wrap;
    }
    .about-item{
        width: 100%;
    }
    .about-list .about-item:last-child{
        padding-left: 0px;
    }
    .inside-nav{
        position: relative;
        top: auto;
        height: auto;
        background-color: transparent;
    }
    .about-main{
        padding-top: 60px;
    }
    .about-title{
        margin-bottom: 30px;
    }
    .about-title h2{
        margin-bottom: 15px;
    }
    .about-list{
        margin-bottom: 0px;
    }
    .about-item{
        margin-bottom: 30px;
    }
    .about-cont{
        padding-bottom: 30px;
    }
}
@media(max-width: 599px){
    .about-cont{
        padding-bottom:20px;
    }
    .about-main{
        padding-top: 50px;
    }
    .about-title{
        background-size: 284px 42px;
        padding-top: 14px;
    }
    .about-title h2{
        font-size: 32px;
    }
}
/* 企业文化 */
.culture-top{
    display: flex;
    margin-bottom: 40px;
    overflow: hidden;
}
.culture-top-item{
    width: 50%;
}
.culture-top .culture-top-item:last-child{
    padding: 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}
.culture-top-item p{
    font-size: 16px;
    line-height: 36px;
}
.culture-top .culture-top-item:hover img{
    transform: scale(1.1);
}
.culture-ul{
    margin-left: -12px;
    margin-right: -12px;
}
.culture-ul li{
    float: left;
    width: 25%;
    padding: 0 12px;
}
.culture-item{
    width: 100%;
    cursor: pointer;
}
.culture-info{
    width: 100%;
    position: relative;
}
.culture-info .culture-des{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-color: #0f256e;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 44px;
    opacity: 0;
    transition: all .8s;
    padding: 0 15px;
}
.culture-text{
    text-align: center;
    font-size: 22px;
    color: #222;
    line-height: 24px;
    margin-top: 22px;
}
.culture-item:hover .public-img img{
    transform: scale(1.1);
}
.culture-item:hover .culture-des{
    opacity: 1;
}
.culture-item:hover .culture-text{
    color: #0f256e;
}
@media(max-width: 1200px){
    .culture-top .culture-top-item:last-child{
        padding: 0 20px;
    }
    .culture-top-item p{
        line-height: 28px;
    }
    .culture-info .culture-des{
        font-size: 18px;
        line-height: 36px;
    }
}
@media(max-width: 991px){
    .culture-top{
        flex-wrap: wrap;
        margin-bottom: 30px;
    }
    .culture-top-item{
        width: 100%;
    }
    .culture-top .culture-top-item:last-child{
        padding: 30px;
    }
    .culture-ul li{
        width: 50%;
        margin-bottom: 30px;
    }
    .culture-text{
        font-size: 20px;
    }
}
@media(max-width: 599px){
    .culture-top{
        flex-wrap: wrap;
        margin-bottom: 30px;
    }
    .culture-top-item{
        width: 100%;
    }
    .culture-top .culture-top-item:last-child{
        padding: 30px;
    }
    .culture-ul li{
        width: 100%;
    }
}
/* 新闻中心 */
.news-main{
    padding-top: 75px;
}
.news-top{
    margin-left: -20px;
    margin-right: -20px;
}
.news-top li{
    float: left;
    width: 33.3333%;
    padding: 0 20px;
    margin-bottom: 40px;
}
.news-top-item{
    width: 100%;
}
.news-top-info{
    background-color: #fff;
    transition: all .6s;
    padding: 40px 20px;
}
.news-top-info h3{
    font-size: 22px;
    line-height: 30px;
    color: #111;
    margin-bottom: 10px;
}
.news-top-info span{
    color: #999;
    font-size: 16px;
    line-height: 24px;
    display: block;
    margin-bottom: 6px;
}
.news-top-info p{
    line-height: 30px;
    font-size: 16px;
    color: #666;
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news-top-item:hover .public-img img{
    transform: scale(1.1);
}
.news-top-item:hover .news-top-info{
    background-color: #0f256e;
}
.news-top-item:hover .news-top-info h3{
    color: #fff;
}
.news-top-item:hover .news-top-info span{
    color: #fff;
}
.news-top-item:hover .news-top-info p{
    color: #fff;
}
.news-list li{
    margin-bottom: 40px;
    background-color: #fff;
    padding-top: 30px;
    padding-bottom: 25px;
    padding-left: 20px;
    padding-right: 20px;
    transition: all .5s;
}
.news-list li:last-child{
    margin-bottom: 0px;
}
.news-list li a{
    display: flex;
}
.news-time{
    width: 118px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.news-time span{
    display: block;
    font-size: 22px;
    color: #333;
    margin-bottom: 8px;
}
.news-time p{
    font-size: 24px;
}
.news-time::after{
    position: absolute;
    content: "";
    width: 1px;
    height: 86px;
    top: 50%;
    margin-top: -43px;
    right: 0px;
    background-color: #dcdcdc;
}
.news-info{
    width: calc(100% - 118px);
    padding: 0 30px;
}
.news-info h3{
    font-size: 22px;
    line-height: 24px;
    color: #222;
    margin-bottom: 10px;
}
.news-info p{
    font-size: 16px;
    color: #666;
    line-height: 30px;
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news-list li:hover{
    background-color: #0f256e;
}
.news-list li:hover .news-time span{
    color: #fff;
}
.news-list li:hover .news-time p{
    color: #fff;
}
.news-list li:hover .news-time::after{
    background-color: #fff;
}
.news-list li:hover .news-info h3{
    color: #fff;
}
.news-list li:hover .news-info p{
    color: #fff;
}
@media(max-width: 1200px){
    .news-top{
        margin-left: -12px;
        margin-right: -12px;
    }
    .news-top li{
        padding: 0 12px;
    }
    .news-top-info{
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .news-list li{
        padding-left: 0px;
        padding-right: 0px;
    }
}
@media(max-width: 991px){
    .news-top li{
        width: 100%;
        margin-bottom: 30px;
    }
    .news-top-info{
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .news-list li{
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 20px;
        padding-bottom: 20px;
        margin-bottom: 30px;
    }
    .news-time{
        width: 90px;
    }
    .news-time span{
        font-size: 18px;
        margin-bottom: 2px;
    }
    .news-time p{
        font-size: 20px;
    }
    .news-info{
        width: calc(100% - 90px);
        padding: 0 20px;
    }
    .news-main{
        padding-top: 60px;
    }
}
@media(max-width: 599px){
    .news-time{
        width: 70px;
    }
    .news-time span{
        font-size: 16px;
        margin-bottom: 2px;
    }
    .news-time p{
        font-size: 18px;
    }
    .news-info{
        width: calc(100% - 70px);
        padding: 0 12px;
    }
    .news-main{
        padding-top: 50px;
    }
    .news-info h3{
        font-size: 18px;
        margin-bottom: 5px;
    }
    .news-info p{
        line-height: 28px;
    }
}
/* 产品中心 */
.pro-title{
    background-image: url(../img/title_icon_pro.png);
}
.pros-ul{
    margin-left: -20px;
    margin-right: -20px;
}
.pros-ul li{
    padding: 0 20px;
}
.pros-item{
    width: 100%;
    margin-bottom: 16px;
}
.pros-item .public-img{
    border: 4px solid transparent;
    transition: all .6s;
}
.pros-item p{
    margin-top: 24px;
    text-align: center;
    font-size: 22px;
    line-height: 24px;
    min-height: 48px;
    color: #333;
}
.pros-item:hover p{
    color: #0f256e;
}
.pros-item:hover .public-img{
    border: 4px solid #0f256e;
}
.pros-item:hover .public-img img{
    transform: scale(1.1);
}
@media(max-width: 1200px){
    .pros-ul{
        margin-left: -15px;
        margin-right: -15px;
    }
    .pros-ul li{
        padding: 0 15px;
    }
}
@media(max-width: 991px){
    .pros-item{
        margin-bottom: 18px;
    }
    .pros-item p{
        margin-top: 18px;
        font-size: 20px;
    }
}
@media(max-width: 767px){
    .pros-item p{
        margin-bottom: 10px;
        min-height: 24px;
    }
}
/* 产品详情 */
.pros-main{
    padding-top: 140px;
    padding-bottom: 100px;
}
.pros-top{
    display: flex;
    margin-bottom: 60px;
}
.pros-img{
    width: 50%;
}
.pros-img:hover img{
    transform: scale(1.1);
}
.pros-info{
    width: 50%;
    padding-left: 60px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
.pros-text .pros-title{
    padding-bottom: 35px;
    border-bottom: 1px solid #0f256e;
    margin-bottom: 26px;
}
.pros-text .pros-title h2{
    font-size: 40px;
    font-weight: bold;
    line-height: 40px;
    color: #111;
    margin-bottom: 15px;
}
.pros-text .pros-title span{
    font-size: 24px;
    color: #111;
    font-family: "Arial";
}
.pros-text p{
    font-size: 24px;
    line-height: 48px;
}
.pros-btn li{
    width: 220px;
    float: left;
    margin-right: 30px;
}
.pros-btn li:last-child{
    margin-right: 0px;
}
.pros-btn li a{
    width: 100%;
    display: block;
    height: 50px;
    line-height: 50px;
    background: #0f256e;
    transition: all .6s;
    text-align: center;
    color: #fff;
}
.pros-btn li:last-child a{
    background: #baa067;
}
.pros-table{
    padding: 37px;
    background-color: #fff;
}
@media(max-width: 1400px){
    .pros-text p{
        font-size: 22px;
        line-height: 36px;
    }
}
@media(max-width: 1200px){
    .pros-main{
        padding-top: 120px;
        padding-bottom: 80px;
    }
    .pros-info{
        padding-left: 40px;
    }
    .pros-text .pros-title h2{
        font-size: 36px;
        margin-bottom: 10px;
        line-height: 36px;
    }
    .pros-text .pros-title{
        padding-bottom: 20px;
        margin-bottom: 15px;
    }
    .pros-text p{
        font-size: 18px;
        line-height: 36px;
    }
    .pros-btn li{
        width: 42%;
    }
}
@media(max-width: 991px){
    .pros-main{
        padding-top: 50px;
        padding-bottom: 60px;
    }
    .pros-top{
        flex-wrap: wrap;
        margin-bottom: 40px;
    }
    .pros-img{
        margin-bottom: 20px;
        width: 100%;
    }
    .pros-info{
        width: 100%;
        background-color: #fff;
        padding: 30px;
    }
    .pros-text .pros-title h2{
        font-size: 32px;
    }
    .pros-text p{
        margin-bottom: 25px;
    }
    .pros-table{
        padding: 9px;
    }
}
@media(max-width: 599px){
    .pros-main{
        padding-top: 40px;
        padding-bottom: 50px;
    }
    .pros-top{
        margin-bottom: 30px;
    }
    .pros-btn li{
        margin-right: 20px;
    }
}
/* 联系我们 */
.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: #0f256e;
    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;
    }
}

.dc-right{
   float: right;
   color: #f0f0f4;
}
.dc-right a{
   color: #f0f0f4;
}

.social-share .social-share-icon{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding-left: 0px;
    margin-right: 20px;
    background-color: #0f256e;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
}
.social-share .social-share-icon::before{
    content: "";
}
.social-share .social-share-icon:hover{
    background-color: #fff;
    opacity: 1;
}
.social-share .social-share-icon.icon-qq{
    background-image: url(../img/share_qq.png);
    background-repeat: no-repeat;
    background-position: center;
}
.social-share .social-share-icon.icon-qq:hover{
    background-image: url(../img/share_qq_on.png);
}

.social-share .social-share-icon.icon-weibo{
    background-image: url(../img/share_wb.png);
    background-repeat: no-repeat;
    background-position: center;
}
.social-share .social-share-icon.icon-weibo:hover{
    background-image: url(../img/share_wb_on.png);
}

.social-share .social-share-icon.icon-wechat{
    background-image: url(../img/share_wcaht.png);
    background-repeat: no-repeat;
    background-position: center;
}
.social-share .social-share-icon.icon-wechat:hover{
    background-image: url(../img/share_wchat_on.png);
}
