@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: "sMedium";
    src: url('../font/SourceHanSansCN-Medium.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face{
    font-family: "mBold";
    src: url('../fonts/microsoftbold.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
/* header */
.header-top{
    background-color: #f0f0f4;
    height: 50px;
    overflow: hidden;
}
.top-main{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-main p{
    font-size: 14px;
    color: #808080;
}
.top-right{
    display: flex;
    align-items: center;
    height: 50px;
}
.top-item{
    margin-right: 30px;
}
.top-item:last-child{
    margin-right: 0px;
}
.top-item img{
    margin-right: 10px;
}
.top-item span{
    font-size: 14px;
    color: #808080;
}
header{
    width: 100%;
    position: relative;
    z-index: 22;
}
.logo{
    display: block;
    width: 180px;
    margin-top: 19px;
    float: left;
}
.logo img{
    display: block;
    width: 100%;
}
.nav{
    float: right;
}
.nav-ul{
    display: flex;
    justify-content: space-between;
}
.nav-ul li{
    margin-right: 14px;
    position: relative;
}
.nav-ul li:last-child{
    margin-right: 0px;
}
.nav-ul li>a{
    display: block;
    font-size: 16px;
    line-height: 80px;
    width: 120px;
    color: #222;
    transition: all .3s;
    text-align: center;
    

}
.nav-ul li:hover>a,
.nav-ul li.nav-active>a{
    color: #fff;
    background-color: #005bac;
}
.nav-sub{
    position: absolute;
    top: 80px;
    left: 0px;
    z-index: 66;
    display: none;
    width: 100%;
    box-sizing: border-box;
    background-color: #fff;
    z-index: 9999;
}
.nav-sub dl dd a{
    display: block;
    line-height: 32px;
    font-size: 16px;
    color: #222;
    background-color: transparent;
    transition: all .3s;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding: 5px;
}
.nav-sub dl dd:hover a{
    color: #005bac;
}
@media(max-width: 1400px){
    .nav-ul li{
        margin-right: 10px;
    }
    .nav-ul li>a{
        width: 100px;
    }
}
@media(max-width: 1200px){
    .nav-ul li{
        margin-right: 0px;
    }
    .nav-ul li>a{
        width: 90px;
    }
}
@media(max-width: 991px){
    .top-item{
        margin-right: 12px;
    }
    header{
        height: 70px;
    }
    .logo{
        margin-top: 15px;
    }
    .top-item img{
        margin-right: 5px;
    }
    .nav-ul{
        display: none;
    }
    .header-top{
        display: none;
    }
}
/* 底部 */
#footer{
    padding-top: 46px;
    overflow: hidden;
    width: 100%;
    background: #2f2f2f;
}
.copy{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #808080;
    margin-top: 20px;
    height: 66px;
}
.copy a{
    color: #808080;
}
.links{
    padding-bottom: 45px;
    padding-top: 16px;
    border-top: 1px solid #808080;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    color: #808080;
    line-height: 30px;
}
.links a{
    color: #808080;
    display: block;
    padding: 0 6px;
    line-height: 30px;
    position: relative;
}
.links a::after{
    position: absolute;
    width: 2px;
    height: 14px;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
    background-color: #808080;
    content: "";
}
.links a:last-child::after{
    display: none;
}
.footer-ul{
    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 dl dd>a{
    line-height: 30px;
    display: block;
    color: #808080;
    font-size: 16px;
}
.code-item{
    width: 154px;
    text-align: center;
}
.code-item p{
    color: #808080;
    line-height: 24px;
    margin-top: 10px;
    text-align: center;
}
.footer-share{
    margin-top: 16px;
}
@media(max-width: 1200px){

}
@media(max-width: 991px){
    #footer{
        padding-top: 40px;
    }
    .footer-share .bshare-custom{
        justify-content: center;
    }
    .footer-ul{
        flex-wrap: wrap;
    }
    .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;
    }
    .copy p{
        width: 100%;
        line-height: 24px;
        text-align: center;
        margin-bottom: 10px;
    }
    .links{
        padding-bottom: 15px;
        line-height: 24px;
    }
    .links a{
        line-height: 24px;
    }
}
/* 热门关键词 */
.hot-key{
    background-color: #f0f0f4;
    height: 50px;
}
.hot-keymain{
    display: flex;
    justify-content: space-between;
}
.hot-keyleft{
    display: flex;
    height: 50px;
    align-items: center;
    font-size: 14px;
}
.hot-keyleft p{
    color: #222;
}
.hot-list{
    display: flex;
}
.hot-list li{
    margin-right: 6px;
}
.hot-list li:last-child{
    margin-right: 0px;
}
.hot-list li a{
    color: #a0a0a0;
    font-size: 14px;
    line-height: 50px;
}
.hot-list li:hover a{
    color: #005bac;
}
.keysou-wrap{
    display: flex;
    align-items: center;
    height: 50px;
}
.keysou-txt{
    width: 200px;
    border: 1px solid #dcdcdc;
    height: 32px;
    line-height: 30px;
    padding-left: 10px;
    font-size: 14px;
    color: #a0a0a0;
    display: block;
}
.keysou-btn{
    width: 60px;
    height: 32px;
    border: none;
    display: block;
    background: #005bac url(../images/sou-icon.png) no-repeat center;
}
@media(max-width: 1200px){
    .hot-key{
        height: auto;
    }
    .hot-keymain{
        flex-direction: column-reverse;
        padding-bottom: 8px;
    }
    .hot-keyleft{
        width: 100%;
        align-items: flex-start;
        height: auto;
    }
    .hot-keyleft p{
        width: 85px;
    }
    .hot-list{
        flex-wrap: wrap;
        width: calc(100% - 84px);
    }
    .hot-list li a{
        line-height: 24px;
    }
}
@media(max-width:991px){
    .hot-keyleft{
        display: none;
    }
    .keysou-wrap {
        margin-top: 3px;
    }
}
/* 首页关于我们 */
.home-about{
    width: 100%;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 80px;
}
.habout-main{
    display: flex;
}
.habout-left{
    width: 50%;
    padding-right: 22px;
}
.habout-right{
    width: 50%;
    padding-left: 56px;
    position: relative;
}
.habout-more{
    width: 140px;
    height: 44px;
    display: block;
    text-align: center;
    line-height: 44px;
    color: #fff;
    background-color: #005bac;
    margin-bottom: 38px;
}
.habout-title h3{
    font-size: 40px;
    line-height: 40px;
    color: #222;
    margin-bottom: 10px;
}
.habout-title span{
    font-size: 18px;
    line-height: 24px;
    color: #005bac;
}
.habout-des{
    margin-top: 30px;
    line-height: 30px;
    color: #444;
    font-size: 16px;
}
.habout-des p{
    margin-bottom: 15px;
}
.habout-des p:last-child{
    margin-bottom: 0px;
}
.habout-right .public-img{
    position: relative;
}
.play-about{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background: url(../images/play-icon.png) no-repeat center;
}
.habout-right:hover .public-img img{
    transform: scale(1.1);
}
.habout-right:hover .public-img video{
    transform: scale(1.1);
}
@media(max-width: 1400px){
    .habout-right{
        padding-left: 36px;
    }
    .habout-des p{
        margin-bottom: 0px;
    }
    .habout-des{
        margin-top: 20px;
    }
    .habout-more{
        margin-bottom: 25px;
    }
}
@media(max-width: 1200px){
    .habout-left{
        padding-right: 0px;
    }
    .habout-title h3{
        font-size: 36px;
    }
}
@media(max-width: 991px){
    .home-about{
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .habout-main{
        flex-wrap: wrap;
    }
    .habout-left{
        padding-right: 0px;
        width: 100%;
    }
    .habout-right{
        padding-left: 0px;
        width: 100%;
    }
    .habout-title h3{
        font-size: 32px;
        margin-bottom: 4px;
    }
    .habout-title span{
        font-size: 16px;
    }
    .habout-des{
        margin-top: 18px;
        margin-bottom: 18px;
    }
}
@media(max-width: 599px){
    .home-about{
        padding-top: 40px;
    }
    .habout-title h3{
        font-size: 28px;
    }
}
/* 首页产品 */
.home-pro{
    background-color: #f0f0f4;
    padding-bottom: 40px;
}
.hpro-title{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}
.public-title{
    font-size: 40px;
    line-height: 40px;
    color: #222;
} 
.hpro-titlelist{
    display: flex;
    justify-content: flex-end;
}
.hpro-titlelist li{
    margin-right: 30px;
}
.hpro-titlelist li:last-child{
    margin-right: 0px;
}
.hpro-titlelist li a{
    display: block;
    line-height: 28px;
    color: #222;
    font-size: 16px;
    border-bottom: 2px solid transparent;
}
.hpro-titlelist li:hover a{
    color: #005bac;
    border-bottom-color: #005bac;
}
.hpro-titlelist li.on a{
    color: #005bac;
    border-bottom-color: #005bac;
}
.hpro-item{
    width: 100%;
    margin-bottom: 40px;
}
.hpro-item p{
    font-size: 16px;
    color: #222;
    height: 61px;
    border-top: 1px solid #dcdcdc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    transition: all .5s;
    background-color: #fff;
}
.hpro-item:hover .public-img img{
    transform: scale(1.1);
}
.hpro-item:hover .public-img video{
    transform: scale(1.1);
}
.hpro-item:hover p{
    background-color: #005bac;
    color: #fff;
}
.mobile-nav{
    position: relative;
    display: none;
    background-color: #005bac;
}
.mobile-nav h3{
    display: block;
    line-height: 50px;
    float: left;
    padding-left: 20px;
    color: #fff;
}
@media(max-width: 1400px){
    .hpro-titlelist li{
        margin-right: 10px;
    }
}
@media(max-width: 1200px){
    .hpro-title{
        margin-bottom: 45px;
    }
    .hpro-titlelist li{
        margin-right: 6px;
    }
    .hpro-titlelist li a{
        font-size: 14px;
    }
    .public-title{
        font-size: 36px;
        line-height: 36px;
    } 
}
@media(max-width: 991px){
    .hpro-title{
        margin-bottom: 30px;
        flex-wrap: wrap;
    }
    .hpro-title .public-title{
        text-align: center;
        margin-bottom: 20px;
        width: 100%;
    }
    .mobile-nav{
        display: block;
    }
    .hpro-titleright{
        width: 100%;
    }
    .hpro-titlelist{
        flex-wrap: wrap;
        display: none;
    }
    .hpro-titlelist li{
        margin-right: 0px;
        width: 100%;
        border: 1px solid #dcdcdc;
        border-top: none;
    }
    .hpro-titlelist li a{
        font-size: 16px;
        text-align: center;
        line-height: 48px;
        border-bottom: none;
    }
    .public-title{
        font-size: 32px;
        line-height: 32px;
    } 
    .hpro-item{
        margin-bottom: 20px;
    }
    .home-pro{
        padding-bottom: 30px;
    }
}
@media(max-width: 599px){
    .public-title{
        font-size: 30px;
        line-height: 30px;
    }
}
/* 生成工艺 */
.hservice{
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
}
.hservice:last-child{
    flex-direction: row-reverse;
    margin-bottom: 0px;
}
.hservice-left{
    width: 53.6%;
}
.hservice-right{
    width: 46.4%;
    padding-left: 75px;
}
.hservice-right .public-title{
    padding-bottom: 38px;
    border-bottom: 1px solid #dcdcdc;
}
.hservice:last-child .hservice-right{
    padding-right: 75px;
    padding-left: 0px;
}
.hservice-info{
    margin-top: 35px;
}
.hservice-txt{
    margin-bottom: 15px;
}
.hservice-txt:last-child{
    margin-bottom: 0px;
}
.hservice-txt h3{
    font-size: 24px;
    line-height: 30px;
    color: #222;
    margin-bottom: 15px;
}
.hservice-txt p{
    color: #444;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 15px;
}
.hservice-txt p:last-child{
    margin-bottom: 0px;
}
.hservice-left .public-img:hover img{
    transform: scale(1.1);
}
.hservice-right:hover .hservice-txt h3{
    color: #005bac;
}
@media(max-width: 1600px){
    .hservice-right{
        padding-left: 50px;
    }
    .hservice:last-child .hservice-right{
        padding-right: 50px;
    }
    .hservice-right .public-title{
        padding-bottom: 20px;
    }
    .hservice-info{
        margin-top: 20px;
    }
}
@media(max-width: 1400px){
    .hservice-txt p{
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 8px;
    }
    .hservice-txt{
        margin-bottom: 10px;
    }
}
@media(max-width: 1200px){
    .hservice{
        margin-bottom: 40px;
    }
    .hservice-txt h3{
        margin-bottom: 10px;
    }
}
@media(max-width: 991px){
    .hservice{
        flex-wrap: wrap;
        margin-bottom: 25px;
    }
    .hservice-left{
        width: 100%;
        margin-bottom: 20px;
    }
    .hservice-right{
        width: 100%;
        padding-left: 0px;
    }
    .hservice:last-child .hservice-right{
        padding-right: 0px;
    }
    .hservice-txt p{
        font-size: 16px;
        line-height: 30px;
    }
    .hservice-txt h3{
        margin-bottom: 5px;
    }
}
/* 首页新闻 */
.home-news{
    background-color: #f0f0f4;
}
.home-news .public-title{
    text-align: center;
    margin-bottom: 60px;
}
/* 新增 */
.home-news{
    background-color: #f0f0f4;
}
.hnews-main{
    display: flex;
    margin-left: -14px;
    margin-right: -14px;
}
.hnews-item{
    padding: 0 14px;
    width: 33.33%;
}
.hnews-item:last-child{
    margin-right: 0px;
    margin-bottom: 0px;
}
.hnews-info{
    background-color: #fff;
    padding: 24px 30px;
}
.hnews-leftop{
    display: flex;
    justify-content: space-between;
    color: #999;
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
    margin-bottom: 14px;
}
.hnews-leftbom h3>a{
    font-size: 20px;
    line-height: 24px;
    color: #222;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.hnews-leftbom p{
    margin-top: 18px;
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 16px;
    line-height: 30px;
    color: #808080;
    margin-bottom: 30px;
    height: 60px;
}
.hnews-more{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: #999;
}
.hnews-more span{
    text-transform: uppercase;
    font-size: 10px;
    line-height: 10px;
    font-weight: bold;
    padding-right: 5px;
}
.hnews-more img{
    transition: all .5s;
}
.hnews-left:hover .public-img img{
    transform: scale(1.1);
}
.hnews-left:hover .hnews-leftbom h3>a{
    color: #005bac;
}
.hnews-left:hover .hnews-more img{
    transform: translateX(5px);
}
.hnews-info:hover .hnews-leftbom h3>a{
    color: #005bac;
}
.hnews-info:hover .hnews-more img{
    transform: translateX(5px);
}
.hnews-center{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.hnews-citem{
    margin-bottom: 10px;
    background-color: #fff;
}
.hnews-citem:last-child{
    margin-bottom: 0px;
}
.hnews-rightinfo{
    padding: 0 30px;
    background-color: #fff;
    transition: all .4s;
    display: flex;
    flex: 1;
}
.hnews-rightinfo a{
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex: 1;
}
.hnews-rightinfo h3{
    font-size: 20px;
    line-height: 24px;
    color: #222;
    margin-bottom: 12px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.hnews-rightinfo span{
    font-size: 16px;
    color: #999;
    line-height: 24px;
}
.hnews-rightinfo:hover{
    background-color: #005bac;
}
.hnews-rightinfo:hover h3{
    color: #fff;
}
.hnews-rightinfo:hover span{
    color: #fff;
}
@media(max-width: 1600px){
    .hnews-citem{
        padding-top: 20px;
        padding-bottom: 20px;
    }
}
@media(max-width: 1400px){
    .hnews-citem .hnews-leftbom p{
        margin-bottom: 20px;
    }
}
@media(max-width: 1200px){
    .hnews-info{
        padding-left: 20px;
        padding-right: 20px;
    }
    .hnews-citem .hnews-leftbom p{
        margin-top: 10px;
        margin-bottom: 15px;
    }
    .hnews-citem{
        padding-bottom: 10px;
    }
    .hnews-rightinfo h3{
        margin-bottom: 4px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 18px;
    }
    .hnews-leftbom h3{
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .hnews-rightinfo{
        padding-left: 10px;
        padding-right: 10px;
    }
    .hnews-leftop{
        margin-bottom: 8px;
    }
    .hnews-info{
        flex: 1;
    }
}
@media(max-width: 991px){
    .home-news .public-title{
        margin-bottom: 30px;
    }
    .hnews-main{
        flex-wrap: wrap;
    }
    .hnews-item{
        margin-right: 0px;
        flex: none;
        width: 100%;
        margin-bottom: 20px;
    }
    .hnews-leftbom p{
        height: auto;
        margin-top: 8px;
        margin-bottom: 12px;
    }
    .hnews-leftop{
        margin-bottom: 10px;
    }
    .hnews-rightinfo{
        padding-bottom: 20px;
        padding-left: 20px;
        padding-right: 20px;
    }
}
/******产品*******/
.main{
    margin-top:80px;
}
.conleft{
    width: 260px;
}
.conleft-tit{
    background: #ff1d1e;
    height: 150px;
    color: #fff;
    text-align: center;
    padding-top: 50px;
}
.conleft-tit h3{
    font-size: 30px;
}
.conleft-tit h4{
    font-size: 16px;
    margin-top: 10px;
}

.conleftw{
    margin-top: 10px;
}
.conleftw ul li>a{
    height: 80px;
    background: #005bac;
    display:block;
    line-height: 80px;
    color: #fff;
    font-size: 20px;
    padding-left: 20px;
    transition: all 0.5s;
    position: relative;
}
.conleftw ul li{
    margin-bottom: 10px;
}
.left-sub{
    display: none;
}
.left-sub dd a{
    height: 50px;
    background: #f0f0f4;
    line-height: 50px;
    padding-left: 20px;
    display: block;
}
.left-sub dd{
    margin-top: 2px;
}
.left-sub dd a:hover{
    background: #005bac;
    color: #fff;
}
.conleftw ul li.left-on>a{
    background: #005bac;
    color: #fff;
}
/* .conleftw ul li.left-on .left-sub{
    display: block;
} */
.conleft-tel{
    background: #ff1d1e;
    padding: 24px;
}
.conleft-telt{
    color: #fff;
}
.conleft-tel p{
    color:#fff;
    font-size: 28px;
    line-height: 30px;
    margin-top: 10px;
}
.main-w{
    display: flex;
    justify-content: space-between;
}
.conright{
    width: calc(100% - 340px);
}
.conright-tit{
    display: flex;
    justify-content: space-between;
}
.conright-tit h3{
    font-size: 20px;
}
.conright-titr{
    font-size: 14px;
}
.conright-titr span{
    color: #666666;
}
.conright-titr a{
    color: #666666;
}
.conright-titr a:hover{
    color: #005bac;
}
.conright-tit{
    border-bottom: 1px solid #c9c9c9;
    padding-bottom: 10px;
}
.pro{
    margin-top: 40px;
}
.pro ul{
    margin-left: -25px;
    margin-right: -25px;
}
.pro ul li{
    padding: 0 25px;
}
.pro ul li p{
    background: #f0f0f4;
    height: 60px;
    line-height: 60px;
    text-align: center;
}
.pro-img{
    overflow: hidden;
    width: 100%;
}
.pro-img img{
    width: 100%;
    display: block;
    transition: all .5s;
}
.pro ul li{
    margin-bottom:50px;
}
.pro ul li:hover p{
    background: #005bac;
    color: #fff;
}
.pro ul li:hover .pro-img img{
    transform: scale(1.1);
}
@media(max-width:1400px){
    .pro ul{
        margin-left: -15px;
        margin-right: -15px;
    }
    .pro ul li{
        padding: 0 15px;
    }
}
@media(max-width:1200px){
    .conright{
        width: calc(100% - 300px);
    }
    .pro ul li p{
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 30px;
    }
}
@media(max-width:991px){
    .conleft{
        width: 100%;
        margin-bottom: 25px;
    }
    .main{
        margin-top: 50px;
    }
    .main-w{
        flex-wrap: wrap;
    }
    .conright{
        width: 100%;
    }
    .conleft-tit{
        height:50px;
        text-align: left;
        padding-left: 15px;
        background-color: #005bac;
        padding-top: 0px;
        position: relative;
    }
    .conleft-tit h3{
        font-size: 18px;
        margin-bottom: 0px;
        line-height: 24px;
        padding-top: 5px;
        color: #fff;
    }
    .conleft-tit h4{
        font-size: 12px;
        line-height: 20px;
        color: #fff;
        margin-top: 0px;
    }
    .left-ul{
        display: none;
    }
    .conleftw ul li > a{
        height: 50px;
        line-height: 50px;
        font-size: 18px;
    }
    .conleftw ul li > a{
        background-color: #f0f0f4;
        color: #222;
    }
    .conleft-contact{
        display: none;
    }
    .pro ul li{
        margin-bottom: 30px;
    }
}
@media(max-width: 767px){
    .pro ul{
        margin-left: 0px;
        margin-right: 0px;
    }
    .pro ul li{
        padding: 0px;
    }
    .conright-tit{
        flex-direction: column;
    }
    .conright-tit h3{
        margin-bottom: 10px;
    }
    .conright-w{
        overflow: hidden;
    }
    .pro ul li p{
        height: auto;
        display: block;
        padding-top: 15px;
        padding-bottom: 15px;
        line-height: 30px;
    }
}
/* 关于我们 */
.about-wrap{
    padding-top: 30px;
}
.about-des{
    text-indent: 32px;
    color: #444;
    font-size: 16px;
    line-height: 32px;
}
.about-des p{
    margin-bottom: 16px;
}
.about-vedio{
    width: 100%;
    position: relative;
}
.vedio-wraps{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: rgba(0, 0, 0, .2) url(../images/play-icon.png) no-repeat center;
}
.about-main{
    padding-bottom: 80px;
}
@media(max-width: 991px){
    .about-main{
        padding-bottom: 50px;
    }
}
/* 新闻咨询 */
.news-list li{
    background-color: #f0f0f4;
    padding: 30px 25px 25px;
    margin-bottom: 30px;
    transition: all .3s;
}
.news-list li:last-child{
    margin-bottom: 0px;
}
.news-list li h3{
    font-size: 20px;
    font-weight: bold;
    color: #222;
    margin-bottom: 10px;
}
.news-list li span{
    color: #999;
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;
}
.news-list li p{
    margin-top: 8px;
    font-size: 16px;
    line-height: 28px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 56px;
    color: #444;
}
.news-list li:hover{
    background-color: #005bac;
}
.news-list li:hover span{
    color: #fff;
}
.news-list li:hover h3{
    color: #fff;
}
.news-list li:hover p{
    color: #fff;
}
@media(max-width: 599px){
    .news-list li{
        padding-top: 20px;
        padding-bottom: 20px;
        padding-left: 20px;
        padding-right: 20px;
    }
}
/* 产品 */
.pro-detail .gallery-top{
    margin-bottom: 27px;
}
.thumbs-img{
    border: 6px solid #f0f0f4;
}
.pro-detail .swiper-slide-thumb-active .thumbs-img{
    border-color: #005bac;
}






/*产品详情*/
#content_1{
    height:800px;
    margin:  60px 0;
}
#content_1 .mCSB_scrollTools .mCSB_draggerRail{
    width: 10px;
    background: #f0f0f4;
}
#content_1 .mCSB_scrollTools .mCSB_draggerRail{
    border-radius: 0;
}
#content_1 .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
    background: #005bac;
    width: 10px;
    border-radius: 0px;
}
#content_1 h2{
    font-size: 24px;
    color: #005bac;
    margin-bottom: 40px;
}
#content_1 span{
    color: #222222;
}
#content_1 h3{
    font-size: 24px;
    color: #ff1d1e;
    margin-bottom: 20px;
}
#content_1 img{
    margin-bottom: 20px;
}
#content_1 p{
    line-height: 30px;
}
.prodetail-img img{
    margin-right: 20px;
}
@media(max-width:1200px){
    #content_1 img {
        width: 100%;
    }
    #content_1 h2 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    #content_1 h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    #content_1 {
        margin: 30px 0;
    }
}

