@charset "UTF-8";
/**
 * 
 * @authors Your Name (you@example.org)
 * @date    2017-10-18 08:57:34
 * @version $Id$
 */
@font-face{
    font-family: "tRegular";
    src: url('../font/Atami-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face{
    font-family: "sRegular";
    src: url('../font/SourceHanSansCN-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
/* header */
header{
    position: relative;
    z-index: 10;
    height: 100px;
    background: #0b6ab8;
}
.header-main{
    position: relative;
    display: flex;
    justify-content: space-between;
}
.logo{
    display: block;
    width: 250px;
    margin-top: 18px;
}
.logo img{
    display: block;
    width: 100%;
}
.nav-ul li{
    margin-right: 34px;
    float: left;
    position: relative;
}
.nav-ul li:last-child{
    margin-right: 0px;
}
.nav-ul li>a{
    display: block;
    font-size: 16px;
    line-height: 100px;
    padding: 0 18px;
    color: #fff;
    transition: all .5s;
}
.nav-ul li:hover>a,
.nav-ul li.nav-active a{
    font-weight: bold;
}
.nav-sub{
    position: absolute;
    top: 100px;
    left: 0px;
    z-index: 66;
    display: none;
    width: 100%;
}
.nav-sub dl dd {
    margin-top: 2px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b6ab8;
}
.nav-sub dl dd a{
    display: block;
    line-height: 20px;
    font-size: 16px;
    color: #fff;
    text-align: center;
    transition: all .3s;
}
.nav-sub dl dd:hover{
    /* color: #444; */
    background: #fff;
}
.nav-sub dl dd:hover a{
    color: #444;
}
@media(max-width: 1600px){
    .nav-ul li{
        margin-right: 20px;
    }
}
@media(max-width: 1200px){
    .nav-ul li{
        margin-right: 5px;
    }
    .nav-ul li>a{
        padding: 0 10px;
    }
}
@media(max-width: 991px){
    .nav{
        display: none;
    }
    .sou-wrap{
        display: none;
    }
    header{
        height: 70px;
    }
    .logo{
        width: 230px;
        margin-top: 6px;
    }
}
@media(max-width: 449px){
    .logo{
        width: 200px;
        margin-top: 10px;
    }
}
/* 产品中心 */
.home-pro{
    padding-top: 60px;
    padding-bottom: 40px;
    background: #f2f2f2;
}
.public-title{
    width: 100%;
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid #dcdcdc;
    margin-bottom: 29px;
}
.public-title h2{
    font-size: 40px;
    color: #111;
    line-height: 40px;
    padding-bottom: 28px;
    position: relative;
}
.public-title h2::after{
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background: #0b6ab8;
    left: 0px;
    bottom: -2px;
}
.change-pro{
    height: 40px;
    display: flex;
    align-items: center;
    color: #666;
    cursor: pointer;
}
.change-pro span{
    padding-left: 6px;
}
.hpro-ul{
    margin-left: -18px;
    margin-right: -18px;
}
.hpro-ul li{
    padding: 0 18px;
}
.hpro-img{
    width: 100%;
    overflow: hidden;
    border: 2px solid #e1e1e1;
}
.hpro-img img{
    display: block;
    width: 100%;
    transition: all .5s;
}
.hpro-item p{
    line-height: 58px;
    margin-bottom: 6px;
    text-align: center;
    font-size: 18px;
    color: #111;
}
.hpro-item:hover .hpro-img img{
    transform: scale(1.1);
}
.hpro-item:hover p{
    color: #0b6ab8;
}
@media(max-width: 1200px){
    .hpro-ul{
        margin-left: -12px;
        margin-right: -12px;
    }
    .hpro-ul li{
        padding: 0 12px;
    }
}
@media(max-width: 991px){
    .public-title h2{
        font-size: 36px;
        line-height: 36px;
        padding-bottom: 15px;
    }
    .change-pro{
        height: 36px;
    }
    .hpro-item p{
        margin-bottom: 0px;
    }
}
.home-about{
    padding: 60px 0px;
}
.habout-main{
    display: flex;
}
.habout-left{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-right: 50px;
}
.habout-img{
    width: 50%;
    overflow: hidden;
}
.habout-img img{
    width: 100%;
    display: block;
    transition: all .5s;
}
.habout-img:hover img{
    transform: scale(1.1);
}
.habout-time{
    width: 240px;
    height: 200px;
    background: #ca1b29;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 40px;
    color: #fff;
    margin-bottom: 50px;
}
.habout-time span{
    font-size: 24px;
    line-height: 24px;
    display: block;
    margin-bottom: 24px;
}
.habout-time h3{
    display: flex;
    align-items: center;
    font-family: "tRegular";
    font-size: 52px;
    line-height: 52px;
    margin-bottom: 22px;
}
.habout-time h3>p{
    font-family: "微软雅黑";
    font-size: 40px;
    font-weight: bold;
    margin-left: 20px;
}
.habout-time i{
    display: block;
    width: 30px;
    height: 6px;
    background: #fff;
}
.habout-top h2{
    font-size: 32px;
    color: #000;
    line-height: 32px;
    margin-bottom: 45px;
}
.habout-des{
    font-size: 16px;
    line-height: 24px;
    color: #444;
}
.habout-des p{
    margin-bottom: 12px;
}
.public-more{
    display: block;
    width: 185px;
    height: 60px;
    background: #0b6ab8;
    line-height: 60px;
    text-align: center;
    font-size: 18px;
    color: #fff;
    font-family: "sRegular";
}
.partner-wrap{
    margin-top: 50px;
    position: relative;
}
.swiper-partner-prev,
.swiper-partner-next{
    width: 34px;
    height: 34px;
    margin-top:0px;
    top: 0px;
    background-color: #f2f2f2;
    background-size: 8px 16px;
    opacity: 1;
}
.swiper-partner-prev{
    right: 44px;
    left: auto;
    background-image: url(../img/partner_prev_arrow.png);
}
.swiper-partner-next{
    right: 0px;
    background-image: url(../img/partner_next_arrow.png);
}
.swiper-partner-prev:hover{
    background-color: #0b6ab8;
    background-image: url(../img/partner_prev_arrow_on.png);
}
.swiper-partner-next:hover{
    background-color: #0b6ab8;
    background-image: url(../img/partner_next_arrow_on.png);
}
.partner-img{
    width: 100%;
    overflow: hidden;
    border: 1px solid #dddddd;
}
.partner-img img{
    width: 100%;
    display: block;
    transition: all .5s;
}
.partner-img:hover img{
    transform: scale(1.1);
}
@media(max-width: 1200px){
    .habout-left{
        padding-right: 40px;
    }
    .habout-time{
        width: 190px;
        height: 140px;
        padding-left: 15px;
        margin-bottom: 30px;
    }
    .habout-time h3 > p{
        margin-left: 10px;
        font-size: 36px;
    }
    .habout-time span{
        font-size: 20px;
        line-height: 20px;
        margin-bottom: 12px;
    }
    .habout-top h2{
        font-size: 30px;
        margin-bottom: 25px;
    }
    .habout-time h3{
        font-size: 44px;
        line-height: 44px;
        margin-bottom: 16px;
    }
    .habout-des p{
        margin-bottom: 8px;
    }
    .habout-des{
        font-size: 14px;
        line-height: 22px;
    }
}
@media(max-width: 991px){
    .habout-main{
        flex-wrap: wrap;
    }
    .habout-left{
        padding-right: 0px;
        width: 100%;
    }
    .habout-img{
        width: 100%;
    }
    .more-about{
        margin-top: 20px;
        margin-bottom: 30px;
    }
}
/* 新闻中心 */
.more-hnews{
    width: 120px;
    height: 40px;
    line-height: 40px;
}
.hnews-main{
    display: flex;
}
.hnews-item{
    width: 50%;
}
.hnews-item:first-child{
    padding-right: 20px;
}
.hnews-item:last-child{
    padding-left: 20px;
    display: flex;
}
.hnews-imgs{
    width: 100%;
    position: relative;
    overflow: hidden;
}
.hnews-imgs img{
    width: 100%;
    display: block;
    transition: all .5s;
}
.hnews-info{
    width: 100%;
    position: absolute;
    bottom: 0px;
    left: 0px;
    height: 134px;
    background: url(../img/hnews_info_bg.png) no-repeat center;
    background-size: 100% 100%;
    padding-left: 50px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.hnews-info span{
    display: block;
    margin-bottom: 14px;
    font-size: 16px;
}
.hnews-info h3{
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 25px;
}
.hnews-list{
    /* display: flex;
    flex-direction: column;
    justify-content: space-between; */
}
.hnews-list li{
    background: #fff;
    padding: 28px 0px;
    margin-bottom: 30px;
}
.hnews-msg{
}
.hnews-times{
    margin-left: 18px;
    width: 100px;
    float: left;
    border-right: 1px solid #c9c9c9;
    text-align: center;
}
.hnews-times strong{
    font-weight: normal;
    font-size: 52px;
    color: #111;
    line-height: 52px;
    margin-bottom: 12px;
    display: block;
}
.hnews-times span{
    line-height: 24px;
    font-size: 16px;
    color: #444;
}
.hnews-txt{
    width: calc(100% - 118px);
    padding-left: 20px;
    padding-right: 20px;
    float: left;
}
.hnews-txt h3{
    display: block;
    font-size: 20px;
    line-height: 26px;
    color: #111;
    margin-bottom: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.hnews-txt p{
    font-size: 16px;
    color: #444;
    line-height: 24px;
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 48px;

}
.hnews-list li:hover .hnews-txt h3{
    color: #0b6ab8;
}
.hnews-list li.on .hnews-txt h3{
    color: #0b6ab8;
}
.hnews-imgs:hover img{
    transform: scale(1.1);
}
@media(max-width: 1400px){
    .hnews-list li{
        padding: 20px 0px;
    }
    .hnews-times{
        margin-left: 8px;
    }
    .hnews-txt{
        width: calc(100% - 108px);
    }
    .hnews-info{
        padding-left: 30px;
    }
}
@media(max-width: 1200px){
    .hnews-item:first-child{
        padding-right: 10px;
    }
    .hnews-item:last-child{
        padding-left: 10px;
    }
    .hnews-list li{
        padding: 12px 0px;
    }
    .hnews-times{
        margin-left: 0px;
        width: 88px;
    }
    .hnews-txt{
        width: calc(100% - 88px);
    }
    .hnews-info{
        padding-left: 30px;
    }
}
@media(max-width: 991px){
    .hnews-main{
        flex-wrap: wrap;
    }
    .hnews-item{
        width: 100%;
    }
    .hnews-item:first-child{
        padding-right: 0px;
    }
    .hnews-item:last-child{
        padding-left: 0px;
        display: block;
    }
    .hnews-list li{
        margin-top: 20px;
    }
}
@media(max-width: 599px){
    .hnews-info h3{
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 15px;
    }
    .hnews-info span{
        margin-bottom: 8px;
    }
    .hnews-info{
        padding-left: 15px;
        padding-right: 15px;
    }
    .hnews-times{
        width: 70px;
    }
    .hnews-times strong{
        font-size: 40px;
        line-height: 40px;
        margin-bottom: 8px;
    }
    .hnews-txt {
        width: calc(100% - 70px);
        padding-left: 12px;
        padding-right: 12px;
    }
    .hnews-txt h3{
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 5px;
    }
    .hnews-txt p{
        font-size: 14px;
        line-height: 22px;
        height: auto;
    }
}
/* 底部 */
#footer{
    background: #222;
    padding-top: 35px;
    overflow: hidden;
}
.footer-list{
    display: flex;
    justify-content: space-between;
    margin-bottom: 42px;
}
.footer-list li h3>a{
    font-size: 16px;
    color: #fff;
    line-height: 24px;
}
.footer-list li h3{
    margin-bottom: 14px;
}
.footer-list li dl dd{
    font-size: 14px;
    line-height: 30px;
    color: #959595;
}
.footer-bom{
    border-top: 1px solid #959595;
    padding-top: 38px;
    padding-bottom: 38px;
    text-align: center;
}
.footer-bom p{
    font-size: 14px;
    line-height: 24px;
    color: #959595;
}
.footer-bom p>span{
    padding-left: 30px;
}
@media(max-width: 991px){
    .footer-list{
        flex-wrap: wrap;
        margin-bottom: 20px;
    }
    .footer-list li{
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    .footer-list li dl{
        text-align: center;
    }
    .footer-list li dl dd{
        display: inline-block;
        line-height: 24px;
        margin: 0 4px;
    }
    .footer-list li h3{
        margin-bottom: 5px;
    }
    .footer-bom{
        padding-top: 15px;
        padding-bottom: 15px;
    }
}
/* 关于我们 */
.about-main{
    padding-top: 60px;
    padding-bottom: 90px;
}
.inside-title{
    text-align: center;
    font-size: 36px;
    line-height: 36px;
    color: #111;
    margin-bottom: 52px;
}
.about-info{
    font-size: 16px;
    color: #444;
    line-height: 32px;
    /*text-indent: 32px;*/
}
.about-info img{
    width: auto;
    max-width: 100%;
}

.about-info p{
    margin-bottom: 15px;
}
.about-info p:last-child{
    margin-bottom: 0px;
}
@media(max-width: 991px){
    .inside-title{
        margin-bottom: 40px;
    }
    .about-main{
        padding-top: 50px;
        padding-bottom: 50px;
    }
}
@media(max-width: 599px){
    .inside-title{
        margin-bottom: 30px;
    }
}
/* 新闻动态 */
.news-list li{
    margin-bottom: 30px;
}
.news-list li:last-child{
    margin-bottom: 0px;
}
.news-list li a{
    display: flex;
}
.news-img{
    width: 280px;
    overflow: hidden;
}
.news-img img{
    width: 100%;
    display: block;
    transition: all .5s;
}
.news-info{
    width: calc(100% - 280px);
    background: #f0f0f4;
    display: flex;
    padding-left: 20px;
    align-items: center;
}
.news-date{
    width: 120px;
    border-right: 2px solid #c9c9c9;
    padding-top: 5px;
    padding-bottom: 6px;
    text-align: center;
}
.news-date strong{
    font-weight: normal;
    font-size: 52px;
    line-height: 52px;
    color: #111;
    display: block;
    margin-bottom: 12px;
}
.news-date span{
    color: #444;
    line-height: 24px;
    font-size: 16px;
}
.news-des{
    width: calc(100% - 140px);
    padding: 0 30px;
}
.news-des h3{
    font-size: 24px;
    color: #111;
    margin-bottom: 15px;
    overflow : hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.news-des p{
    line-height: 32px;
    color: #444;
    font-size: 16px;
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news-list li:hover .news-img img{
    transform: scale(1.1);
}
.news-list li:hover .news-des h3{
    color: #0b6ab8;
}
.news-main{
    padding-bottom: 0px;
}
@media(max-width: 1200px){
    .news-info{
        padding-left: 10px;
    }
    .news-date{
        width: 100px;
    }
    .news-des{
        width: calc(100% - 120px);
        padding: 0 20px;
    }
}
@media(max-width: 991px){
    .news-info{
        padding-left: 0px;
        width: 100%;
        padding: 30px 0px;
    }
    .news-date{
        width: 70px;
    }
    .news-des{
        width: calc(100% - 70px);
        padding: 0 15px;
    }
    .news-list li a{
        flex-direction: column;
        align-items: center;
    }
    .news-des h3{
        font-size: 18px;
        line-height: 20px;
        margin-bottom: 6px;
    }
    .news-des p{
        line-height: 26px;
        font-size: 16px;
    }
    .news-date strong{
        font-size: 44px;
        line-height: 44px;
        margin-bottom: 8px;
    }
    .news-date span{
        line-height: 18px;
    }
}
@media(max-width: 599px){
    .news-img{
        width: 100%;
    }
}
/* 产品 */
.pros-nav{
    margin-bottom: 35px;
    display: flex;
    justify-content: space-between;
}
.pros-nav li a{
    color: #444;
    line-height: 24px;
}
.pros-nav li:hover a, .pros-nav li.on a{
    color: #0b6ab8;
}
.pros-title .inside-title{
    margin-bottom: 35px;
}
@media(max-width: 991px){
    .pros-title{
        display: flex;
        align-items: center;
        height: 50px;
        justify-content: space-between;
        background: #0b6ab8;
    }
    .pros-title .inside-title{
        margin-bottom: 0px;
        text-align: left;
        padding-left: 20px;
        color: #fff;
        font-size: 30px;
    }
    .pros-nav{
        display: block;
        border: 1px solid #ddd;
        border-top: none;
        border-bottom: none;
        display: none;
        margin-bottom: 0px;
    }
    .pros-nav li a{
        display: block;
        width: 100%;
        text-align: center;
        line-height: 42px;
        border-bottom: 1px solid #ddd;
    }
    .pros-ul{
        margin-top: 30px;
    }
}
/* 联系我们 */
.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;
    }
}