@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/SourceHanSansCN-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;
    border-bottom: 4px solid #d40000;
}
.logo{
    float: left;
    width: 200px;
    margin-top: 25px;
}
.logo a{
    display: flex;
    height: 46px;
    align-items: center;
}
.logo img{
    display: block;
    width: 45px;
    height: 46px;
    margin-right: 12px;
}
.logo span{
    font-size: 34px;
    color: #222;
    font-family: 'shbold';
}
.header-right{
    float: right;
}
.nav{
    display: flex;
    height: 46px;
    margin-top: 25px;
    align-items: center;
    justify-content: flex-end;
}
.header-ali{
    width: 46px;
    height: 46px;
    margin-left: 30px;
    display: block;
}
.header-ali img{
    display: block;
    width: 100%;
}
.nav-ul li{
    margin-right: 13px;
    height: 46px;
    float: left;
    position: relative;
}
.nav-ul li:last-child{
    margin-right: 0px;
}
.nav-ul li > a{
    line-height: 46px;
    font-size: 16px;
    padding: 0 18px;
    display: block;
    background-color: transparent;
    transition: all 0.3s;
}
.nav-ul li:hover>a, .nav-ul li.nav-active > a{
    background-color: #d40000;
    color: #fff;
}
.navToggle{
    margin-top: 25px;
}
@media(max-width:1400px){
    .nav-ul li{
        margin-right: 6px;
    }
    .nav-ul li > a{
        padding: 0 12px;
    }
    .header-ali{
        margin-left: 10px;
    }
}
@media(max-width:1200px){
    .nav-ul li{
        margin-right: 0px;
        height: 42px;
        margin-top: 2px;
    }
    .nav-ul li > a{
        padding: 0 10px;
        font-size: 14px;
    }
    .logo span{
        font-size: 28px;
    }
}
@media(max-width:991px){
    header{
        height: 70px;;
    }
    .logo{
        margin-top: 10px;
    }
    .header-right{
        display: none;
    }
}
/* 首页产品中心 */
.public-module{
    padding: 100px 0px;
}
.home-pros{
    background-color: #f0f0f4;
    padding-bottom: 76px;
}
.hpros-title{
    display: flex;
    margin-bottom: 44px;
    justify-content: space-between;
}
.hpros-title h2{
    font-size: 36px;
    line-height: 36px;
}
.hpro-title-ul{
    margin-top: 16px;
}
.hpro-title-ul li{
    float: left;
    margin-right: 25px;
}
.hpro-title-ul li:last-child{
    margin-right: 0px;
}
.hpro-title-ul li a{
    display: block;
    line-height: 24px;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    color: #444;
}
.hpro-title-ul li:hover a,
.hpro-title-ul li.on a{
    color: #d40000;
    border-bottom-color: #d40000;
}
.hpros-ul{
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}
.hpros-ul li{
    width: 25%;
    padding: 0 12px;
    margin-bottom: 24px;
}
.hpros-item{
    width: 100%;
    background-color: #fff;
    padding: 24px 0px;
    transition: all .5s;
}
.hpros-img{
    width: 100%;
    overflow: hidden;
}
.hpros-img img{
    display: block;
    width: 100%;
    transition: all .5s;
}
.hpros-info{
    margin-top: 25px;
    text-align: center;
    padding: 0 10px;
}
.hpros-info h3{
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 5px;
    color: #111;
    overflow: hidden;
    text-overflow:ellipsis;
    white-space: nowrap;
}
.hpros-info p{
    color: #444;
    line-height: 24px;
    font-weight: 300;
    
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.hpros-item:hover{
    box-shadow: 0px 0px 10px #d9d9dd;
}
.hpros-item:hover .hpros-img img{
    transform: scale(1.1);
}
.hpros-item:hover .hpros-info h3{
    color: #d40000;
}
.last-pro a{
    display: flex;
    height: 50%;
    flex-direction: column;
    justify-content: space-between;
}
.hpros-last-img{
    display: flex;
    flex: 1;
    background-color: #fff;
    padding: 16px 21px;
    margin-bottom: 24px;
    justify-content: space-between;
    align-items: center;
}
.hpros-last-info{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hpros-last-info h3{
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 10px;
    color: #111;
}
.hpros-last-info p{
    font-size: 16px;
    line-height: 18px;
    font-weight: 300;
}
.hpros-last-img img{
    width: 124px;
    display: block;
}
.hpros-last-more{
    background-color: #fff;
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 21px;
    padding-right: 40px;
}
.hpros-last-more img{
    display: block;
    width: 44px;
}
.hpros-last-img:hover .hpros-last-info h3{
    color: #d40000;
}
.hpros-last-more:hover .hpros-last-info h3{
    color: #d40000;
}
@media(max-width: 1400px){
    .hpros-last-img img{
        width: 94px;
        height: 110px;
    }
}
@media(max-width: 1200px){
    .public-module{
        padding: 80px 0px;
    }
    .home-pros{
        padding-bottom: 56px;
    }
    .hpro-title-ul{
        margin-top: 10px;
    }
    .hpros-last-img img{
        width: 80px;
        height: 94px;
    }
    .hpros-last-img{
        padding-left: 12px;
        padding-right: 12px;
    }
    .hpros-last-more{
        padding-left: 12px;
        padding-right: 12px;
    }
}
@media(max-width: 991px){
    .public-module{
        padding: 60px 0px;
    }
    .home-pros{
        padding-bottom: 40px;
    }
    .hpros-title{
        height: auto;
        margin-bottom: 30px;
        display: block;
    }
    .hpros-title h2{
        font-size: 28px;
        padding-left: 20px;
    }
    .hrpos-mobile-title{
        display: flex;
        height: 50px;
        align-items: center;
        background-color: #fff;
        justify-content: space-between;
    }
    .hpro-title-ul{
        margin-top: 0px;
        display: none;
        width: 100%;
        background-color: #fff;
    }
    .hpro-title-ul li{
        float: none;
        width: 100%;
        margin-right: 0px;
    }
    .hpro-title-ul li a{
        line-height: 48px;
        padding-bottom: 0px;
        border: 1px solid #d8d8d8;
        border-bottom: none;
        text-align: center;
    }
    .hpro-title-ul li:last-child a{
        border-bottom: 1px solid #d8d8d8
    }
    .hpro-title-ul li:hover a,
    .hpro-title-ul li.on a{
        border-bottom-color: none;
    }
    .hpros-ul li{
        width: 50%;
        margin-bottom: 20px;
    }
    .hpros-last-img img{
        width: 110px;
        height: 129px;
    }
    .hpros-last-img{
        padding-left: 20px;
        padding-right: 20px;
    }
    .hpros-last-more{
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media(max-width: 599px){
    .public-module{
        padding: 50px 0px;
    }
    .home-pros{
        padding-bottom: 30px;
        padding-top: 40px;
    }
    .hpros-ul li{
        width: 100%;
        margin-bottom: 20px;
    }
    .hpros-last-more{
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .hpros-last-img img{
        width: 110px;
        height: 129px;
    }
}
/* 首页关于我们 */
.habout-main{
    display: flex;
}
.habout-item{
    width: 50%;
}
.habout-main .habout-item:first-child{
    padding-right: 12px;
}
.habout-main .habout-item:last-child{
    padding-left: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.habout-wrap{
    width: 100%;
    overflow: hidden;
    position: relative;
}
.habout-wrap img{
    width: 100%;
    display: block;
    transition: all .5s;
}
.habout-info{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}
.habout-left .habout-info{
    padding-top: 95px;
    height: auto;
    justify-content: flex-start;
    align-items: center;
}
.habout-info h3{
    font-size: 36px;
    line-height: 36px;
    margin-bottom: 10px;
}
.habout-info span{
    font-size: 16px;
    line-height: 24px;
    display: block;
    margin-bottom: 20px;
}
.more-about{
    display: block;
    width: 142px;
    line-height: 46px;
    border: 2px solid #fff;
    transition: all .6s;
    color: #fff;
    text-align: center;
}
.habout-wrap:hover img{
    transform: scale(1.1);
}
.habout-wrap:hover .more-about{
    background-color: #d40000;
    border-color: #d40000;
}
.habout-right{
    flex: 1;
    margin-bottom: 24px;
    overflow: hidden;
}
.habout-item .habout-right:last-child{
    margin-bottom: 0px;
}
.habout-right .habout-info{
    padding-left: 60px;
}
@media(max-width: 1600px){
    .habout-right{
        margin-bottom: 20px;
    }
}
@media(max-width: 1400px){
    .habout-right .habout-info{
        padding-left: 40px;
    }
}
@media(max-width: 1200px){
    .habout-right{
        margin-bottom: 16px;
    }
}
@media(max-width: 991px){
    .habout-right{
        margin-bottom: 24px;
    }
    .habout-main{
        flex-wrap: wrap;
    }
    .habout-item{
        width: 100%;
    }
    .habout-main .habout-item:first-child{
        padding-right: 0px;
        margin-bottom: 24px;
    }
    .habout-main .habout-item:last-child{
        padding-left: 0px;
    }
    .habout-info h3{
        font-size: 30px;
        line-height: 32px;
    }
}
@media(max-width: 599px){
    .habout-info span{
        margin-bottom: 12px;
    }
    .more-about{
        width: 130px;
        line-height: 40px;
    }
    .habout-right .habout-info{
        padding-left: 30px;
    }
    .habout-left .habout-info{
        padding-top: 45px;
    }
}
/* 首页新闻中心 */
.home-news{
    background-color: #f0f0f4;
}
.home-news .container{
    width: 1686px;
    padding: 0 143px;
}
.hnews-item{
    display: flex;
}
.hnews-left{
    padding-right: 45px;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.hnews-right{
    padding-left: 55px;
    width: 50%;
    overflow: hidden;
}
.hnews-right img{
    width: 100%;
    transition: all .5s;
    display: block;
}
.hnews-right:hover img{
    transform: scale(1.1);
}
.hnews-info h2{
    font-size: 36px;
    color: #111;
}
.hnews-info h3{
    font-size: 24px;
    line-height: 300%;
    min-height: 56px;
    margin-bottom: 8px;
    margin-top: 42px;
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.hnews-info p{
    padding-top: 35px;
    border-top: 2px solid #dcdcdc;
    line-height: 30px;
    color: #444;
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.more-news{
    display: block;
    width: 144px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    background-color: #d40000;
}
.hnews-left:hover .hnews-info h3 a{
    color: #d40000;
}
.hnews-main{
    position: relative;
}
.hnews-btn .swiper-button-prev,
.hnews-btn .swiper-button-next{
    width: 43px;
    height: 44px;
    border-radius: 0;
    margin-top: -22px;
    background-size: 43px 44px;
    opacity: 1;
}
.hnews-btn .swiper-button-prev{
    left: 0px;
    background-image: url(../img/hnews_prev.png);
}
.hnews-btn .swiper-button-next{
    right: 0px;
    background-image: url(../img/hnews_next.png);
}
.hnews-btn .swiper-button-prev:hover{
    background-image: url(../img/hnews_prev_on.png);
}
.hnews-btn .swiper-button-next:hover{
    background-image: url(../img/hnews_next_on.png);
}
@media(max-width: 1799px){
    .home-news .container{
        width: 1580px;
        padding: 0 90px;
    }
}
@media(max-width: 1639px){
    .home-news .container{
        width: 1400px;
        padding: 0 80px;
    }
}
@media(max-width: 1400px){
    .home-news .container{
        width: 1200px;
        padding: 0 80px;
    }
    .hnews-info h3{
        margin-top: 20px;
        min-height: 28px;
        margin-bottom: 20px;
    }
    .hnews-info p{
        padding-top: 18px;
    }
}
@media(max-width: 1200px){
    .home-news .container{
        width: 970px;
    }
    .hnews-info h2{
        font-size: 32px;
    }
    .hnews-info h3{
        font-size: 20px;
        min-height: 24px;
        margin-top: 12px;
    }
    .hnews-info p{
        padding-top: 15px;
        line-height: 26px;
    }
    .hnews-left{
        padding-right: 25px;
    }
    .hnews-right{
        padding-left: 30px;
    }
}
@media(max-width: 991px){
    .home-news .container{
        width: 100%;
    }
    .hnews-info h2{
        font-size: 30px;
    }
    .hnews-info h3{
        margin-top: 8px;
    }
    .hnews-info p{
        margin-bottom: 30px;
    }
    .hnews-left{
        padding: 0;
        width: 100%;
    }
    .hnews-right{
        padding: 0;
        width: 100%;
        margin-bottom: 20px;
    }
    .hnews-item{
        flex-direction: column-reverse;
    }
    .hnews-btn .swiper-button-prev,
    .hnews-btn .swiper-button-next{
        width: 38px;
        height: 38px;
        margin-top: -19px;
        background-size: 38px 38px;
    }
    .home-news .container{
        padding: 0 60px;
    }
    .hnews-btn .swiper-button-prev{
        left: 8px;
    }
    .hnews-btn .swiper-button-next{
        right: 8px;
    }
}
@media(max-width: 599px){
    .hnews-info h2{
        font-size: 28px;
    }
    .hnews-info h3{
        font-size: 18px;
        margin-bottom: 12px;
    }
}
.other-module{
    padding-bottom: 100px;
    padding-top: 80px;
}
.other-title{
    text-align: center;
    margin-bottom: 55px;
}
.other-title h2{
    font-size: 36px;
    color: #111;
    margin-bottom: 15px;
    line-height: 38px;
}
.other-title p{
    color: #666;
}
.other-ul{
    display: flex;
}
.other-ul li{
    width: 25%;
    border-right: 2px solid #dcdcdc;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100px;
    justify-content: space-between;
}
.other-ul li:first-child{
    border-left: 2px solid #dcdcdc;
}
.other-ul li span{
    font-size: 24px;
    color: #111;
}
.other-ul li img{
    transition: all .6s;
}
.other-ul li:hover img{
    transform: rotate(45deg);
}
@media(max-width: 1200px){
    .other-module{
        padding-bottom: 80px;
        padding-top: 60px;
    }
}
@media(max-width: 991px){
    .other-module{
        padding-bottom: 40px;
        padding-top: 50px;
    }
    .other-ul{
        flex-wrap: wrap;
    }
    .other-ul li{
        width: 50%;
        margin-bottom: 20px;
    }
    .other-ul li:nth-child(3){
        border-left: 2px solid #dcdcdc;
    }
    .other-ul li span{
        font-size: 20px;
    }
    .other-title h2{
        font-size: 30px;
        margin-bottom: 10px;
    }
    .other-title{
        margin-bottom: 30px;
    }
}
/* 底部 */
#footer{
    background-color: #313131;
    padding-top: 58px;
}
.footer-top{
    display: flex;
    padding-bottom: 45px;
    justify-content: space-between;
}
.footer-ul li{
    float: left;
    margin-right: 118px;
}
.footer-ul li:last-child{
    margin-right: 0px;
}
.footer-ul li > a{
    font-size: 20px;
    color: #fff;
    line-height: 24px;
}
.footer-ul li dl{
    margin-top: 32px;
}
.footer-dl{
    display: flex;
}
.footer-dl dl:first-child{
    margin-right: 38px;
}
.footer-ul li dl dt{
    font-size: 16px;
    color: #808080;
    line-height: 24px;
    margin-bottom: 8px;
    font-weight: normal;
}
.footer-code{
    display: flex;
    width: 22%;
    justify-content: space-between
}
.footer-code .code-item{
    width: 46%;
}
.code-img{
    width: 100%;
    overflow: hidden;
}
.code-img img{
    display: block;
    width: 100%;
}
.code-item p{
    margin-top: 12px;
    text-align: center;
    line-height: 24px;
    color: #a0a0a0;
}
.copy{
    border-top: 1px solid #a0a0a0;
    padding: 28px 0px;
}
.copy p{
    float: left;
    font-size: 16px;
    color: #808080;
    line-height: 24px;
}
.copy ul{
    float: right;
    font-size: 0px;
}
.copy ul li{
    display: inline-block;
    margin-top: 4px;
}
.copy ul li a{
    padding: 0 12px;
    color: #808080;
    line-height: 16px;
    font-size: 16px;
    display: block;
    border-right: 2px solid #777;
}
.copy ul li:last-child a{
    border-right: none;
}
@media(max-width: 1400px){
    .footer-ul li{
        margin-right: 60px;
    }
}
@media(max-width: 1200px){
    .footer-top{
        flex-wrap: wrap;
    }
    .footer-ul{
        width: 100%;
    }
    .footer-code{
        width: 30%;
        margin: 20px auto 0px;
    }
}
@media(max-width: 991px){
    .footer-code{
        width: 30%;
        margin: 20px auto 0px;
    }
    .footer-ul li{
        margin-right: 0px;
        float: none;
        text-align: center;
        margin-bottom: 14px;
    }
    .footer-ul li dl{
        margin-top: 6px;
        width: 100%;
        text-align: center;
    }
    .footer-ul li dl dt{
        display: inline-block;
        margin-bottom: 0px;
    }
    .footer-dl dl:first-child{
        margin-right: 0px;
    }
    .footer-dl{
        flex-direction: column;
    }
    .footer-code{
        margin-top: 10px;
        width: 304px;
    }
    .footer-top{
        padding-bottom: 30px;
    }
    #footer{
        padding-top: 40px;
    }
    .copy{
        padding: 15px 0px;
    }
    .copy p{
        width: 100%;
        float: none;
        text-align: center;
        margin-bottom: 10px;
    }
    .copy ul{
        float: none;
        width: 100%;
        text-align: center;
    }
}
/* 内页导航 */
.inside-nav{
    height: 80px;
    border-bottom: 1px solid #dcdcdc;
}
.mobile-inav{
    display: none;
    height: 50px;
    margin-top: 30px;
    background-color: #d40000;
}
.mobile-inav h2{
    font-size: 24px;
    line-height: 50px;
    color: #fff;
    padding-left: 20px;
    float: left;
}
.inside-ul{
    text-align: center;
    font-size: 0px;
}
.inside-ul li{
    display: inline-block;
    margin-right: 150px;
}
.inside-ul li:last-child{
    margin-right: 0px;
}
.inside-ul li a{
    font-size: 24px;
    color: #111;
    display: block;
    line-height: 78px;
    border-bottom: 2px solid transparent;
    transition: all .3s;
}
.inside-ul li.on a, .inside-ul li:hover a{
    border-bottom-color: #d40000;
    color: #d40000;
}
.about-main{
    padding-top: 80px;
    padding-bottom: 75px;
}
.about-img{
    width: 50%;
    float: right;
    overflow: hidden;
    margin-left: 58px;
}
.about-img img{
    display: block;
    width: 100%;
}
.about-text{
    font-size: 16px;
    color: #444;
    line-height: 32px;
}

.about-text img{
    max-width: 100%;
}
.about-text p:last-child{
    margin-bottom: 0px;
}
@media(max-width: 1400px){
    .inside-ul li{
        margin-right: 100px;
    }
}
@media(max-width: 1200px){
    .inside-ul li a{
        font-size: 20px;
    }
    .about-main{
        padding-top: 60px;
        padding-bottom: 50px;
    }
    .about-img{
        margin-left: 40px;
    }
}
@media(max-width: 991px){
    .inside-nav{
        height: auto;
        border-bottom: none;
    }
    .mobile-inav{
        display: block;
    }
    .inside-ul{
        display: none;
    }
    .inside-ul li{
        display: block;
        margin-right: 0px;
    }
    .inside-ul li a{
        font-size: 18px;
        width: 100%;
        border: 1px solid #dbdbdb;
        border-bottom: none;
        line-height: 48px;
    }
    .inside-ul li:last-child a{
        border-bottom: 1px solid #dbdbdb
    }
    .about-main{
        padding-top: 40px;
    }
    .about-img{
        margin-left: 20px;
    }
}
@media(max-width: 599px){
    .about-text{
        line-height: 28px;
    }
    .about-text p{
        margin-bottom: 12px;
    }
    .about-main{
        padding-top: 30px;
    }
}
/* 新闻 */
.news-title{
    font-size: 36px;
    line-height: 36px;
    padding-top: 78px;
    padding-bottom: 80px;
    text-align: center;
    color: #111;
}
.news-top{
    display: flex;
}
.news-left{
    width: 51.7%;
    background-color: #f0f0f4;
    padding: 78px 50px 0px 40px;
}
.news-img{
    width: 48.3%;
    overflow: hidden;
}
.news-img img{
    display: block;
    width: 100%;
    transition: all .5s;
}
.news-img:hover img{
    transform: scale(1.1);
}
.news-left h3{
    font-size: 24px;
    line-height: 300%;
    padding-bottom: 38px;
    border-bottom: 2px solid #dcdcdc;
    margin-bottom: 32px;
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.news-left:hover h3 a{
    color: #d40000;
}
.news-left p{
    line-height: 30px;
    color: #444;
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.news-more{
    display: block;
    margin-top: 72px;
    width: 144px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    background-color: #d40000;
    color: #fff;
}
.news-ul li{
    background-color: #f0f0f4;
    margin-top: 30px;
    padding-left: 8px;
    padding-top: 32px;
    padding-bottom: 32px;
    transition: all .6s;
}
.news-ul li a{
    display: flex;
}
.news-time{
    width: 156px;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-top: 10px;
    height: 100px;
    border-right: 1px solid #d2d2d2;
}
.news-time strong{
    display: block;
    font-size: 30px;
    color: #222;
    margin-bottom: 10px;
    font-weight: normal;
}
.news-time span{
    font-size: 18px;
}
.news-arrow{
    width: 95px;
    height: 100px;
    background: url(../img/news_arrow.png) no-repeat center;
    border-left: 1px solid #d2d2d2;
    transition: all .6s;
}
.news-info{
    width: calc(100% - 252px);
    padding-left: 30px;
    padding-right: 40px;
}
.news-info h3{
    font-size: 24px;
    line-height: 42px;
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.news-info p{
    color: #666;
    line-height: 30px;
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news-ul li:hover{
    box-shadow:0px 10px 8px -10px #eae9e9;
}
.news-ul li:hover .news-info h3{
    color: #d40000;
}
.news-ul li:hover .news-arrow{
    transform: translateX(5px);
    background-image: url(../img/news_arrow_on.png);
}
.load-more{
    width: 154px;
    display: block;
    height: 44px;
    border: 1px solid #d40000;
    color: #444;
    font-size: 14px;
    text-align: center;
    line-height: 44px;
    margin: 60px auto;
    transition: all .3s;
}
.load-more:hover{
    background-color: #d40000;
    color: #fff;
}
@media(max-width: 1400px){
    .news-left{
        padding-top: 50px;
    }
    .news-left h3{
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
    .news-more{
        margin-top: 60px;
    }
    .news-ul li{
        padding-left: 0px;
    }
}
@media(max-width: 1200px){
    .news-left{
        padding-top: 40px;
        padding-right: 40px;
    }
    .news-left h3{
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    .news-more{
        margin-top: 40px;
    }
    .news-ul li{
        padding-left: 0px;
    }
    .news-time{
        width: 130px;
        padding-left: 0px;
        padding-right: 20px;
    }
    .news-arrow{
        width: 80px;
    }
    .news-info {
        width: calc(100% - 210px);
        padding-right: 30px;
    }
    .news-title{
        padding-top: 60px;
        padding-bottom: 50px;
    }
}
@media(max-width: 991px){
    .news-top{
        flex-direction: column-reverse;
    }
    .news-left{
        width: 100%;
        padding-top: 30px;
        padding-bottom: 40px;
        padding-left: 30px;
        padding-right: 30px;
    }
    .news-img{
        width: 100%;
    }
    .news-title{
        font-size: 30px;
        padding-top: 50px;
        padding-bottom: 30px;
    }
    .news-time{
        width: 80px;
        padding-right: 0px;
        height: 80px;
        align-items: center;
    }
    .news-time strong{
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 5px;
    }
    .news-time span{
        font-size: 16px;
    }
    .news-arrow{
        width: 40px;
        height: 80px;
    }
    .news-info {
        width: calc(100% - 120px);
        padding-right: 15px;
        padding-left: 15px;
    }
    .news-info h3{
        font-size: 20px;
        margin-bottom: 8px;
    }
    .news-info p{
        font-size: 14px;
        line-height: 24px;
    }
    .news-ul li:hover .news-arrow{
        transform: translateX(0px);
    }
    .news-ul li{
        margin-top: 20px;
        padding-top: 25px;
        padding-bottom: 25px;
    }
}
@media(max-width: 599px){
    .news-info h3{
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
    .load-more{
        width: 144px;
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .news-left{
        padding-left: 15px;
        padding-right: 15px;
    }
}
/* 产品 */
.pro-ul{
    display: flex;
    justify-content: space-between;
}
.pro-ul li{
    display: block;
    margin-right: 0px;
}
.pros-main{
    background-color: #f0f0f4;
    padding-top: 80px;
}
.pros-list{
    margin-left: -12px;
    margin-right: -12px;
}
.pros-list li{
    float: left;
    width: 25%;
    padding: 0 12px;
    margin-bottom: 24px;
}
.load-pros{
    margin-top: 25px;
    background-color: #fff;
}
@media(max-width: 1200px){
    .pros-main{
        padding-top:60px;
    }
}
@media(max-width: 991px){
    .pros-main{
        padding-top:50px;
    }
    .pros-list li{
        width: 50%;
    }
    .pro-ul{
        display: none;
    }
    .pros-main{
        margin-top: 30px;
    }
}
@media(max-width: 599px){
    .pros-main{
        padding-top:40px;
    }
    .pros-list li{
        width: 100%;
    }
    .load-pros{
        margin-top: 18px;
    }
}
/* 联系我们 */
.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: #d40000;
    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;
    }
}