@charset "utf-8";
header{
    width:100%; 
}
/*................*/
.header{
    padding: 0px 0px;
    max-width:1920px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    z-index: 999;
    position: fixed;
    width: 100%;
    top: 0px;
}
.header.on{ 
    background: rgba(0,0,0,0.9);
}
.header .logo img{
    height: 76px;
    padding: 15px 0px;
    width: auto;
    transition: all .5s;  
}
header .nav{
    padding: 0px 0px;    
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
header .nav>ul{   
    transition: all .5s;
}
header .nav>ul>li{
    display: inline-block;   
    padding: 0px 20px;
}
header .nav>ul>li>a{   
    position: relative;
    display: block;
    font-size: 1.125rem;
    color: #fff;
    text-transform: uppercase;
    padding: 0px 0px;   
    line-height: 76px;
    white-space: nowrap;
    transition: all 0.3s;
}
@media (max-width: 1280px){ 
    header .nav>ul>li{
        padding: 0px 10px;
    }   
}

header .nav>ul>li:hover a,header .nav>ul>li.active a{
    color: #ceba95;
}
.header .nav>ul>li:hover .submenu{ opacity:1; visibility:visible}
.header .nav>ul>li .submenu li:hover a,header .header.on .nav>ul>li .submenu li:hover a {color:#ceba95}

.submenu { 
    width: 100%;
    background: rgba(0,0,0,0.9);
    left: 0%;
    padding: 40px 0px 40px;
    position: absolute;
    top: calc(100% + 0px);
    z-index: 0;
    height: 0px;
    visibility: hidden;
    overflow: hidden;
    transition: height .5s;
    border-top: 1px solid rgba(255,255,255,0.2);    
}
.submenu .t {
    font-size: 22px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 20px;
}
.submenu .sub-menu{
    display: flex;
}
.submenu .sub-menu li {
    width: 20%;
    margin-right: 2%;
    display: block;     
    opacity: 0; 
    white-space: nowrap;
    -webkit-transition: opacity .4s, -webkit-transform .5s;
    -moz-transition: opacity .4s, -moz-transform .5s;
    -ms-transition: opacity .4s, -ms-transform .5s;
    -o-transition: opacity .4s, -o-transform .5s;
    transition: opacity .4s, transform .5s;
    text-align: left;    
}
.header .nav .submenu .sub-menu li a{
    font-size: 16px;
    color: #fff;
    line-height: 45px; 
    border-bottom: 1px solid rgba(255,255,255,0.2);
    display: block; transition: .6s;
}
.header .nav>ul>li:hover .submenu li, .header .nav>ul>li:focus .submenu li {
    opacity: 1;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}
.header .nav>ul>li:hover .submenu, .header .nav>ul>li:focus .submenu {
    height: 200px;
    z-index: 10;
}
/*分享按钮*/
.shareicon{
    font-size: 1.142rem;
    color: #fff;
    white-space: nowrap;
}
.shareicon ul{
    display: flex;
    align-items: center;
}
.shareicon ul li{
    position: relative;
    margin-left: 15px;
}
.shareicon i,.shareicon a{    
    color: #fff;
    font-size: 16px;
    transition: all 0.5s;
}
.shareicon a{
    font-size: 18px;
}

header .header .shareicon a.weChat .er-box {
    position: absolute;
    top: 100%; 
    left: 0;   
    width: 10px;
    height: 10px;
    opacity: 0.0;
    transition: all 0.3s;
}
header .header .shareicon a.weChat:hover .er-box{
    opacity: 1.0;
    background: #fff;
    padding: 5px;
    width: 100px;
    height: 100px;
}
@media (max-width: 992px){  
    .header .logo img {
        height: 55px;
        padding: 15px 0px;
    }
    header .nav>ul{
        display: block;
    }  
    header .nav{
        position: absolute;
        left:-100vw;
        top: 100%;
        width:100%;
        height:calc(100vh - 55px);
        background:#8a6d3b;        
        z-index:999;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        padding-top:20px;
    }
    header .nav.show{
        left:0;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
    }
    header .nav ul li{
        display: block !important; 
        padding:0 20px;
    }
    header .nav ul li a{        
        line-height: 45px;
        font-size: 16px;
        padding: 0px 10px;
        border-bottom: 1px solid #f8f8f8;
    }
    .submenu{
        display: none;
    }
    .shareicon{
        padding-top: 10px;
        margin-right: 5%;
    }
    .shareicon a span{
        font-size: 16px;
    }
}
/* banner */
.banner{
    position: relative;
    width: 100%;
    background: #000;
    overflow: hidden;
}
.banner .banner-txt{   
    text-align: center;
    width:100%;    
    position: absolute;
    left:0%;
    z-index: 9;
    color:#fff;
    top: 48%;    
}
.banner .banner-txt h3{
   font-size: 74px;
   font-weight: 600;
}
.banner .banner-txt h3 span{  
    display: block;  
    font-size: 35px;
}
@media(max-width:1299px){
    .banner .banner-txt h3{
        font-size: 32px;
    }
    .banner .banner-txt h3 span{
        font-size: 18px;       
    }
}
@media(max-width:991px){
    .banner .banner-txt{
        top: 30%;
    }
    .banner .banner-txt h3{
        font-size: 16px;
        margin-bottom: 5%; 
    }
    .banner .banner-txt h3 span{
        font-size: 12px;
    }
}

.common{
    padding-top: 100px;
    padding-bottom: 100px;
}
.commonB{
    margin-bottom: 100px;    
}
.title{
    font-size: 2rem;
    line-height: 1.0;
    font-weight: 600;
    position: relative; 
    margin-bottom: 30px;
}
.title span{
    display: block;
    text-transform: uppercase;
    color: #ceba95;    
    font-size: 3.125rem;
}
.more{    
    margin-top: 25px;
}
.more a{    
    display: inline-block;
    border-radius: 35px;
    color: #fff;
    padding: 18px 100px;
    font-size: 1.125rem;
    background: url(../img/more.png) #cdb994;    
    transition: all 0.3s ease-in-out;     
}
.more a:hover{padding: 18px 105px;}

@media (max-width:992px){    
    .common{
       padding-top:30px;
       padding-bottom:30px;
    }
    .title{
        font-size: 20px;
        margin-bottom: 10px;
    }
    .title span{
        font-size: 22px;
    }
    .more{
        margin-top: 15px;     
    }
    .more a{        
        padding: 5px 45px;
        font-size: 14px;  
    }
    .more a:hover{padding: 5px 55px;}
}
/*产品*/
.product{
    background: #fff;
    overflow: hidden;
    position: relative;  
}
/*首页关于我们*/
.about{
    position: relative;
    background: #f5f5f5;
    overflow: hidden;
}
.about .about-txt{
    width: 90%;
    margin: 0px auto 60px;
    font-size: 1.125rem;
}

@media (max-width:767px){
    .about .about-txt{
        width: 100%;
    } 
}

/*荣誉*/
.honor{
    background: #fff;
    overflow: hidden;
}
.honor-box{
    width: 70%;
    margin: 50px auto;
    position: relative;
    text-align: center;
}
.honor-box .swiper-container{
    overflow: unset;
}
.honor .honor-img{    
    background: #000;
    height: 450px;
    overflow: hidden;
    margin-bottom: 10px;    
}
.honor .swiper-slide .honor-img img{
    opacity: 0.3;
    width: 100%;
    margin-top: -10%;
}
.honor .swiper-slide.swiper-slide-active{
    transform: scale(1.1);
    z-index: 99;
}
.honor .swiper-slide.swiper-slide-active .honor-img img{
    opacity: 1.0;
}
.honor .swiper-button-prev,.honor .swiper-button-next,.food .swiper-button-prev,.food .swiper-button-next {   
    width: 55px;
    height: 55px;
    background: url(../img/wm_button_icon.png) no-repeat ;
    background-position: 0 0;
    background-size: 100%;
    transition: all 0.6s;
    border: 2px solid #fff;
    border-radius: 100%;
}
.honor .swiper-button-prev:hover,.honor .swiper-button-next:hover {
    background-color: #ceba95;
}
.honor .swiper-button-next,.food .swiper-button-next {    
   background-position: 0 -52px;
}
.honor .swiper-button-prev,.food .swiper-button-prev{
    left: 0px;
}
.honor .swiper-button-next,.food .swiper-button-next{
    right: 0px;   
}
/*广告*/
.adv{
    background: url(../img/adv.jpg) no-repeat center;
    background-attachment: fixed;
    color: #fff;
    padding: 12.5rem 0rem;
    text-align: center;
}
.adv .adv-title {    
    font-size: 3.4375rem;
    font-weight: 600;
    line-height: 1.2;
}
.adv .adv-title span{
    display: block;
    font-size: 2.1875rem;
    color: #f0e3cc;  
}
@media (max-width:991px){ 
	.adv{
		padding: 6.5rem 0rem;
	}
	.adv .adv-title {
	    font-size: 1.9rem;
	}
	.adv .adv-title span {
	    font-size: 1.2rem;
	}
}

.custom{
    background: url(../img/custom.jpg) no-repeat center;    
}

/* 新闻 */
.news{
    background: #fff;
    overflow: hidden;
}
.news .title a.more{
    float: right;
    display: inline-block;
    border-radius: 35px;
    color: #ceba95;
    padding: 10px 45px;
    font-size: 1.125rem;
    background: #fff;
    border: 2px solid #ceba95;    
    transition: all 0.3s ease-in-out;     
}
.news .title a.more:hover{padding: 10px 55px;}
.news .n-img{
    overflow: hidden;
}
.news .n-img img {    
    width: 100%;    
    transition: all 0.6s;
}
.news .n-img:hover img {
    transform: scale(1.1);
}
/*左侧*/
.picList{
    position: relative;
    float: left;
    width: 50%;
}
.picList .news-con{
    padding: 30px 40px;
    position: absolute;
    bottom: 0px;
    color: #fff;
    width: 100%;
    background: url(../img/ntitle.png) repeat-x bottom;
    background-size: 100% 100%;
}
/*右侧*/
.news-box {
    width: 48%;
    float: right;
}
.news-list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.news-box li,.news-list li{
    margin-bottom: 1.2%;
    background: #f5f5f5;
    padding: 1.08rem 1.04rem;
    border-left: 4px solid #ceba95;
}
.news-list li{
    width: 19.2%;
    border-left: 1px solid #ceba95;   
}
.picList .news-title,.news-box li .n-title,.news-list li .n-title{    
    font-size: 1.125rem;
    font-weight: bold;   
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    transition: all 0.6s;
}
.picList .news-title span{
    font-size: 1.0rem;
    display: block;
    color: #ceba95;
}
.news-list li .n-title{
    font-size: 1.0rem;   
}
.news-box li .n-title span,.news-list li .n-title span{
    float: right;
    color: #ceba95;
}
.picList .news-title span{
    font-size: 1.85rem;
}
.news-box li .n-desc,.news-list li .n-desc{   
    line-height: 1.2;    
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;   
    font-size: 0.80;
}
.picList .news-title:after,.news-box li .n-desc:before{
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: #ceba95;
    margin: 3px 0px 5px;
}
.nmore{
    color: #ceba95;
    font-weight: 600;
}
@media (max-width:991px){ 
    .news .more {
	    margin-top: 5px;
	}
    .news .n-title{
        font-size: 14px;
    }
   .news .n-desc {        
        -webkit-line-clamp: 2;
        line-clamp: 2;
        font-size: 12px;
    }
    .picList,.news-box{
        float: none;
        width: 100%;
        margin-bottom: 20px; 
    }
    .picList .news-con {
        padding: 10px 15px 10px;
    }   
    .news-box li .n-desc{
        margin: 0px 0px;
        -webkit-line-clamp: 2;
    }
    .picList .news-title,.picList .news-con .news-time,.news-box li .n-title{
       font-size: 14px;
       margin-top: 0px;
    }
    .news-box li {
        margin-bottom: 15px;
    } 
    .honor .honor-img{   
        height: auto;  
    } 
}