.dc-phone {
    display: none;
}
@media (max-width: 991px) {
    .dc-phone {
        display: block;
    }

    .dc-pc {
        display: none;
    }
}
#pbanner .swiper-slide img {
    width: 100%;
    display: block;
}
/* 联系我们 */
.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;
    }
}


.pro-more{
    display: block;
    background: #005bac;
    width: 150px;
    height:50px;
    line-height: 50px;
    text-align: center;
    margin: 0 auto 50px;
}
.pro-more a{
    color: #fff;
}
.conleft-contact{
    padding-bottom: 50px;
}
.tunews{
    margin: 30px 0;
}
.tunews h3{
    height: 40px;
    line-height: 40px;
    background: #005bac;
    color: #fff;
    text-align: center;
}
.tunews ul li a{
    display: flex;
    justify-content: space-between;
    height: 50px;
    line-height: 50px;
    border-bottom: 1px dashed #ccc;
}
.pro-detail-info{
    margin: 40px 0;
}
.pro-detail-info h2{
    font-size: 24px;
    color: #005bac;
    margin-bottom: 40px;
}
.pro-detail-info h3 {
    font-size: 24px;
    color: #ff1d1e;
    margin-bottom: 20px;
}
@media(max-width:1200px){
    .pro-detail-info h2 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .pro-detail-info h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
}

@media(max-width:991px){
    .pro-detail-info img{
        width: 100%;
    }
}

.pro-detail .swiper-button-prev{
    background: url('../images/pro-arrow-wl.png') no-repeat center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.pro-detail .swiper-button-next{
    background: url('../images/pro-arrow-wr.png') no-repeat center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

@media(max-width:991px){
    .pro-detail .swiper-button-prev{
        width: 40px;
        height: 40px;
        border-radius: 50%;
    }
    .pro-detail .swiper-button-next{
        width: 40px;
        height: 40px;
        border-radius: 50%;
    }
}