@charset "UTF-8";
/**
 * 
 * @authors Your Name (you@example.org)
 * @date    2017-10-18 08:57:34
 * @version $Id$
 */
 
@font-face{
	font-family: "bebas";
	src: url('../font/BEBAS___.TTF') format('truetype');
	font-weight: normal;
	font-style: normal;
}
 /* header */
.header{
    position: relative;
    z-index: 666;
}
.header-top{
    height: 100px;
}
.logo{
    width:136px;
    margin-top: 13px;
    float: left;   
}
.logo img{
    display: block;
    width: 100%;
}
.header-phone{
    float: right;
    margin-top: 30px;
    padding-left: 50px;
    height: 40px;
    background: url(../img/head_phone_icon.png) no-repeat left center;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.header-phone p{
    color: #e60012;
    font-size: 24px;
    font-weight: bold;
}
.header-phone span{
    font-size: 30px;
    font-family: 'bebas';
    color: #000;
}
.iheader-phone span{
    color: #153d86;
}
.header-phone span:last-child{
    margin-left: 10px;
}
.nation{
    float: left;
    height: 22px;
    margin-top: 39px;
    margin-left: 30px;
}
.nation a{
    display: inline-block;
    margin-right: 10px;
}
.header-bot{
    background: #434343;
    height: 50px;
}
.nav ul li{
    float: left;
    text-align: center;
    font-size: 16px;
    position: relative;
    height: 50px;
    line-height: 50px;
    width: 12.5%;
}
.nav ul li > a{
    color:#fff;
    width: 120px;
    display: block;
    transition: all .3s;
}
.nav ul li:hover>a, .nav ul li.nav-active a{
    background: #ad9758;
}
.nav-sub{
    position: absolute;
    width: 120px;
    top: 50px;
    z-index: 66;
    left:0;
    display: none;
    left: 0px;
}
.nav-sub dl dd{
    margin-top: 2px;
    height: 50px;
}
.nav-sub dl dd a{
    color: #fff;
    background: #434343;
    display: block;
    width: 100%;
    line-height: 50px;
    text-align: center;
    height: 50px;
}
.nav-sub dl dd:hover a{
    background: #ad9758;
}
@media(max-width:1200px){
    .nav ul li > a{
        width: 110px;
    }
    .nav-sub{
        width: 110px;
    }
    .header-phone span{
        font-size: 26px;
    }
}
@media(max-width:991px){
    .header-top{
        height: 70px;
    }
    .logo{
        margin-top: 5px;
        width: 110px;
    }
    .nation{
        margin-top: 24px;
    }
    .header-bot{
        display:none;
    }
    .header-phone{
        display: none;
    }
}
@media(max-width:599px){
    .nation{
        margin-left: 20px;
    }
}

/* banner */
#banner .swiper-container{
    width: 100%;
    max-width: 1920px;
}
#banner .swiper-slide img{
    width: 100%;
    display: block;
}
#banner .swiper-pagination-bullet{
    width: 50px;
    height: 4px;
    background: #fff;
    border-radius: 0px;
    opacity: 1;
}
#banner .swiper-pagination-bullet-active{
    background: #ad9758;
}
#banner .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet{
    margin: 0 15px;
}
#banner .swiper-pagination-fraction, #banner .swiper-pagination-custom, #banner .swiper-container-horizontal > .swiper-pagination-bullets{
    bottom: 40px;
}
@media (max-width: 991px){
    #banner .swiper-pagination-bullet{
        width: 40px;
    }
    #banner .swiper-container-horizontal > .swiper-pagination-bullets{
        bottom: 20px;
    }
}
@media (max-width: 599px){
    #banner .swiper-pagination-bullet{
        width: 30px;
    }
    #banner .swiper-container-horizontal > .swiper-pagination-bullets{
        bottom: 8px;
    }
    #banner .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet{
        margin: 0 8px;
    }
}
/* 首页关于我们 */
.home-about{
    background: #fff;
    padding-bottom: 75px;
}
.home-title{
    text-align: center;
    padding-top: 75px;
    padding-bottom: 55px;
}
.home-title h2{
    font-weight: bold;
    font-size: 38px;
    line-height: 40px;
    position: relative;
    color: #000;
    margin-bottom: 15px;
}
.home-title span{
    color: #666;
    line-height: 24px;
    font-size: 14px;
}
.habout-swiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    transition: 300ms;
    transform: scale(0.92);
}
.habout-swiper .swiper-slide-active, .habout-swiper .swiper-slide-duplicate-active{
    transform: scale(1);
}
.habout-item{
    width: 100%;
}
.habout-img{
    width: 100%;
    overflow: hidden;
    box-shadow: 0px 0px 10px #b8b8b8;
}
.habout-img img{
    display: block;
    width: 100%;
    transition: all .5s;
}
.habout-info{
    height: 80px;
    background: #ad9758;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* padding: 0 20px; */
    box-shadow: 0px 0px 10px #b8b8b8;
}
.habout-info h3{
    font-size: 24px;
    margin-bottom: 5px;
}
.habout-info p{
    font-size: 14px;
    line-height: 20px;
}
.habout-item:hover .habout-img img{
    transform: scale(1.1);
}
@media(min-width: 1400px){
    .home-about .container{
        width: 1400px;
    }
}
@media(max-width: 991px){
    .habout-swiper .swiper-slide{
        transform: scale(1);
    }
    .home-about{
        padding-bottom: 50px;
    }
    .home-title{
        padding-top: 50px;
        padding-bottom: 30px;
    }
    .home-title h2{
        font-size: 26px;
        line-height: 30px;
        margin-bottom: 10px;
    }
}
@media(max-width: 449px){
    .habout-info{
        padding: 0 10px;
    }
}
/* 首页产品中心 */
.home-pro{
    padding-bottom: 55px;
    background: #eaeaea;
}
.hpro-item{
    width: 100%;
    margin-bottom: 25px;
}
.hpro-img{
    width: 100%;
    overflow: hidden;
}
.hpro-img img{
    display: block;
    width: 100%;
    transition: all .5s;
}
.hpro-info{
    display: flex;
    flex-direction: row;
}
.hpro-txt{
    width: 64.4%;
    display: flex;
    flex-direction: column;
    background: #434343;
    height: 96px;
    justify-content: center;
    padding-left: 30px;
    color: #fff;
}
.hpro-txt p{
    font-size: 22px;
    line-height: 24px;
}
.hpro-txt span{
    font-size: 16px;
}
.hpro-more{
    width: 35.6%;
    background: #ad9758;
}
.hpro-more a{
    display: block;
    width: 100%;
    color: #fff;
    font-size: 18px;
    line-height: 96px;
    text-align: center;
}
.hpro-item:hover .hpro-img img{
    transform: scale(1.1);
}
@media(max-width: 1200px){
    .hpro-txt{
        padding-left: 18px;
    }
}
@media(max-width: 991px){
    .home-pro{
        padding-bottom: 25px;
    }
}
@media(max-width: 767px){
    .hpro-item{
        max-width: 450px;
        margin: 0 auto 25px;
    }
}
/* 首页施工应用 */
.shigong{
    padding: 80px 0px;
    overflow: hidden;
}
.sg-main{
    display: flex;
    flex-direction: row;
}
.sg-left{
    background: #434343;
    padding: 60px 50px 0px;
    width: 39%;
}
.sg-left h2{
    font-size: 40px;
    line-height: 40px;
    font-weight: bold;
    color: #fff;
    position: relative;
    padding-bottom: 35px;
    margin-bottom: 30px;
}
.sg-left h2::after{
    position: absolute;
    width: 78px;
    height: 2px;
    background: #fff;
    bottom: 0px;
    left: 0px;
    display: block;
    content: "";
}
.sg-info{
    color: #ccc;
    font-size: 16px;
    line-height: 32px;
    margin-bottom: 50px;
}
.sg-more{
    display: block;
    width: 200px;
    height: 48px;
    background: #ad9758 url(../img/more_arrow.png) no-repeat right 24px center;
    padding: 0 24px;
    line-height: 48px;
    color: #fff;
    font-size: 16px;
}
.sg-right{
    width: 61%;
}
.sg-right img{
    display: block;
    width: 100%;
}
.sg-arrow .swiper-button-next, .sg-arrow .swiper-button-prev{
    width: 26px;
    height: 46px; 
    color: #fff;
}
.sg-arrow .swiper-button-next{
    right: 40px;
    background: url(../img/sg_next_arrow.png) no-repeat center;
}
.sg-arrow .swiper-button-prev{
    left: 40px;
    background: url(../img/sg_prev_arrow.png) no-repeat center;
}
.sg-arrow .swiper-button-prev:hover, .sg-arrow .swiper-button-next:hover{
    color: #ad9758;
}
.sg-arrow .swiper-button-prev:hover{
    background-image: url(../img/sg_prev_arrow_on.png);
}
.sg-arrow .swiper-button-next:hover{
    background-image: url(../img/sg_next_arrow_on.png);
}
@media(max-width: 1300px){
    .sg-left{
        padding-top: 45px;
        padding-left: 30px;
        padding-right: 30px;
    }
    .sg-left h2{
        font-size: 34px;
        line-height: 34px;
        padding-bottom: 25px;
    }
}
@media(max-width: 1200px){
    .sg-info{
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 30px;
    }
    .sg-left h2{
        font-size: 26px;
        line-height: 26px;
    }
    .sg-left{
        padding-top: 30px;
    }
}
@media(max-width: 991px){
    .sg-main{
        flex-wrap: wrap;
    }
    .sg-left{
        width: 100%;
        padding-bottom: 35px;
    }
    .sg-right{
        width: 100%;
        max-width: 810px;
        margin: 0 auto;
    }
    .shigong{
        padding: 50px 0px;
    }
    .sg-arrow .swiper-button-prev{
        left: 20px;
    }
    .sg-arrow .swiper-button-next{
        right: 20px;
    }
    .sg-left h2{
        margin-bottom: 20px;
    }
    .sg-left h2::after{
        width: 60px;
    }
}
/* 新闻中心 */
.hnews-img{
    float: left;
    width: 50%;
}
.hnews-img img{
    display: block;
    width: 100%;
}
.hnews-swiper .swiper-slide a{
    display: block;
    width: 100%;
    position: relative;
}
.hnews-swiper .swiper-slide .hnews-img-txt{
    position: absolute;
    height: 70px;
    line-height: 70px;
    bottom: 0px;
    width: 100%;
    left: 0px;
    color: #fff;
    font-size: 24px;
    background: rgba(67, 67, 67, .9);
    padding-left: 30px;
}
.hnews-list{
    float: right;
    width: 50%;
    padding-left: 30px;
}
.hnews-list li{
    width: 100%;
    margin-bottom: 12px;
    padding: 18px 25px 20px;
    background: #fff;
    transition: all .5s;
}
.hnews-list li:last-child{
    margin-bottom: 0px;
}
.hnews-list li h4{
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
    color: #111;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
}
.hnews-list li p{
    font-size: 16px;
    line-height: 24px;
    color: #666;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
}
.hnews-list li:hover, .hnews-list li.hnews-on{
    background: #ad9758;
}
.hnews-list li:hover h4, .hnews-list li.hnews-on h4{
    color: #fff;
}
.hnews-list li:hover p, .hnews-list li.hnews-on p{
    color: #fff;
}
@media(max-width: 1400px){
    .hnews-list li{
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .hnews-list li h4{
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 7px;
    }
}
@media(max-width: 1200px){
    .hnews-img{
        width: 100%;
        max-width: 700px;
        margin: 0 auto 20px;
        float: none;
    }
    .hnews-list{
        width: 100%;
        padding-left: 0px;
        max-width: 700px;
        margin: 0 auto;
        float: none;
    }
}
@media(max-width: 767px){
    .hnews-swiper .swiper-slide .hnews-img-txt{
        height: 60px;
        line-height: 60px;
        font-size: 16px;
        padding-left: 15px;
    }
}
@media(max-width: 449px){
    .hnews-list li{
        padding-left: 15px;
        padding-right: 15px;
    }
    .hnews-list li p{
        font-size: 14px;
        line-height: 22px;
    }
    .hnews-swiper .swiper-slide .hnews-img-txt{
        line-height: 24px;
        height: auto;
        padding-top: 10px;
        padding-bottom: 10px;
        padding-right: 15px;
    }
}
/* 底部 */
#footer{
    padding-top: 40px;
    padding-bottom: 18px;
    background: url(../img/footer_bg.jpg) center repeat-y;
}
.footer-l{
    float: left;
    width: 50%;
}
.footer-left{
    float: left;
    width: 40.5%;
}
.footer-left h2{
    font-size: 28px;
    color: #000;
    line-height: 32px;
    margin-bottom: 20px;
}
.footer-left li{
    font-size: 14px;
    line-height: 30px;
    color: #000;
}
.footer-right{
    width: 59.5%;
    float: right;
    padding-left: 70px;
}
.footer-top{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}
.footer-wechat{
    width: 175px;
}
.footer-wechat img{
    display: block;
    width: 100%;
}
.footer-share .bshare-custom .bshare-more{
    color: #fff !important;
}
.footer-share .bshare-custom #bshare-shareto{
    margin-right: 35px;
    font-size: 15px;
}
.footer-share .bshare-custom .bshare-item{
    width: 58px;
    height: 58px;
    border-radius: 50%;
    padding-left: 0px;
    margin-right: 40px;
}
.footer-share .bshare-custom .bshare-weixin{
    background: #fff url(../img/wechat_icon.png) no-repeat center;
}
.footer-share .bshare-custom .bshare-sinaminiblog{
    background: #fff url(../img/weibo_icon.png) no-repeat center;
}
.footer-share .bshare-custom .bshare-qqim{
    background: #fff url(../img/qq_icon.png) no-repeat center;
    margin-right: 0px;
}
.footer-nav{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.footer-nav li a{
    font-size: 16px;
    line-height: 24px;
    color: #ad9758;
}
@media(max-width: 1200px){
    .footer-right{
        padding-left: 10px;
    }
    .footer-share .bshare-custom .bshare-item{
        margin-right: 20px;
    }
}
@media(max-width: 991px){
    #footer{
        background: #bfbfbf;
    }
    .footer-left{
        float: none;
        width: 100%;
        margin-bottom: 30px;
    }
    .footer-right{
        float: none;
        width: 100%;
        padding-left: 0px;
    }
}
@media(max-width: 599px){
    .footer-top{
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer-share{
        width: 100%;
        text-align: center;
    }
    .footer-wechat{
        margin-bottom: 20px;
    }
    .footer-share .bshare-custom #bshare-shareto{
        margin-right: 15px;
    }
    .footer-nav{
        display: block;
        text-align: center;
    }
    .footer-nav li{
        display: inline-block;
    }
    .footer-share .bshare-custom .bshare-item{
        width: 50px;
        height: 50px;
    }
}
/* 右侧浮层 */
.right-side{
    position: fixed;
    right: 20px;
    top: 20%;
    z-index: 300;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.right-item{
    width: 54px;
    height: 54px;
    border-radius: 27px;
    background: #434343;
    margin-bottom: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.right-itemhover:hover{
    background: #ad9758;
}
.right-item-right{
    color: #fff;
    margin-left: 8px;
    display: none;
}
.right-wechat{
    position: relative;
}
.wechat-img{
    width: 150px;
    height: 150px;
    position: absolute;
    right: 62px;
    top: 0px;
    display: none;
}
.wechat-img img{
    display: block;
    width: 100%;
}
/* .right-wechat:hover .wechat-img{
    opacity: 1;
} */
@media(max-width: 599px){
    .right-side{
        display: none;
    }
}
/* 关于我们 */
.ipub-title{
    padding-top: 80px;
    text-align: center;
    margin-bottom: 55px;
}
.ipub-title h2{
    font-size: 40px;
    line-height: 40px;
    color: #222;
    position: relative;
    padding-bottom: 24px;
    margin-bottom: 16px;
}
.ipub-title h2::after{
    position: absolute;
    display: block;
    width: 40px;
    height: 4px;
    background: #e60012;
    content: "";
    bottom: 0px;
    left: 50%;
    margin-left: -20px;
}
.ipub-title p{
    font-size: 14px;
    color: #666;
}
.about-main{
    overflow: hidden;
    margin-bottom: 80px;
}
.about-txt{
    float: left;
    width: 50%;
    padding-right: 40px;
    font-size: 16px;
    line-height: 30px;
    color: #666;
    text-indent: 24px;
}
.about-img{
    float: right;
    width: 50%;
}
.about-img img{
    display: block;
    width: 100%;
}
@media(max-width: 1200px){
    .about-txt{
        width: 100%;
        padding-right: 0px;
        float: none;
    }
    .about-img{
        width: 100%;
        float: none;
        max-width: 700px;
        margin: 20px auto 0px;
    }
}
@media(max-width:991px){
    .ipub-title{
        padding-top: 50px;
        margin-bottom: 25px;
    }
    .ipub-title h2{
        font-size: 34px;
        line-height: 34px;
    }
    .about-main{
        margin-bottom: 50px;
    }
}
@media(max-width:449px){
    .ipub-title{
        padding-top: 35px;
        margin-bottom: 20px;
    }
    .ipub-title h2{
        font-size: 28px;
        line-height: 28px;
        padding-bottom: 15px;
    }
    .about-main{
        margin-bottom: 35px;
    }
}
/* 厂房设备 */
.equip-main{
    background: #eeeeee;
    padding-bottom: 54px;
}
.equip-img{
    width: 100%;
    border: 10px solid #fff;
    overflow: hidden;
    transition: all .5s;
}
.equip-img img{
    display: block;
    width: 100%;
    transition: all .5s;
}
.equip-img:hover{
    border-color: #ad9758;
}
.equip-img:hover img{
    transform: scale(1.1);
}
.equip-swiper .swiper-wrapper{
    padding-bottom: 65px;
}
.equip-swiper > .swiper-pagination-bullets{
    bottom: 0px;
}
.equip-swiper .swiper-pagination-bullet{
    width: 11px;
    height: 11px;
    background: #434343;
    opacity: 1;
}
.equip-swiper > .swiper-pagination-bullets .swiper-pagination-bullet{
    margin: 0 6px;
}
.equip-swiper .swiper-pagination-bullet-active{
    background: #ad9758;
}
@media(max-width: 991px){
    .equip-swiper .swiper-wrapper{
        padding-bottom: 50px;
    }
    .equip-main{
        padding-bottom: 45px;
    }
}
@media(max-width: 449px){
    .equip-main{
        padding-bottom: 35px;
    }
}
/* 企业文化 */
.culture-main{
    margin-bottom: 80px;
}
.culture-main li{
    padding: 0 6px;
}
.culture-item{
    width: 100%;
    cursor: pointer;
    position: relative;
}
.culture-img{
    width: 100%;
    overflow: hidden;
    background: rgba(173, 151, 88, 0);
    transition: all .5s;
}
.culture-img img{
    display: block;
    width: 100%;
    transition: all .5s;
}
.culture-info{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 22;
    color: #fff;
    padding: 150px 40px 0px;
    text-align: center;
}
.culture-info h3{
    font-size: 30px;
    line-height: 34px;
    margin-top: 20px;
    margin-bottom: 12px;
}
.culture-info p{
    font-size: 24px;
    line-height: 28px;
}
.culture-item:hover .culture-img{
    background: rgba(173, 151, 88, 1);
}
.culture-item:hover .culture-img img{
    opacity: 0;
}
@media(max-width: 1400px){
    .culture-info{
        padding-top: 130px;
    }
}
@media(max-width: 1300px){
    .culture-info{
        padding: 100px 30px 0px;
    }
    .culture-info h3{
        font-size: 26px;
        line-height: 34px;
    }
    .culture-info p{
        font-size: 20px;
        line-height: 24px;
    }
}
@media(max-width: 1200px){
    .culture-info{
        padding-top: 80px;
    }
}
@media(max-width: 991px){
    .culture-main li{
        margin-bottom: 20px;
    }
    .culture-info{
        padding: 0px 30px 0px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .culture-main{
        margin-bottom: 40px;
    }
}
@media(max-width: 767px){
    .culture-item{
        max-width: 340px;
        margin: 0 auto;
    }
}
@media(max-width: 449px){
    .culture-main{
        margin-bottom: 20px;
    }
}
/* 人才招聘 */
.recruit-txt{
    font-size: 16px;
    color: #666;
    line-height: 30px;
    text-indent: 24px;
    margin-bottom: 20px;
}
.recruit-img-list{
    margin-bottom: 60px;
}
.recruit-img{
    width: 100%;
    overflow: hidden;
}
.recruit-img img{
    display: block;
    width: 100%;
}
.recruit-list li{
    margin-bottom: 20px;
}
.recruit-list li.recruit-on{
    box-shadow: 0px 0px 10px #f1f1f1;
}
.recruit-list li:last-child{
    margin-bottom: 0px;
}
.recruit-top{
    width: 100%;
    height: 80px;
    padding-left: 60px;
    border: 1px solid #b5b4b4;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    height: 80px;
    color: #333;
}
.recruit-person{
    width: calc(100% - 80px);
    float: left;
}
.recruit-btn{
    width: 80px;
    height: 80px;
    cursor: pointer;
    transition: all .5s;
    background: #434343 url(../img/recruit_arrow1.png) no-repeat center;
}
.recruit-btn:hover{
    background: #ad9758 url(../img/recruit_arrow2.png) no-repeat center;
}
.recruit-list li.recruit-on .recruit-btn{
    background: #ad9758 url(../img/recruit_arrow2.png) no-repeat center;
}
.recruit-bom{
    padding-top: 35px;
    border: 1px solid #b5b4b4;
    border-top: none;
    padding-bottom: 35px;
    display: none;
}
.recruit-pos{
    float: left;
    width: 50%;
    padding: 0 60px;
    border-right: 1px solid #ccc;
}
.recruit-pos:last-child{
    border-right: none;
}
.recruit-pos h2{
    font-size: 24px;
    color: #ad9758;
    line-height: 24px;
    margin-bottom: 30px;
}
.recruit-pos p{
    font-size: 16px;
    line-height: 30px;
    color: #666;
}
.toudi{
    font-size: 16px;
    display: block;
    text-align: center;
    margin-top: 35px;
    padding: 0 15px;
    color: #ad9758;
}
@media(max-width: 991px){
    .recruit-img{
        max-width: 450px;
        margin: 0 auto 20px;
    }
    .recruit-img-list{
        margin-bottom: 10px;
    }
    .recruit-top{
        padding-left: 15px;
        font-size: 16px;
    }
    .recruit-pos{
        padding: 0 15px;
    }
}
@media(max-width: 767px){
    .recruit-top{
        flex-wrap: wrap;
    }
    .recruit-top p{
        width: 33%;
        height: 40px;
        line-height: 40px;
    }
    .recruit-btn{
        width: 40px;
        height: 40px;
    }
    .recruit-bom{
        padding: 25px 0px;
    }
    .recruit-pos h2{
        font-size: 20px;
        margin-bottom: 15px;
    }
    .recruit-pos p{
        font-size: 14px;
        line-height: 24px;
    }
    .toudi{
        margin-top: 20px;
    }
}
@media(max-width: 599px){
    .recruit-pos{
        width: 100%;
        margin-bottom: 20px;
        border-right: none;
    }
    .recruit-pos:last-child{
        margin-bottom: 0px;
    }
}
@media(max-width: 449px){
    .recruit-top p{
        font-size: 12px;
    }
    .recruit-top .recruit-time{
        width: 80%;
    }
    .recruit-top{
        height: auto;
    }
}
/* 资质荣誉 */
.honor-item{
    width: 100%;
    text-align: center;
}
.honor-img{
    width: 100%;
    overflow: hidden;
    border: 6px solid #e6e7e9;
    transition: all .5s;
}
.honor-img img{
    display: block;
    width: 100%;
}
.honor-item p{
    line-height: 50px;
    color: #333;
    font-size: 16px;
    margin-bottom: 8px;
}
.honor-item:hover .honor-img{
    border-color: #ad9758;
}
.honor-item:hover p{
    color: #ad9758;
}
@media(max-width: 991px){
    .honor-item{
        max-width: 330px;
        margin: 0 auto;
    }
}
/* 新闻中心 */
.news-top{
    display: flex;
    flex-direction: row;
    margin-bottom: 30px;
}
.news-top-img{
    width: 50%;
    overflow: hidden;
}
.news-top-img img{
    display: block;
    width: 100%;
}
.news-top-right{
    width: 50%;
    background: #f7f7f7;
}
.news-top-txt{
    padding-top: 80px;
    padding-left: 30px;
    padding-right: 30px;
}
.news-top-txt h2{
    font-size: 24px;
    color: #222;
    line-height: 28px;
    margin-bottom: 30px;
}
.news-top-txt h2 a{
    color: #222;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
}
.news-top-txt:hover h2 a{
    color: #ad9758;
}
.news-top-ms{
    font-size: 16px;
    line-height: 32px;
    color: #666;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
    margin-bottom: 24px;
}
.news-top-txt span{
    color: #666;
    font-size: 14px;
}
.news-swiper .swiper-wrapper{
    padding-bottom: 45px;
}
.news-swiper > .swiper-pagination-bullets{
    bottom: 0px;
    left: 30px;
    text-align: left;
}
.news-swiper .swiper-pagination-bullet{
    width: 10px;
    height: 10px;
    background: #434343;
    opacity: 1;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet{
    margin: 0 6px;
}
.news-swiper .swiper-pagination-bullet-active{
    background: #ad9758;
}
.news-ul li{
    padding: 30px 0px;
    border-top: 1px solid #dcdcdc;
    border-bottom: 1px solid #dcdcdc;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.news-img{
    width: 400px;
    overflow: hidden;
}
.news-img img{
    display: block;
    width: 100%;
    transition: all .5s;
}
.news-info{
    width: calc(100% - 430px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.news-info h2{
    font-size: 24px;
    line-height: 26px;
    margin-bottom: 20px;
}
.news-info h2 a{
    color: #222;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
}
.news-info span{
    color: #999;
    font-size: 16px;
}
.news-txt{
    color: #666;
    line-height: 32px;
    font-size: 16px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
    margin-bottom: 35px;
    margin-top: 10px;
}
.news-ul li:hover .news-img img{
    transform: scale(1.1);
}
.news-ul li:hover .news-info h2 a{
    color: #ad9758;
}
@media(max-width: 1400px){
    .news-top-txt{
        padding-top: 40px;
    }
    .news-txt{
        margin-bottom: 27px;
    }
}
@media(max-width: 1200px){
    .news-top-txt{
        padding-top: 30px;
    }
    .news-top-txt h2{
        font-size: 20px;
        line-height: 22px;
        margin-bottom: 20px;
    }
    .news-top-ms{
        line-height: 28px;
        margin-bottom: 15px;
    }
    .news-info h2{
        font-size: 20px;
        line-height: 22px;
    }
}
@media(max-width: 991px){
    .news-top{
        flex-wrap: wrap;
    }
    .news-top-img{
        width: 100%;
        max-width: 700px;
        margin: 0 auto 25px;
    }
    .news-top-right{
        width: 100%;
        padding-bottom: 30px;
    }
    .news-ul li{
        padding: 20px 0px;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .news-img{
        margin: 0 auto 20px;
    }
    .news-info{
        width: 100%;
    }
}
@media(max-width: 599px){
    .news-top-txt{
        padding-left: 20px;
        padding-right: 20px;
    }
    .news-txt{
        margin-bottom: 20px;
    }
}
/* 产品中心 */
.ipro-nav{
    border-bottom: 1px solid #dcdcdc;
    margin-bottom: 80px;
}
#owl-ipro .item a{
    display: block;
    line-height: 60px;
    text-align: center;
    width: 100%;
    font-size: 16px;
    color: #333;
    padding: 0 20px;
    border-left: 1px solid #dcdcdc;
}
#owl-ipro .owl-item:last-child a{
    border-right: 1px solid #dcdcdc;
}
#owl-ipro .item a:hover{
    background: #ad9758;
    color: #fff;
}
#owl-ipro .owliproAct a{
    background: #ad9758;
    color: #fff;
}
.pro-ul li{
    margin-bottom: 30px;
}
.pro-ul li:last-child{
    margin-bottom: 0px;
}
.pro-ul li a{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}
.pro-ul li:nth-child(2n) a{
    flex-direction: row-reverse;
}
.pro-txt{
    background: #eaeaea;
    padding-top: 45px;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 50px;
    width: 50%;
    float: left;
}
.pro-txt h2{
    font-size: 30px;
    line-height: 32px;
    margin-bottom: 38px;
    color: #222;
}
.pro-info{
    margin-bottom: 50px;
}
.pro-info p{
    line-height: 32px;
    color: #666;
    font-size: 16px;
    padding-left: 18px;
    background: url(../img/square_icon.png) no-repeat left top 12px;
}
.pro-img{
    width: 50%;
    border: 2px solid #eaeaea;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.pro-img img{
    display: block;
    width: 100%;
    transition: all .5s;
}
.pro-ul li:hover .pro-txt h2{
    color: #ad9758;
}
.pro-ul li:hover .pro-img img{
    transform: scale(1.1);
}
@media(max-width: 1200px){
    .pro-txt{
        padding: 30px 20px;
    }
    .pro-txt h2{
        font-size: 28px;
        line-height: 30px;
        margin-bottom: 22px;
    }
    .pro-info{
        margin-bottom: 35px;
    }
    .ipro-nav{
        margin-bottom: 60px;
    }
}
@media(max-width: 991px){
    .pro-ul li a{
        flex-direction: column-reverse;
    }
    .pro-ul li:nth-child(2n) a{
        flex-direction: column-reverse;
    }
    .pro-img{
        width: 100%;
        max-width: 700px;
        margin: 0 auto;
    }
    .pro-txt{
        width: 100%;
        max-width: 700px;
        margin: 0 auto;
    }
    .ipro-nav{
        margin-bottom: 40px;
    }
}
@media(max-width: 599px){
    .pro-info{
        margin-bottom: 25px;
    }
    .pro-info p{
        font-size: 14px;
        line-height: 24px;
        background: url(../img/square_icon.png) no-repeat left top 8px;
    }
    .pro-txt h2{
        font-size: 24px;
        line-height: 26px;
        margin-bottom: 18px;
    }
}
#owl-ipro .owl-buttons .owl-prev{
    left:-40px;
    position: absolute;
    width: 10px;
    height: 17px;
    top: 18px;
    background: url(../img/ipro-prev.png) no-repeat center;
}
#owl-ipro .owl-buttons .owl-next{
    right:-40px;
    position: absolute;
    width: 10px;
    height: 17px;
    top: 18px;
    background: url(../img/ipro-next.png) no-repeat center;
}
#owl-ipro .owl-controls{
    margin-top: 0;
}
@media(max-width: 1500px){
    .ipro-nav .container{
        padding: 0 30px;
    }
}
@media(max-width: 991px){
    .ipro-nav .container{
        padding: 0 15px;
    }
}
@media(max-width: 767px){
    .ipro-nav .container{
        padding: 0 50px;
    }
}
/*联系我们*/
.contact{
    overflow: hidden;
}
.contact-boxl{
    background: #f9f9f9;
    width: 460px;
    padding: 31px 0;
    float: left;
}
.contact-boxl ul{
    width: 294px;
    margin:0px auto;
}
.contact-boxl ul li{
    display: flex;
    align-items: center;
    border-bottom: 1px solid #d7d7d7;
    margin-bottom: 20px;
    padding-bottom: 15px;
}
.contact-boxrt{
    padding-left: 15px;
}
.contact-boxrt h4{
    margin-top: 10px;
}

