@charset "UTF-8";
/**
 * 
 * @authors Your Name (you@example.org)
 * @date    2017-10-18 08:57:34
 * @version $Id$
 */
@font-face{
    font-family: "Mdin";
    src: url('../font/DIN-Medium.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
/* header */
header{
    position: absolute;
    z-index: 10;
    height: 140px;
    top: 0px;
    left: 0px;
    width: 100%;
}
.header-main{
    position: relative;
}
.logo{
    display: block;
    position: absolute;
    width:180px;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
}
.logo img{
    display: block;
    width: 100%;
}
.nav-ul{
    display: flex;
    justify-content: space-between;
    margin-top: 62px;
}
.nav-ul li{
    position: relative;
}
.nav-ul li:nth-child(4){
    margin-right: 260px;
}
.nav-ul li>a{
    display: block;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    transition: all .5s;
    padding-bottom:20px;
}
.nav-ul li:hover>a,
.nav-ul li.nav-active>a{
    color: #fc6127;
    border-bottom: 2px solid #fc6127;
}
.nav-sub{
    position: absolute;
    top:40px;
    left: 0px;
    z-index: 66;
    display: none;
    width: 100%;
    padding-top: 6px;
}
.nav-sub dl dd a{
    display: block;
    line-height: 36px;
    font-size: 16px;
    color: #fff;
    text-align: center;
    transition: all .3s;
    white-space:nowrap;
}
.nav-sub dl dd a:hover{
    color: #fc6127;
   
}

@media(max-width: 1200px){
    .nav-ul{
        margin-top: 46px;
    }
    .logo{
        width: 150px;
    }
}
@media(max-width: 991px){
    .nav{
        display: none;
    }
    header{
        height: 70px;
    }
    .logo{
        position: relative;
        left: auto;
        transform: translateX(0);
        float: left;
        top: auto;
        width: 100px;
        margin-top: 15px;
    }
}
/* 首页产品中心 */
.homepro{
    padding-top: 80px;
    padding-bottom: 80px;
}
.public-title{
    text-align: center;
    margin-bottom: 50px;
}
.public-title h2{
    font-size: 44px;
    line-height: 44px;
    color: #222;
    display: inline-block;
    padding-bottom: 14px;
    border-bottom: 4px solid #222;
}
.hpro-swiper .swiper-wrapper .swiper-slide{
    width:50%;
}
.hpro-swiper .swiper-wrapper .swiper-slide img{
    width: 100%;
}
.hpro-info{
    position: absolute;
    z-index: 6;
    width: 100%;
    left: 0;
    bottom: 50px;
    text-align: center;
    color: #fff;
    font-size: 30px;
}
.hpro-swiper .swiper-wrapper .swiper-slide .hpro-item{
    position: relative;
}
.hpro-more{
    background:#f0f0f4 url(../img/homepro-arrow.png) no-repeat 120px center;
    display:block;
    width: 146px;
    height: 40px;
    color: #222222;
    font-size: 16px;
    border-radius: 50px;
    line-height: 40px;
    text-align: left;
    text-indent: 25px;
    margin:45px auto 0;
    transition: all 0.5s;
}
.hpro-more:hover{
    background:#fc6127 url(../img/homepro-arrowh.png) no-repeat 125px center;
    color: #fff;
}

.hpro-swiper .swiper-wrapper .swiper-slide.swiper-slide-prev .hpro-more{
    display: none !important;
}   
.hpro-swiper .swiper-wrapper .swiper-slide.swiper-slide-prev .hpro-info{
    width: calc(50% - 40px);
    right: 0 !important;
    left: auto;
}
.hpro-swiper .swiper-wrapper .swiper-slide.swiper-slide-next .hpro-more{
    display: none !important;
}   
.hpro-swiper .swiper-wrapper .swiper-slide.swiper-slide-next .hpro-info{
    width: calc(50% - 40px);
}
@media(max-width:1200px){
    .hpro-info{
        font-size: 22px;
    }
    .hpro-more{
        margin: 20px auto 0;
    }
}
@media(max-width:991px){
    .homepro{
        padding-bottom: 50px;
        padding-top: 50px;
    }
}
@media(max-width:768px){
    .hpro-swiper .swiper-wrapper .swiper-slide{
        width: 100%;
    }
}
/* 关于我们 */
.home-about{
    width: 100%;
    overflow: hidden;
    position: relative;
}
.home-about > img{
    display: block;
    width: 100%;
    transition: all .5s;
}
.habout-main{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    display: flex;
}
.habout-cont{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.habout-cont .public-title h2{
    color: #fff;
    border-bottom-color: #fff;
}
.habout-des{
    font-size: 16px;
    color: #fff;
    line-height: 30px;
    text-align: center;
    margin-bottom: 66px;
}
.num-wrap{
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 75px;
}
.num-wrap li{
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
}
.num-wrap li h3{
    font-size: 40px;
    font-family: "Mdin";
    line-height: 40px;
    margin-bottom: 8px;
}
.num-wrap li p{
    line-height: 24px;
}
.public-more{
    width: 148px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}
.habout-more{
    background: #fff;
    margin: 0 auto;
}
.habout-more span{
    color: #222;
}
.habout-more i{
    display: block;
    width: 7px;
    height: 14px;
    margin-left: 10px;
    transition: all .5s;
    background: url(../img/habout_arrow.png) no-repeat center;
}
.habout-more:hover i{
    transform: translateX(5px);
    background: url(../img/habout_arrowh.png) no-repeat center;
}
.habout-more:hover{
    background:#fc6127;
}
.habout-more:hover span{
    color:#fff !important;
}

@media(max-width: 1400px){
    .habout-des{
        margin-bottom: 35px;
    }
    .num-wrap{
        margin-bottom: 45px;
    }
}
@media(max-width: 1200px){
    .habout-cont .public-title{
        margin-bottom: 30px;
    }
    .public-title h2{
        font-size: 34px;
        line-height: 34px;
    }
    .habout-des{
        margin-bottom: 20px;
    }
    .num-wrap{
        margin-bottom: 30px;
    }
}
@media(max-width: 991px){
    .home-about{
        padding: 40px 0px;
        background: #222;
    }
    .home-about >img{
        display: none;
    }
    .habout-main{
        position: relative;
        top: auto;
        left: auto;
    }
    .habout-des{
        margin-bottom: 30px;
    }
    .num-wrap{
        flex-wrap: wrap;
    }
    .num-wrap li{
        width: 50%;
        margin-bottom: 20px;
    }
    .num-wrap li p{
        text-align: center;
    }
    .num-wrap{
        margin-bottom: 20px;
    }
}
@media(max-width: 599px){
    .num-wrap li{
        width: 100%;
    }
}
.five-wrap{
    padding-top: 80px;
    padding-bottom: 80px;
}
.five-list{
    display: flex;
    overflow: hidden;
}
.five-list li{
    flex: 1;
    display: flex;
    flex-direction: column;
}
.five-item{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.five-img{
    width: 100%;
    overflow: hidden;
    position: relative;
}
.five-img img{
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    width: 100%;
    display: block;
    filter: gray;
}
.five-info{
    position: absolute;
    padding: 0px 30px 25px;
    color: #fff;
    bottom: 0px;
    left: 0px;
}
.five-info span{
    font-family: "Mdin";
    font-size: 30px;
    line-height: 30px;
    opacity: .4;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.five-info h3{
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 18px;
}
.five-info p{
    line-height: 24px;
    font-size: 18px;
    /* display: none; */
    height: 0px;
    overflow: hidden;
    transition: all .5s;
}
.five-img:hover img{
    -webkit-filter: grayscale(0);
    -moz-filter: grayscale(0);
    -ms-filter: grayscale(0);
    -o-filter: grayscale(0);
    filter: grayscale(0);
}
.five-img:hover .five-info p{
    height: 24px;
}
@media(max-width: 1600px){
    .five-img:hover .five-info p{
        height: 48px;
    }
}
@media(max-width: 1200px){
    .five-info p{
        font-size: 16px;
    }
    .five-info{
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 12px;
    }
    .five-wrap{
        padding-top: 50px;
        padding-bottom: 50px;
    }
}
@media(max-width: 991px){
    .five-list{
        flex-wrap: wrap;
    }
    .five-list li{
        flex: none;
        width: 100%;
    }
    .five-img img{
        -webkit-filter: grayscale(0);
        -moz-filter: grayscale(0);
        -ms-filter: grayscale(0);
        -o-filter: grayscale(0);
        filter: grayscale(0);
    }
    .public-title{
        margin-bottom: 30px;
    }
}
@media(max-width: 449px){
    .five-info p{
        height: auto;
    }
}
.teweida{
    width: 100%;
    overflow: hidden;
    position: relative;
}
.teweida > img{
    display: block;
    width: 100%;
    transition: all .5s;
    filter: grayscale(100%);
}
.teweida-main{
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    top: 0px;
    left: 0px;
    transition: all .5s;
    background-color: rgba(0, 0, 0, .6);
}
.teweida-cont{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.page-logo{
    width: 177px;
    display: block;
    margin-bottom: 30px;
}
.teweida-title h2{
    color: #fff;
    border-bottom-color: #fff;
}
.teweida-info{
    color: #fff;
    line-height: 24px;
    font-size: 24px;
    text-align: center;
    margin-bottom: 80px;
}
.full-screen{
    display: flex;
    height: 40px;
    background: #fff;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    width: 300px;
}
.full-screen span{
    font-size: 16px;
    color: #222;
}
.full-screen i{
    display: block;
    width: 38px;
    height: 30px;
    background: url(../img/all_screen_icon.png) no-repeat center;
    margin-left: 10px;
}
.teweida:hover>img{
    transform: scale(1.1);
    filter: grayscale(0);
}
.full-screen:hover{
    background: #fc6127;
}
.full-screen:hover span{
    color: #fff;
}
.full-screen:hover i{
    background-image: url(../img/all_screen_icon_on.png);
}
@media(max-width: 1200px){
    .teweida-info{
        margin-bottom: 50px;
    }
}
@media(max-width: 991px){
    .teweida-info{
        margin-bottom: 30px;
        font-size: 18px;
    }
    .teweida-title{
        margin-bottom: 20px;
    }
}
@media(max-width:767px){
    .teweida-main{
        position: relative;
        top: auto;
        left: auto;
        background-color: rgba(0, 0, 0, .8);
        padding: 40px 0px;
    }
    .teweida-info{
        margin-bottom: 30px;
        font-size: 18px;
    }
    .teweida:hover>img{
        transform: scale(1);
    }
    .teweida>img{
        filter: grayscale(0);
    }
}
/* 新闻中心 */
.hnews-wrap{
    overflow: hidden;
    background: #f0f0f4;
}
.hnews-main{
    display: flex;
}
.hnews-list{
    display: flex;
    width: 50%;
    padding-right: 40px;
    flex-direction: column;
    justify-content: space-between;
}
.hnews-list li{
    border: 1px solid #e7e7e7;
    background: #fff;
    display: flex;
    transition: all .5s;
    padding-top: 27px;
    padding-bottom: 27px;
    padding-left: 10px;
}
.hnews-time{
    width: 146px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-right: 1px solid #e5e5e5;
}
.hnews-time strong{
    font-weight: normal;
    font-size: 52px;
    color: #111;
    line-height: 52px;
    margin-bottom: 14px;
}
.hnews-time span{
    font-size: 16px;
    line-height: 24px;
    color: #444;
}
.hnews-info{
    width: calc(100% - 146px);
    padding-left: 45px;
    padding-right: 45px;
}
.hnews-info h3{
    margin-bottom: 18px;
}
.hnews-info h3>a{
    font-size: 18px;
    line-height: 18px;
    font-weight: bold;
    color: #222;
}
.hnews-info p{
    line-height: 30px;
    font-size: 16px;
    color: #444;
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient: vertical;
}
.hnews-list li:hover,
.hnews-list li.on{
    border-color: #1b1b1b;
    background: #1b1b1b;
}
.hnews-list li:hover .hnews-time,
.hnews-list li.on .hnews-time{
    border-right-color: #fff;
}
.hnews-list li:hover .hnews-time strong,
.hnews-list li.on .hnews-time strong{
    color: #fff;
}
.hnews-list li:hover .hnews-time span,
.hnews-list li.on .hnews-time span{
    color: #fff;
}
.hnews-list li:hover .hnews-info h3>a,
.hnews-list li.on .hnews-info h3>a{
    color: #fff;
}
.hnews-list li:hover .hnews-info p,
.hnews-list li.on .hnews-info p{
    color: #fff;
}
.hnews-right{
    width: 50%;
}
.hnews-img{
    width: 100%;
    overflow: hidden;
    position: relative;
}
.hnews-img img{
    display: block;
    width: 100%;
    transition: all .5s;
}
.hnews-swiper .swiper-button-next,
.hnews-swiper .swiper-button-prev{
    width: 18px;
    height: 34px;
    background-size: 18px 34px;
    margin-top: -17px;
    opacity: 1;
}
.hnews-swiper .swiper-button-prev{
    left: 50px;
    background-image: url(../img/hnews_prev.png);
}
.hnews-swiper .swiper-button-next{
    right: 50px;
    background-image: url(../img/hnews_next.png);
}
.hnews-swiper .swiper-button-prev:hover{
    background-image: url(../img/hnews_prev_on.png);
}
.hnews-swiper .swiper-button-next:hover{
    background-image: url(../img/hnews_next_on.png);
}
.hnews-des{
    width: 100%;
    position: absolute;
    left: 0px;
    height: 134px;
    bottom: 0px;
    background: url(../img/hnews_bg.png) no-repeat center;
    background-size: 100% 100%;
    padding-left: 50px;
    padding-right: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    padding-bottom: 28px;
}
.hnews-des p{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 24px;
    margin-top: 15px;
}
@media(max-width: 1600px){
    .hnews-time{
        width: 116px;
    }
    .hnews-info{
        width: calc(100% - 116px);
        padding-left: 35px;
        padding-right: 35px;
    }
    .hnews-list li{
        padding-top: 18px;
        padding-bottom: 18px;
    }
}
@media(max-width: 1400px){
    .hnews-time{
        width: 96px;
    }
    .hnews-info{
        width: calc(100% - 96px);
    }
    .hnews-list{
        padding-right: 35px;
    }
    .hnews-list li{
        padding-left: 0px;
    }
    .hnews-info h3{
        margin-bottom: 10px;
    }
}
@media(max-width: 1200px){
    .hnews-time{
        width: 86px;
    }
    .hnews-time strong{
        font-size: 48px;
        line-height: 48px;
        margin-bottom: 0px;
    }
    .hnews-info{
        width: calc(100% - 86px);
        padding-left: 25px;
        padding-right: 25px;
    }
    .hnews-list li{
        padding-top: 14px;
        padding-bottom: 14px;
    }
    .hnews-info h3{
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
    .hnews-info p{
        line-height: 22px;
        font-size: 14px;
    }
    .hnews-des{
        padding-left: 30px;
    }
    .hnews-des p{
        font-size: 20px;
        margin-top: 8px;
    }
}
@media(max-width: 991px){
    .hnews-main{
        flex-wrap: wrap;
    }
    .hnews-list{
        width: 100%;
        padding-right: 0px;
    }
    .hnews-list li{
        margin-bottom: 20px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .hnews-info h3{
        line-height: 24px;
        margin-bottom: 6px;
    }
    .hnews-right{
        width: 100%;
    }
    .hnews-swiper .swiper-button-prev{
        left: 30px;
    }
    .hnews-swiper .swiper-button-next{
        right: 30px;
    }
}
@media(max-width: 449px){
    .hnews-time{
        width: 80px;
    }
    .hnews-time strong{
        font-size: 42px;
        line-height: 42px;
    }
    .hnews-info{
        width: calc(100% - 80px);
        padding-left: 15px;
        padding-right: 15px;
    }
    .hnews-swiper .swiper-button-prev{
        left: 15px;
    }
    .hnews-swiper .swiper-button-next{
        right: 15px;
    }
    .hnews-des{
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 15px;
    }
    .hnews-des p{
        font-size: 20px;
        margin-top: 4px;
    }
}
/* 底部 */
#footer{
    background: #1b1b1b;
    padding-top: 50px;
    overflow: hidden;
}
.footer-top{
    padding-bottom: 22px;
}
.footer-list{
    display: flex;
    justify-content: space-between;
}
.footer-ltop{
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.footer-ltop h2{
    font-size: 16px;
    color: #fff;
    margin-left: 10px;
}
.footer-lphone{
    font-size: 30px;
    line-height: 30px;
    color: #fff;
    font-family: "Mdin";
    margin-bottom: 8px;
}
.footer-contact p{
    line-height: 30px;
    font-size: 14px;
    color: #808080;
}
.footer-list li h3{
    margin-bottom: 18px;
}
.footer-list li h3>a{
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
}
.footer-list li dl dd{
    font-size: 14px;
    line-height: 30px;
    color: #808080;
}
.footer-list li:last-child{
    display: flex;
}
.code-item{
    margin-right: 30px;
    width: 122px;
    text-align: center;
}
.code-item:last-child{
    margin-right: 0px;
}
.code-img{
    width: 100%;
    overflow: hidden;
}
.code-img img{
    display: block;
    width: 100%;
}
.code-item p{
    font-size: 14px;
    line-height: 18px;
    margin-top: 10px;
    text-align: center;
    color: #808080;
}
.footer-copy{
    border-top: 1px solid #808080;
    padding-top: 38px;
    padding-bottom: 38px;
    display: flex;
    justify-content: space-between;
}
.footer-copy p{
    font-size: 16px;
    color: #808080;
    line-height: 24px;
}
.footer-link{
    display: flex;
    align-items: center;
    height: 24px;
    color: #808080;
}
.footer-link a{
    color: #808080;
    display: block;
    margin-right: 20px;
}
.footer-link a:last-child{
    margin-right: 0px;
}
@media(max-width: 1400px){
    .code-item{
        margin-right: 20px;
    }
}
@media(max-width: 1200px){
    .code-item{
        margin-right: 10px;
        width: 94px;
    }
    .footer-link a{
        margin-right: 10px;
    }
}
@media(max-width: 991px){
    .footer-list{
        flex-wrap: wrap;
    }
    .footer-list li{
        width: 100%;
        margin-bottom: 8px;
    }
    .footer-ltop{
        justify-content: center;
    }
    .footer-lphone{
        text-align: center;
    }
    .footer-contact{
        text-align: center;
    }
    .footer-contact p{
        line-height: 22px;
    }
    .footer-list li h3{
        text-align: center;
        margin-bottom: 5px;
    }
    .footer-list li dl{
        text-align: center;
    }
    .footer-list li dl dd{
        display: inline-block;
        margin: 0 2px;
        line-height: 20px;
    }
    .footer-list li:last-child{
        justify-content: center;
    }
    .footer-copy{
        flex-direction: column;
        align-items: center;
        padding: 15px 0px;
    }
    .footer-copy p{
        text-align: center;
    }
    .footer-link{
        justify-content: center;
        margin-top: 8px;
    }
}
@media(max-width: 449px){
    #footer{
        padding-top: 40px;
    }
    .footer-top{
        padding-bottom: 15px;
    }
}
/* 内页关于我们 */
.inside-nav{
    background: #fff;
    border-bottom: 2px solid #c9c9c9;
    height: 82px;
}
.inav-ul{
    display: flex;
    justify-content: space-between;
}
.inav-ul li{
    flex: 1;
}
.inav-ul li a{
    display: block;
    width: 100%;
    line-height: 80px;
    border-bottom: 2px solid transparent;
    text-align: center;
    color: #000;
    font-size: 18px;
    position: relative;
}
.inav-ul li a::after{
    position: absolute;
    content: "";
    width: 2px;
    height: 17px;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    background: #a0a0a0;
}
.inav-ul li a::before{
    position: absolute;
    content: "";
    width: 2px;
    height: 17px;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    background: #a0a0a0;
    display: none;
}
.inav-ul li:first-child a::before{
    display: block;
}
.inav-ul li:hover a,
.inav-ul li.on a{
    border-bottom-color: #ea511a;
    color: #ea511a;
}
.inside-wrap{
    padding-top: 80px;
    padding-bottom: 80px;
}
.about-wrap{
    background: #f0f0f4;
}
.about-des p{
    text-indent: 32px;
    line-height: 30px;
    font-size: 16px;
    color: #444;
    margin-bottom: 15px;
}
.about-des p:last-child{
    margin-bottom: 0px;
}
.about-des .about-indent{
    text-indent: 64px;
}
@media(max-width: 991px){
    .inside-wrap{
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .inside-nav{
        border-bottom: none;
        height: auto;
    }
    .about-ul{
        flex-wrap: wrap;
    }
    .about-ul li{
        flex: none;
        width: 33.3333%;
    }
    .inav-ul li:nth-child(5) a::before{
        display: block;
    }
    .inav-ul li:nth-child(4) a::before{
        display: block;
    }
    .inav-ul li a{
        line-height: 64px;
    }
}
@media(max-width: 449px){
    .inav-ul li a{
        line-height: 48px;
    }
    .about-des p{
        line-height: 28px;
    }
}
/* 品牌故事 */
.brand-story{
    width: 100%;
    overflow: hidden;
    position: relative;
}
.brand-story img{
    display: block;
    width: 100%;
    transition: all .5s;
}
.brand-story:hover img{
    transform: scale(1.1);
}
.brand-storymain{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    display: flex;
}
.brand-storymain .container{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.story-info{
    background: #fff;
    padding: 75px 60px;
    width: 54.3%;
}
.story-info .public-title{
    text-align: left;
    margin-bottom: 40px;
}
.story-des{
    font-size: 16px;
    line-height: 36px;
    color: #444;
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp:6;
    -webkit-box-orient: vertical;
}
@media(max-width: 1600px){
    .story-des{
        line-height: 30px;
    }
    .story-info{
        padding-top: 60px;
        padding-bottom: 60px;
    }
}
@media(max-width: 1400px){
    .story-des{
        line-height: 30px;
    }
    .story-info{
        padding: 40px;
    }
    .story-info .public-title{
        margin-bottom: 30px;
    }
    .story-info .public-title h2{
        font-size: 34px;
        line-height: 34px;
    }
}
@media(max-width: 1200px){
    .story-des{
        line-height: 28px;
    }
}
@media(max-width: 991px){
    .story-des{
        color: #fff;
        -webkit-line-clamp:68;
    }
    .brand-storymain{
        position: relative;
        top: auto;
        left: auto;
        background: #ea511a;
    }
    .brand-storymain .container{
        justify-content: flex-start;
    }
    .story-info{
        background: #ea511a;
        width: 100%;
    }
    .brand-story:hover img{
        transform: scale(1);
    }
    .story-info .public-title h2{
        color: #fff;
        border-bottom-color: #fff;
    }
}
@media(max-width: 767px){
    .story-info{
        padding-left: 10px;
        padding-right: 10px;
    }
}
.about-culture{
    display: flex;
    margin-bottom: 80px;
}
.about-culture:last-child{
    margin-bottom: 0px;
    flex-direction: row-reverse;
}
.about-left{
    width: 57%;
}
.about-img{
    width: 100%;
    overflow: hidden;
}
.about-img img{
    display: block;
    width: 100%;
    transition: all .5s;
}
.about-right{
    width: 43%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.about-right .public-title{
    text-align: left;
    margin-bottom: 40px;
}
.about-right p{
    line-height: 36px;
    color: #444;
    font-size: 16px;
}
.about-img:hover img{
    transform: scale(1.1);
}
@media(max-width: 1200px){
    .about-right p{
        line-height: 30px;
    }
    .about-right .public-title{
        margin-bottom: 30px;
    }
    .about-culture{
        margin-bottom: 50px;
    }
}
@media(max-width:991px){
    .about-culture{
        margin-bottom: 30px;
        flex-wrap: wrap;
    }
    .about-left{
        width: 100%;
    }
    .about-right{
        width: 100%;
        padding: 40px 20px;
    }
}
/* 新闻 */
.news-list li{
    margin-bottom: 40px;
    padding: 20px;
    background: #fff;
    display: flex;
}
.news-img{
    width: 394px;
    overflow: hidden;
}
.news-img img{
    display: block;
    width: 100%;
    transition: all .5s;
}
.news-info{
    width: calc(100% - 394px);
    padding-left: 38px;
    padding-right: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.news-info h3{
    margin-bottom: 20px;
}
.news-info h3>a{
    color: #222;
    font-size: 24px;
    line-height: 24px;
}
.news-time{
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.news-time span{
    color: #999;
    padding-left: 5px;
}
.news-des{
    line-height: 30px;
    color: #444;
    font-size: 16px;
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient: vertical;
    margin-bottom: 22px;
}
.news-more{
    display: block;
    width: 120px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background: transparent;
    border: 1px solid #999999;
    color: #999999;
    border-radius: 18px;
    transition: all .5s;
}
.news-list li:hover .news-img img{
    transform: scale(1.1);
}
.news-list li:hover .news-info h3>a{
    color: #fc6127;
}
.news-list li:hover .news-more{
    color: #fff;
    background: #222;
    border-color: #222;
}
.click-more{
    width: 200px;
    height: 40px;
    line-height: 40px;
    border-radius: 20px;
    text-align: center;
    background: #222;
    color: #fff;
    display: block;
    margin: 0 auto;
}
.news-click{
    margin-top: 70px;
}
@media(max-width: 991px){
    .news-list li{
        margin-bottom: 30px;
        padding: 0px;
        background: transparent;
        flex-direction: column;
        align-items: center;
    }
    .news-img{
        width: 100%;
    }
    .news-info{
        padding: 30px;
        width: 100%;
        background: #fff;
    }
    .news-click{
        margin-top: 50px;
    }
}
@media(max-width: 449px){
    .news-info h3 > a{
        line-height: 30px;
    }
    .news-info h3{
        margin-bottom: 10px;
    }
    .news-time{
        margin-bottom: 10px;
    }
}
/* 产品 */
.pros-list{
    margin-left: -40px;
    margin-right: -40px;
}
.pros-list li{
    float: left;
    width: 50%;
    padding: 0 40px;
}
.pros-item{
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 80px;
}
.pros-img{
    width: 100%;
    position: relative;
    overflow: hidden;
}
.pros-img img{
    display: block;
    width: 100%;
    transition: all .5s;
}
.pros-info{
    position: absolute;
    width: 330px;
    height: 275px;
    background: url(../img/pro_bg.png) no-repeat center;
    background-size: 100% 100%;
    padding-left: 50px;
    padding-bottom: 50px;
    color: #fff;
    font-size: 30px;
    bottom: 0px;
    left: 0px;
    display: flex;
    transition: all .5s;
    align-items: flex-end;
}
.pros-des{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 100%;
    left: 0px;
    background: rgba(0, 0, 0, .5);
    padding: 30px;
    display: flex;
    transition: all .5s;
}
.pros-txt{
    width: 100%;
    border: 10px solid #fc6127;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.pros-txt p{
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 38px;
    color: #fff;
}
.pros-item:hover .pros-img img{
    transform: scale(1.1);
}
.pros-item:hover .pros-info{
    opacity: 0;
}
.pros-item:hover .pros-des{
    top: 0px;
}
@media(max-width: 1200px){
    .pros-list{
        margin-left: -20px;
        margin-right: -20px;
    }
    .pros-list li{
        padding: 0 20px;
    }
    .pros-item{
        margin-bottom: 50px;
    }
}
@media(max-width: 991px){
    .pros-list{
        margin-left: 0px;
        margin-right: 0px;
    }
    .pros-list li{
        padding: 0px;
        width: 100%;
        float: none;
    }
    .pros-item{
        margin-bottom: 30px;
    }
    .pros-list li:last-child .pros-item{
        margin-bottom: 0px;
    }
    .pros-click{
        margin-top: 50px;
    }
}
@media(max-width: 599px){
    .pros-info{
        padding-left: 25px;
        padding-bottom: 25px;
        font-size: 24px;
        width: 200px;
        height: 167px;
    }
}
/* 联系我们 */
.contact-main{
    padding-bottom: 60px;
}
.contact-cont{
    overflow: hidden;
}
.contact-info{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f7f7f7;
    justify-content: center;
}
.contact-info dl dt{
    font-size: 24px;
    color: #000;
    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;
    }
}
.news-title{
    text-align: center;
    margin-bottom: 50px;
}
.news-title h2{
    font-size: 36px;
    line-height: 44px;
    color: #222;
    display: inline-block;
    padding-bottom: 14px;
}