:root{
  --color-main:#cb9274;
  --color2:#8ebb34;
  --padding-about:16px;
  --padding-home-box:clamp(25px,5vw,80px);
  --padding-page-box:clamp(25px,3.5vw,40px);
  --padding-more:min(12px,2vw) min(40px,4vw);
  --padding-around:clamp(18px,3vw,30px);
  --padding-around-long:clamp(25px,3.5vw,45px);
  --padding-around-short:clamp(12px,2vw,20px);
  --margin-default:clamp(16px,2.5vw,30px);
  --margin-long:clamp(25px,3.5vw,45px);
  --margin-short:20px;
  --font-size-title:clamp(22px,3.5vw,35px);
  --font-size-page-title:clamp(20px,3.3vw,32px);
  --font-size-box-title:clamp(17px,2vw,23px);
  --font-size-list-title:clamp(16px,2vw,18px);
  --font-size-desc:min(16px,3vw);
  --font-size-detail-title:clamp(20px,2.5vw,28px);
  --font-size-detail-desc:clamp(15px,1.5vw,17px);
  --grid-row-gap:clamp(22px,3vw,30px);
  --grid-row-gap-long:clamp(25px,3.5vw,40px);
  --grid-row-gap-short:20px;
  --grid-two:repeat(2,48.5%);
  --grid-three:repeat(3,32%);
  --grid-four:repeat(4,23.5%);
  --grid-five:repeat(5,19%);
}
@media (max-width:1280px){
  :root{

  }
}
@media (max-width:1024px){
  :root{
    --grid-four:repeat(2, 48.5%);
  }
}
@media (max-width:768px){
  :root {
    --grid-two:100%;
  }
}
@media (max-width:512px){
  :root{

  }
}
@media (max-width:414px){
  :root{
    --grid-four:100%;
  }
}
.container{max-width:1500px;margin:0 auto}
.container.blank{padding-left:var(--padding-about);padding-right:var(--padding-about)}
.bg-light{background:#f7f7f7}
.header{background:rgba(0,0,0,.7);position:fixed;top:0;right:0;width:100%;z-index:201;padding:25px 50px;;display:flex;align-items:center;justify-content:space-between}
.logo img{max-height:clamp(35px,4vw,60px);backface-visibility:hidden;display:block}
.nav{flex:1;display:flex;justify-content:flex-end;align-items:center}
.nav__item{padding:12px clamp(10px,2vw,30px);position:relative}
.nav__item > a{color:#fff;font-size:15px;transition:color .3s}
.nav__item > a:hover{color:var(--color-main)}
.nav__item > a:after{content:'';position:absolute;bottom:-2px;left:50%;width:0;height:1px;transform:translateX(-50%);background:var(--color-main);transition:width .3s}
.nav__item > a:hover:after,
.nav__item.active > a:after{width:28px}
.nav__item.dropdown:after{content:'';width:16px;height:16px;position:absolute;top:15px;right:5px;background:var(--svg-bottom) no-repeat}
.nav__dropdown{width:100%;height:0;overflow:hidden;z-index:-10;opacity:0;position:absolute;top:130%;left:50%;transform:translateX(-50%);padding:0;border:solid 1px #ddd;border-radius:3px;box-shadow:0 2px 5px 1px rgba(0,0,0,.05);background:#fff;transition:top .3s,opacity .3s}
.nav__dropdown li{text-align:center;padding:6px 0;border-bottom:solid 1px #f2f2f2}
.nav__dropdown li:last-child{border-bottom:none}
.nav__dropdown li:hover{background-color:#f5f5f5}
.nav__item:hover .nav__dropdown{height:auto;padding:5px 0;top:100%;z-index:101;opacity:1}
.nav-switch{display:none}
@media (max-width:1024px){
  .header{padding:13px 15px}
  .nav{display:block;position:fixed;top:0;right:110%;bottom:0;width:80%;z-index:211;background:#222;padding:30px 0 0;overflow:auto;transition:right .3s}
  .nav.open{right:20%;box-shadow:18px 0 18px 2px rgba(0,0,0,.1),0 0 5px 1px rgba(0,0,0,.1)}
  .nav__item{padding:0;width:100%;;border-bottom:solid 1px rgba(255,255,255,.05)}
  .nav__item > a{color:#fff;font-size:15px;line-height:58px;display:inline-block;margin-left:40px}
  .nav__item > a:after{display:none}
  .nav__item.dropdown:after{width:auto;height:auto;border:4px solid transparent;border-bottom:0;border-top-color:#fff;right:30px;top:27px}
  .nav__item:hover .nav__dropdown{height:0;padding:0}
  .nav__dropdown{position:static;background:#303030;opacity:1;box-shadow:none;border:0;transform:translateX(0);transition:height .3s !important}
  .nav__dropdown li{text-align:left;padding:11px 10px 11px 60px;border-bottom:solid 1px rgba(255,255,255,.05)}
  .nav__dropdown li:hover{background-color:transparent}
  .nav__dropdown li a{color:#eee}
  .nav-switch{display:flex;width:22px;height:16px;;position:relative;border-top:solid 2px #eee;border-bottom:solid 2px #eee;transition:.4s}
  .nav-switch:before,
  .nav-switch:after{content:'';height:2px;width:100%;position:absolute;right:0;top:5px;background:#eee;transition:transform .3s}
  .nav-switch.open{border-color:transparent;transition:0s}
  .nav-switch.open:before{transform:rotate(45deg)}
  .nav-switch.open:after{transform:rotate(-45deg)}
}
.footer-wrap{background:#151515;color:#888}
.footer-wrap a{color:#888;transition:color .3s}
.footer-wrap a:hover{color:#ddd}
.footer{padding-top:clamp(25px,4vw,50px);padding-bottom:var(--padding-around);display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap}
.footer-text{flex-basis:70%}
.footer-link{padding-bottom:15px;font-size:15px;display:flex}
.footer-link a{font-size:16px;margin-right:23px}
.footer-contact{}
.footer-contact li{margin:15px 0;display:flex;align-items:center}
.footer-contact li span{flex:calc(100% - 32px)}
.footer-contact li:before{content:'';margin-right:12px;width:20px;height:20px;background:#888;mask-size:100%}
.footer-contact li:nth-child(1):before{mask-image:var(--svg-tel);-webkit-mask-image:var(--svg-tel)}
.footer-contact li:nth-child(2):before{mask-image:var(--svg-email);-webkit-mask-image:var(--svg-email)}
.footer-contact li:nth-child(3):before{mask-image:var(--svg-location);-webkit-mask-image:var(--svg-location)}
.footer-qrcode{display:flex;justify-content:space-between}
.footer-qrcode__item{width:110px;text-align:center;margin-left:20px}
.footer-qrcode__item:first-child{margin-left:0}
.footer-qrcode__item img{display:block;width:100%;margin-bottom:9px}
.footer-copyright{background:#111;margin-top:18px;border-top:solid 1px #222;padding:15px 0;text-align:center;color:#777;font-size:12px}
@media (max-width:768px){
  .footer-text{flex-basis:100%}
  .footer-link{justify-content:space-between}
  .footer-link a{font-size:14px;margin-right:0}
  .footer-qrcode{flex-basis:100%;justify-content:center;margin-top:25px}
}
.home-banner{position:relative}
.home-banner__slide{height:40vw!important;background-repeat:no-repeat;background-position:center 0;background-size:cover}
@media (max-width:768px){
  .home-banner__slide{height:66vw!important}
}
.home-box{padding-top:var(--padding-home-box);padding-bottom:var(--padding-home-box)}
.home-more{margin-top:min(50px,6vw);display:flex;align-items:center;justify-content:center}
.home-more a{background:var(--color-main);padding:var(--padding-more);color:#fff;border-radius:4px;transition:background-color .3s}
.home-more a:hover{background:var(--color-main-dark)}
.page-main{padding:var(--padding-page-box) 0 var(--padding-home-box)}
.page-banner{height:min(360px,38vw);background-repeat:no-repeat;background-position:center center;background-size:cover}
.page-breadcrumb{background:#f9f9f9;padding:15px 0}
.page-title{text-align:center;position:relative;margin:0 0 var(--margin-long);padding-bottom:14px}
.page-title:before{content:'';position:absolute;bottom:0;left:50%;margin-left:-25px;width:50px;height:2px;background:#333}
.page-title span{font-size:var(--font-size-page-title)}
.page-banner{height:500px;background-repeat:no-repeat;background-position:center center;background-size:cover}
@media (max-width:768px){
  .page-banner{height:50vw}
}
.contact-list{display:grid;grid-template-columns:repeat(2,49%);row-gap:30px;justify-content:space-between}
.contact-list li{border:solid 1px var(--color-main);border-radius:5px;padding:35px 10px;text-align: center}
.contact-list span{display:block;font-size:14px;color:#666;margin:20px 0}
.contact-list p{font-size:18px;color:#333;margin-top:10px}
.contact-list figure{width:35px;aspect-ratio:1/1;margin:0 auto;background-color:var(--color-main);mask-size:100%;-webkit-mask-size:100%}
.contact-list figure.address{mask-image:var(--svg-location);-webkit-mask-image:var(--svg-location)}
.contact-list figure.phone{mask-image:var(--svg-tel);-webkit-mask-image:var(--svg-tel)}
.contact-list figure.wechat{mask-image:var(--svg-wechat);-webkit-mask-image:var(--svg-wechat)}
.contact-list figure.qq{mask-image:var(--svg-qq);-webkit-mask-image:var(--svg-qq)}
.contact-list figure.email{mask-image:var(--svg-email);-webkit-mask-image:var(--svg-email)}
@media (max-width:512px){
  .contact-list{grid-template-columns:100%;row-gap:25px}
  .contact-list li{padding:25px 10px}
}
.news-list{display:grid;grid-template-columns:repeat(2,47.5%);justify-content:space-between;row-gap:35px}
.news-list__item{}
.news-list__img{aspect-ratio:16/9}
.news-list__img img{width:100%;height:100%;object-fit:cover;border-radius:3px}
.news-list__txt{padding:20px 0;border-bottom:solid 1px #f2f2f2}
.news-list__title{font-size:18px;margin-bottom:20px;font-weight:500;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}
.news-list__title a:hover{color:var(--color-main)}
.news-list__desc{font-size:14px;color:#777;line-height:1.7;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}
@media (max-width:1024px){
  .news-list{grid-template-columns:repeat(2,48.5%);row-gap:25px}
}
@media (max-width:768px){
  .news-list{grid-template-columns:100%;row-gap:25px}
}
.page-about-wrap{padding:20px}
.page-about{max-width:1200px;display:flex;justify-content:space-between;align-items:center;margin:50px auto;flex-wrap:wrap}
.page-about__img{flex:0 0 520px;position:relative;height:600px}
.page-about__img:before{content:'';width:270px;height:270px;z-index:1;background:url("../images/about-before.png");background-size:cover;position:absolute;top:40px;left:40px;opacity:.6}
.page-about__img:after{content:'';width:120px;height:120px;background:#f9f9f9;z-index:1;position:absolute;bottom:130px;right:40px;border-radius:100%}
.page-about__img .img1{position:absolute;top:0;right:0;z-index:2;width:320px}
.page-about__img .img2{position:absolute;top:200px;left:0;z-index:3;width:280px}
.page-about__img .img3{position:absolute;bottom:0;left:230px;z-index:4;width:200px}
.page-about__info{flex:0 0 48% }
.page-about__info h3{font-size:clamp(22px,3vw,28px)}
.page-about__txt{margin-top:30px}
.page-about__txt p{font-size:16px;color:#777;margin-top:15px;line-height:1.7}
@media (max-width:1280px){
  .page-about__img{flex:0 0 48%}
  .page-about__info{flex:0 0 46%}
}
@media (max-width:1024px){
  .page-about{justify-content:center;margin:30px auto}
  .page-about__info{flex:0 0 100%}
  .page-about__txt{margin-top:20px}
  .page-about__img{flex:0 0 460px;height:540px;order:2;margin-top:50px}
  .page-about__img .img1{top:0;right:0;width:60%}
  .page-about__img .img2{top:31%;left:0;;width:54%}
  .page-about__img .img3{bottom:0;left:40%;width:42%}
  .page-about__img:before{width:48%;height:auto;aspect-ratio:1/1;top:10%;left:10%}
  .page-about__img:after{width:30%;height:auto;aspect-ratio:1/1;bottom:20%;right:6%}
}
@media (max-width:512px){
  .page-about__img{flex:0 0 80vw;height:95vw}
}
.product-category{display:flex;justify-content:center;align-items:center;gap:30px}
.product-category a{border:solid 1px #ddd;padding:10px 30px;border-radius:10px;transition:background-color .3s}
.product-category a:hover,
.product-category a.active{background-color: var(--color-main);color:#fff}
.product-list{margin-top:40px;display:grid;grid-template-columns:repeat(3,32%);column-gap:2%;row-gap: 25px}
.product-list__grid{}
.product-list__img{background: #fff;height:450px;padding:12px;border:solid 1px #eee;border-radius:3px;box-shadow: 0 0 6px 1px rgba(0,0,0,.02);overflow: hidden;display:flex;align-items: center;justify-content: center}
.product-list__img img{width:100%;height:100%;object-fit:cover;transition: transform .3s}
.product-list__img img:hover{transform: scale(1.05)}
.product-list__txt{font-size:16px;margin-top:15px;text-align: center}
@media (max-width:1440px){
  .product-list__img{height:30vw}
}
@media (max-width:768px){
  .product-list{margin-top:30px;grid-template-columns:100%;column-gap:3%}
  .product-list__img{height:90vw;padding:10px}
}
@media (max-width:512px){
  .product-list__img{height:46vw}
}
.goods-wrap{display:grid;grid-template-columns:600px calc(100% - 650px);justify-content:space-between;row-gap:30px}
.goods-photo{}
.goods-photo__thumb{aspect-ratio:1/.8;display:flex;align-items:center;justify-content:center;border:solid 1px #e5e5e5;border-radius:3px;padding:5px;cursor:pointer}
.goods-photo__thumb img{width:100%;height:100%;object-fit:cover}
.goods-photo__list{display:flex;justify-content:space-between;margin-top:12px}
.goods-photo__list li{flex:0 0 19%;aspect-ratio:1/.8;border:solid 1px #eee;padding:2px;cursor:pointer}
.goods-photo__list img{width:100%;height:100%;object-fit:cover;display:block}
.goods-info__h1{margin-bottom:30px;font-size:var(--font-size-detail-title);font-weight:500}
.goods-info__data{margin-bottom:17px;padding-top:17px;border-top:solid 1px #eee}
.goods-info__desc{margin:20px 0 30px;background:#f9f9f9;padding:12px;border-radius:5px;line-height:1.7;color:#777}
.goods-info__button{display:flex}
.goods-info__button button{font-size:15px;background:var(--color-main);color:#fff;padding:12px 35px;border-radius:3px;cursor:pointer}
@media (max-width:1280px){
  .goods-wrap{grid-template-columns:40% 56%}
}
@media (max-width:1024px){
  .goods-wrap{grid-template-columns:100%}
}
.main-title {text-align: center;padding:20px 0}
.main-title span{text-transform: uppercase;font-size:18px;color:#999;letter-spacing: 3px}
.main-title strong{display:block;margin: 0 auto;color:var(--color-main);font-size:28px;width:160px;position:relative}
.main-title strong:after,
.main-title strong:before{content:'';position:absolute;top:23px;left:-60px;height:1px;width:60px;background: #ccc}
.main-title strong:after{left:auto;right:-60px}
@media (max-width:1024px){
  .main-title {padding:40px 0}
}
@media (max-width:768px){
  .main-title span{font-size:14px}
  .main-title strong{font-size:22px;width:150px}
  .main-title strong:before,
  .main-title strong:after{top:20px}
}
@media (max-width:512px) {
  .main-title {padding:10px 0}
  .main-title span{font-size:12px}
  .main-title strong{font-size:20px;width:140px}
  .main-title strong:before,
  .main-title strong:after{top:15px}
}
.home-about-wrap{background:#f8f8f8}
.home-about{display:grid;grid-template-columns:46% 50%;justify-content:space-between;align-items:center;row-gap:25px}
.home-about__img{height:400px}
.home-about__img img{width:100%;height:100%;object-fit:cover}
.home-about__info h3{position:relative;font-size:clamp(18px,3vw,28px);padding-bottom:30px}
.home-about__info h3:after{content:'';position:absolute;left:0;bottom:0;width:50px;height:3px;background:var(--color-main)}
.home-about__info p{margin:35px 0;line-height:2;font-size:15px;color:#666}
.home-about__info a.more {display:inline-block;border:solid 1px var(--color-main);padding:6px 20px;border-radius:3px;font-size:12px;transition: .3s}
.home-about__info a.more:hover{background:var(--color-main);color:#fff}
@media (max-width:1024px){
  .home-about{grid-template-columns:100%}
  .home-about__img{height:40vw;overflow: hidden}
  .home-about__info h3{padding-bottom:20px}
  .home-about__info p{margin:25px 0}
}
.home-news-wrap{background:#f8f8f8}
.home-news{margin-top:40px;display:grid;grid-template-columns:repeat(4,23.5%);justify-content: space-between;row-gap: 25px}
.home-news__item{transition:box-shadow .3s;border-radius:8px}
.home-news__item:hover{box-shadow:0 0 12px 2px rgba(0,0,0,.25)}
.home-news__img{height:320px;overflow: hidden;position:relative}
.home-news__img img{border-radius:8px 8px 0 0;width:100%;height:100%;object-fit:cover}
.home-news__img:after{height:40px;content:'';position:absolute;z-index:2;right:0;bottom:0;width:100%;background: url("../images/home-news-bg.png");background-size: 100% 100%}
.home-news__txt{padding:20px 12px 30px;background: var(--color-main);position:relative;border-radius:0 0 8px 8px}
.home-news__date{padding:9px 0;position:absolute;z-index:3;width:80px;margin-left:-40px;top:-60px;left:50%;background:#fff;border-radius:7px;text-align: center}
.home-news__day{font-weight: 600;font-size:20px}
.home-news__title{text-align: center;margin-bottom:20px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;color:#fff}
.home-news__title a{font-size:16px;color:#fff}
.home-news__more{text-align: center}
.home-news__more a{font-size:12px;border:solid 1px #fff;border-radius:15px;color:#fff;padding:4px 10px}
.home-news__more a:hover{background: #fff;color:var(--color-main)}
@media (max-width:1200px){
  .home-news__img{height:23vw}
}
@media (max-width:1024px){
  .home-news{grid-template-columns:repeat(2,48.5%)}
  .home-news__img{height:38vw}
  .home-news__txt{padding:12px 12px 20px}
  .home-news__date{padding:6px 0;width:74px;margin-left:-35px}
}
@media (max-width:512px){
  .home-news{margin-top:30px;grid-template-columns:100%}
  .home-news__img{height:60vw}
  .home-news__img:after{height:25px}
  .home-news__txt{padding:30px 12px}
  .home-news__title a{font-size:15px}
  .home-news__date{top:-50px}
}
.about-photo{}
.about-photo__item{display:flex;flex-wrap:wrap;margin-bottom:25px;background: #f5f5f5;border-radius:10px 0 10px 0}
.about-photo__item figure{flex:0 0 50%;height:500px}
.about-photo__item figure img{width:100%;height:100%;object-fit: cover}
.about-photo__item .right img{border-radius:0 0 8px 0}
.about-photo__item article{flex:0 0 50%;padding:40px;display:flex;align-items: center;justify-content: center}
.about-photo__item h3{font-size:22px;padding-bottom:20px;font-weight:600;color:var(--color-main)}
.about-photo__item p{line-height:2;font-size:16px}
.about-photo__item:nth-child(odd) figure img{border-radius:10px 0 0 0}
.about-photo__item:nth-child(even) article{order:1}
.about-photo__item:nth-child(even) figure{order:2}
.about-photo__item:nth-child(even) figure img{border-radius:0 0 10px 0}
@media (max-width:1440px){
  .about-photo__item figure{height:40vw}
}
@media (max-width:1024px){
  .about-photo__item{margin-bottom:20px}
  .about-photo__item:nth-child(even) article{order:2}
  .about-photo__item:nth-child(even) figure{order:1}
  .about-photo__item:nth-child(even) figure img,
  .about-photo__item:nth-child(odd) figure img{border-radius:10px 10px 0 0}
  .about-photo__item .right{order:1}
  .about-photo__item figure{flex:0 0 100%;height:45vw;overflow: hidden}
  .about-photo__item figure img{height:auto}
  .about-photo__item article{padding:20px;flex:0 0 100%}
  .about-photo__item h3{font-size:22px;padding-bottom:15px}
  .about-photo__item p{line-height:1.8}
}
@media (max-width:512px) {
  .about-photo__item article{padding:13px}
  .about-photo__item h3{font-size:18px}
  .about-photo__item p{font-size:14px}
}
.article-h1{font-size:var(--font-size-detail-title);text-align:center}
.article-meta{margin:var(--margin-default) 0;background:#f8f8f8;padding:6px 9px;text-align:right;font-size:12px;color:#777}
.article-detail p{font-size:var(--font-size-detail-desc);line-height:1.8;margin-bottom:18px;color:#333}