@charset "UTF-8";

/**
 * 
 * @authors Your Name (you@example.org)
 * @date    2017-10-18 08:57:34
 * @version $Id$
 */
/* 头部 */
header {
    width: 100%;
    z-index: 10;
    position: relative;
}
.header {
    height: 100px;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    overflow: hidden;
    z-index: 22;
}
.logo {
    width: 259px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.logo img {
    display: block;
    width: 100%;
}
.nav li {
    float: left;
    position: relative;
    margin-right: 65px;
}
.nav li:nth-child(3){
    margin-right: 390px;
}
.nav li:last-child {
    margin-right: 0px;
}
.nav li>a {
    display: block;
    padding: 0 25px;
    line-height: 44px;
    color: #fff;
    font-size: 16px;
    margin-top: 28px;
    -moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.nav li.active>a,
.nav li>a:hover {
    background-color: #fff;
    color: #ab6f32;
    border-radius: 5px;
}
@media(max-width: 1400px){
    .nav li {
        margin-right: 46px;
    }
    .nav li:nth-child(3){
        margin-right: 340px;
    }
    .nav li>a {
        padding: 0 20px;
    }
}
@media(max-width: 1199px) {
    .nav li {
        margin-right: 30px;
    }
    .nav li:nth-child(3){
        margin-right: 304px;
    }
    .nav li>a {
        padding: 0 15px;
        font-size: 14px;
        line-height: 40px;
        margin-top: 22px;
    }
    .header{
        height: 88px;
    }
    .logo{
        width: 220px;
    }
}
@media(max-width: 991px) {
    .nav {
        display: none;
    }
    .logo {
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
    }
    header> .container{
        width: 100%;
    }
    .header {
        height: 70px;
    }
}
@media(max-width: 599px) {
    .logo {
        width: 170px;
        left: 10px;
    }
    .header {
        height: 50px;
    }
}
/* 公司简介 */
.home-about{
    padding: 80px 0px;
    background: #eeeeee;
    overflow: hidden;
}
.hpublic-main{
    overflow: hidden;
}
.habout-img{
    float: right;
    width: 50%;
    overflow: hidden;
    position: relative;
}
.habout-img img{
    display: block;
    width: 100%;
}
.habout-bofang{
    width: 60px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: url(../img/bofang_icon.png) no-repeat center;
}
.habout-info{
    float: left;
    width: 50%;
    padding-top: 70px;
    padding-right: 70px;
}
.habout-info h2{
    line-height: 36px;
    font-size: 36px;
    color: #ab6f32;
    font-family: "Arial";
    text-transform: uppercase;
    margin-bottom: 20px;
}
.habout-info h4{
    font-size: 30px;
    color: #000;
    line-height: 30px;
    margin-bottom: 50px;
}
.habout-ms{
    font-size: 16px;
    color: #333;
    line-height: 30px;
    margin-bottom: 80px;
}
/* .habout-ms p{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
} */
.look-more{
    display: block;
    width: 160px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    text-align: center;
    background: #ab6f32;
}
@media(max-width: 1400px){
    .habout-info{
        padding-top: 50px;
        padding-right: 50px;
    }
}
@media(max-width: 1200px){
    .home-about{
        padding: 60px 0px;
    }
    .habout-info{
        padding-top: 30px;
        padding-right: 30px;
    }
    .habout-info h4{
        margin-bottom: 30px;
    }
    .habout-ms{
        margin-bottom: 40px;
    }
}
@media(max-width: 991px){
    .habout-img{
        width: 100%;
        float: none;
    }
    .habout-info{
        width: 100%;
        float: none;
        padding-right: 0px;
    }
    
    .home-about{
        padding: 30px 0px;
    }
    .habout-info h4{
        margin-bottom: 20px;
        font-size: 28px;
    }
    .habout-ms{
        margin-bottom: 30px;
    }
    .habout-info h2{
        margin-bottom: 15px;
    }
}
/* 新款产品 */
.public-title{
    text-align: center;
    padding-top: 70px;
    padding-bottom: 60px;
}
.public-title h2{
    line-height: 36px;
    font-size: 36px;
    color: #ab6f32;
    font-family: "Arial";
    text-transform: uppercase;
    margin-bottom: 20px;
}
.public-title span{
    font-size: 30px;
    color: #000;
    line-height: 30px;
}
.new-pro-item{
    max-width: 480px;
    position: relative;
    overflow: hidden;
}
.new-pro-item img{
    display: block;
    width: 100%;
    -moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.new-pro-info{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    z-index: 22;
}
.new-pro-info h5{
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 15px;
}
.new-pro-mask{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 100%;
    left: 0px;
    z-index: 11;
    background: rgba(171, 111, 50, .7);
    -moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.new-pro-mask i{
    display: block;
    width: 160px;
    height: 40px;
    line-height: 40px;
    position: absolute;
    bottom: 78px;
    left: 50%;
    margin-left: -80px;
    text-align: center;
    background: #fff;
    color: #ab6f32;
    font-style: normal;
}
.new-pro-item:hover .new-pro-mask{
    top: 0px;
}
.new-pro-item:hover img{
    -moz-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}
.swiper-btn .swiper-button-next, .swiper-btn .swiper-button-prev{
    width: 40px;
    height: 80px;
    margin-top: -40px;
    border-radius: 5px;
    z-index: 33;
}
.swiper-btn .swiper-button-next{
    right: 50px;
    background: #000 url(../img/arrow_next.png) no-repeat center;
}
.swiper-btn .swiper-button-prev{
    left: 50px;
    background: #000 url(../img/arrow_prev.png) no-repeat center;
}
.swiper-btn .swiper-button-next:hover, .swiper-btn .swiper-button-prev:hover{
    background-color: #ab6f32;
}
@media(max-width: 1200px){
    .public-title{
        padding-top: 40px;
        padding-bottom: 30px;
    }
}
@media(max-width: 991px){
    .public-title{
        padding-top: 30px;
        padding-bottom: 20px;
    }
    .public-title h2{
        margin-bottom: 12px;
    }
    .swiper-btn .swiper-button-next{
        right: 30px;
    }
    .swiper-btn .swiper-button-prev{
        left: 30px;
    }
    .new-pro-item{
        margin: 0 auto;
    }
}
/* 加盟支持 */
.jiameng{
    padding-bottom: 80px;
    background-color: #eeeeee;
}
.jm-item{
    margin-bottom: 35px;
    max-width: 350px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.jm-img{
    width: 98px;
    height: 98px;
    border: 2px solid #ab6f32;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.jm-img img{
    -moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.jm-item p{
    width: 98px;
    text-align: center;
    line-height: 44px;
    color: #ab6f32;
}
.jm-item:hover .jm-img img{
    transform: rotateY(180deg);
    -webkit-transform:rotateY(180deg);
}
.zhaoshang{
    text-align: center;
    margin-top: 20px;
}
.zhaoshang p{
    font-size: 30px;
    color: #ab6f32;
}
.zs-phone{
    width: 300px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 25px;
    color: #fff;
    background: #ab6f32;
    margin: 30px auto 0;
    font-size: 24px;
}
@media(max-width: 1200px){
    .jiameng{
        padding-bottom: 60px;
    }
}
@media(max-width: 991px){
    .jiameng{
        padding-bottom: 30px;
    }
}
@media(max-width: 767px){
    .jm-item{
        margin: 0 auto;
    }
}
/* 新闻 */
.home-news{
    padding-bottom: 80px;
}
.hnews-item{
    max-width: 456px;
    overflow: hidden;
}
.hnews-info h2{
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 10px;
    color: #222;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.hnews-info span{
    font-size: 14px;
    color: #999;
    line-height: 24px;
}
.hnews-ms{
    font-size: 16px;
    line-height: 28px;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 30px;
}
.hnews-item img{
    display: block;
    width: 100%;
}
.hnews-item:hover .hnews-info h2{
    color: #ab6f32;
}
@media(max-width: 1200px){
    .home-news{
        padding-bottom: 60px;
    }
}
@media(max-width: 991px){
    .home-news{
        padding-bottom: 30px;
    }
    .hnews-ms{
        margin-bottom: 20px;
    }
}
@media(max-width: 767px){
    .hnews-item{
        margin: 0 auto 15px;
    }
}
/* 底部 */
#footer{
    background: #534e8c;
    overflow: hidden;
    padding-top: 35px;
}
.footer-code{
    float: left;
    width: 30%;
    padding-top: 15px;
}
.code-main{
    width: 40%;
    float: left;
    overflow: hidden;
    text-align: center;
}
.code-main img{
    display: block;
    width: 100%;
}
.code-main p{
    line-height: 44px;
    color: #fff;
    font-size: 14px;
}
.code-right{
    width: 54%;
    float: right;
    padding-top: 20px;
}
.footer-logo{
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
}
.footer-logo img{
    display: block;
    width: 100%;
}
.share .bdsharebuttonbox a{
    margin: 0px 23px 0px 0px;
}
.share .bdshare-button-style1-32 a{
    display: block;
    width: 36px;
    height: 36px;
    border: 1px solid #999;
    border-radius: 50%;
}
.share .bds_tsina{
    background: url('../img/footer_share3.png') no-repeat center;
}
.bdshare-button-style1-32 .bds_tsina{
    background-position: 0px !important;
    background-position-y: center !important;
    background-position-x: center !important;
}
.share .bds_weixin{
    background: url('../img/footer_share1.png') no-repeat center;
}
.bdshare-button-style1-32 .bds_weixin{
    background-position: 0px !important;
    background-position-y: center !important;
    background-position-x: center !important;
}
.share .bds_sqq{
    background: url('../img/footer_share2.png') no-repeat center;
}
.bdshare-button-style1-32 .bds_sqq{
    background-position: 0px !important;
    background-position-y: center !important;
    background-position-x: center !important;
}
.footer-right{
    float: right;
    width: 63%;
}
.footer-ul li{
    float: left;
    margin-right: 120px;
}
.footer-ul li:last-child{
    margin-right: 0px;
}
.footer-ul li h4{
    font-size: 16px;
    line-height: 44px;
    position: relative;
    color: #fff;
    margin-bottom: 12px;
}
.footer-ul li h4::after{
    position: absolute;
    content: "";
    display: block;
    width: 16px;
    height: 1px;
    bottom: 0px;
    left: 0px;
    background: #ab6f32;
}
.footer-ul li dl dd{
    line-height: 32px;
    color: #fff;
    font-size: 14px;
}
.footer-top{
    padding-bottom: 25px;
}
.footer-bom{
    border-top: 1px solid #d2d2d2;
    line-height: 30px;
    padding: 15px 0px;
    color: #fff;
}
.footer-bom span:first-child{
    float: left;
}
.footer-bom span:last-child{
    float: right;
}
@media(max-width: 1400px){
    .footer-ul li{
        margin-right: 78px;
    }
}

@media(max-width: 1200px){
    .footer-right{
        width: 65%;
    }
    .footer-ul li{
        margin-right: 78px;
    }
    .share .bdsharebuttonbox a{
        margin-right: 10px;
    }
    .footer-ul li{
        margin-right: 38px;
    }
}
@media(max-width: 991px){
    .footer-right{
        width: 100%;
        float: none;
    }
    .footer-code{
        width: 100%;
        float: none;
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
    .footer-ul li{
        float: none;
        width: 100%;
        text-align: center;
        margin-right: 0px;
    }
    .footer-ul li dl dd{
        display: inline-block;
    }
    .footer-ul li h4{
        line-height: 24px;
        padding-bottom: 10px;
        margin-bottom: 5px;
    }
    .footer-ul li h4::after{
        left: 50%;
        margin-left: -8px;
    }
    .code-main{
        max-width: 160px;
        float: none;
        width: auto;
        margin-right: 25px;
    }
    .code-right{
        float: none;
        width: auto;
    }
    .footer-top{
        padding-bottom: 5px;
    }
}
@media(max-width: 767px){
    .footer-bom span:first-child{
        float: none;
    }
    .footer-bom span:last-child{
        float: none;
    }
    .footer-bom{
        text-align: center;
    }
    #footer{
        padding-top: 20px;
    }
}
@media(max-width: 499px){
    .footer-bom{
        padding: 8px 0px;
    }
}
/* 关于我们 */
.weizhi{
    border-bottom: 1px solid #dcdcdc;
}
.weizhi-left{
    float: left;
    background: url(../img/weizhi_icon.png) no-repeat left center;
    line-height: 59px;
    padding-left: 25px;
    color: #999;
    position: relative;
    font-size: 14px;
}
.weizhi-left a{
    color: #999;
    font-size: 14px;
}
.weizhi-left a:hover{
    color: #ab6f32;
}
.weizhi-ul{
    float: right;
}
.weizhi-ul li{
    float: left;
}
.weizhi-ul li a{
    display: block;
    padding: 0 40px;
    line-height: 59px;
    border-right: 1px solid #dcdcdc;
}
.weizhi-ul li:first-child a{
    border-left: 1px solid #dcdcdc;
}
.weizhi-ul li.wz-on a, .weizhi-ul li:hover a{
    background: #ab6f32;
    color: #fff;
}
.inside-title{
    padding-top: 80px;
    padding-bottom: 50px;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.inside-title h2{
    font-size: 42px;
    line-height: 42px;
    font-weight: bold;
    color: #000;
    padding: 0 40px;
}
.inside-title i{
    display: block;
    width: 60px;
    height: 2px;
    background: #ab6f32;
}
.brand-item{
    padding-top: 50px;
    float: left;
    width: 50%;
}
.brand-txt p{
    color: #666;
    line-height: 30px;
    margin-bottom: 15px;
    text-indent: 24px;
}
.brand-img-one{
    float: right;
    padding-left: 30px;
    overflow: hidden;
    width: 50%;
}
.brand-img{
    width: 50%;
}
.brand-txt-two{
    padding-left: 170px;
    padding-top: 50px;
}
.brand-txt-two p{
    color: #666;
    line-height: 30px;
    margin-bottom: 15px;
    text-indent: 24px;
}
.brand-img img{
    display: block;
    width: 100%;
}
.brand-img-two{
    float: left;
    overflow: hidden;
}
.brand-list{
    margin-bottom: 30px;
    overflow: hidden;
}
.brand-list:last-child{
    margin-bottom: 0px;
}
.inside-main{
    padding-bottom: 60px;
}
@media(max-width: 1400px){
    .brand-item{
        padding-top: 25px;
    }
}
@media(max-width: 1200px){
    .inside-title{
        padding-top: 50px;
        font-size: 38px;  
    }
    .brand-item{
        padding-top: 5px;
    }
    .brand-txt p{
        margin-bottom: 0px;
    }
    .brand-txt-two{
        padding-top: 30px;
        padding-left: 50px;
    }
    .brand-txt-two p{
        margin-bottom: 0px;
    }
}
@media(max-width: 991px){
    .weizhi-ul{
        display: none;
        float: none
    }
    .weizhi-left{
        float: none;
        line-height: 50px;
    }
    .inside-title{
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .inside-title h2{
        font-size: 28px;
        line-height: 30px;
        padding: 0 20px;
    }
    .inside-title i{
        width: 40px;
    }
    .brand-img-one{
        float: none;
    }
    .brand-img{
        width: 100%;
    }
    .brand-item{
        width: 100%;
        float: none;
        margin-top: 15px;
    }
    .brand-img-one{
        width: 100%;
        padding-left: 0px;
    }
    .brand-txt-two p{
        text-indent: 0px;
    }
    .brand-list{
        margin-bottom: 10px;
    }
    .brand-txt-two{
        padding-top: 20px;
    }
    .inside-main{
        padding-bottom: 30px;
    }
    .weizhi-ul li{
        width: 100%;
        float: none;
    }
    .weizhi-ul li a{
        line-height: 40px;
        padding: 0px;
        text-align: center;
        border: 1px solid #dcdcdc;
        border-bottom: none;
    }
    .weizhi{
        border-bottom: none;
    }
    .weizhi-ul li:last-child a{
        border-bottom: 1px solid #dcdcdc;
    }
}
@media(max-width: 599px){
    .brand-txt-two{
        padding-left: 10px;
    }
}
/* 新闻资讯 */
.news-ul li{
    margin-bottom: 28px;
    width: 100%;
    padding: 34px;
    background: #f5f5f5;
}
.news-ul li:nth-child(odd) .news-img{
    float: right;
}
.news-ul li:nth-child(even) .news-img{
    float: left;
}
.news-ul li:nth-child(odd) .news-info{
    float: left;
}
.news-ul li:nth-child(even) .news-info{
    float: right;
}
.news-ul li:last-child{
    margin-bottom: 0px;
}
.news-img{
    max-width: 522px;
    width: 37%;
    overflow: hidden;
}
.news-img img{
    display: block;
    width: 100%;
    -moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.news-info{
    width: 58%;
    padding-top: 60px;
}
.news-info h2{
    font-size: 24px;
    line-height: 26px;
    margin-bottom: 12px;
}
.news-info span{
    color: #999;
    font-size: 16px;
    line-height: 24px;
    display: block;
    margin-bottom: 14px;
}
.news-txt{
    border-top: 1px solid #d2d2d2;
    padding-top: 24px;
    line-height: 30px;
    font-size: 16px;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.news-ul li:hover .news-img img{
    -moz-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}
.news-ul li:hover .news-info h2{
    color: #ab6f32;
}
@media(max-width: 1400px){
    .news-info{
        width: 60%;
        padding-top: 30px;
    }
}
@media(max-width: 1200px){
    .news-info{
        padding-top: 20px;
    }
    .news-info h2{
        font-size: 22px;
        line-height: 24px;
        margin-bottom: 8px;
    }
    .news-info span{
        margin-bottom: 10px;
    }
    .news-txt{
        padding-top: 14px;
    }
}
@media(max-width: 991px){
    .news-ul li{
        padding: 0px;
        background: none;
        margin-bottom: 20px;
    }
    .news-ul li:nth-child(odd) .news-img{
        float: none;
    }
    .news-ul li:nth-child(even) .news-img{
        float: none;
    }
    .news-ul li:nth-child(odd) .news-info{
        float: none;
    }
    .news-ul li:nth-child(even) .news-info{
        float: none;
    }
    .news-img{
        width: 100%;
        margin: 0 auto 15px;
    }
    .news-info{
        width: 100%;
        background: #f5f5f5;
        padding: 25px;
    }
}
/* 产品欣赏 */
.pro-ul{
    text-align: center;
    margin-bottom: 50px;
}
.pro-ul li{
    display: inline-block;
    margin-right: 22px;
}
.pro-ul li:last-child{
    margin-right: 0px;
}
.pro-ul li a{
    display: block;
    line-height: 40px;
    border: 1px solid #b5b5b5;
    padding: 0 28px;
    color: #333;
}
.pro-ul li.pro-on a, .pro-ul li:hover a{
    background: #ab6f32;
    color: #fff;
    border-color: #ab6f32;
}
.pro-item{
    max-width: 328px;
    overflow: hidden;
}
.pro-img{
    width: 100%;
    overflow: hidden;
}
.pro-img img{
    display: block;
    width: 100%;
    -moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.pro-item p{
    line-height: 64px;
    text-align: center;
    color: #333;
}
.pro-item:hover .pro-img img{
    -moz-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}
.pro-item:hover p{
    color: #ab6f32;
}
@media(max-width: 991px){
    .pro-title{
        position: relative;
        width: 100%;
        background: #ab6f32;
        padding: 0px;
        line-height: 50px;
        justify-content: flex-start;
        padding-left: 15px;
    }
    .pro-title i{
        display: none;
    }
    .pro-title h2{
        color: #fff;
        line-height: 50px;
        font-size: 22px;
        padding: 0px;
    }
    .pro-ul{
        display: none;
        margin-bottom: 0px;
    }
    .pro-ul li{
        width: 100%;
        display: block;
    }
    .pro-ul li a{
        border-bottom: none;
    }
    .pro-ul li:last-child a{
        border-bottom: 1px solid #b5b5b5;
    }
    .pro-ul li.pro-on a, .pro-ul li:hover a{
        color: #ab6f32;
        background: #fff;
        border-color: #b5b5b5;
    }
    .pro-main{
        margin-top: 20px;
    }
    .pro-item{
        margin: 0 auto;
    }
    .pro-item p{
        line-height: 44px;
    }
}
/* 产品详情 */
.pros-left{
    width: 50%;
    float: left;
    padding-right: 30px;
    overflow: hidden;
}
.pros-swiper .swiper-slide img{
    display: block;
    width: 100%;
}
.pros-btn .swiper-button-next, .pros-btn .swiper-button-prev{
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #000;
    margin-top: -27px;
}
.pros-btn .swiper-button-next{
    background: #000 url(../img/next_arrow.png) no-repeat center;
    right: 40px;
}
.pros-btn .swiper-button-prev{
    background: #000 url(../img/prev_arrow.png) no-repeat center;
    left: 40px;
}
.pros-btn .swiper-button-next:hover, .pros-btn .swiper-button-prev:hover{
    background-color: #ab6f32;
}
.pros-right{
    width: 50%;
    float: right;
    padding-left: 30px;
}
.pros-right h2{
    color: #000;
    font-size: 36px;
    text-align: center;
    border-bottom: 1px solid #999;
    padding-bottom: 50px;
    line-height: 36px;
}
.pros-ul{
    padding-top: 50px;
    padding-bottom: 15px;
}
.pros-ul li{
    margin-bottom: 30px;
}
.pros-ul li strong{
    font-size: 18px;
    line-height: 18px;
    color: #000;
}
.pros-ul li span{
    font-size: 18px;
}
.contact{
    width: 100%;
    height: 80px;
    line-height: 80px;
    color: #fff;
    text-align: center;
    background: #ab6f32;
    font-size: 36px;
}
.pros-main{
    overflow: hidden;
}
@media(max-width: 1400px){
    .pros-right h2{
        font-size: 32px;
        padding-bottom: 25px;
    }
    .pros-ul{
        padding-top: 30px;
        padding-bottom: 25px;
    }
    .pros-ul li{
        margin-bottom: 20px;
    }
}
@media(max-width: 1200px){
    .pros-right h2{
        font-size: 28px;
        line-height: 30px;
        padding-bottom: 15px;
    }
    .pros-ul{
        padding-top: 15px;
        padding-bottom: 25px;
    }
    .pros-ul li{
        margin-bottom: 10px;
    }
    .contact{
        font-size: 28px;
    }
}
@media(max-width: 991px){
    .pros-left{
        width: 100%;
        max-width: 670px;
        margin: 0 auto 20px;
        padding-right: 0px;
        float: none;
    }
    .pros-right{
        width: 100%;
        padding-left: 0px;
    }
    .pros-main{
        margin-top: 20px;
    }
}
@media(max-width: 767px){
    .pros-right h2{
        font-size: 24px;
    }
    .pros-ul li strong{
        font-size: 16px;
    }
    .pros-ul li span{
        font-size: 16px;
    }
    .contact{
        font-size: 24px;
        height: 60px;
        line-height: 60px;
    }
    .pros-ul{
        padding-bottom: 15px;
    }
}
.pros-bom{
    padding-top: 32px;
}
.pros-bom-title{
    line-height: 70px;
    font-size: 36px;
    color: #ab6f32;
    border-bottom: 1px solid #999;
}
.pros-info{
    font-size: 16px;
    line-height: 32px;
    padding-top: 20px;
    color: #666;
    padding-bottom: 24px;
}
.pros-bom img{
    display: block;
    width: 100%;
}
@media(max-width: 991px){
    .pros-bom{
        padding-top: 0px;
    }
    .pros-bom-title{
        font-size: 28px;
    }
}
@media(max-width: 499px){
    .pros-btn .swiper-button-next{
        right: 10px;
    }
    .pros-btn .swiper-button-prev{
        left: 10px;
    }
}
/* 联系我们 */
.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: #ab7033;
    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;
    }
}