:root{
  --color1:#54961f;
  --color1-light: #69b22e;
  --color1-dark: #4a8a16;
  --color2:#1a70da;
}
.container{max-width:1270px;margin-left:auto;margin-right:auto}
.container.blank{padding-left:10px;padding-right:10px}
.header{padding-top:25px;padding-bottom:25px;justify-content:space-between;align-items:center;background:#fff}
.logo img{max-height:70px;backface-visibility:hidden;display:block}
.nav{display:flex;justify-content:flex-end;align-items:center}
.nav__item{padding:12px 25px;position:relative}
.nav__item > a{font-size:16px;transition:color .3s}
.nav__item > a:hover{color:#2077e3}
.nav__item > a:after{content:'';position:absolute;bottom:-2px;left:50%;width:0;height:2px;transform:translateX(-50%);background:#555;transition:width .3s}
.nav__item > a:hover:after,
.nav__item.cur > a:after{width:28px}
.nav-switch{display:none}
@media (max-width:1200px){
  .nav__item{padding:12px 15px}
}
@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:66px}
  body:before{content:'';display:block;height:var(--header-height)}
  .header{padding-top:13px;padding-bottom:12px;position:fixed;top:0;right:0;width:100%;border-bottom:solid 1px #eee;z-index:101}
  .logo img{max-height:40px}
  .nav{padding:0 8%;position:fixed;top:var(--header-height);left:0;right:0;height:0;background:url("../images/nav-mobile.jpg");background-size:cover;flex-direction:column;justify-content:flex-start;overflow:hidden;transition:height .3s}
  .nav[is-open]{overflow:auto;height:calc(100vh - var(--header-height));z-index:11;}
  .nav__item{width:100%;border-bottom:solid 1px #eee;padding:0 10px}
  .nav__item.icon:after{display:none}
  .nav__item > a{font-weight:600;font-size:15px;display:inline-block;padding:13px 0}
  .nav__item > a:after{display:none}
  .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)}
  .nav-switch-lang{margin-right:15px;width:16px;height:16px;border-radius:100%;font-size:16px;display:flex;justify-content:center;align-items:center}
}
.footer{background:#151515;padding-top:40px;;color:#999}
.footer a{color:#999}
.footer-text{flex-basis:70%}
.footer-link{padding-bottom:20px;font-size:15px;display:flex}
.footer-link a{margin-right:23px}
.footer-contact{}
.footer-contact li{padding:5px 0}
.footer-contact li:before{content:'';font-family:iconfont;font-size:16px;color:#aaa;margin-right:12px}
.footer-contact li:nth-child(1):before{content:'\e634'}
.footer-contact li:nth-child(2):before{content:'\e633'}
.footer-contact li:nth-child(3):before{content:'\e620'}
.footer-contact li:nth-child(4):before{content:'\e636'}
.footer-qrcode{margin-top:20px}
.footer-qrcode__item{text-align:center;margin-left:20px}
.footer-qrcode__item img{display:block;width:100px;margin-bottom:9px}
.footer-qrcode__item span{}
.copyright{background:#111;margin-top:18px;border-top:solid 1px #333;padding:10px 0;text-align:center;color:#999;font-size:12px}
.copyright a{color:#999}
@media (max-width:768px){
  .footer{padding-top:25px;padding-bottom:15px}
  .footer-text{flex-basis:100%}
  .footer-link{justify-content:space-between}
  .footer-link a{margin-right:0}
  .footer-qrcode{display:none}
  .footer-text .link{word-spacing:5px;font-size:14px}
}
@media (max-width:512px){
  .footer{padding-bottom:10px}
  .footer-text{font-size:12px;padding-bottom:10px}
  .footer-link{padding-bottom:10px;font-size:12px}
  .copyright{margin-top:5px}
}
.home-banner{position:relative}
.home-banner__slide{height:600px!important;background-repeat:no-repeat;background-position:center 0;background-size:cover}
@media (max-width:1280px){
  .home-banner__slide{height:45vw!important}
}
.home-box{padding-top:clamp(25px,6vw,80px);padding-bottom:clamp(25px,6vw,80px)}
.main-title{margin-bottom:30px;padding-bottom:28px;text-align: center;position:relative}
.main-title:after{content:'';width:200px;height:1px;background: #ddd;position:absolute;right:50%;bottom:0;transform:translateX(50%)}
.main-title:before{content:'';width:70px;height:5px;background:var(--color1);position:absolute;right:50%;bottom:-2px;z-index:1;transform:translateX(50%)}
.main-title span{font-size:clamp(21px,3vw,32px)}
.responsibility-list{display:grid;grid-template-columns:repeat(2,49%);justify-content: space-between;row-gap:30px}
@media (max-width:1024px){
  .main-title:after{width:190px}
  .main-title:before{width:60px;height:4px}
}
@media (max-width:768px){
  .main-title{padding-bottom:20px}
  .main-title:after{width:140px}
  .main-title:before{width:40px}
}
.main-more{text-align:center;margin-top:39px;display:flex;justify-content: center}
.main-more a{background:var(--color1);color:#fff;padding:10px 20px 10px 25px;border-radius:6px;transition:.3s}
.main-more a:hover{background:var(--color1-dark)}
.main-more a:after{content:'\e649';font-family:iconfont}
@media (max-width:768px){
  .main-more{margin-top:25px}
}
@media (max-width:512px){
  .main-more{margin-top:20px}
  .main-more a{font-size:12px}
}
.home-about {justify-content: space-between}
.home-about__figure{flex:0 0 40%;height:500px;position:relative;padding:20px 0 0 20px;}
.home-about__figure:before{content:'';width:0;height: 0;border-top:450px solid rgba(0,0,0,.1);border-right:450px solid transparent;position:absolute;top:0;left:0}
.home-about__figure img{width:90%;height:100%;object-fit:cover;position:relative;z-index:2;border-radius:9px}
.home-about__article{flex: 0 0 55%;padding:10px 0;display:flex;align-items:center}
.home-about__name{font-size:18px;color:#999;position:relative;}
.home-about__name:after{content:'';position:absolute;top:50%;left:100px;width:100px;height:1px;background: #999}
.home-about__title{font-size:clamp(20px,4vw,36px);margin:10px 0 20px;color:var(--color1);font-weight:600;}
.home-about__text{font-size:16px;line-height:2;color:#666}
.home-about__more {padding-left:80px;margin-top:40px;position:relative;}
.home-about__more a{display:inline-block;padding:7px 30px;color:var(--color1);border:solid 1px;}
.home-about__more a:hover{background:var(--color1);color:#fff}
.home-about__more:after{content:'';position:absolute;top:50%;left:0;width:100px;height:1px;background:var(--color1)}
@media (max-width:1280px){
  .home-about__figure{flex:0 0 43%}
  .home-about__figure:before{border-top:35vw solid var(--color1);border-right:35vw solid transparent;}
}
@media (max-width:768px){
  .home-about__figure{flex:0 0 100%;overflow:hidden;height:40vw;padding:0;border:solid 4px var(--color1);border-radius:4px;}
  .home-about__figure:before{display:none}
  .home-about__figure img{width:100%;border-radius:0}
  .home-about__article{flex: 0 0 100%}
  .home-about__name{font-size:16px}
  .home-about__name:after{left:70px;width:50px}
  .home-about__title{font-size:20px;margin:10px 0}
  .home-about__text{font-size:14px}
  .home-about__more {padding-left:0;margin-top:20px;text-align: center}
  .home-about__more a{padding:4px 20px}
  .home-about__more:after{display:none}
}
@media (max-width:512px) {
  .home-banner .swiper-slide{height:45vw}
  .home-about__title{font-size:18px}
}
.home-product-wrap{background:#f9f9f9}
.product-list{display:grid;grid-template-columns:repeat(4,23.5%);column-gap:2%;row-gap:30px}
.product-list__item{box-shadow:0 0 5px 1px rgba(0,0,0,0.1);padding:4px;border-radius:4px;background: #fff;transition:box-shadow .3s}
.product-list__item:hover{box-shadow: 0 0 20px rgba(0,0,0,0.1)}
.product-list__img{height:270px}
.product-list__img img{width:100%;height:100%;object-fit:cover;border-radius:4px}
.product-list__txt{text-align:center;padding:20px 9px;}
.product-list__name{font-size:16px;font-weight:500;display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}
.product-list__name:hover{color:var(--color1)}
.product-list__desc{margin-top:9px;color:#777;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}
@media (max-width:1280px){
  .product-list__img{height:20vw}
  .product-list__name{font-size:16px}
}
@media (max-width:1024px){
  .product-list{grid-template-columns:repeat(3,32%);column-gap:2%}
  .product-list__img{height:27vw}
  .product-list__name{font-size:15px}
}
@media (max-width:512px){
  .product-list{grid-template-columns:repeat(2,48.5%);column-gap:3%}
  .product-list__img{height:38vw}
  .product-list__txt{padding:12px 9px;}
  .product-list__desc{font-size:12px}
}
.home-advantage-wrap{padding:80px 0;background: url("../images/home-advantage.jpg") no-repeat center center;background-size: cover}
.home-advantage__title{font-size:clamp(22px,3vw,35px);text-align: center;color:#fff}
.home-advantage{margin-top:45px;display:grid;grid-template-columns:repeat(3,1fr);column-gap:45px;row-gap:65px}
.home-advantage__item{color:#eee;display:grid;grid-template-columns:66px auto;column-gap:20px;align-items: center}
.home-advantage__item:before{font-size:28px;font-family: iconfont;width:66px;height:66px;border-radius:50%;background: var(--color1);display:flex;align-items:center;justify-content:center}
.home-advantage__item:nth-child(1):before{content:'\e60d'}
.home-advantage__item:nth-child(2):before{content:'\e6fe'}
.home-advantage__item:nth-child(3):before{content:'\e7ef'}
.home-advantage__item:nth-child(4):before{content:'\e76c'}
.home-advantage__item:nth-child(5):before{content:'\e7a6'}
.home-advantage__item:nth-child(6):before{content:'\e776'}
.home-advantage__txt{}
.home-advantage__name{font-size:19px}
.home-advantage__desc{margin-top:9px;font-size:12px}
@media (max-width:1024px){
  .home-advantage-wrap{padding:60px 0}
  .home-advantage{margin-top:35px;grid-template-columns:repeat(2,1fr);column-gap:35px;row-gap:50px}
}
@media (max-width:768px){
  .home-advantage-wrap{padding:40px 0}
  .home-advantage{margin-top:30px;grid-template-columns:100%;column-gap:0;row-gap:30px}
  .home-advantage__item{grid-template-columns:50px auto;column-gap:20px}
  .home-advantage__item:before{font-size:22px;width:50px;height:50px}
}
@media (max-width:512px){
  .home-advantage__name{font-size:16px}
}
.home-news{background:#fbfbfb}
.home-news-list{display:grid;grid-template-columns:49% 49%;column-gap:2%;row-gap:25px}
.home-news__grid{display:grid;grid-template-columns:26% 71%;column-gap:3%;background:#fff;padding:9px}
.home-news__grid:hover{box-shadow:0 0 20px rgb(0 0 0 / 5%)}
.home-news__img{height:120px}
.home-news__img img{width:100%;height:100%;object-fit:cover}
.home-news__txt{}
.home-news__title{font-size:17px;display:block;margin:12px 0;padding-bottom:11px;border-bottom:solid 1px #eee;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}
.home-news__title:hover{color:var(--color2)}
.home-news__desc{color:#777;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}
.home-news__date{color:#999;font-size:12px}
@media (max-width:1024px){
  .home-news__grid{grid-template-columns:32% 66%}
}
@media (max-width:768px){
  .home-news-list{grid-template-columns:100%;column-gap:0;row-gap:20px}
  .home-news__grid{grid-template-columns:24% 74%}
}
@media (max-width:512px){
  .home-news__grid{grid-template-columns:35% 63%;column-gap:3%}
  .home-news__title{font-size:15px}
}
.page-banner{height:380px;background-repeat:no-repeat;background-position:center 0;background-size:cover}
@media (max-width:768px){
  .page-banner{height:35vw}
}
@media (max-width:512px){
  .page-banner{height:39vw}
}
.page-main{margin:clamp(25px,4vw,45px) auto}
.page-title{text-align:center;position:relative;margin:40px 0;padding-bottom:15px}
.page-title:before{content:'';position:absolute;bottom:0;left:50%;margin-left:-25px;width:50px;height:2px;background:#333}
.page-title span{font-size:clamp(22px,3vw,30px)}
.page-title small{display:block;color:#999;font-size:min(16px,3vw);margin-top:9px;text-transform:uppercase}
@media (max-width:1024px){
  .page-title{margin:30px 0 20px}
  .page-title small{margin-top:6px}
}
.page-text p{font-size:16px;line-height:1.8;margin-bottom:12px}
.page-text img{max-width:100%}
.article-h1{font-size:25px;margin:30px 0 22px;text-align:center}
.article-meta{font-size:12px;text-align:right;padding:5px;background:#fbfbfb;margin:22px 0;color:#777}
.article-detail{font-size:16px}
.article-detail p{line-height:1.8;margin-bottom:12px}
.article-detail img{max-width:100%}
.article-detail ul{padding-left:12px;margin:16px 0}
.article-detail li{list-style-type:disc;margin:11px 0;}
.detail-neighbor{margin:50px 0;border-top:solid 1px #ddd;padding-top:12px;justify-content:space-between}
.detail-neighbor div{color:#777}
.detail-neighbor a:hover{text-decoration:underline}
@media (max-width:768px){
  .article-detail h1{margin-top:20px;font-size:17px}
  .article-detail .neighbor div{flex:0 0 100%;margin-bottom:9px}
}
.BMap_cpyCtrl{display:none}
.contact-info{margin:30px auto 20px;justify-content:space-between}
.contact-info__item{flex:0 0 24%;background:#fcfcfc;padding:50px 12px;border-radius:6px;text-align:center}
.contact-info__item:before{content:'';font-family:iconfont;color:#999;font-size:2rem}
.contact-info__item.address:before{content:'\e637'}
.contact-info__item.tel:before{content:'\e636'}
.contact-info__item.wechat:before{content:'\e6b2'}
.contact-info__item.qq:before{content:'\e624'}
.contact-info__item.email:before{content:'\e620'}
.contact-info span{font-size:16px;color:#777}
.contact-info small{display:block;margin:9px 0;color:#555}
.content-map{height:500px;border:#ccc solid 1px}
@media (max-width:1024px){
  .contact-info__item{flex:0 0 49%;margin-bottom:12px}
}
@media (max-width:512px){
  .contact-info{margin:10px auto}
  .contact-info__item{text-align:left;flex:0 0 100%;position:relative;padding:12px 0 12px 60px;border-bottom:dashed 1px #eee}
  .contact-info__item:before{font-size:1.6rem;position:absolute;top:30px;left:20px}
  .content-map{height:360px;border:#ccc solid 1px}
}
.honor-list{margin-top:10px;display:grid;grid-template-columns:repeat(2, 48.5%);row-gap:25px;}
.honor-list__item{}
.honor-list__item figure{height:420px;display:flex;justify-content:center;align-items:center;border:solid 1px #ddd;padding:8px}
.honor-list__item figure img{max-width:100%;max-height:100%}
.honor-list__item article{text-align:center;padding-top:0}
@media (max-width:1280px){
  .honor-list__item figure{height:32vw}
}
.news-row{margin-bottom:40px;display:grid;grid-template-columns:30% 66%;justify-content:space-between}
.news-row__img{height:250px;position:relative}
.news-row__img img{width:100%;height:100%;object-fit:cover;border-radius:2px}
.news-row__img a{position:absolute;top:0;right:0;bottom:0;left:0;z-index:2}
.news-row__img:before{content:'';position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;border:solid 2px #fff;opacity:0;transition: .3s}
.news-row__img:hover:before{top:10px;right:10px;bottom:10px;left:10px;opacity: .5}
.news-row__txt{padding-top:30px;border-top:solid 2px #eee;}
.news-row__title{display:block;font-size:20px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;transition: color .3s}
.news-row__title:hover{color:var(--color1)}
.news-row__date{margin:20px 0;color:#999}
.news-row__desc{color:#666;line-height:1.7;margin-bottom:30px;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}
.news-row__more{display:inline-block;width:110px;line-height:38px;background: var(--color1);color:#fff;text-align: center;border-radius:4px}
@media (max-width:1024px){
  .news-row__img{height:250px}
}
@media (max-width:768px){
  .news-row{margin-bottom:30px}
  .news-row__img{height:160px}
  .news-row__txt{padding-top:20px}
  .news-row__more{display:none}
  .news-row__title{font-size:18px}
  .news-row__date{margin:16px 0}
  .news-row__desc{margin-bottom:0}
}
@media (max-width:512px){
  .news-row{margin-bottom:25px}
  .news-row__img{height:120px}
  .news-row__txt{padding-top:12px}
  .news-row__date{margin:10px 0;font-size:12px}
  .news-row__title{font-size:16px}
}
.goods-info{margin-top:30px;display:grid;grid-template-columns:40% 56%;column-gap:4%}
.goods-info__photo{flex:0 0 40%;height:490px;border:solid 1px #ddd;display:flex;justify-content:center;align-items:center;padding:12px}
.goods-info__photo img{max-width:100%;max-height:100%}
.goods-info__info{flex:0 0 56%}
.goods-info__title{border-bottom:solid 1px #eee;padding-bottom:22px;margin-bottom:22px;font-weight:600}
.goods-info__param{margin-top:25px;padding-bottom:25px;border-bottom:dashed 1px #eee;color:#777}
.goods-info__param img{vertical-align:-8px}
.goods-info__btn{margin-top:30px;display:flex}
.goods-info__btn a{background:var(--color1);color:#fff;padding:9px 30px;border-radius:3px}
.goods-detail-title{padding:0 0 12px 18px;margin:32px 0 20px;border-bottom:solid 1px #eee;display:flex;justify-content:space-between;position:relative}
.goods-detail-title:before{content:'';position:absolute;top:4px;left:0;width:5px;height:16px;background:var(--color1)}
.goods-detail-title span{font-size:18px}
.goods-detail{font-size:15px}
.goods-detail p{margin-bottom:12px;line-height:1.8}
.goods-detail img{max-width:100%}
@media (max-width:1280px){
  .goods-info__photo{height:40vw}
}
@media (max-width:768px){
  .goods-info{margin-top:10px;grid-template-columns:100%;column-gap:0;row-gap:20px}
  .goods-info__photo{height:95vw;padding:6px}
  .goods-info__photo img{width:100%;height:100%}
  .goods-info__info h1{padding-bottom:15px;margin-bottom:15px;font-size:15px}
  .goods-info__info dd{margin-top:15px;padding-bottom:15px}
  .goods-info__btn{margin-top:20px}
  .goods-info__btn a{padding:7px 22px}
}