.contact-boxr{
    float: right;
    width: calc(100% - 500px);
}
.contact-boxr img{
    width: 100%;
}
.contact-box{
    margin-top: 50px;
}
.contact-wrap{
    margin-top: 30px;
}
.contact-wrap ul li a{
    background: #f9f9f9;
    display: block;
    padding: 40px 30px;
}
.contact-wl{
    float: left;
    width: calc(100% - 110px);
}
.contact-wr{
    float: right;
    width: 110px;
}
.contact-wrap ul li{
    padding: 0 12px;
    margin-bottom: 24px;
}
.contact-wl h3{
    font-size: 18px;
    font-weight: bold;
    line-height: 28px;
    height: 30px;
}
.contact-wltxt{
    margin-top: 20px;
    line-height: 30px;
}
.contact-wrap ul li:hover a .contact-wl h3{
    color: #f58220;
}
@media(max-width:1600px){
    .contact-boxl{
        width: 380px;
    }
    .contact-boxr{
        float: right;
        width: calc(100% - 410px);
    }
    .contact-boxl{
        padding: 24px 0;
    }
}

@media(max-width:1400px){
    .contact-wl h3{
        font-size: 17px;
    }
}
@media(max-width:1300px){
    .contact-boxl ul li {
        display: flex;
        align-items: center;
        border-bottom: 1px solid #d7d7d7;
        margin-bottom: 10px;
        padding-bottom: 14px;
    }
    .contact-wl h3{
        font-size: 16px;
        line-height: 24px;
        height: 30px;
    }
    .contact-wltxt {
        margin-top: 20px;
        line-height: 24px;
        font-size: 14px;
    }

    .contact-wrap ul li{
        padding: 0 5px;
    }
}
@media(max-width:1200px){
    .contact-boxl ul li {
        display: flex;
        align-items: center;
        border-bottom: 1px solid #d7d7d7;
        margin-bottom: 10px;
        padding-bottom: 14px;
    }
    .contact-boxl {
        width: 340px;
    }
    .contact-boxr {
        float: right;
        width: calc(100% - 355px);
    }
    .contact-boxrt h4 {
        margin-top: 5px;
    }
    .contact-boxl ul li {
        margin-bottom: 10px;
        padding-bottom: 5px;
    }
    .contact-boxl {
        padding: 18px 0;
    }


    .contact-wrap ul li a {
        background: #f9f9f9;
        display: block;
        padding: 20px 15px;
        height: 155px;
    }
    .contact-wl h3 {
        font-size: 15px;
        line-height: 20px;
        height: auto;
    }
}
@media(max-width:991px){
    .contact-boxl {
        width: 100%;
        padding: 30px;
    }
    .contact-boxl ul{
        width: 100%;
    }
    .contact-boxr{
        width: 100%;
        margin-top: 15px;
    }
    .contact-wl h3{
        height: auto;
    }
    .contact-box {
        margin-top: 30px;
    }
    .prod img{
        width: 100%;
    }
}
@media(max-width:449px) {
    .contact-box {
        margin-top: 20px;
    }

    .contact-wl h3 {
        font-size: 16px;
        font-weight: normal;
        line-height: 24px;
    }

    .contact-wltxt {
        margin-top: 20px;
        line-height: 24px;
        font-size: 14px;
    }

    .contact-wrap ul li a {
        padding: 20px 15px;
    }

    .contact-wrap ul li {
        margin-bottom: 15px;
    }
}
