:root{
  --color-main:#009f1e;
  --color-main-light:#009f1e;
  --color-main-dark:#00781a;
  --color2:#018742;
  --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-four:repeat(4,23.5%);
}
@media (max-width:1024px){
  :root{
    --grid-four:repeat(2, 48.5%);
  }
}
@media (max-width:512px){
  :root{
    --grid-four:100%;
  }
}
@font-face {
  font-family:'NoticiaText';
  src:url('../fonts/NoticiaText-Bold.woff2') format('woff2');
}
@font-face {
  font-family:'Muli';
  src:url('../fonts/Muli.woff2') format('woff2');
}
.container{max-width:1360px;margin:0 auto}
.container.blank{padding-left:var(--padding-about);padding-right:var(--padding-about)}
.bg-light{background:#f7f7f7}
/*header start*/
.header{display:flex;padding-top:29px;padding-bottom:29px;justify-content:space-between;align-items:center;background:#fff}
.logo img{max-height:45px;backface-visibility:hidden;display:block}
.header-tel{position:relative;padding-left:45px}
.header-tel:before{content:'';width:40px;height:40px;background:var(--svg-tel) no-repeat center;background-size:100%;position:absolute;top:4px;left:0}
.header-tel span{color:#666;margin-left:3px}
.header-tel strong{color:#0054a6;font-size:23px;display:block;line-height:1}
.nav{background:var(--color-main)}
.nav-wrapper {display:flex;justify-content:space-between}
.nav__item{padding:0 30px;position:relative}
.nav__item.active,
.nav__item:hover{background:var(--color-main-dark)}
.nav__item > a{font-size:17px;transition:color .3s;color:#fff;padding:18px 30px;display:flex;align-items:center;justify-content:center}
.nav-switch{display:none}
@media (max-width:1200px){
  .nav__item{padding:12px 15px}
  .search{display:flex;width:280px}
  .search input[type=text]{flex:0 0 200px}
}
@media (max-width:1024px){
  .logo img{max-height:36px}
  .nav__item{padding:12px 10px}
  .nav__item > a{font-size:14px}
}
@media (max-width:768px){
  :root{--header-height:63px}
  body:before{content:'';display:block;height:var(--header-height)}
  .header{padding-top:15px;padding-bottom:15px;position:fixed;top:0;right:0;width:100%;z-index:101;border-bottom:solid 1px #eee}
  .header:before{content:'';position:absolute;top:0;right:0;bottom:0;left:0;background:#fff;z-index:-1}
  .logo img{max-height:32px}
  .header-tel{display:none}
  .nav{padding:0 8%;position:fixed;top:var(--header-height);left:0;right:0;height:0;background:#fcfcfc;overflow:hidden;transition:height .3s}
  .nav.open{overflow:auto;height:calc(100vh - var(--header-height));z-index:11}
  .nav-wrapper{flex-direction:column;justify-content:flex-start}
  .nav__item{width:100%;border-bottom:solid 1px #eee;margin-top:15px;padding:10px 12px}
  .nav__item > a{font-weight:600;font-size:15px;color:#333;padding:0;display:inline}
  .nav__item.active,
  .nav__item:hover{background:var(--color-main)}
  .nav__item.active a,
  .nav__item:hover a{color:#fff}
  .nav-switch{display:flex;width:22px;height:16px;;position:relative;border-top:solid 2px #555;border-bottom:solid 2px #555;transition:.4s}
  .nav-switch:before,
  .nav-switch:after{content:'';height:2px;width:100%;position:absolute;right:0;top:5px;background:#555;transition:.3s}
  .nav-switch.open{border-color:#fff}
  .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:37vw!important;background-repeat:no-repeat;background-position:center 0;background-size:cover}
@media (max-width:1024px){
  .home-banner__slide{height:42vw!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-title{text-align:center;position:relative;margin:0 0 var(--margin-default);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)}
.main-title{text-align:center;position:relative;padding-bottom:20px;margin-bottom:min(40px,5vw)}
.main-title strong{font-size:clamp(25px,4vw,40px);letter-spacing:2px;text-transform:uppercase;font-family:'NoticiaText'}
.main-title:before {content:'';bottom:1px;left:50%;margin-left:-70px;width:140px;height:2px;position:absolute;background:#999}
.main-title:after {content:'';bottom:0;left:50%;margin-left:-15px;width:30px;height:4px;position:absolute;background:var(--color-main)}
@media (max-width:768px){
  .main-title:before {margin-left:-60px;width:120px}
  .main-title:after {margin-left:-15px;width:30px}
}
.home-more{display:flex;justify-content:center;margin-top:clamp(25px,4.5vw,55px)}
.home-more__link{font-size:16px;background:var(--color2);padding:var(--padding-more);color:#fff;border-radius:4px;transition:background-color .3s}
.product-list{display:grid;grid-template-columns:var(--grid-four);justify-content:space-between;row-gap:30px}
.product-list__item{border:solid 1px #eee;border-radius:4px;box-shadow:0 0 9px 2px rgba(0,0,0,.05)}
.product-list__img{aspect-ratio:1/1;border-radius:4px 4px 0 0;border-bottom:solid 1px #eee;overflow:hidden}
.product-list__img img{width:100%;height:100%;object-fit:cover;transition:transform .4s}
.product-list__img:hover img{transform:scale(1.05)}
.product-list__title{font-size:16px;line-height:1.4;padding:25px 15px;text-align:center}
.product-list__title a{transition:color .3s}
.product-list__title a:hover{color:var(--color-main)}
@media (max-width:1024px){
  .product-list{row-gap:30px}
}
.home-about-wrap{background-color:#f5f5f5}
.about-list{display:grid;grid-template-columns:repeat(3,32%);justify-content:space-between;row-gap:30px}
.about-list li{border:solid 1px #eee;border-radius:4px;box-shadow:0 0 9px 2px rgba(0,0,0,.05);border-radius:4px;overflow:hidden}
.about-list img{width:100%;height:100%;object-fit:cover}
@media (max-width:768px){
  .about-list{grid-template-columns:100%;row-gap:30px}
}
.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(--color2);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:14px;border:solid 1px #fff;border-radius:15px;color:#fff;padding:4px 12px}
.home-news__more a:hover{background:#fff;color:var(--color2)}
@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}
}
.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}
.contact-info{margin-bottom:var(--margin-long);display:grid;grid-template-columns:repeat(3,31%);justify-content:space-between;row-gap:25px}
.contact-info__item{background:#f8f8f8;padding:var(--padding-around-long) 12px;border-radius:6px;text-align:center;transition:background-color .3s}
.contact-info__item:hover{background-color:#f0f0f0}
.contact-info__item figure{width:35px;aspect-ratio:1/1;margin:0 auto;background-color:var(--color-main);mask-size:100%;-webkit-mask-size:100%}
.contact-info__item figure.address{mask-image:var(--svg-location);-webkit-mask-image:var(--svg-location)}
.contact-info__item figure.tel{mask-image:var(--svg-tel);-webkit-mask-image:var(--svg-tel)}
.contact-info__item figure.wechat{mask-image:var(--svg-wechat);-webkit-mask-image:var(--svg-wechat)}
.contact-info__item figure.qq{mask-image:var(--svg-qq);-webkit-mask-image:var(--svg-qq)}
.contact-info__item figure.email{mask-image:var(--svg-email);-webkit-mask-image:var(--svg-email)}
.contact-info span{font-size:16px;color:#777}
.contact-info small{font-size:18px;display:block;margin:20px 0;color:#777}
@media (max-width:768px){
  .contact-info{grid-template-columns:100%}
}
.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}
.goods-wrap{display:grid;grid-template-columns:33% 60%;column-gap:30px;row-gap:30px}
.goods-img{width:100%;aspect-ratio:1/1;border-radius:8px;overflow:hidden}
.goods-img img{width:100%;height:100%;object-fit:cover}
.goods-info{padding:20px 12px;border:solid 1px #eee;border-radius:8px}
.goods-title{font-size:23px;margin-bottom:16px;font-weight:600;}
.goods-desc{font-size:16px;line-height:1.8;margin-bottom:18px;color:#333}
@media (max-width:1024px){
  .goods-wrap{grid-template-columns:100%}
}