/**
 * 首页区块样式（轮播、资讯、产品、搜索浮层等）
 * 导航样式见 site-shell.css / mobile-header-nav.css
 * 首页视觉增强见 homepage-refine.css
 */
:root {
  --color-primary: #14532d;
  --color-deep: #0f3d24;
  --color-accent-green: #1f7a4a;
  --color-gold: #d6a23d;
  --color-bg-soft: #f3faf5;
  --color-bg-warm: #fbf7ef;
  --radius-card: 20px;
  --radius-pill: 999px;
  --shadow-card: 0 12px 32px rgba(20,83,45,.10);
  --transition-base: .28s ease;
  --green-dark: #1a4d2e;
  --green-mid: #2d7a4e;
  --green-light: #4caf7d;
  --gold: #c9962a;
  --gold-light: #e8b84b;
  --cream: #f9f5ee;
  --text-dark: #1c1c1c;
  --text-mid: #4a4a4a;
  --text-light: #7a7a7a;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --radius: 12px;
}
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{font-family:'PingFang SC','Microsoft YaHei',sans-serif;color:var(--text-dark);background:var(--white);overflow-x:hidden;}

/* ========== CAROUSEL ========== */
.carousel {
  position:relative;width:100%;height:100vh;min-height:560px;
  overflow:hidden;margin-top:0;
}
.carousel-track {
  display:flex;height:100%;transition:transform .7s cubic-bezier(.4,0,.2,1);
}
.slide {
  min-width:100%;height:100%;position:relative;flex-shrink:0;
}
.slide-bg {
  position:absolute;inset:0;
  background:linear-gradient(135deg,var(--green-dark) 0%,var(--green-mid) 50%,#1a6b38 100%);
}
.slide-bg::before {
  content:'';position:absolute;inset:0;
  background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.slide-image {
  position:absolute;inset:0;object-fit:cover;width:100%;height:100%;opacity:0.3;
}
.slide-content {
  position:absolute;inset:0;display:flex;flex-direction:column;justify-content:center;align-items:center;
  text-align:center;padding:32px;
}
.slide-html {
  overflow:auto;text-align:left;align-items:flex-start;
  padding:48px clamp(16px, 5vw, 10%);
  width:100%;max-width:100%;box-sizing:border-box;
}
.slide-html img{max-width:100%;height:auto;display:block;margin:0 auto;}
.slide-html video{max-width:100%;height:auto;}
.slide-html *{max-width:100%;box-sizing:border-box;}
.slide-html .slide-btn,
.slide-html a[class*="slide-btn"],
.slide-html button{min-height:44px;touch-action:manipulation;}
.slide-tag {
  display:inline-block;background:rgba(201,150,42,0.25);border:1px solid var(--gold);
  color:var(--gold-light);font-size:12px;letter-spacing:3px;
  padding:6px 20px;border-radius:20px;margin-bottom:24px;
}
.slide-title {
  font-family:'PingFang SC','Microsoft YaHei',serif;
  font-size:clamp(32px,6vw,64px);font-weight:700;color:#fff;
  line-height:1.2;margin-bottom:16px;
  text-shadow:0 2px 20px rgba(0,0,0,0.3);
}
.slide-subtitle {
  font-size:clamp(14px,2vw,20px);color:rgba(255,255,255,0.85);
  margin-bottom:40px;line-height:1.8;max-width:600px;
}
.slide-btn {
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  background:var(--gold);color:#fff;
  padding:14px 36px;border-radius:40px;
  text-decoration:none;font-weight:600;font-size:15px;
  transition:all .3s;border:none;cursor:pointer;
  min-height:44px;box-sizing:border-box;
}
.slide-btn:hover{background:var(--gold-light);transform:translateY(-2px);box-shadow:0 8px 24px rgba(201,150,42,0.4);}
.slide-actions{display:flex;flex-wrap:wrap;gap:14px;justify-content:center;align-items:center;margin-top:4px;}
.slide-html .slide-actions{align-self:flex-start;justify-content:flex-start;margin-top:20px;text-align:left;}
.slide-btn.slide-btn-primary{
  background:linear-gradient(135deg,#14532d,#207a4a);
  box-shadow:0 10px 24px rgba(20,83,45,0.28);
}
.slide-btn.slide-btn-primary:hover{
  background:linear-gradient(135deg,#174d30,#248a55);
  box-shadow:0 14px 32px rgba(20,83,45,0.36);
}
.slide-btn.slide-btn-outline{
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.45);
  color:#fff;
  box-shadow:0 6px 20px rgba(0,0,0,0.12);
}
.slide-btn.slide-btn-outline:hover{
  background:rgba(255,255,255,0.2);
  border-color:rgba(255,255,255,0.65);
  transform:translateY(-2px);
}
.slide-btn.slide-btn-ghost{
  background:rgba(255,255,255,0.92);
  color:var(--green-dark);
  border:1px solid rgba(255,255,255,0.68);
  box-shadow:0 8px 22px rgba(0,0,0,0.14);
}
.slide-btn.slide-btn-ghost:hover{
  background:#fff;
  color:var(--green-dark);
  transform:translateY(-2px);
  box-shadow:0 12px 28px rgba(0,0,0,0.18);
}
.hero-proof-strip{
  display:none !important;
}
.hero-proof-strip span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:30px;
  padding:5px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.2);
  background:rgba(255,255,255,0.08);
  color:rgba(255,255,255,0.82);
  font-size:12px;
  line-height:1.2;
  backdrop-filter:blur(10px);
}
.carousel-dots {
  position:absolute;bottom:32px;left:50%;transform:translateX(-50%);
  display:flex;gap:10px;
}
.dot {
  width:8px;height:8px;border-radius:50%;background:rgba(255,255,255,0.4);
  cursor:pointer;transition:.3s;border:none;padding:0;
}
.dot.active{background:#fff;width:24px;border-radius:4px;}
.carousel-arrow {
  position:absolute;top:50%;transform:translateY(-50%);
  background:rgba(255,255,255,0.15);border:1px solid rgba(255,255,255,0.3);
  color:#fff;width:48px;height:48px;min-width:48px;min-height:48px;border-radius:50%;
  cursor:pointer;font-size:18px;transition:.3s;
  display:flex;align-items:center;justify-content:center;
  touch-action:manipulation;-webkit-tap-highlight-color:transparent;
}
.carousel-arrow:hover{background:rgba(255,255,255,0.3);}
.carousel-arrow.prev{left:24px;}
.carousel-arrow.next{right:24px;}

/* ========== SECTION BASE ========== */
section{padding:80px 0;scroll-margin-top:16px;}
.section-header{text-align:center;margin-bottom:56px;}
.section-tag {
  display:inline-block;color:var(--green-mid);
  font-size:12px;letter-spacing:4px;font-weight:500;
  text-transform:none;margin-bottom:12px;
}
.section-title {
  font-family:'PingFang SC','Microsoft YaHei',serif;
  font-size:clamp(24px,4vw,40px);font-weight:700;color:var(--text-dark);
  margin-bottom:16px;
}
.section-title span{color:var(--green-mid);}
.section-desc{color:var(--text-mid);font-size:16px;line-height:1.8;max-width:600px;margin:0 auto;}
.container{max-width:1240px;margin:0 auto;padding:0 24px;}
.divider {
  width:60px;height:3px;
  background:linear-gradient(90deg,var(--green-mid),var(--gold));
  margin:16px auto 0;border-radius:2px;
}

/* ========== SERVICE PATHS ========== */
.home-path-section{
  padding:30px 0 72px;
  background:linear-gradient(180deg,#f7fbf8 0%,#fff 100%);
}
.home-path-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  max-width:1120px;
  margin:0 auto 20px;
}
.home-path-head .section-tag{
  margin-bottom:6px;
}
.home-path-title{
  color:var(--green-dark);
  font-size:clamp(22px,3vw,32px);
  line-height:1.25;
  font-weight:800;
  text-wrap:balance;
}
.home-path-all{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:9px 16px;
  border-radius:999px;
  border:1px solid rgba(26,77,46,.18);
  background:#fff;
  color:var(--green-dark);
  text-decoration:none;
  font-size:13px;
  font-weight:700;
  box-shadow:0 6px 18px rgba(20,83,45,.06);
}
.home-path-all:hover{
  background:var(--green-dark);
  color:#fff;
}
.home-path-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
  max-width:1120px;
  margin:0 auto;
}
.home-path-card{
  display:flex;
  flex-direction:column;
  gap:8px;
  min-height:168px;
  padding:20px 18px;
  border-radius:16px;
  border:1px solid rgba(26,77,46,.1);
  background:#fff;
  color:inherit;
  text-decoration:none;
  box-shadow:0 10px 28px rgba(20,83,45,.07);
  transition:transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
}
.home-path-card:hover{
  transform:translateY(-5px);
  border-color:rgba(31,107,69,.25);
  box-shadow:0 18px 42px rgba(20,83,45,.14);
}
.home-path-card-strong{
  background:linear-gradient(135deg,#123f27,#1f6b45);
  color:#fff;
  border-color:rgba(255,255,255,.12);
}
.home-path-kicker{
  color:var(--green-mid);
  font-size:12px;
  font-weight:800;
  letter-spacing:.04em;
}
.home-path-card-strong .home-path-kicker{
  color:var(--gold-light);
}
.home-path-card strong{
  color:var(--green-dark);
  font-size:18px;
  line-height:1.35;
}
.home-path-card-strong strong{
  color:#fff;
}
.home-path-card span:last-child{
  color:#65756c;
  font-size:13px;
  line-height:1.7;
}
.home-path-card-strong span:last-child{
  color:rgba(255,255,255,.78);
}

/* ========== COMPANY INTRO ========== */
.company-section{background:#fff;}
.company-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:48px;align-items:center;max-width:1120px;margin:0 auto;}
.company-image-wrap {
  position:relative;border-radius:20px;overflow:hidden;
  aspect-ratio:4/3;
  box-shadow:0 20px 60px rgba(0,0,0,0.15);
}
.company-image-wrap img{width:100%;height:100%;object-fit:cover;}
.company-badge {
  position:absolute;bottom:24px;left:24px;
  background:var(--green-dark);color:#fff;
  padding:12px 20px;border-radius:12px;
  font-size:13px;
}
.company-badge strong{display:block;font-size:22px;color:var(--gold-light);}
.company-text .section-header{text-align:left;}
.company-text .divider{margin:16px 0 0;}
.company-intro-text{color:var(--text-mid);font-size:15px;line-height:1.9;margin:24px 0 32px;}
.company-proof-list{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
  margin:-8px 0 28px;
}
.company-proof-list div{
  min-height:92px;
  padding:14px 13px;
  border-radius:14px;
  background:#f8fbf8;
  border:1px solid #e1ece4;
}
.company-proof-list strong{
  display:block;
  color:var(--green-dark);
  font-size:14px;
  margin-bottom:6px;
}
.company-proof-list span{
  display:block;
  color:#607568;
  font-size:12px;
  line-height:1.65;
}
.company-stats{display:flex;gap:32px;}
.stat{text-align:center;}
.stat-num{font-family:'PingFang SC','Microsoft YaHei',serif;font-size:32px;font-weight:700;color:var(--green-mid);}
.stat-num span{font-size:16px;}
.stat-label{font-size:12px;color:var(--text-light);margin-top:4px;}
@media(max-width:900px){.company-grid{grid-template-columns:1fr;}}
@media(max-width:900px){.company-proof-list{grid-template-columns:1fr;}}

/* ========== PRODUCTS ========== */
.products-section{background:#fff;}
.category-tabs {
  display:flex;gap:10px;flex-wrap:wrap;justify-content:center;margin-bottom:40px;
}
.tab-btn {
  padding:10px 22px;min-height:44px;min-width:44px;border-radius:24px;
  border:1.5px solid var(--green-mid);background:transparent;
  color:var(--green-mid);font-size:14px;cursor:pointer;transition:.2s;
  font-family:'PingFang SC','Microsoft YaHei',sans-serif;
  display:inline-flex;align-items:center;justify-content:center;box-sizing:border-box;
  touch-action:manipulation;-webkit-tap-highlight-color:transparent;
}
.tab-btn:hover,.tab-btn.active{background:var(--green-dark);color:#fff;border-color:var(--green-dark);}
/* 产品分类/场景：强制对比，避免 hover 中间态或主题变量导致白底白字 */
#products .tab-btn{color:#14532d !important;background:rgba(255,255,255,0.96) !important;border-color:rgba(45,122,78,0.42) !important;}
#products .tab-btn:hover,
#products .tab-btn:focus-visible,
#products .tab-btn.active{color:#fff !important;background:linear-gradient(135deg,#14532d,#1f6b45) !important;border-color:#14532d !important;}
/* 与 homepage-refine 叠加时仍保证产品区胶囊 hover 不出现白底白字 */
body.page-home #products .tab-btn:hover,
body.page-home #products .tab-btn:focus-visible,
body.page-home #products .tab-btn.active{color:#fff !important;background:linear-gradient(135deg,#14532d,#1f6b45) !important;border-color:#14532d !important;}
body.page-home #products .tab-btn:not(:hover):not(:active):not(.active){color:#14532d !important;background:rgba(255,255,255,0.96) !important;}
#products .sub-kind-tabs{margin-bottom:0;}
#products .sub-kind-chip{padding:7px 16px;font-size:13px;border-radius:999px;}
#products .sub-kind-tag{background:#eef7f0;color:#1a5c36;border:1px solid #cfe6d6;}
.product-filter-panel{
  max-width:1120px;
  margin:0 auto 28px;
  padding:18px;
  border:1px solid rgba(20,83,45,.12);
  border-radius:20px;
  background:rgba(255,255,255,.74);
  box-shadow:0 18px 42px rgba(20,83,45,.08);
}
.product-filter-row{
  display:grid;
  grid-template-columns:118px minmax(0,1fr);
  gap:16px;
  align-items:start;
  padding:13px 0;
  border-bottom:1px solid rgba(20,83,45,.09);
}
.product-filter-row:first-child{padding-top:0;}
.product-filter-row:last-child{border-bottom:none;padding-bottom:0;}
.product-filter-row[style*="none"]{display:none !important;}
.product-filter-label{
  display:flex;
  flex-direction:column;
  gap:4px;
  padding-top:5px;
  color:#14532d;
  flex-shrink:0;
}
.product-filter-label span{
  font-size:13px;
  font-weight:900;
  letter-spacing:.08em;
}
.product-filter-label small{
  color:#7f9387;
  font-size:11px;
  line-height:1.45;
}
#products .product-filter-tabs{
  justify-content:flex-start;
  margin:0;
  max-width:none;
  gap:8px;
}
#products .product-filter-tabs .tab-btn{
  gap:7px;
  height:auto;
  min-height:36px;
  padding:7px 14px;
  border-radius:999px;
  font-size:13px;
}
.tab-count{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:20px;
  height:20px;
  padding:0 6px;
  border-radius:999px;
  background:rgba(20,83,45,.08);
  color:inherit;
  font-size:11px;
  font-weight:800;
  line-height:1;
}
#products .tab-btn.active .tab-count,
#products .tab-btn:hover .tab-count,
#products .tab-btn:focus-visible .tab-count{
  background:rgba(255,255,255,.18);
}
.product-catalog-tools{
  max-width:1120px;
  margin:4px auto 0;
  display:grid;
  grid-template-columns:minmax(260px,1fr) auto;
  gap:14px;
  align-items:center;
  padding:14px;
  border-radius:18px;
  background:#f8fbf8;
  border:1px solid #e1ece4;
  box-shadow:0 8px 24px rgba(26,77,46,0.06);
}
.product-search-box{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:12px;
  align-items:center;
  min-height:48px;
  padding:0 14px;
  border-radius:14px;
  background:#fff;
  border:1px solid #dfece3;
}
.product-search-box span{
  color:#14532d;
  font-size:12px;
  font-weight:800;
  white-space:nowrap;
}
.product-search-box input{
  width:100%;
  min-width:0;
  border:none;
  outline:none;
  background:transparent;
  color:var(--text-dark);
  font:inherit;
  font-size:14px;
}
.product-search-box input::placeholder{color:#9aa89f;}
.product-filter-state{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
  color:#607568;
  font-size:12px;
  font-weight:700;
}
.product-reset-btn{
  min-height:40px;
  padding:9px 14px;
  border-radius:999px;
  border:1px solid #d4e7da;
  background:#fff;
  color:#14532d;
  font:inherit;
  font-size:12px;
  font-weight:800;
  cursor:pointer;
  transition:.18s;
}
.product-reset-btn:hover{background:#14532d;color:#fff;border-color:#14532d;}
.products-grid {
  display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:26px;max-width:1240px;margin:0 auto;width:100%;
}
.product-card {
  background:#fff;border:1px solid #e8f0ea;border-radius:var(--radius);
  overflow:hidden;transition:all .3s;cursor:pointer;
  box-shadow:0 2px 12px rgba(0,0,0,0.06);
}
.product-card:hover{transform:translateY(-6px);box-shadow:0 12px 32px rgba(45,122,78,0.15);border-color:var(--green-light);}
.product-img {
  aspect-ratio:4/3;background:linear-gradient(135deg,#e8f5ec,#d0ebd8);
  display:flex;align-items:center;justify-content:center;overflow:hidden;
  position:relative;
}
.product-rec-badge{
  position:absolute;top:10px;left:10px;z-index:2;
  font-size:11px;font-weight:800;letter-spacing:.04em;
  padding:4px 10px;border-radius:999px;
  background:linear-gradient(135deg,#c9962a,#e8b84a);color:#fff;
  box-shadow:0 4px 12px rgba(201,150,42,.35);
}
.product-img img{width:100%;height:100%;object-fit:cover;}
.product-img-placeholder{font-size:48px;opacity:0.4;}
.product-info{padding:16px 20px;}
.product-cat{font-size:11px;color:var(--green-mid);letter-spacing:1px;margin-bottom:6px;}
.product-name{font-size:16px;font-weight:600;color:var(--text-dark);margin-bottom:8px;line-height:1.4;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;min-height:2.8em;}
.product-specs {
  display:flex;gap:8px;flex-wrap:wrap;margin-bottom:10px;
}
.spec-tag {
  font-size:11px;background:#f0f8f2;color:var(--green-mid);
  padding:3px 10px;border-radius:10px;
}
.product-nutrients{font-size:12px;color:var(--text-light);margin-bottom:14px;}
.product-link {
  display:inline-flex;align-items:center;gap:4px;
  color:var(--green-mid);font-size:13px;font-weight:500;
  text-decoration:none;transition:.2s;
}
.product-link:hover{color:var(--gold);gap:8px;}
.product-empty-state{
  max-width:560px;
  margin:0 auto;
  padding:42px 24px;
  text-align:center;
  color:#6b7a70;
  background:#f8fbf8;
  border:1px solid #e1ece4;
  border-radius:18px;
}
.product-empty-state strong{display:block;color:#14532d;font-size:18px;margin-bottom:8px;}
.product-empty-state span{display:block;font-size:13px;line-height:1.7;}
.view-all-wrap{text-align:center;margin-top:40px;}
.btn-outline {
  display:inline-block;padding:12px 36px;
  border:2px solid var(--green-mid);border-radius:30px;
  color:var(--green-mid);font-size:15px;font-weight:600;
  text-decoration:none;transition:.3s;
}
.btn-outline:hover{background:var(--green-mid);color:#fff;}

/* ========== CROPS ========== */
/* ========== NEWS ========== */
.news-section{background:var(--cream);}
.news-featured-wrap{max-width:1120px;margin:0 auto 26px;width:100%;}
.news-featured-card{
  display:grid;
  grid-template-columns:minmax(280px,420px) 1fr;
  gap:0;
  overflow:hidden;
  border-radius:20px;
  background:#fff;
  border:1px solid #e8f0ea;
  box-shadow:0 10px 32px rgba(26,77,46,0.09);
  color:inherit;
  text-decoration:none;
}
.news-featured-img{
  min-height:260px;
  background:linear-gradient(135deg,var(--green-dark),var(--green-mid));
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  color:rgba(255,255,255,0.72);
  font-size:54px;
}
.news-featured-img img{width:100%;height:100%;object-fit:cover;display:block;}
.news-featured-body{padding:30px 32px;display:flex;flex-direction:column;justify-content:center;}
.news-featured-kicker{font-size:12px;color:var(--gold);font-weight:800;letter-spacing:.12em;margin-bottom:10px;}
.news-featured-title{font-size:24px;font-weight:800;color:var(--text-dark);line-height:1.45;margin-bottom:12px;}
.news-featured-summary{font-size:14px;color:var(--text-mid);line-height:1.85;margin-bottom:18px;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;}
.product-inline-link{color:#2d7a4e;font-weight:700;text-decoration:none;border-bottom:1px dashed rgba(45,122,78,.4);}
.product-inline-link:hover{color:#1a4d2e;}
.news-featured-meta{display:flex;flex-wrap:wrap;gap:10px;align-items:center;justify-content:space-between;color:var(--text-light);font-size:12px;}
.news-featured-link{color:var(--green-mid);font-size:13px;font-weight:800;}
.news-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:28px;max-width:1120px;margin:0 auto;width:100%;}
.news-card{
  display:block;text-decoration:none;color:inherit;
  border-radius:16px;overflow:hidden;background:#fff;
  box-shadow:0 2px 16px rgba(0,0,0,0.08);transition:.3s;cursor:pointer;
  border:1px solid #f0f0f0;
}
.news-card:hover{transform:translateY(-6px);box-shadow:0 12px 36px rgba(0,0,0,0.14);}
.news-card-img{
  height:200px;background:linear-gradient(135deg,var(--green-dark),var(--green-mid));
  display:flex;align-items:center;justify-content:center;font-size:64px;
  overflow:hidden;position:relative;
}
.news-card-img img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0;}
.news-card-body{padding:24px;}
.news-card-date{font-size:12px;color:var(--text-light);margin-bottom:8px;}
.news-card-title{font-size:17px;font-weight:700;color:var(--text-dark);margin-bottom:10px;line-height:1.45;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;min-height:2.9em;}
.news-card-summary{font-size:13px;color:var(--text-mid);line-height:1.7;margin-bottom:16px;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;}
.news-card-link{font-size:13px;color:var(--green-mid);font-weight:500;}
.news-load-more-wrap{
  max-width:1120px;margin:36px auto 0;width:100%;
  text-align:center;display:flex;flex-direction:column;align-items:center;gap:10px;
}
.news-load-more-btn{min-width:220px;cursor:pointer;font-family:inherit;}
.news-load-more-hint{font-size:13px;color:var(--text-light);line-height:1.6;margin:0;}
.news-load-more-wrap.is-complete .news-load-more-btn{border-color:#c8d4cc;color:#6d7d73;}
.news-card.news-card--extra{animation:newsCardIn .45s ease both;}
@keyframes newsCardIn{from{opacity:0;transform:translateY(16px)}to{opacity:1;transform:none}}

/* ========== CROPS (专栏模式) ========== */
.crops-section{background:var(--cream);}
.tools-strip-wrap{display:flex;flex-wrap:wrap;gap:12px;margin-top:20px;justify-content:center;}
.crop-task-strip{
  max-width:1120px;
  margin:0 auto 26px;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}
.crop-task-strip a{
  display:flex;
  flex-direction:column;
  gap:5px;
  min-height:78px;
  padding:16px 18px;
  border-radius:16px;
  background:#fff;
  border:1px solid #e1ece4;
  text-decoration:none;
  color:inherit;
  box-shadow:0 8px 24px rgba(26,77,46,0.06);
  transition:.22s;
}
.crop-task-strip a:hover{transform:translateY(-3px);border-color:var(--green-light);box-shadow:0 12px 28px rgba(26,77,46,0.12);}
.crop-task-strip strong{color:var(--green-dark);font-size:15px;}
.crop-task-strip span{color:var(--text-mid);font-size:12px;line-height:1.55;}
.columns-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:26px;max-width:1120px;margin:0 auto;width:100%;}
.column-card{
  background:#fff;border-radius:16px;padding:32px 28px;
  box-shadow:0 2px 16px rgba(0,0,0,0.07);cursor:pointer;
  transition:.3s;border:2px solid transparent;position:relative;overflow:hidden;
}
.column-card::before{
  content:'';position:absolute;top:0;left:0;right:0;height:4px;
  background:linear-gradient(90deg,var(--green-mid),var(--gold));
}
.column-card:hover{transform:translateY(-6px);border-color:var(--green-light);box-shadow:0 12px 36px rgba(0,0,0,0.13);}
.column-icon{font-size:52px;margin-bottom:16px;display:block;}
.column-name{font-family:'PingFang SC','Microsoft YaHei',serif;font-size:22px;font-weight:700;color:var(--green-dark);margin-bottom:10px;}
.column-desc{font-size:13px;color:var(--text-mid);line-height:1.7;margin-bottom:16px;}
.column-meta{font-size:12px;color:var(--green-mid);font-weight:500;}
.column-action{margin-top:12px;color:var(--green-mid);font-size:13px;font-weight:800;}
.column-arrow{position:absolute;top:28px;right:28px;font-size:18px;color:var(--green-light);opacity:0;transition:.3s;}
.column-card:hover .column-arrow{opacity:1;right:20px;}
.column-featured-tag{position:absolute;top:12px;right:12px;background:linear-gradient(135deg,#1a4d2e,#2d7a4e);color:#fff;font-size:11px;padding:4px 10px;border-radius:20px;font-weight:600;}
.column-card.fertilizer-featured{border-color:var(--green-light);background:linear-gradient(180deg,#f7fcf9 0%,#fff 30%);}

/* ========== CONTACT ========== */
/* ========== INTENT FORM ========== */
.intent-section{background:linear-gradient(180deg,#f0f7f2 0%,var(--white) 100%);padding:88px 0 96px;}
/* 与「专栏指南」作物卡片区 content 宽度一致（1120px 内对齐） */
.intent-grid{display:flex;flex-direction:column;align-items:stretch;gap:24px;max-width:1120px;margin:0 auto;width:100%;}

/* 介绍区：置于表单正上方，与表单左缘对齐 */
.intent-intro{position:static;text-align:left;width:100%;padding:0 2px;}
.intent-intro-title{font-family:'PingFang SC','Microsoft YaHei',serif;font-size:30px;font-weight:700;color:var(--green-dark);line-height:1.5;margin-bottom:20px;}
.intent-intro-text{color:var(--text-mid);font-size:14px;line-height:1.9;margin-bottom:24px;}
.intent-badges{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:28px;}
.intent-badge{background:#fff;border:1.5px solid var(--green-light);color:var(--green-dark);
  font-size:12px;padding:6px 14px;border-radius:20px;font-weight:500;}
.intent-flow{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
  margin:2px 0 8px;
}
.intent-flow div{
  display:flex;
  align-items:center;
  gap:8px;
  min-height:48px;
  padding:10px 12px;
  border-radius:12px;
  background:#fff;
  border:1px solid rgba(26,77,46,.1);
  box-shadow:0 6px 18px rgba(20,83,45,.05);
}
.intent-flow b{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 24px;
  width:24px;
  height:24px;
  border-radius:999px;
  background:var(--green-dark);
  color:#fff;
  font-size:12px;
}
.intent-flow span{
  color:#4d5f55;
  font-size:12px;
  line-height:1.45;
  font-weight:700;
}

/* ── 身份选择卡片 ── */
.identity-cards{display:grid;grid-template-columns:repeat(2,1fr);gap:10px;margin-bottom:24px;}
.id-card{
  border:2px solid #e0eee5;border-radius:14px;padding:16px 14px;cursor:pointer;
  transition:all .2s;background:#fff;text-align:center;
  display:flex;flex-direction:column;align-items:center;gap:6px;
}
.id-card:hover{border-color:var(--green-light);background:#f0f9f3;}
.id-card.active{border-color:var(--green-dark);background:#e8f5ec;box-shadow:0 0 0 3px rgba(26,77,46,0.08);}
.id-card .ic-emoji{font-size:28px;}
.id-card .ic-label{font-size:13px;font-weight:700;color:var(--text-dark);}
.id-card .ic-desc{font-size:11px;color:var(--text-mid);line-height:1.4;}

/* ── 表单容器 ── */
.intent-form{background:#fff;border-radius:20px;padding:36px 32px;
  box-shadow:0 4px 32px rgba(26,77,46,0.10);border:1px solid #e8f0ea;}
.form-step-label{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--green-dark);color:#fff;
  font-size:12px;letter-spacing:1px;padding:4px 14px;border-radius:20px;margin-bottom:20px;
}
.if-group{margin-bottom:18px;}
.if-label{display:block;font-size:13px;font-weight:600;color:var(--text-dark);margin-bottom:7px;}
.if-label .opt{font-weight:400;color:var(--text-light);font-size:12px;margin-left:4px;}
.if-label .req{color:#e53e3e;margin-left:2px;}
.if-input,.if-select,.if-textarea{
  width:100%;padding:10px 14px;border:1.5px solid #dde8e2;border-radius:10px;
  font-size:14px;font-family:inherit;color:var(--text-dark);background:#fafcfa;
  outline:none;transition:.2s;
}
.if-input:focus,.if-select:focus,.if-textarea:focus{border-color:var(--green-mid);background:#fff;box-shadow:0 0 0 3px rgba(45,122,78,0.08);}
.if-textarea{min-height:90px;resize:vertical;line-height:1.7;}
.if-row{display:grid;grid-template-columns:1fr 1fr;gap:14px;}
.rp-cn-row{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;}
.rp-cn-actions{margin-top:8px;}
@media(max-width:640px){.rp-cn-row{grid-template-columns:1fr;}}
.if-checks{display:flex;flex-wrap:wrap;gap:8px;padding:4px 0;}
.if-check-label{
  display:inline-flex;align-items:center;gap:5px;
  border:1.5px solid #dde8e2;border-radius:20px;
  padding:6px 14px;font-size:13px;cursor:pointer;background:#fafcfa;
  transition:.15s;user-select:none;
}
.if-check-label input{display:none;}
.if-check-label.checked{background:var(--green-dark);color:#fff;border-color:var(--green-dark);}
.if-check-label:hover:not(.checked){border-color:var(--green-mid);background:#f0f9f3;}
.if-radio-group{display:flex;flex-wrap:wrap;gap:8px;}
.if-radio-label{
  display:inline-flex;align-items:center;gap:6px;
  border:1.5px solid #dde8e2;border-radius:20px;
  padding:6px 14px;font-size:13px;cursor:pointer;background:#fafcfa;transition:.15s;
}
.if-radio-label:has(input:checked){background:var(--green-dark);color:#fff;border-color:var(--green-dark);}
.if-radio-label input[type=radio]{display:none;}

/* ── 分段标题 ── */
.form-divider{
  display:flex;align-items:center;gap:10px;
  margin:22px 0 18px;font-size:12px;font-weight:700;
  color:var(--green-mid);letter-spacing:1px;
}
.form-divider::before,.form-divider::after{content:'';flex:1;height:1px;background:#e0eae4;}

/* ── 提交按钮 ── */
.intent-submit{
  width:100%;min-height:48px;padding:14px 20px;background:var(--green-dark);color:#fff;
  border:none;border-radius:12px;font-size:16px;font-weight:700;
  cursor:pointer;transition:.25s;margin-top:8px;letter-spacing:1px;
  font-family:inherit;display:flex;align-items:center;justify-content:center;
  box-sizing:border-box;touch-action:manipulation;-webkit-tap-highlight-color:transparent;
}
.intent-submit:hover{background:var(--green-mid);transform:translateY(-2px);box-shadow:0 8px 24px rgba(26,77,46,0.25);}
.intent-submit:disabled{opacity:0.6;cursor:not-allowed;transform:none;}

/* 成功状态 */
.intent-success{display:none;text-align:center;padding:48px 24px;}
.ok-icon{font-size:64px;margin-bottom:20px;}
.intent-success h3{font-size:22px;font-weight:700;color:var(--green-dark);margin-bottom:12px;}
.intent-success p{color:var(--text-mid);font-size:14px;line-height:1.9;}

/* 动态字段隐藏 */
.if-dynamic{display:none;}
.if-dynamic.show{display:block;}

/* ========== CONTACT ========== */
.contact-section{background:var(--green-dark);}
.contact-section .section-title{color:#fff;}
.contact-section .section-tag{color:var(--gold-light);}
.contact-section .divider{background:linear-gradient(90deg,var(--gold),var(--gold-light));}
.contact-action-strip{
  max-width:1120px;
  margin:0 auto 34px;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}
.contact-action-card{
  display:flex;
  flex-direction:column;
  gap:6px;
  min-height:96px;
  padding:18px 20px;
  border-radius:16px;
  background:rgba(255,255,255,0.1);
  border:1px solid rgba(255,255,255,0.2);
  color:#fff;
  text-decoration:none;
  transition:.22s;
}
.contact-action-card:hover{transform:translateY(-3px);background:rgba(255,255,255,0.14);border-color:rgba(255,255,255,0.32);}
.contact-action-card strong{font-size:16px;}
.contact-action-card span{font-size:12px;line-height:1.65;color:rgba(255,255,255,0.78);}
.contact-action-card.contact-action-primary{background:rgba(255,255,255,0.1);color:#fff;border-color:rgba(255,255,255,0.2);}
.contact-action-card.contact-action-primary span{color:rgba(255,255,255,0.78);}
.contact-lower-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  max-width:1120px;
  width:100%;
  margin:0 auto;
  align-items:stretch;
}
.contact-panel-card{
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.16);
  border-radius:20px;
  padding:24px 22px;
  min-height:280px;
}
.contact-panel-title{
  margin:0 0 18px;
  font-size:17px;
  font-weight:800;
  color:#fff;
  letter-spacing:.04em;
}
.contact-info-panel .contact-items{max-width:none;justify-self:stretch;}
.contact-qr-panel .qr-section{align-items:center;}
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px 48px;
  align-items:start;
  max-width:1120px;
  width:100%;
  margin-left:auto;
  margin-right:auto;
}
.contact-items{display:flex;flex-direction:column;gap:24px;max-width:420px;justify-self:end;}
.contact-grid > .qr-section{justify-self:start;}
.contact-item{display:flex;gap:16px;align-items:flex-start;}
.contact-icon {
  width:48px;height:48px;flex-shrink:0;
  background:rgba(255,255,255,0.08);border:1px solid rgba(255,255,255,0.15);
  border-radius:12px;display:flex;align-items:center;justify-content:center;
  font-size:20px;
}
.contact-label{font-size:12px;color:rgba(255,255,255,0.5);margin-bottom:4px;letter-spacing:1px;}
.contact-value{color:#fff;font-size:15px;line-height:1.6;}
.qr-section{margin-top:0;display:flex;flex-direction:column;align-items:center;width:100%;}
.qr-grid{display:flex;flex-wrap:wrap;gap:20px;justify-content:center;}
/* 恰好 4 个二维码：固定 2×2 田字格，视觉更均衡 */
.qr-grid.count-4{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,auto));
  grid-template-rows:auto auto;
  justify-content:center;
  justify-items:center;
  column-gap:28px;
  row-gap:22px;
  max-width:340px;
  margin:0 auto;
}
.qr-item{display:flex;flex-direction:column;align-items:center;gap:10px;}
.qr-img{
  border-radius:10px;overflow:hidden;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.2);
  display:flex;align-items:center;justify-content:center;font-size:40px;
}
.qr-img img{width:100%;height:100%;object-fit:cover;display:block;}
.qr-label{color:rgba(255,255,255,0.75);font-size:12px;text-align:center;max-width:120px;line-height:1.4;}
/* 1个QR：大尺寸居中 */
.qr-grid.count-1 .qr-img{width:160px;height:160px;}
.qr-grid.count-1 .qr-label{font-size:13px;}
/* 2-3个：中等尺寸 */
.qr-grid.count-2 .qr-img,.qr-grid.count-3 .qr-img{width:130px;height:130px;}
/* 4 个：2×2 略大；5 个：单行缩小 */
.qr-grid.count-4 .qr-img{width:128px;height:128px;}
.qr-grid.count-5 .qr-img{width:110px;height:110px;}
@media(max-width:768px){
  .contact-action-strip{grid-template-columns:1fr;gap:10px;margin-bottom:24px;max-width:480px;}
  .contact-action-card{min-height:auto;padding:15px 16px;border-radius:14px;}
  .contact-grid{grid-template-columns:1fr;gap:32px;max-width:480px;}
  .contact-items{max-width:none;margin:0 auto;width:100%;justify-self:center;}
  .contact-grid > .qr-section{justify-self:center;}
  .qr-grid.count-4{max-width:none;}
}

/* ========== SEARCH ========== */
.search-overlay{position:fixed;inset:0;background:rgba(0,0,0,0.7);z-index:2000;display:none;align-items:flex-start;justify-content:center;padding-top:100px;}
.search-overlay.open{display:flex;}
.search-box{background:#fff;border-radius:20px;padding:32px;width:min(660px,92vw);box-shadow:0 20px 60px rgba(0,0,0,0.3);}
.search-input-row{display:flex;gap:10px;margin-bottom:20px;}
.search-input{flex:1;padding:12px 18px;border:2px solid #d4e8d8;border-radius:12px;font-size:16px;font-family:'PingFang SC','Microsoft YaHei',sans-serif;outline:none;transition:.2s;}
.search-input:focus{border-color:var(--green-mid);}
.search-close{background:none;border:1px solid #ddd;border-radius:10px;padding:12px 20px;min-height:44px;min-width:44px;cursor:pointer;font-size:14px;color:#888;transition:.2s;display:inline-flex;align-items:center;justify-content:center;box-sizing:border-box;touch-action:manipulation;-webkit-tap-highlight-color:transparent;}
.search-close:hover{background:#f0f0f0;}
.search-results{max-height:400px;overflow-y:auto;}
.search-idle{padding:4px 2px 2px;}
.search-idle-title{font-size:13px;font-weight:800;color:var(--green-dark);margin-bottom:10px;}
.search-quick-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:8px;margin-bottom:12px;}
.search-quick-grid a{min-height:42px;display:inline-flex;align-items:center;justify-content:center;padding:9px 10px;border-radius:12px;background:#f8fbf8;border:1px solid #e2ece4;color:var(--green-mid);text-decoration:none;font-size:12px;font-weight:800;}
.search-quick-grid a:hover{background:#edf7f0;border-color:#cfe5d7;}
.search-idle-hint{font-size:12px;color:#888;line-height:1.65;margin:0;}
.search-summary{display:flex;justify-content:space-between;align-items:center;gap:10px;padding:10px 12px;margin-bottom:10px;border-radius:12px;background:#f8fbf8;border:1px solid #e2ece4;}
.search-summary strong{font-size:13px;color:var(--green-dark);}
.search-summary span{font-size:12px;color:#77857c;}
.search-section-title{font-size:12px;font-weight:700;color:#999;letter-spacing:2px;text-transform:uppercase;margin:16px 0 8px;padding-bottom:6px;border-bottom:1px solid #f0f0f0;}
.search-item{display:flex;gap:12px;padding:10px 8px;border-radius:10px;cursor:pointer;transition:.15s;text-decoration:none;color:inherit;}
.search-item:hover{background:#f0faf4;}
.search-item-img{width:52px;height:52px;border-radius:8px;object-fit:cover;background:#e8f5e9;flex-shrink:0;display:flex;align-items:center;justify-content:center;font-size:22px;overflow:hidden;}
.search-item-img img{width:100%;height:100%;object-fit:cover;}
.search-item-title{font-size:14px;font-weight:600;color:var(--text-dark);margin-bottom:3px;}
.search-item-desc{font-size:12px;color:#888;line-height:1.5;}
.search-item-product{align-items:flex-start;padding:12px;border:1px solid #edf3ee;background:#fff;}
.search-item-product:hover{background:#f8fcf9;border-color:#d9eadc;}
.search-item-product .search-item-img{width:72px;height:72px;border-radius:12px;background:linear-gradient(180deg,#f6fbf7,#edf7ef);}
.search-item-product .search-item-img img{object-fit:contain;background:#fff;padding:6px;}
.search-product-meta{display:flex;flex-wrap:wrap;gap:6px;margin:6px 0 0;}
.search-product-tag{font-size:11px;padding:3px 8px;border-radius:999px;background:#f3f8f4;color:#35543f;border:1px solid #e2ece4;}
.search-empty{text-align:center;padding:40px;color:#999;font-size:14px;}
.btn-outline{display:inline-flex;align-items:center;justify-content:center;min-height:44px;min-width:44px;padding:11px 32px;border:1.5px solid var(--green-mid);color:var(--green-mid);border-radius:24px;font-size:14px;font-weight:500;text-decoration:none;transition:.2s;cursor:pointer;background:none;box-sizing:border-box;touch-action:manipulation;-webkit-tap-highlight-color:transparent;}
.btn-outline:hover{background:var(--green-mid);color:#fff;}
/* shake animation */
@keyframes shake{0%,100%{transform:translateX(0)}20%,60%{transform:translateX(-6px)}40%,80%{transform:translateX(6px)}}
.shake{animation:shake .4s ease;border-color:#e53e3e!important;}

/* intent mobile */
@media(max-width:768px){
  .intent-grid{grid-template-columns:1fr;}
  .intent-intro{position:static;margin-bottom:0;}
  .identity-cards{grid-template-columns:repeat(2,1fr);}
  .intent-form{padding:24px 16px;}
  .if-row{grid-template-columns:1fr;}
}

/* 平板：资讯/产品/专栏双列 */
@media(max-width:1024px) and (min-width:769px){
  .news-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
  .products-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
  .columns-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}

/* ========== MOBILE RESPONSIVE ========== */
@media(max-width:768px){
  /* Container */
  .container{padding:0 16px;}
  /* Section headers */
  .section-header{margin-bottom:32px;}
  .section-title{font-size:clamp(22px,6vw,32px);}
  .section-desc{font-size:14px;}
  /* Carousel：手机端首屏文案与按钮整体居中（不影响桌面默认） */
  .carousel{min-height:520px;}
  .slide-content{
    padding:20px 22px 88px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    box-sizing:border-box;
  }
  .slide-tag{
    margin-left:auto;
    margin-right:auto;
    margin-bottom:14px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    max-width:92%;
    letter-spacing:0.1em;
    font-size:11px;
    padding:6px 16px;
  }
  .slide-title{
    text-align:center;
    margin-left:auto;
    margin-right:auto;
    margin-bottom:12px;
    max-width:92%;
    font-size:clamp(24px,6.2vw,36px);
    line-height:1.28;
  }
  .slide-subtitle{
    text-align:center;
    margin-left:auto;
    margin-right:auto;
    margin-bottom:22px;
    max-width:92%;
    font-size:clamp(13px,3.5vw,17px);
    line-height:1.62;
  }
  .slide-actions,
  .hero-slide-actions{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    margin-top:6px;
  }
  .slide-actions .slide-btn,
  .hero-slide-actions .slide-btn{
    margin-left:auto;
    margin-right:auto;
  }
  .slide-actions .slide-btn-extra,
  .hero-slide-actions .slide-btn-extra{
    display:none!important;
  }
  .slide-actions .slide-btn-primary,
  .hero-slide-actions .slide-btn-primary,
  .slide-html .slide-btn-primary{
    width:auto !important;
    min-width:0 !important;
    max-width:calc(100vw - 48px) !important;
    flex:0 0 auto !important;
    padding:10px 18px !important;
    white-space:nowrap;
  }
  .slide-html .slide-btn,
  .slide-html a[class*="slide-btn"],
  .slide-html .slide-actions a,
  .slide-content.slide-html .slide-actions a,
  .slide-content.slide-html .slide-actions button{
    width:auto !important;
    max-width:calc(100vw - 48px) !important;
    flex:0 0 auto !important;
    padding:10px 18px !important;
    display:inline-flex !important;
    white-space:nowrap;
  }
  .slide-html .slide-actions,
  .slide-content.slide-html .slide-actions,
  .slide-content.slide-html .hero-slide-actions{
    align-self:center !important;
    justify-content:center !important;
    flex-direction:column !important;
    align-items:center !important;
    width:auto !important;
    max-width:100% !important;
    text-align:center;
    margin-top:10px;
    gap:10px;
  }
  .hero-proof-strip{
    gap:6px;
    margin-top:16px;
  }
  .hero-proof-strip span{
    font-size:11px;
    min-height:28px;
    padding:5px 10px;
  }
  .home-path-section{
    padding:24px 0 60px;
  }
  .home-path-head{
    align-items:flex-start;
    flex-direction:column;
    margin-bottom:16px;
  }
  .home-path-grid{
    grid-template-columns:1fr;
    gap:12px;
  }
  .home-path-card{
    min-height:auto;
    padding:17px 16px;
    border-radius:14px;
  }
  .home-path-card strong{
    font-size:16px;
  }
  /* 富文本轮播（slide-html）：覆盖桌面端左对齐，使胶囊标题/主副标题/按钮同轴居中 */
  .slide-content.slide-html{
    text-align:center !important;
    align-items:center !important;
    justify-content:center;
    padding:24px 20px 92px;
    width:100%;
    max-width:100%;
  }
  .slide-content.slide-html .slide-tag,
  .slide-content.slide-html [class*="tagline"],
  .slide-content.slide-html .hero-eyebrow{
    margin-left:auto !important;
    margin-right:auto !important;
    text-align:center;
  }
  .slide-content.slide-html h1,
  .slide-content.slide-html .slide-title,
  .slide-content.slide-html h2{
    text-align:center !important;
    margin-left:auto !important;
    margin-right:auto !important;
    max-width:92%;
  }
  .slide-content.slide-html p,
  .slide-content.slide-html .slide-subtitle{
    text-align:center !important;
    margin-left:auto !important;
    margin-right:auto !important;
    max-width:92%;
  }
  .slide-html .slide-actions,
  .slide-content.slide-html .slide-actions,
  .slide-content.slide-html .hero-slide-actions{
    align-self:center !important;
    justify-content:center !important;
    width:auto !important;
    max-width:100% !important;
    text-align:center;
    margin-top:10px;
  }
  /* News */
  .news-featured-card{grid-template-columns:1fr;border-radius:16px;}
  .news-featured-img{min-height:190px;}
  .news-featured-body{padding:18px 16px;}
  .news-featured-title{font-size:18px;}
  .news-featured-summary{font-size:13px;line-height:1.7;}
  .news-grid{grid-template-columns:1fr;gap:16px;}
  .news-card-body{padding:16px;}
  .news-card-title{font-size:15px;}
  /* Products */
  .category-tabs{gap:6px;padding:0 0 8px;}
  .tab-btn{padding:7px 14px;font-size:12px;}
  .product-filter-panel{
    margin:0 auto 20px;
    padding:12px;
    border-radius:16px;
  }
  .product-filter-row{
    grid-template-columns:1fr;
    gap:8px;
    padding:12px 0;
  }
  .product-filter-label{
    display:grid;
    grid-template-columns:auto 1fr;
    align-items:baseline;
    gap:8px;
    padding-top:0;
  }
  .product-filter-label small{
    overflow:hidden;
    white-space:nowrap;
    text-overflow:ellipsis;
  }
  #products .product-filter-tabs{
    flex-wrap:nowrap;
    overflow-x:auto;
    justify-content:flex-start;
    padding:0 0 4px;
    scrollbar-width:none;
  }
  #products .product-filter-tabs::-webkit-scrollbar{display:none;}
  #products .product-filter-tabs .tab-btn{
    flex:0 0 auto;
    min-height:34px;
    padding:7px 12px;
    font-size:12px;
  }
  .product-catalog-tools{
    grid-template-columns:1fr;
    margin:12px auto 20px;
    padding:12px;
    gap:10px;
    border-radius:14px;
  }
  .product-search-box{
    grid-template-columns:1fr;
    gap:4px;
    align-items:start;
    padding:10px 12px;
  }
  .product-filter-state{
    justify-content:space-between;
    gap:8px;
  }
  .product-reset-btn{
    flex:0 0 auto;
  }
  .products-grid{grid-template-columns:1fr !important;gap:16px;}
  .product-card{border-radius:12px;box-shadow:0 4px 14px rgba(26,77,46,0.08);}
  .product-img{height:168px;padding:10px;background:linear-gradient(180deg,#f6fbf7,#eef7f0);}
  .product-img img{object-fit:contain;background:#fff;border-radius:10px;}
  .product-info{padding:12px 12px 14px;}
  .product-cat{font-size:11px;margin-bottom:5px;}
  .product-name{font-size:15px;line-height:1.45;min-height:40px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;}
  .product-specs{gap:6px;margin-bottom:8px;}
  .spec-tag{font-size:10px;padding:3px 8px;}
  .product-link{font-size:12px;}
  /* Columns */
  .crop-task-strip{grid-template-columns:1fr;gap:10px;margin-bottom:18px;}
  .crop-task-strip a{min-height:auto;padding:14px 16px;border-radius:14px;}
  .columns-grid{grid-template-columns:repeat(2,1fr);gap:12px;}
  .column-card{padding:20px 16px;}
  .column-name{font-size:15px;}
  /* Company */
  .company-grid{grid-template-columns:1fr;}
  .company-stats{grid-template-columns:repeat(2,1fr);}
  /* Intent form */
  .intent-grid{grid-template-columns:1fr;gap:24px;}
  .intent-intro{position:static;}
  .intent-form{padding:24px 16px;}
  .intent-intro-title{font-size:22px;}
  .if-row{grid-template-columns:1fr;}
  .intent-flow{grid-template-columns:1fr;gap:8px;}
  /* Contact */
  .contact-grid{grid-template-columns:1fr;gap:28px;max-width:480px;}
  .contact-lower-grid{grid-template-columns:1fr;gap:16px;}
  .contact-panel-card{min-height:0;padding:20px 16px;}
  .contact-items{margin:0 auto;width:100%;max-width:none;justify-self:center;}
  .contact-grid > .qr-section{justify-self:center;}
  /* Footer */
  footer{padding:24px 16px;}
  /* Search */
  .search-box{padding:20px 16px;}
  .search-input{font-size:14px;}
  .search-quick-grid{grid-template-columns:1fr 1fr;}
  .search-summary{display:block;}
  .search-summary span{display:block;margin-top:4px;}
}
/* 平板：轮播富文本与按钮略向居中，不改变桌面>1024布局 */
@media (max-width:1024px) and (min-width:769px){
  .slide-content.slide-html{
    text-align:center;
    align-items:center;
    padding-top:28px;
    padding-bottom:88px;
  }
  .slide-html .slide-actions,
  .slide-content.slide-html .slide-actions{
    align-self:center;
    justify-content:center;
    width:100%;
  }
}
@media(max-width:480px){
  .products-grid{grid-template-columns:1fr !important;gap:14px;}
  .product-img{height:150px;padding:8px;}
  .product-info{padding:10px 10px 12px;}
  .product-name{font-size:15px;min-height:40px;line-height:1.45;}
  .product-specs{flex-direction:column;align-items:flex-start;gap:4px;}
  .columns-grid{grid-template-columns:1fr;}
  .company-stats{grid-template-columns:repeat(2,1fr);}
  .hero-content .section-tag{display:none;}
  .slide-html{padding:24px 18px 92px !important;}
}
/* ========== FOOTER ========== */
footer {
  background:#111f16;padding:32px;text-align:center;
  color:rgba(255,255,255,0.4);font-size:13px;
}
footer a{color:rgba(255,255,255,0.5);text-decoration:none;}
footer a:hover{color:var(--gold-light);}

/* ========== ANIMATIONS ========== */
.fade-up {
  opacity:0;transform:translateY(30px);
  transition:opacity .7s ease,transform .7s ease;
}
.fade-up.visible{opacity:1;transform:none;}
.fade-up:nth-child(2){transition-delay:.1s;}
.fade-up:nth-child(3){transition-delay:.2s;}
.fade-up:nth-child(4){transition-delay:.3s;}

/* ========== LOADING ========== */
.loading{display:flex;justify-content:center;padding:48px;color:var(--text-light);}
.spinner{width:32px;height:32px;border:3px solid #e0ebe3;border-top-color:var(--green-mid);border-radius:50%;animation:spin .8s linear infinite;}
@keyframes spin{to{transform:rotate(360deg);}}
