/* ============================================================
   AGHG 美国环球健康集团 — 主样式表
   主题色: #709b12
   字体: 思源宋体 (Noto Serif SC)
   ============================================================ */

/* ── RESET ── */



*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Serif SC', 'STSong', 'SimSun', serif;
  color: #333;
  background: #fff;
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

em {
  font-style: normal;
}

button {
  font-family: 'Noto Serif SC', 'STSong', 'SimSun', serif;
}

/* ── CSS CUSTOM PROPERTIES ── */
:root {
  --primary:       #709b12;
  --primary-dark:  #5a7e0e;
  --primary-mid:   #8ab820;
  --primary-light: #eaf4d2;
  --primary-pale:  #f4fae8;
  --good-bg:       #f3f3f1;
  --text:          #333;
  --text-mid:      #666;
  --text-light:    #999;
  --border:        #e5e5e5;
  --bg-light:      #f9f9f9;
  --shadow-sm:     0 2px 10px rgba(0,0,0,0.06);
  --shadow-md:     0 6px 24px rgba(0,0,0,0.10);
  --shadow-green:  0 6px 24px rgba(112,155,18,0.18);
  --container:     1280px;
  --radius:        5px;
  --transition:    0.25s ease;
}


/* ================================================================
   HEADER
   ================================================================ */
.header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* ── 语言切换 ── */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 1.2px;
  transition: color var(--transition);
  white-space: nowrap;
}

.lang-switch:hover {
  color: #fff;
}

.lang-flag {
  display: inline-block;
  width: 16px;
  height: 11px;
  background:
    linear-gradient(
      180deg,
      #B22234 0%, #B22234 30%,
      #fff    30%, #fff    40%,
      #3C3B6E 40%, #3C3B6E 60%,
      #fff    60%, #fff    70%,
      #B22234 70%, #B22234 100%
    );
  border-radius: 1px;
  flex-shrink: 0;
}

/* ── Main header row ── */
.header-main-row {
  display: flex;
  align-items: center;
  height: 100px;
  gap: 0;
}

/* ── Logo 20% ── */
.logo {
  flex: 0 0 20%;
  display: flex;
  align-items: center;
}

.logo img {
  height: 100px;
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}

.logo-svg {
  height: 46px;
  width: auto;
}

/* ── 移动端导航内部区块（桌面隐藏）── */
.nav-mobile-extras {
  display: none;
}

/* ── Navigation 50% ── */
.nav {
  flex: 0 0 50%;
  display: flex;
  justify-content: center;
}

/* ── Right area: lang + search 30% ── */
.header-right {
  flex: 0 0 30%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 7px;
}

.nav-list {
  display: flex;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 0 16px;
  height: 100px;
  line-height: 120px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  position: relative;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: rgba(255,255,255,0.85);
  transition: width var(--transition);
}

.nav-item:hover > .nav-link {
  color: rgba(255,255,255,0.75);
}

.nav-item:hover > .nav-link::after {
  width: 70%;
}

/* ── Dropdown ── */
.dropdown {
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 136px;
  background: #fff;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 999;
}

.nav-item:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid #f5f5f5;
  transition: background var(--transition), color var(--transition), padding-left var(--transition);
  white-space: nowrap;
}

.dropdown-item:last-child a {
  border-bottom: none;
}

.dropdown-item a:hover {
  background: var(--primary-light);
  color: var(--primary);
  padding-left: 25px;
}

/* ── Search ── */
/* 搜索框（位于绿色 header 内） */
.search-form {
  display: flex;
  align-items: center;
  border: 1.5px solid rgba(255,255,255,0.4);
  overflow: hidden;
  background: rgba(255,255,255,0.12);
  transition: border-color var(--transition), background var(--transition);
  width: 80%;
}

.search-form:focus-within {
  border-color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.2);
}

.search-input {
  border: none;
  outline: none;
  padding: 8px 12px;
  font-size: 13px;
  flex: 1;
  min-width: 0;
  font-family: 'Noto Serif SC', serif;
  background: transparent;
  color: #fff;
}

.search-input::placeholder {
  color: rgba(255,255,255,0.55);
}

.search-btn {
  border: none;
  background: var(--text);
  color: #fff;
  padding: 8px 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
}

.search-btn:hover {
  background: rgba(0,0,0,0.28);
}

.search-icon {
  width: 15px;
  height: 15px;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* ================================================================
   HERO CAROUSEL
   ================================================================ */

/* ── 外层容器：全宽、无最大宽限制 ── */
.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  user-select: none;
}

/* ── 轨道：满屏高度（减去 header）── */
.carousel__track {
  position: relative;
  width: 100%;
  height: calc(80vh - 80px);
  min-height: 500px;
}

/* ── 每张 slide ── */
.carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
  z-index: 0;
}

.carousel__slide--active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

/* ── 图层：全屏背景图（独立于文字）── */
.carousel__bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.carousel__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.04);
  transition: transform 6s ease;
}

.carousel__slide--active .carousel__bg-img {
  transform: scale(1);
}


/* ── 字层：完全独立的定位层 ── */
.carousel__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 0 18%;
}

.carousel__content--right {
  justify-content: flex-end;
  text-align: right;
}

.carousel__content--center {
  justify-content: center;
}

/* ── 文字面板 ── */
.carousel__text-panel {
  max-width: 480px;
}

.carousel__text-panel--center {
  text-align: center;
}



.carousel__title {
  font-size: clamp(20px, 3.5vw, 28px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 18px;
}



.carousel__subtitle {
  font-size: 18px;
  color: var(--text);
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.carousel__en {
  font-size: 16px;
  color: var(--text);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 36px;
}


/* ── 背景图缩放动画（Ken Burns）── */
@keyframes kenBurns {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

/* ── 文字淡入动画 ── */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}


.carousel__slide--active .carousel__title {
  animation: slideUp 0.7s ease 0.38s both;
}

.carousel__slide--active .carousel__divider {
  animation: slideUp 0.6s ease 0.52s both;
}

.carousel__slide--active .carousel__subtitle {
  animation: slideUp 0.6s ease 0.62s both;
}

.carousel__slide--active .carousel__en {
  animation: slideUp 0.6s ease 0.72s both;
}

.carousel__slide--active .carousel__cta {
  animation: slideUp 0.6s ease 0.86s both;
}

/* ── 左右箭头 ── */
.carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border: 1.5px solid rgba(255,255,255,0.45);
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
}

.carousel__arrow svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
}

.carousel__arrow:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.8);
}

.carousel__arrow--prev { left: 28px; }
.carousel__arrow--next { right: 28px; }

/* ── 圆点指示器 ── */
.carousel__dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
  align-items: center;
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.6);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), width var(--transition), border-color var(--transition);
}

.carousel__dot--active {
  background: #fff;
  border-color: #fff;
  width: 28px;
  border-radius: 4px;
}

.carousel__dot:hover:not(.carousel__dot--active) {
  background: rgba(255,255,255,0.4);
  border-color: #fff;
}


/* ================================================================
   ALOFAB BRAND BANNER
   ================================================================ */

.alofab-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* ── 图层：背景图满铺 ── */
.alofab-banner__bg-wrap {
  position: relative;
  width: 100%;
  height: 680px;
}

.alofab-banner__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.alofab-banner:hover .alofab-banner__bg-img {
  transform: scale(1.03);
}

/* 右侧渐变蒙层（图字过渡） */
.alofab-banner__mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(240,248,225,0.96) 0%,
    rgba(240,248,225,0.80) 28%,
    rgba(240,248,225,0.20) 55%,
    transparent 75%
  );
}

/* ── 字层：绝对定位，右侧居中对齐 ── */
.alofab-banner__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 18%;
}

.alofab-banner__text {
  text-align: right;
  max-width: 360px;
}

/* 标题：ALOFAB | 璐菲诗 */
.alofab-banner__title {
  font-size: clamp(20px, 3.5vw, 28px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: 1px;
  margin-bottom: 14px;
  line-height: 1.2;
}

.alofab-banner__sep {
  color: var(--primary);
  font-weight: 400;
  margin: 0 6px;
}

/* 装饰分割线 */
.alofab-banner__line {
  width: 40px;
  height: 2px;
  background: var(--primary);
  margin: 0 0 14px auto;
  border-radius: 2px;
}

/* 中文副标题 */
.alofab-banner__sub {
  font-size: 18px;
  color: var(--text);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

/* 英文副标题 */
.alofab-banner__en {
  font-size: 16px;
  color: var(--text);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ── 响应式 ── */
@media (max-width: 900px) {
  .alofab-banner__bg-wrap {
    height: 240px;
  }

  .alofab-banner__mask {
    background: linear-gradient(
      to left,
      rgba(240,248,225,0.97) 0%,
      rgba(240,248,225,0.85) 35%,
      rgba(240,248,225,0.30) 60%,
      transparent 80%
    );
  }

  .alofab-banner__content {
    padding: 0 5%;
  }

  .alofab-banner__title {
    font-size: 22px;
  }

  .alofab-banner__sub {
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  .alofab-banner__bg-wrap {
    height: 200px;
  }

  /* 移动端：遮罩改为从下到上，文字移到底部中央 */
  .alofab-banner__mask {
    background: linear-gradient(
      to top,
      rgba(240,248,225,0.97) 0%,
      rgba(240,248,225,0.60) 45%,
      transparent 75%
    );
  }

  .alofab-banner__content {
    align-items: flex-end;
    justify-content: center;
    padding: 0 20px 20px;
  }

  .alofab-banner__text {
    text-align: center;
    max-width: 100%;
  }

  .alofab-banner__line {
    margin: 0 auto 14px;
  }

  .alofab-banner__title {
    font-size: 18px;
  }

  .alofab-banner__sub {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .alofab-banner__en {
    letter-spacing: 2px;
  }
}


/* ================================================================
   SHARED LAYOUT
   ================================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.product-section {
  padding: 52px 0;
  background: #fff;
}


/* ================================================================
   PRODUCT GRID
   ================================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}


/* ================================================================
   PRODUCT CARD
   ================================================================ */
.product-card {
  background: var(--good-bg);
  border: 1px solid var(--border);
  padding: 22px 16px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}



.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(112,155,18,0.18);
  border-color: rgba(112,155,18,0.25);
}

/* 图片区 */
.product-card__img-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 14px;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.product-card__img {
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card__img {
  transform: scale(1.1) translateY(-4px);
}

/* 商品名 */
.product-card__name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);

}

/* 描述 */
.product-card__desc {
  font-size: 14px;
  color: var(--text);
  flex: 1;
}

/* 底部：价格 + 按钮同行居中 */
.product-card__footer {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding-top: 14px;
}

/* 价格 */
.product-card__price {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin:0 10px;
  transition: transform 0.2s ease, color 0.2s ease;
}
.product-card__price em {
  font-size: 20px;
  font-weight: 400;
}


/* ================================================================
   BUTTONS
   ================================================================ */
.btn-buy {
  position: relative;
  overflow: hidden;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 8px 0;
  width: 100%;
  font-size: 18px;
  border-radius: 30px;
  cursor: pointer;
  letter-spacing: 1px;
  font-family: 'Noto Serif SC', serif;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* 光泽扫过效果 */
.btn-buy::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.35),
    transparent
  );
  transform: skewX(-15deg);
  transition: left 0.5s ease;
}

.btn-buy:hover::after {
  left: 130%;
}

.btn-buy:hover {
  background: var(--primary-dark);
  box-shadow: 0 4px 14px rgba(112,155,18,0.4);
}

.btn-buy--lg {
  width: auto;
  padding: 12px 36px;
  font-size: 14px;
}

.btn-buy--lg {
  padding: 11px 28px;
  font-size: 14px;
  border-radius: 20px;
  margin-top: 20px;
}


/* ================================================================
   ALOE JUICE SECTION
   ================================================================ */
/* ── juice section 容器 ── */
.juice-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* ── 图层：背景图 ── */
.juice-bg-wrap {
  position: relative;
  width: 100%;
  height: 680px;
}

.juice-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.juice-section:hover .juice-bg-img {
  transform: scale(1.03);
}

/* 左侧渐变遮罩（图字分离） */
.juice-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(240,248,225,0.97) 0%,
    rgba(240,248,225,0.85) 30%,
    rgba(240,248,225,0.25) 58%,
    transparent 78%
  );
}

/* ── 字层：绝对定位，左侧 ── */
.juice-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 18%;
}

/* 文字容器 */
.juice-text {
  max-width: 520px;
}

.juice-title {
  font-size: clamp(20px, 3.5vw, 28px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.juice-pct {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.juice-features {
  list-style: none;
  margin-bottom: 18px;
}

.juice-feature-item {
  font-size: 16px;
  color: var(--text);
  padding: 4px 0 4px 16px;
  position: relative;
}

.juice-feature-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: var(--primary);
  border-radius: 50%;
}

/* ================================================================
   BACK TO TOP
   ================================================================ */
.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 36px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(112,155,18,0.40);
  opacity: 0;
  transform: translateY(16px) scale(0.85);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
}

.back-to-top--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 22px rgba(112,155,18,0.55);
  transform: translateY(-3px) scale(1.07);
}

.back-to-top:active {
  transform: translateY(0) scale(0.94);
}

@media (max-width: 600px) {
  .btn-buy {
    font-size: 14px;
    border-radius: 0px;;
  }
  .product-card__price{
    font-size: 14px;
  }
  .back-to-top {
    right: 16px;
    bottom: 20px;
    width: 40px;
    height: 40px;
  }
  .back-to-top svg {
    width: 17px;
    height: 17px;
  }
}



/* ================================================================
   FOOTER POLICY BAR
   ================================================================ */
.footer-policy {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 16px 40px;
  background: #dbdbdb;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.footer-policy__link {
  font-size: 13px;
  color: var(--text);
  padding: 5px 18px;
  border-right: 1px solid #c5c5c5;
  white-space: nowrap;
  transition: color var(--transition);
}

.footer-policy__link:last-child {
  border-right: none;
}

.footer-policy__link:hover {
  color: var(--primary);
}


/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--primary);
  padding: 44px 0 36px;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

/* ── Footer brand ── */
.footer-brand {
  flex: 1;
  min-width: 200px;
}

.footer-logo-svg {
  height: 80px;
  width: auto;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.footer-brand__name {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.footer-brand__desc {
  font-size: 16px;
  color: #fff;
  line-height: 2;
}

/* ── Footer contact ── */
.footer-contact {
  flex: 1.5;
  min-width: 200px;
  margin-top:40px;
}

.footer-contact__title {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact__title--mt {
  margin-top: 20px;
}

.footer-contact__bar {
  display: inline-block;
  width: 3px;
  height: 14px;
  background: var(--primary);
  border-radius: 2px;
  flex-shrink: 0;
}

.footer-contact__info {
  font-size: 16px;
  color: #fff;
  line-height: 2;
}

/* ── Certifications ── */
.footer-certs {
  flex: 0 0 auto;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px 10px;
  margin-top:40px;
}

.cert-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  cursor: default;
  transition: transform var(--transition);
}

.cert-badge:hover {
  transform: translateY(-4px);
}

.cert-badge__icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: border-color var(--transition), box-shadow var(--transition);
  overflow: hidden;
}

.cert-badge__icon svg,
.cert-badge__icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.cert-badge:hover .cert-badge__icon {
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(112,155,18,0.25);
}

.cert-badge__name {
  font-size: 12px;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.5px;
  transition: color var(--transition);
}



@media (max-width: 900px) {
  .footer-certs {
    width: 100%;
  }
  .cert-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px 8px;
  }
  .cert-badge__icon {
    width: 48px;
    height: 48px;
  }
  .cert-badge__name {
    font-size: 10px;
  }
}

@media (max-width: 600px) {
  .cert-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 6px;
  }
  .cert-badge__icon {
    width: 42px;
    height: 42px;
  }
  .cert-badge__name {
    font-size: 9px;
    white-space: normal;
    line-height: 1.3;
  }
}

/* ================================================================
   HAMBURGER TOGGLE BUTTON
   ================================================================ */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 45px;
  height: 45px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
  transition: border-color var(--transition);
}

.nav-toggle:hover {
  border-color: #fff;
}

.nav-toggle__bar {
  display: block;
  width: 25px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}

/* Animated X when open */
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile sub-menu arrow ── */
.nav-arrow {
  display: none;
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.nav-arrow svg {
  stroke: #fff;
  transition: transform var(--transition);
}

.nav-item--open > .nav-link > .nav-arrow svg {
  transform: rotate(180deg);
}


/* ================================================================
   RESPONSIVE — Tablet (≤ 1050px)
   ================================================================ */
@media (max-width: 1050px) {
  .nav-link {
    padding: 0 11px;
    font-size: 13px;
  }
}

/* ================================================================
   RESPONSIVE — Mobile Nav (≤ 900px)
   ================================================================ */
@media (max-width: 900px) {

  /* 让 header-inner 作为 nav 的定位基准 */
  .header-inner {
    position: relative;
  }

  /* 移动端隐藏右侧语言+搜索区域（已移入 nav 内） */
  .header-right {
    display: none;
  }

  /* header 主行：只剩 logo + hamburger，恢复比例 */
  .header-main-row {
    height: 60px;
    gap: 12px;
  }

  .logo {
    flex: 1;
  }

  /* 显示汉堡按钮 */
  .nav-toggle {
    display: flex;
  }

  /* logo 图片在移动端缩小 */
  .logo img {
    height: 36px;
    width: auto;
  }

  /* ── 导航面板折叠，打开时滑下 ── */
  .nav {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    max-height: 0;
    overflow: hidden;
    overflow-y: auto;
    transition: max-height 0.38s ease;
    z-index: 997;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }

  .nav--open {
    max-height: 80vh;
  }

  /* ── 移动端导航内部：搜索 + 语言切换 ── */
  .nav-mobile-extras {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    background: rgba(0,0,0,0.12);
  }

  .nav-mobile-search {
    display: flex;
    flex: 1;
    border: 1.5px solid rgba(255,255,255,0.35);
    border-radius: 22px;
    overflow: hidden;
    transition: border-color var(--transition);
  }

  .nav-mobile-search:focus-within {
    border-color: #fff;
  }

  .nav-mobile-search__input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 7px 12px;
    font-size: 13px;
    font-family: 'Noto Serif SC', serif;
    color: #fff;
  }

  .nav-mobile-search__input::placeholder {
    color: rgba(255,255,255,0.55);
  }

  .nav-mobile-search__btn {
    border: none;
    background: rgba(255,255,255,0.18);
    color: #fff;
    padding: 7px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
  }

  .nav-mobile-search__btn:hover {
    background: rgba(255,255,255,0.28);
  }

  .nav-mobile-search__btn svg {
    width: 15px;
    height: 15px;
    stroke: #fff;
  }

  .nav-mobile-lang {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: rgba(255,255,255,0.85);
    white-space: nowrap;
    letter-spacing: 1px;
    transition: color var(--transition);
    flex-shrink: 0;
  }

  .nav-mobile-lang:hover {
    color: #fff;
  }

  .nav-mobile-lang .lang-flag {
    flex-shrink: 0;
  }

  /* ── Nav list 纵向排列 ── */
  .nav-list {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-item {
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }

  .nav-item:last-child {
    border-bottom: none;
  }

  .nav-link {
    height: auto;
    line-height: 1.4;
    padding: 14px 20px;
    font-size: 14px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-link::after {
    display: none;
  }

  .nav-item:hover > .nav-link {
    color: #fff;
    background: rgba(255,255,255,0.07);
  }

  /* 显示箭头按钮 */
  .nav-arrow {
    display: flex;
  }

  /* 子菜单手风琴展开 */
  .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border-top: none;
    border-radius: 0;
    background: rgba(0,0,0,0.18);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-item:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .nav-item--open > .dropdown {
    max-height: 400px;

  }

  .dropdown-item a {
    padding: 11px 20px 11px 36px;
    color: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    font-size: 16px;
  }



  .dropdown-item a:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    padding-left: 44px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* ── 轮播图 ≤900px ── */
  .carousel__track {
    height: calc(100vh - 60px);
    min-height: 420px;
  }

  .carousel__title {
    font-size: 38px;
  }

  .carousel__content {
    padding: 0 6%;
  }

  .hero-banner__inner--reverse {
    flex-direction: column;
  }

  .hero-banner__text,
  .hero-banner__text--right {
    text-align: center;
    padding: 0 0 36px;
  }

  /* juice ≤900px */
  .juice-bg-wrap {
    height: 320px;
  }

  .juice-mask {
    background: linear-gradient(
      to right,
      rgba(240,248,225,0.97) 0%,
      rgba(240,248,225,0.88) 38%,
      rgba(240,248,225,0.30) 65%,
      transparent 82%
    );
  }

  .juice-content {
    padding: 0 5%;
  }

  .juice-title {
    font-size: 22px;
  }
}

/* ================================================================
   RESPONSIVE — Mobile (≤ 600px)
   ================================================================ */
@media (max-width: 600px) {
  .header-inner {
    padding: 0 16px;
  }

  .header-main-row {
    gap: 8px;
  }

  .logo img {
    height: 60px;
  }

  .container {
    padding: 0 18px;
  }

  .product-section {
    padding: 32px 0;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* ── 轮播图 ≤600px ── */
  .carousel__track {
    height: calc(100vh - 60px);
    min-height: 480px;
  }

  .carousel__content {
    padding: 0 5%;
    align-items: flex-end;
    padding-bottom: 80px;
  }

  .carousel__content--right {
    justify-content: flex-start;

  }

  .carousel__content--center {
    align-items: flex-end;
    padding-bottom: 80px;
  }

  .carousel__text-panel {
    max-width: 100%;
  }

  .carousel__text-panel--center {
    text-align: left;
  }

  .carousel__text-panel--center .carousel__divider {
    margin-left: 0;
    margin-right: 0;
  }

  .carousel__title {
    font-size: 32px;
  }

  .carousel__subtitle {
    font-size: 15px;
  }
  .carousel__arrow {
    width: 38px;
    height: 38px;
  }

  .carousel__arrow svg {
    width: 16px;
    height: 16px;
  }

  .carousel__arrow--prev { left: 14px; }
  .carousel__arrow--next { right: 14px; }

  /* juice ≤600px：遮罩改从下往上，文字沉底左对齐 */
  .juice-bg-wrap {
    height: 280px;
  }

  .juice-mask {
    background: linear-gradient(
      to top,
      rgba(240,248,225,0.97) 0%,
      rgba(240,248,225,0.70) 45%,
      transparent 72%
    );
  }

  .juice-content {
    align-items: flex-end;
    padding: 0 20px 22px;
  }

  .juice-text {
    max-width: 100%;
  }

  .juice-title {
    font-size: 20px;
  }

  .juice-pct {
    font-size: 12px;
  }

  .juice-feature-item {
    font-size: 12px;
  }

  .footer-inner {
    flex-direction: column;
    padding: 0 18px;
    gap: 30px;
  }

  .footer-policy {
    padding: 14px 16px;
  }

  .footer-policy__link {
    padding: 4px 10px;
    font-size: 12px;
  }
}

/* ================================================================
   RESPONSIVE — Small Mobile (≤ 400px)
   ================================================================ */
@media (max-width: 400px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .nav-link {
    padding: 0 7px;
    font-size: 12px;
  }
}





/* ── 公共工具 ── */
.about-section-en {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* ============================================================
   1. ABOUT HERO BANNER（图字分离）
   ============================================================ */
.about-hero {
  position: relative;
  width: 100%;
  height: calc(80vh - 80px);
  min-height: 480px;
  overflow: hidden;
}

/* 图层1：背景图 */
.about-hero__bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero__bg-img {
  width: 100%;
  height:100%;
  object-fit: cover;
  display: block;
  animation: aboutHeroKenBurns 8s ease-out forwards;
}

@keyframes aboutHeroKenBurns {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}


/* 图层2：文字 */
.about-hero__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 0 18%;
}

.about-hero__text {
  max-width: 560px;
}

.about-hero__en {
  font-size: 18px;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 16px;
  animation: aboutSlideUp 0.8s ease both 0.2s;
}

.about-hero__title {
  font-size: clamp(24px, 2.8vw, 36px);
  color: var(--text);

  margin-bottom: 20px;
  animation: aboutSlideUp 0.8s ease both 0.4s;
}


.about-hero__sub {
  font-size: clamp(14px, 1.6vw, 18px);
  color: var(--text);
  line-height: 1.7;
  animation: aboutSlideUp 0.8s ease both 0.7s;
}

@keyframes aboutSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ============================================================
   2. 公司介绍
   ============================================================ */
.about-intro {
  padding: 90px 0;
  background: #fff;
}

.about-intro__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 70px;
}

/* 左侧图片（图字分离） */
.about-intro__img-wrap {
  position: relative;
  flex: 0 0 48%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 2px;
}

.about-intro__img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.about-intro__img-wrap:hover .about-intro__img {
  transform: scale(1.04);
}



/* 右侧文字 */
.about-intro__text {
  flex: 1;
}

.about-intro__label {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 30px;
}

.about-intro__title {
  font-size: clamp(20px, 3.5vw, 28px);
  color: var(--text);
  margin-bottom: 10px;
}
.about-intro__divider{
  font-size: clamp(20px, 3.5vw, 28px);
}

.about-intro__desc {
  font-size: 18px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 15px;
}



/*人物介绍*/
/* 容器：一行两列 */
.about-figure {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: var(--container);
    margin: 0 auto;
    padding:0 0 90px 0;
}

/* 卡片区块：灰色背景 */
.about-figure .card {
    flex: 1 1 calc(50% - 10px);
    min-width: 280px;
    background: #f3f3f1;
    padding: 15px;
}

/* 图片自适应 */
.about-figure .card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* 标题 */
.about-figure .card .title {
    font-size: clamp(14px, 1.3vw, 24px);
    margin: 20px 0 20px;
    padding:0 20px;
}

/* 简介 */
.about-figure .card .desc {
    margin-bottom: 20px;
    padding:0 20px;
    font-size: 16px;
}
.about-figure .card .desc p{
  margin-top: 10px;
}
/* 签名靠右 */
.about-figure .card .sign {
    float: right;
    font-size: 18px;
    color: #555;
}


/* ============================================================
   3. 数据统计栏
   ============================================================ */
.about-stats {
  background: var(--primary);
  padding: 56px 40px;
}

.about-stats__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}

.about-stats__item {
  text-align: center;
}

.about-stats__num {
  display: block;
  font-size: clamp(20px, 3.5vw, 28px);
  color: #fff;

  margin-bottom: 10px;
}
.about-stats__label {
  display: block;
  font-size: 18px;
  color: #fff;
}


/* ============================================================
   4. 历程
   ============================================================ */
.about-values {
  padding: 90px 0;
  background: #f8f8f5;
}

.about-values .about-values__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.about-values .about-values__header {
  text-align: center;
  margin-bottom: 56px;
}

.about-values .about-values__en {
  font-size: 20px;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.about-values .about-values__title {
  font-size: clamp(22px, 2.5vw, 32px);
  color: var(--text);
  margin-bottom: 16px;
}


/* 左中右布局容器 */
.about-values .timeline-wrapper {
    position: relative;
    max-width: var(--container);
    margin: 0 auto;
}
/* 中间竖线（核心：左中右的分隔线） */
.about-values .timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #7cb342;
    transform: translateX(-50%);
    z-index: 1;
}
/* 竖线顶部叶子图标 */
.about-values .timeline-line::before {
    content: '';
    position: absolute;
    left: -25px;  /* 居中对齐竖线 */
    top: -20px;
    width: 50px;  /* 图片宽度 */
    height: 50px; /* 图片高度 */
    background-image: url('../images/course-ico.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 11;
}
/* 竖线底部箭头 */
.about-values .timeline-line::after {
    content: '';
    position: absolute;
    left: -5px;
    bottom: -10px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 10px solid #7cb342;
    z-index: 2;
}

/* 时间线项：左中右布局（PC端） */
.about-values .timeline-item {
    position: relative;
    margin-bottom: 80px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
/* 文字内容样式 */
.about-values .timeline-content {
    padding: 10px 0;
    max-width: 500px;
}
.about-values .timeline-title {
    font-size: clamp(24px, 1.8vw, 26px);
    margin-bottom: 10px;
    color: var(--text);
    font-weight: 600;
}
/* 副标题+底部横线 */
.about-values .timeline-subtitle {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--text);
    font-weight: 400;
    padding-bottom: 8px;
    border-bottom: 1px solid #c3c3c3;
    display: inline-block;
}
.about-values .timeline-text {
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.8;
    color: var(--text);
}

/* 图片样式 */
.about-values .timeline-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 4px;
  transition: transform .6s ease !important;
}
.about-values .timeline-img-container {
  overflow: hidden;
}
.about-values .timeline-img-container:hover .timeline-img {
  transform: scale(1.06) !important;
}
/* PC端（≥768px）：左中右布局 */
@media (min-width: 768px) {

    .about-values .timeline-item {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    /* 第1/3项：左内容 + 右图片（中间竖线分隔） */
    .about-values .timeline-item:nth-child(odd) .timeline-content,
    .about-values .timeline-item:nth-child(even) .timeline-content {
        justify-self: anchor-center;
        padding-right: 40px; /* 远离竖线 */
    }
    .about-values .timeline-item:nth-child(odd) .timeline-img-container,
    .about-values .timeline-item:nth-child(even) .timeline-img-container {
        justify-self: anchor-center;
        padding-right: 40px; /* 远离竖线 */
    }
}
@media (max-width: 768px) {
  .about-values .timeline-line{
      display: none;
    }
}

/* ============================================================
   5. 基地全景 BANNER（图字分离）
   ============================================================ */
.about-field {
  position: relative;
  width: 100%;
  height: 650px;
  overflow: hidden;
}

/* 图层1：背景图 */
.about-field__bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-field__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



/* 图层2：文字 */
.about-field__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 60px;
}

.about-field__text {
  text-align: center;
}


.about-field__title {
  font-size: clamp(24px, 1.8vw, 26px);
  color: var(--text);
  margin-bottom: 15px;
}

.about-field__sub {
  font-size: 18px;
  color: var(--text);
}


/* ============================================================
   6. 芦荟种植
   ============================================================ */
.about-aloe {
  padding: 90px 0;
  background: #fff;
}

/* 核心容器：响应式三列布局 */
.about-aloe .brand-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: var(--container);
    margin: 0 auto;
}
/* 单个品牌区块样式 */
.about-aloe .brand-item {
    background-blend-mode: soft-light;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 30px 20px;
    border-radius: 8px;
    color: #333;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center; /* 所有文字居中 */
}
/* 品牌标题样式 */
.about-aloe .brand-title {
    margin: 0 0 20px 0;
    font-size: clamp(20px, 1.2vw, 24px);
    color: var(--primary);
    text-transform:uppercase
}
/* 品牌副标题1 */
.about-aloe .brand-subtitle1 {
    margin: 0 0 5px 0;
    font-size: clamp(20px, 1.2vw, 24px);
}
/* 品牌副标题2 */
.about-aloe .brand-subtitle2 {
    margin: 0;
    font-size: 18px;
    color: var(--text);
}
/* 响应式适配：手机端变为单列 */
@media (max-width: 767px) {
    .about-aloe .brand-container {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   7. ALOE HOUSE 门店
   ============================================================ */
.about-store {
  padding: 90px 0;
  background: #f8f8f5;
}

/* 响应式图片样式 */
.about-store .responsive-img {
    width: 100%; /* 宽度自适应容器 */
    height: auto; /* 高度自动，保持宽高比 */
    object-fit: contain; /* 保证图片完整显示，不裁剪 */
}




/* ============================================================
   8. 品质标准 BANNER（图字分离）
   ============================================================ */
.about-quality {
  position: relative;
  width: 100%;
}



/* 图层：文字 */
.about-quality .about-quality__content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-quality .about-quality__text {
  text-align: center;
  max-width: var(--container);
}

.about-quality .about-quality__title {
  font-size: clamp(24px, 1.8vw, 26px);
  color: var(--text);
  margin-top: 40px;
  margin-bottom: 20px;
}

.about-quality .about-quality__desc{
  font-size: 16px;
  color: var(--text);
}
/* 核心容器：响应式三列布局 */
.about-quality .img-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* PC端三列等宽 */
    gap: 15px; /* 区块间距 */
    max-width: 1200px;
    margin: 0 auto;
}
/* 图片区块样式 */
.about-quality .img-item {
    width: 100%;
    margin-top: 40px;
}
.about-quality .img-item img {
    width: 100%;
    height: auto; /* 固定高度，也可改为auto自适应 */
    object-fit: cover; /* 图片铺满区块，裁剪多余部分（保持比例） */
    display: block; /* 去除图片底部空白 */
}
/* 响应式适配：手机端单列 */
@media (max-width: 767px) {
    .about-quality .img-grid {
        grid-template-columns: 1fr; /* 手机端单列 */
    }
    .about-quality .img-item img {
        height: 250px; /* 手机端图片高度稍减 */
    }
}






/*研发中心*/
.about-rd{
  padding:90px 0;
}

.about-rd .cont {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 左右各占50% */
    width: 100%; /* 宽度占满屏幕 */
    color:#fff;
}
.about-rd .text-cont{
  width:100%;
  background:var(--primary);
}
/* 左侧文字区域：绿色背景 */
.about-rd .text-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* 确保文字区高度填满容器 */
    height: 100%;
    width:62%;
    padding:0 60px 0 0px;
    float:right;

}
/* 文字样式 */
.about-rd .main-title {
    font-size: clamp(24px, 1.8vw, 26px);
    margin-bottom: 20px;
    font-weight: 600;
}
.about-rd .sub-title {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}
.about-rd .desc-text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}
/* 右侧图片区域：完全占满右侧 */
.about-rd .img-section {
    width: 100%;
    height: 100%;
    /* 移除任何可能的内边距/外边距 */
    padding: 0;
    margin: 0;
}
.about-rd .img-section img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 图片铺满区域，保持比例（裁剪多余部分） */
    /* 若想完整显示图片不裁剪，改为 object-fit: cover → object-fit: fill
       但fill可能导致图片变形，优先推荐cover */
    display: block;
    /* 移除图片默认间隙 */
    border: none;
    outline: none;
}
/* 响应式适配：手机端（≤767px）上下布局 */
@media (max-width: 767px) {
    .about-rd .cont {
        grid-template-columns: 1fr; /* 单列布局 */
        min-height: auto;
    }
    .about-rd .text-section {
        padding: 40px 20px;
        min-height: 400px;
        width:100%;
    }
    .about-rd .main-title {
        font-size: 1.6rem;
    }
    .about-rd .sub-title {
        font-size: 1rem;
    }
    .about-rd .desc-text {
        font-size: 0.9rem;
    }
    .about-rd .img-section img {
        min-height: 400px; /* 手机端图片高度占满更多空间 */
        object-fit: cover;
    }
}




/* ============================================================
   9. 品牌荣誉
   ============================================================ */
.about-awards {
  padding: 0 0 90px 0;
  background: #fff;
}

.about-awards__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.about-awards__header {
  text-align: center;
  margin-bottom: 56px;
}


.about-awards__title {
  font-size: clamp(24px, 1.8vw, 26px);
  color: var(--text);
  margin-bottom: 16px;
}


.ag_rd3 .x-about7{width:100%;height:100%;margin:auto;padding:1.2rem 0 0 0;}
.ag_rd3 .x-about7 .x-cont .x-title{margin-bottom:30px;margin-top:50px;text-align:center;}
.ag_rd3 .x-about7 .x-cont .x-swiper{margin-top:0.4rem;position:relative;}

.ag_rd3 .x-about7 .x-cont .x-swiper .x-t{display:flex;justify-content:center;border-bottom:1px solid #d2d9e1;margin-bottom:0.4rem;}
.ag_rd3 .x-about7 .x-cont .x-swiper .x-t .x-p{display:inline-block;margin-right:20px;cursor:pointer;position:relative;font-size:20px;padding:0 0.5rem 1.2rem;transition:0.4s ease-in-out;}
.ag_rd3 .x-about7 .x-cont .x-swiper .x-t .x-p::before{content:"";height:2px;width:0;background-color:#415c2d;transition:0.4s ease-in-out;position:absolute;left:0;bottom:-1px;}
.ag_rd3 .x-about7 .x-cont .x-swiper .x-t .x-p:hover,.x-about7 .x-cont .x-swiper .x-t .x-p.on{color:#415c2d;}
.ag_rd3 .x-about7 .x-cont .x-swiper .x-t .x-p:hover::before,.x-about7 .x-cont .x-swiper .x-t .x-p.on::before{width:100%;}
.ag_rd3 .x-about7 .x-cont .x-swiper .x-t .x-p:last-child{margin-right:0;}
.ag_rd3 .x-about7 .x-cont .x-swiper .x-box{display:none;}
.ag_rd3 .x-about7 .x-cont .x-swiper .x-box.on{display:block;}
.ag_rd3 .x-about7 .x-cont .x-swiper .x-box .swiper{padding-bottom:0.4rem;}
.ag_rd3 .x-about7 .x-cont .x-swiper .x-box .swiper .swiper-wrapper .swiper-slide .x-img{height:300px;margin:30px auto;border-radius:10px;padding:0.3rem 0.3rem;}
.ag_rd3 .x-about7 .x-cont .x-swiper .x-box .swiper .swiper-wrapper .swiper-slide .x-img img{width:100%;height:100%;object-fit:contain;}
.ag_rd3 .x-about7 .x-cont .x-swiper .x-box .swiper .swiper-wrapper .swiper-slide p{text-align:center;padding:0.3rem 0 3.3rem 0;font-size:16px;}
.ag_rd3 .x-about7 .x-cont .x-swiper .x-box .x-but{position:absolute;bottom:0;left:0;width:100%;display:flex;justify-content:space-between;align-items:center;}
.ag_rd3 .x-about7 .x-cont .x-swiper .x-box .x-but .swiper-scrollbar{width:90%;height:1px;background:rgba(0,0,0,0.1);}
.ag_rd3 .x-about7 .x-cont .x-swiper .x-box .x-but .swiper-scrollbar .swiper-scrollbar-drag{background:#415c2d;}
.ag_rd3 .x-about7 .x-cont .x-swiper .x-box .x-but .x-b{width:8%;display:flex;align-items:center;justify-content:space-between;}
.ag_rd3 .x-about7 .x-cont .x-swiper .x-box .x-but .x-b .swiper-button-prev{width:40px;height:40px;border:1px solid #415c2d;border-radius:100%;position:initial;margin-top:0;transform:initial;}
.ag_rd3 .x-about7 .x-cont .x-swiper .x-box .x-but .x-b .swiper-button-prev::before{content:"";width:7px;height:12px;background:url("../images/x-ri-jt2.png") center no-repeat;background-size:100% 100%;transform:rotate(-180deg);}
.ag_rd3 .x-about7 .x-cont .x-swiper .x-box .x-but .x-b .swiper-button-prev::after{display:none;}
.ag_rd3 .x-about7 .x-cont .x-swiper .x-box .x-but .x-b .swiper-button-next{width:40px;height:40px;border:1px solid #415c2d;border-radius:100%;position:initial;margin-top:0;transform:initial;}
.ag_rd3 .x-about7 .x-cont .x-swiper .x-box .x-but .x-b .swiper-button-next::before{content:"";width:7px;height:12px;background:url("../images/x-ri-jt2.png") center no-repeat;background-size:100% 100%;}
.ag_rd3 .x-about7 .x-cont .x-swiper .x-box .x-but .x-b .swiper-button-next::after{display:none;}


/* ============================================================
   10. 全球合作伙伴
   ============================================================ */
.about-partners {
  padding:0 0 90px 0;
}

.about-partners__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.about-partners__header {
  text-align: center;
  margin-bottom: 52px;
}



.about-partners__title {
  font-size: clamp(24px, 1.8vw, 26px);
  color: var(--text);
  margin-bottom: 20px;
}
.about-partners__title-son{
  text-align: left;
  font-size: 1.5em;
  color:var(--primary);
}


.about-partners__sub {
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
  text-align: left;
  margin-top: 10px;
  margin-bottom: 20px;
}
/* 国内市场图片布局 */
.about-img-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 10px;
}
.about-market-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}
.about-partners__logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.about-partners__logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-partners__logo-box {
  width: 100%;
  aspect-ratio: 2/1;
  border: 1px solid #e0e0e0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.about-partners__logo-box:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(112, 155, 18, 0.1);
}


 @media (max-width: 767px) {
    .about-img-group {
        grid-template-columns: 1fr; /* 手机端1列图片 */
    }
   .about-awards__header{
     margin:0;
   }
}



/*企业文化*/
.about-culture{
  margin:0 auto;
  padding:0 0 90px 0;
  max-width: var(--container);
}
.about-culture .about-culture__title {
    font-size: clamp(24px, 1.8vw, 26px);
    color: var(--text);
    margin-bottom: 20px;
    text-align: center;
}
/* 企业文化卡片容器：响应式三列布局 */
.about-culture .culture-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; /* 卡片间距 */
}
/* 单个卡片样式（还原设计图边框+文字排版） */
.about-culture .culture-card {
    border: 1px solid #ccc; /* 浅灰色边框 */
    padding: 30px 20px;
    text-align: center;
    height: 100%; /* 保证所有卡片等高 */
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/* 卡片大标题（使命/愿景/价值观） */
.about-culture .card-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 500;
}
/* 卡片副标题 */
.about-culture .card-subtitle {
    font-size: 1rem;
    color: var(--text);

}
/* 响应式适配：手机端（≤767px）单列布局 */
@media (max-width: 767px) {
    .about-culture .culture-container {
        grid-template-columns: 1fr;
    }
    .about-culture .main-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    .about-culture .culture-card {
        padding: 25px 15px;
    }
    .about-culture .card-title {
        font-size: 1.2rem;
    }
    .about-culture .card-subtitle {
        font-size: 0.9rem;
    }
}







/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ── ≤1050px ── */
@media (max-width: 1050px) {
  .about-values__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-partners__logos {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── ≤900px ── */
@media (max-width: 900px) {
  .about-hero {
    height: 70vw;
    min-height: 360px;
  }

  .about-intro__inner {
    flex-direction: column;
    gap: 40px;
    padding: 0 24px;
  }

  .about-intro__img-wrap {
    flex: none;
    width: 100%;
  }

  .about-aloe__inner {
    flex-direction: column-reverse;
    gap: 40px;
    padding: 0 24px;
  }

  .about-aloe__img-wrap {
    flex: none;
    width: 100%;
  }

  .about-store__gallery {
    flex-direction: column;
    height: auto;
  }

  .about-store__item--large {
    flex: none;
    height: 280px;
  }

  .about-store__col {
    flex-direction: row;
    height: 200px;
  }

  .about-quality {
    height: auto;
  }

  .about-quality__items {
    gap: 36px;
  }

  .about-values__inner,
  .about-store__inner,
  .about-awards__inner,
  .about-partners__inner {
    padding: 0 24px;
  }

  .about-stats {
    padding: 40px 24px;
  }

  .about-stats__inner {
    gap: 24px;
  }
}

/* ── ≤600px ── */
@media (max-width: 600px) {
  .about-hero {
    height: 80vw;
    min-height: 300px;
  }

  .about-hero__content {
    padding: 0 5%;
  }

  .about-intro,
  .about-aloe,
  .about-store,
  .about-awards,
  .about-partners {
    padding: 0 0 60px 0;
  }

  .about-values {
    padding: 0 0 60px 0;
  }

  .about-values__grid {
    grid-template-columns: 1fr;
  }

  .about-partners__logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-stats__inner {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
  }

  .about-quality__items {
    gap: 24px;
  }

  .about-quality__label {
    max-width: 90px;
    font-size: 12px;
  }

  .about-store__col {
    flex-direction: column;
    height: auto;
  }

  .about-store__col .about-store__item {
    height: 180px;
    flex: none;
  }

  .about-field {
    height: 340px;
  }
}

/* ── ≤400px ── */
@media (max-width: 400px) {
  .about-partners__logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-stats__num {
    font-size: 32px;
  }
}














/* ============================================================
   INDUSTRIAL CHAIN PAGE — chain.css
   Relies on style.css variables:
   --primary #709b12 | --text #333 | --text-mid #666
   --container 1280px | --transition 0.25s ease
   ============================================================ */


/* ============================================================
   §1  HERO BANNER（图字分离）
   ============================================================ */
.ch-hero {
  position: relative;
  width: 100%;
  height: calc(80vh - 80px);
  min-height: 480px;
  overflow: hidden;
}

/* —— Layer 1: image —— */
.ch-hero__bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ch-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: chHeroZoom 8s ease-out forwards;
}

@keyframes chHeroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}



/* —— Layer 2: text —— */
.ch-hero__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  padding: 0 15%;
}

.ch-hero__text {
  max-width: 600px;
}

.ch-hero__title {
  font-size: clamp(20px, 3.5vw, 28px);
  color: var(--text);

  margin-bottom: 20px;
  margin-top:90px;
  animation: chSlideUp 0.8s ease both 0.3s;
}

.ch-hero__desc {
  font-size: clamp(13px, 1.3vw, 16px);
  color: var(--text);
  line-height: 1.85;
  animation: chSlideUp 0.8s ease both 0.55s;
}

@keyframes chSlideUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ============================================================
   §2  STATS BAR
   ============================================================ */
.ch-stats {
  background: #f5f7f0;
  border-bottom: 1px solid #e4e9d8;
}

.ch-stats__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: stretch;
}

.ch-stats__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 44px 24px;
  gap: 10px;
}

.ch-stats__divider {
  width: 1px;
  background: #d3dbbf;
  margin: 28px 0;
  flex-shrink: 0;
}

.ch-stats__num {
  font-size: clamp(20px, 3.5vw, 28px);
  color: var(--primary);

  margin-bottom: 10px;
  font-weight: 600;
}


.ch-stats__label {
  font-size: clamp(16px, 1.1vw, 18px);
  color: var(--text);
  max-width: 300px;
}


/* ============================================================
   §3  FEATURE BLOCKS
   ============================================================ */
.ch-features {
  background: #fff;
  padding: 80px 0;
}

.ch-features__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 72px;
}

/* ── Single feature row ── */
.ch-feature {
  display: flex;
  align-items: center;
  gap: 56px;
}

/* ── Image group: two images side by side ── */
.ch-feature__img-group {
  flex-shrink: 0;
}


.ch-feature__img-group--one {
  width: 42%;
}

.ch-feature__img-wrap {
  overflow: hidden;
}

.ch-feature__img {
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.ch-feature__img-wrap:hover .ch-feature__img {
  transform: scale(1.05);
}

/* ── Feature text ── */
.ch-feature__text {
  flex: 1;
  padding-top: 6px;
}

.ch-feature__text--wide {
  flex: none;
  width: 100%;
}

.ch-feature__arrow {
  color: var(--primary);
  font-size: 1.3em;
  margin-right: 4px;
}

.ch-feature__title {
  font-size: clamp(17px, 1.8vw, 24px);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.4;
}

.ch-feature__sub {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #c5c5c5;
}

.ch-feature__desc {
  font-size: 18px;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 12px;
}






/* ============================================================
   §4  FULL-WIDTH PANORAMIC IMAGE
   ============================================================ */
.ch-panorama {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.ch-panorama__img-wrap {
  width: 100%;
  height: 52vw;
  max-height: 640px;
  min-height: 260px;
  overflow: hidden;
}

.ch-panorama__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s ease;
}

.ch-panorama:hover .ch-panorama__img {
  transform: scale(1.03);
}


/* ============================================================
   §5  ALOE HOUSE CENTER
   ============================================================ */
.ch-center {
  background: #fff;
  padding: 80px 0 72px;
}

.ch-center__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.ch-center__header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 52px;
}

.ch-center__title {
  font-size: clamp(18px, 2.2vw, 28px);
  color: var(--text);
  margin-bottom: 20px;

}

.ch-center__desc {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 12px;
}

/* ── 4 thumbnails in a row — layout MUST NOT CHANGE ── */
.ch-center__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ch-center__gallery-item {
  display: flex;
  flex-direction: column;
}

/* Layer separation: image wrap */
.ch-center__thumb-wrap {
  position: relative;
  overflow: hidden;
}
.ch-center__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.ch-center__thumb-wrap:hover .ch-center__thumb {
  transform: scale(1.06);
}

/* Gradient mask layer */
.ch-center__thumb-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 55%);
  pointer-events: none;
}

/* Text layer below image */
.ch-center__thumb-label {
  font-size: 18px;
  color: var(--text);
  text-align: center;

  background:#f3f3f1;
  padding:20px 0;
}


/* ============================================================
   §6  GREEN BANNER（图字分离）
   ============================================================ */
.ch-green-banner {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

/* Layer 1: image */
.ch-green-banner__bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ch-green-banner__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Layer 2: text */
.ch-green-banner__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 40px;
}

.ch-green-banner__title {
  font-size: clamp(22px, 3vw, 38px);
  color: #fff;
  margin-bottom: 14px;
}


/* ============================================================
   §7  ALOE VARIETIES
   3 alternating blocks — image layouts MUST NOT CHANGE
   ============================================================ */
.ch-varieties {
  background: #f8f8f5;
  padding: 84px 0;
}

.ch-varieties__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 72px;
}

/* ── Single variety row ── */
.ch-variety {
  display: flex;
  align-items: flex-start;
  gap: 56px;
}






/* ── Image stacks (2 stacked vertically) ── */
.ch-variety__imgs {
  flex-shrink: 0;
}

.ch-variety__imgs--stack {
  width: 42%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ch-variety__imgs--single {
  width: 42%;
}

.ch-variety__img-wrap {
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 16/9;
}

.ch-variety__imgs--stack .ch-variety__img-wrap {
  aspect-ratio: 16/8;
}

.ch-variety__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.ch-variety__img-wrap:hover .ch-variety__img {
  transform: scale(1.05);
}

/* ── Variety text ── */
.ch-variety__text {
  flex: 1;
  padding-top: 4px;
}


.ch-variety__arrow {
  color: var(--primary);
  font-size: 1.3em;
  margin-right: 4px;
}

.ch-variety__title {
  font-size: clamp(17px, 1.8vw, 24px);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.4;
}

.ch-variety__genus {
  margin-bottom: 18px;
  margin-top:20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #c5c5c5;
}

.ch-variety__desc {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  margin-top:20px;
  margin-bottom: 12px;
}


/* ============================================================
   §8  COMMITMENT BANNER（图字分离）
   Dark overlay · text LEFT · image RIGHT
   ============================================================ */
.ch-commitment {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.ch-commitment .cont {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 左右各占50% */
    width: 100%; /* 宽度占满屏幕 */
    color:#fff;
}
.ch-commitment .text-cont{
  width:100%;
  background:var(--primary);
}
/* 左侧文字区域：绿色背景 */
.ch-commitment .text-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* 确保文字区高度填满容器 */
    height: 100%;
    width:62%;
    padding:0 60px 0 0px;
    float:right;

}
/* 文字样式 */
.ch-commitment .main-title {
    font-size: clamp(24px, 1.8vw, 26px);
    margin-bottom: 20px;
    font-weight: 600;
}

.ch-commitment .desc-text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}
/* 右侧图片区域：完全占满右侧 */
.ch-commitment .img-section {
    width: 100%;
    height: 100%;
    /* 移除任何可能的内边距/外边距 */
    padding: 0;
    margin: 0;
}
.ch-commitment .img-section img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 图片铺满区域，保持比例（裁剪多余部分） */
    /* 若想完整显示图片不裁剪，改为 object-fit: cover → object-fit: fill
       但fill可能导致图片变形，优先推荐cover */
    display: block;
    /* 移除图片默认间隙 */
    border: none;
    outline: none;
}
/* 响应式适配：手机端（≤767px）上下布局 */
@media (max-width: 767px) {
    .ch-commitment .cont {
        grid-template-columns: 1fr; /* 单列布局 */
        min-height: auto;
    }
    .ch-commitment .text-section {
        padding: 40px 20px;
        min-height: 400px;
        width:100%;
    }
    .ch-commitment .main-title {
        font-size: 1.2rem;
    }
    .ch-commitment .sub-title {
        font-size: 1rem;
    }
    .ch-commitment .desc-text {
        font-size: 0.9rem;
    }
    .ch-commitment .img-section img {
        min-height: 400px; /* 手机端图片高度占满更多空间 */
        object-fit: cover;
    }
}


/* ============================================================
   §9  PRODUCT CATEGORIES GRID
   2×2 four-card layout — MUST NOT CHANGE
   ============================================================ */
.ch-categories {
  background: #fff;
  padding: 84px 0;
}

.ch-categories__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.ch-categories__header {
  text-align: center;
  margin-bottom: 52px;
}

.ch-categories__title {
  font-size: clamp(18px, 2.2vw, 28px);
  color: var(--text);
  margin-bottom: 15px;

}

.ch-categories__sub {
  font-size: 18px;
  color: var(--text);
  line-height: 1.7;
}

/* 2×2 grid */
.ch-categories__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

/* ── Single card (图字分离) ── */
.ch-cat-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 12/6;
}

/* Layer 1: image */
.ch-cat-card__img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Gradient overlay */
.ch-cat-card__img-mask {
  position: absolute;
  inset: 0;
  background: #f3f3f1;
  transition: background var(--transition);
}

.ch-cat-card--green .ch-cat-card__img-mask {
  background: #f3f3f1;
}



/* Layer 2: text */
.ch-cat-card__text {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 28px;
}

.ch-cat-card__zh {
  font-size: clamp(18px, 2.2vw, 28px);
  color: var(--primary);
  margin-bottom: 30px;
}

.ch-cat-card__desc {
  font-size: clamp(16px, 1vw, 18px);
  color: var(--text);

  max-width: 350px;
}


/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ── ≤ 1050px ── */
@media (max-width: 1050px) {
  .ch-features__inner,
  .ch-varieties__inner,
  .ch-center__inner,
  .ch-categories__inner {
    padding: 0 28px;
  }

  .ch-stats__inner {
    padding: 0 28px;
  }
  .ch-feature__img-group--one { width: 44%; }
  .ch-variety__imgs--stack,
  .ch-variety__imgs--single   { width: 44%; }
}

/* ── ≤ 900px ── */
@media (max-width: 900px) {

  /* Hero */
  .ch-hero {
    height: 70vw;
    min-height: 300px;
  }

  /* Stats: wrap to column */
  .ch-stats__inner {
    flex-direction: column;
    padding: 0;
  }

  .ch-stats__divider {
    width: 60%;
    height: 1px;
    margin: 0 auto;
  }

  .ch-stats__item {
    padding: 28px 24px;
  }

  /* Features: stack vertically */
  .ch-feature {
    flex-direction: column;
    gap: 28px;
  }

  .ch-feature__img-group--one {
    width: 100%;
  }

  .ch-feature--text-only {
    padding: 32px 28px;
  }

  .ch-feature__cert-row {
    gap: 24px;
  }

  /* Panorama */
  .ch-panorama__img-wrap {
    height: 60vw;
  }

  /* Center gallery: 2 columns */
  .ch-center__gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Varieties: stack */
  .ch-variety {
    flex-direction: column;
    gap: 28px;
  }


  .ch-variety__imgs--stack,
  .ch-variety__imgs--single {
    width: 100%;
  }



  /* Commitment */
  .ch-commitment {
    height: auto;
    min-height: 320px;
  }

  .ch-commitment__content {
    position: relative;
    flex-direction: column;
    inset: auto;
    left: auto;
    transform: none;
    max-width: 100%;
    padding: 56px 28px;
    gap: 32px;
  }

  .ch-commitment__img-wrap {
    flex: none;
    width: 100%;
    height: 220px;
  }

  /* Categories: 2×2 stays but smaller */
  .ch-categories__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ch-features,
  .ch-varieties,
  .ch-center,
  .ch-categories {
    padding: 60px 0;
  }
}

/* ── ≤ 600px ── */
@media (max-width: 600px) {

  .ch-hero {
    height: 80vw;
    min-height: 260px;
  }

  .ch-hero__content {
    padding: 0 5%;
  }

  .ch-features__inner,
  .ch-varieties__inner,
  .ch-center__inner,
  .ch-categories__inner {
    padding: 0 16px;
  }

  .ch-feature--text-only {
    padding: 28px 18px;
  }

  /* Center gallery: 1 column on very small */
  .ch-center__gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Green banner */
  .ch-green-banner {
    height: 200px;
  }

  /* Commitment */
  .ch-commitment__content {
    padding: 40px 16px;
  }

  /* Categories: 1 column */
  .ch-categories__grid {
    grid-template-columns: 1fr;
  }

  .ch-cat-card {
    aspect-ratio: 16/8;
  }

  .ch-features,
  .ch-varieties,
  .ch-center,
  .ch-categories {
    padding: 48px 0;
  }

  .ch-features__inner,
  .ch-varieties__inner {
    gap: 48px;
  }
}

/* ── ≤ 400px ── */
@media (max-width: 400px) {

  .ch-stats__num {
    font-size: 28px;
  }

  .ch-center__gallery {
    grid-template-columns: 1fr;
  }

  .ch-green-banner {
    height: 170px;
  }
}















.bd-hero {
  position: relative;
  width: 100%;
  height: calc(80vh - 80px);
  min-height: 480px;
  overflow: hidden;
}

/* 图层1：背景图 */
.bd-hero__bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bd-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: bdHeroZoom 8s ease-out forwards;
}

@keyframes bdHeroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1); }
}


/* 图层2：内容（左文 + 右图） */
.bd-hero__content {
  position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    padding: 0 18%;
    flex-direction: column;
}

.bd-hero__left {
  flex: 0 0 48%;
}


.bd-hero__title {
  font-size: clamp(20px, 3.5vw, 28px);
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 15px;

  animation: bdSlideUp 0.7s ease both 0.35s;
}

.bd-hero__title-block {
  font-size: clamp(20px, 3.5vw, 28px);
  color: var(--text);
  margin-bottom: 18px;
  animation: bdSlideUp 0.7s ease both 0.35s;
}

.bd-hero__desc {
  font-size: clamp(14px, 1.5vw, 18px);
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 10px;
  animation: bdSlideUp 0.7s ease both 0.55s;
}

.bd-hero__desc-block{
  font-size: clamp(14px, 1.2vw, 18px);
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 28px;
  animation: bdSlideUp 0.7s ease both 0.55s;
}

.bd-hero__right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  animation: bdSlideUp 0.8s ease both 0.4s;
}

.bd-hero__product-img {
  max-width: 100%;
  max-height: 480px;
  margin-bottom: 50px;
  object-fit: contain;
  transition: transform 0.6s ease;
}

.bd-hero__product-img:hover {
  transform: translateY(-8px) scale(1.02);
}

@keyframes bdSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ============================================================
   §2  品牌介绍（白底）
   ============================================================ */
.bd-intro {
  background: #fff;
  padding: 88px 0;
}

.bd-intro__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* 顶部标题 */
.bd-intro__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}


.bd-intro__title {
  font-size: clamp(20px, 3.5vw, 28px);
  color: var(--text);
  margin-bottom: 15px;
}

.bd-intro__sub {
  font-size: clamp(14px, 1.5vw, 18px);

  color: var(--text);
}

/* 4个品牌特点 */
.bd-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 72px;
}

.bd-feature-item {
  background:#f3f3f1;
  text-align: center;
  padding: 32px 20px;
}


.bd-feature-item__icon {
  font-size: clamp(22px, 2.5vw, 34px);
  color: var(--primary);
  font-weight: 700;
}


.bd-feature-item__title {
  font-size: clamp(12px, 2.1vw, 22px);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.bd-feature-item__desc {
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.7;
}


/*功效*/

.bd-effect{}
.bd-effect .bd-cont {
    width: 100%;
    /* 背景图设置 */
    background: url('../images/brand2.jpg') right center / cover no-repeat;
    background-size: 100% 100%;
    padding: 40px 60px;
    display: flex;
    align-items: center;
}
/* 文字区域（叠加在背景图上） */
.bd-effect .text-wrap {
    padding: 120px 18%;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}
.bd-effect .title {
  font-size: clamp(20px, 3.5vw, 28px);
  margin-bottom: 30px;
  color: var(--text);
}
.bd-effect .benefit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.bd-effect .benefit-item {
    font-size: 20px;
    color: var(--text);
    display: flex;
    align-items: center;
}
.bd-effect .benefit-item::before {
    content: "☑";
    color: var(--primary);
    font-size: 1.8em;
    padding:0 10px;
}
/* 手机端适配 */
@media (max-width: 767px) {
    .bd-effect .bd-cont {
        background: url('../images/brand2.jpg') center center / cover no-repeat;
        padding: 30px 20px;
    }
    .bd-effect .text-wrap {
        max-width: 100%;
        background: rgba(255,255,255,0.9);
    }
    .bd-effect .title {font-size: 1.5rem; text-align: center;}
    .bd-effect .benefit-list {grid-template-columns: 1fr; gap: 15px;}
    .bd-effect .benefit-item {justify-content: flex-start;}
}




/* ============================================================
   §3–§5 §7–§8  产品板块（含标签切换）
   ============================================================ */
.bd-product-section {
  background: #fff;
  padding: 72px 0;
}


.b-banne {
  width:100%;
  position:relative;
  background-color:#f1eee7;
  overflow:hidden}
.b-box {
  width:100%;
  padding-top:36.354%;
  position:relative;
}
.b-img {
  width:100%;
  height:100%;
  object-fit:cover;
  position:absolute;
  left:0;
  top:0;
}
.b-img.phone {
  display:none;
}
.b-text {
  position:absolute;
  left:50%;
  margin-left:-45.05%;
  top:46%;
  transform:translate(0,-50%) scale(0.95,1);
  transform-origin:left center;
}
.b-tit {
  font-size: clamp(20px, 3.5vw, 28px);
  color: var(--text);
  letter-spacing: 1px;
  margin-bottom: 15px;

}
.b-des {
  width:100%;
  line-height:1.5;
  text-align:justify;
  font-size: clamp(14px, 1.5vw, 18px);
  color: var(--text);
}
.b-text.series.right {
  left:auto;
  margin-left:0;
  right:50%;
  margin-right:-34%;
  text-align:center;
}
.b-text.series.right .b-des {
  text-align:right;
}
.b-text.series.right .b-des-s {
  font-size:26px}
.b-text.series.left {
  right:auto;
  margin-right:0;
  left:50%;
  margin-left:-31%;
  text-align:center;
}
.b-text-buttom{
  background:var(--primary);
  border-radius: 30px;
  color:#fff;
}
.b-text.series.left .b-des {
  text-align:left;
}
.b-text.series.left .b-des:hover .text_bottom_animate,.b-text.series.right .b-des:hover .text_bottom_animate {
  color:#709b12}
.b-text.series.left .b-des-s {
  font-size:26px}
.b-but {
  width:100%;
  margin-top:20%;
  font-size:16px;
}
.b-but a {
  padding:8px 30px;
}
.b-but-c{
  background: var(--primary);
  padding: 8px 30px;
  width: 100%;
  font-size: 18px;
  border-radius: 30px;
  color:#fff;
}

.b-banne .fr {
  text-align:right}
.b-banne .fl {
  text-align:left}
@media(max-width:639px) {
  .b-tit {
  font-size:28px;
  margin-bottom:8px;
  line-height:1.5;
  text-align:right}
.b-text.series,.b-text.series.right {
  position:relative;
  top:0;
  transform:translate(0,0);
  text-align:left;
  padding:5vw 0.533rem 0.533rem !important;
}
.b-des {
  line-height:1.03;
  text-align:justify;
  font-size:24px}
.b-text.series.right .b-des {
  text-align:left;
}
.b-text.series.right .b-des-s {
  display:none}
.b-text.series.left {
  position:relative;
  top:0;
  left:0;
  transform:translate(0,0);
  text-align:right;
  padding:5vw 0.533rem 0.533rem !important;
}
.b-des {
  line-height:1.2;
  text-align:justify;
  font-size:22px}
.b-text.series.left .b-des {
  text-align:right;
}
.b-text.series.left .b-des-s {
  display:none}
.b-box.pro {
  padding-top:65.266%;
}
.b-img.pc {
  display:none;
}
.b-img.phone {
  display:block;
}
.b-but {
  width:100%;
  line-height:40px}
}



.bd-product-section--sand {
  background: #f5f0e8;
}

.bd-product-section__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* 板块头部：左标题 + 右标签 */
.bd-product-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  gap: 20px;
  flex-wrap: wrap;
}

.bd-product-section__title-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bd-product-section__en {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--primary);
  text-transform: uppercase;
}

.bd-product-section__title {
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

/* ── 标签按钮组 ── */
.bd-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.bd-tabs__btn {
  padding: 7px 20px;
  font-size: 13px;
  font-family: 'Noto Serif SC', serif;
  color: var(--text-mid);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 20px;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.bd-tabs__btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-pale);
}

.bd-tabs__btn--active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.bd-tabs__btn--active:hover {
  background: #5a7e0e;
  color: #fff;
}

/* ── 面板显示/隐藏 ── */
.bd-pane {
  display: none;
}

.bd-pane--active {
  display: block;
  animation: bdFadeIn 0.3s ease;
}

@keyframes bdFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ============================================================
   §3–§5 §7–§8  产品滑块区块（左标题+箭头 / 右3列产品）
   ============================================================ */
.bd-ps {
  background: #fff;
}

.bd-ps--sand {
  background: #fff;
}

.bd-ps__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 40px 40px;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 10px;
  align-items: stretch;
}

/* 左列：标题 + 箭头 */
.bd-ps__label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 100%;
}

.bd-ps__title {
  font-size: clamp(18px, 2vw, 26px);
  color: var(--text);
  text-align: center;
  letter-spacing: 0.06em;
  margin-bottom: 0;
}

.bd-ps__arrows {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.bd-ps__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.6);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}

.bd-ps__arrow svg {
  width: 20px;
  height: 20px;
  display: block;
}

.bd-ps__arrow:hover {
  background: rgba(0, 0, 0, 0.2);
  border-color: #fff;
}

/* 右列：3列产品网格 */
.bd-ps__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

/* 隐藏未展示的卡片 */
.bd-card--hidden {
  display: none !important;
}




/*瑷菲诗*/
.bd-afs{
  max-width: var(--container);
  margin: 0 auto;
  padding: 90px 40px;
}
.bd-afs .intro-section {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 50px;
    flex-wrap: wrap; /* 响应式换行 */
    gap: 30px;
}
.bd-afs .intro-text {
    flex: 1;
    min-width: 300px; /* 最小宽度，保证手机端显示 */
}
.bd-afs .intro-text p {
    margin-bottom: 10px;
    font-size: clamp(16px, 1.2vw, 20px);
    color: var(--text);
}
.bd-afs .intro-text .small-text {
    font-size: 14px;
    color: var(-text);
    margin-top: 20px;
}
.bd-afs .aloe-img {
    flex: 0 0 300px; /* 图片固定宽度 */
    text-align: center;
}
.bd-afs .aloe-img img {
    width: 100%;
    height: auto;
}

/* 标题区域 */
.bd-afs .title-section {
    text-align: center;
    margin-bottom: 40px;
}
.bd-afs .main-title {
    font-size: clamp(18px, 2vw, 26px);
    color: var(--text);
    margin-bottom: 8px;
    font-weight: normal;
}

/* 功效卡片区域 */
.bd-afs .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* 自动适配列数 */
    gap: 20px;
}
.bd-afs .benefit-card {
    background:#f3f3f1;
    padding: 20px 15px;
    text-align: center;
}
.bd-afs .benefit-card .card-title {
    font-size: clamp(18px, 2vw, 26px);
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 600;
}
.bd-afs .benefit-card .card-desc {
    font-size: 14px;
    color: var(--text);
}

/* 响应式适配 */
@media (max-width: 768px) {
    .bd-afs .intro-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .bd-afs .main-title {
        font-size: 20px;
    }
    .bd-afs .sub-title {
        font-size: 16px;
    }
    .bd-afs .benefits-grid {
        grid-template-columns: repeat(2, 1fr); /* 平板显示2列 */
    }
}
@media (max-width: 480px) {
    .bd-afs .benefits-grid {
        grid-template-columns: 1fr; /* 手机显示1列 */
    }
    .bd-afs .intro-text p {
        font-size: 14px;
    }
}




.bd-afs .title-wrap {
    text-align: center;
    margin-bottom: 30px;
}
.bd-afs .main-title {
    font-size: clamp(18px, 2vw, 26px);
    font-weight: normal;
    margin-bottom: 8px;
}
.bd-afs .sub-title {
    font-size: 18px;
    font-weight: normal;
    color: #666;
}

/* 7大功效卡片：PC端7列，响应式自动适配 */
.bd-afs .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 5px; /* 无间距，匹配原图卡片紧贴效果 */
}
.bd-afs .benefit-card {
    background: #f5f5f5; /* 浅灰色背景，匹配原图 */
    padding: 20px 10px;
    text-align: center;
    border: 1px solid #eee; /* 细微边框，还原卡片质感 */
}
.bd-afs .benefit-card p {
    font-size: 18px;
    color: var(--text);
}

/* 响应式适配：不同屏幕自动调整列数 */
@media (max-width: 992px) {
    .bd-afs .benefits-grid {grid-template-columns: repeat(4, 1fr);}
}
@media (max-width: 768px) {
    .bd-afs .benefits-grid {grid-template-columns: repeat(2, 1fr);}
    .bd-afs .main-title {font-size: 20px;}
    .bd-afs .sub-title {font-size: 16px;}
}
@media (max-width: 480px) {
    .bd-afs .benefits-grid {grid-template-columns: 1fr;}
    .bd-afs .benefit-card {padding: 15px 5px;}
    .bd-afs .benefit-card p {font-size: 14px;}
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ≤ 1050px */
@media (max-width: 1050px) {
  .bd-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .bd-intro__showcase {
    gap: 40px;
  }
}

/* ≤ 900px */
@media (max-width: 900px) {
  .bd-hero {
    height: 70vw;
    min-height: 360px;
  }

  .bd-hero__content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 0 6%;
  }

  .bd-hero__left {
    flex: none;
    width: 100%;
    text-align: center;
  }



  .bd-hero__right {
    display: none;
  }

  .bd-intro__inner,
  .bd-product-section__inner {
    padding: 0 24px;
  }

  .bd-intro__showcase {
    flex-direction: column;
    gap: 32px;
  }

  .bd-intro__showcase-img-wrap {
    flex: none;
    width: 100%;
  }

  .bd-product-section__header {
    flex-direction: column;
    align-items: flex-start;
  }



  .bd-intro,
  .bd-product-section {
    padding: 56px 0;
  }

  /* 产品滑块：≤900px 变为上下布局 */
  .bd-ps__inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }

  .bd-ps__label {
    flex-direction: row;
    justify-content: space-between;
    padding: 24px 28px;
    min-height: auto;
  }

  .bd-ps__arrows {
    margin-top: 0;
  }

  .bd-ps__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ≤ 600px */
@media (max-width: 600px) {
  .bd-hero {
    height: 80vw;
    min-height: 300px;
  }

  .bd-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .bd-feature-item {
    padding: 22px 14px;
  }

  .bd-intro__inner,
  .bd-product-section__inner {
    padding: 0 16px;
  }

  .bd-tabs {
    gap: 6px;
  }

  .bd-tabs__btn {
    padding: 6px 14px;
    font-size: 12px;
  }


  .bd-mid-banner__content {
    padding: 0 5%;
  }

  /* 产品滑块：≤600px 单列 */
  .bd-ps__inner {
    padding: 0 16px;
  }

  .bd-ps__label {
    padding: 18px 20px;
  }

  .bd-ps__cards {
    grid-template-columns: 1fr;
  }

  .bd-ps {
    padding: 40px 0;
  }
}

/* ≤ 400px */
@media (max-width: 400px) {
  .bd-features {
    grid-template-columns: 1fr;
  }
}






.lh-hero {
  background: #ffffff;
  padding: 80px 0;
}

.lh-hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.lh-hero__title {
  font-size: clamp(24px, 2.8vw, 36px);
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 18px;
}


.lh-hero__desc {
  font-size: clamp(14px, 1.1vw, 16px);
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 32px;
}


.lh-hero__right {
  overflow: hidden;
  border-radius: 2px;
}

.lh-hero__img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.lh-hero__right:hover .lh-hero__img {
  transform: scale(1.04);
}


/* ============================================================
   §2  为什么选择
   ============================================================ */
.lh-why {
  background: #f7f7f7;
  padding: 88px 0 72px;
}

.lh-why__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.lh-why__header {
  text-align: center;
  margin-bottom: 56px;
}

.lh-why__title {
  font-size: clamp(24px, 1.8vw, 26px);
  color: var(--text);
  margin-bottom: 15px;
  font-weight: 700;
}

.lh-why__sub {
  font-size: 18px;
  color: var(--text);
}

.lh-why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.lh-why__card {
  padding: 50px 20px;
  text-align: left;
  cursor: default;
  background:#fff;
}

.lh-why__card:last-child {
  border-right: none;
}

.lh-why__card:hover {
  background: var(--primary);
}


.lh-why__card-title {
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  transition: color var(--transition);
}

.lh-why__card:hover .lh-why__card-title {
  color: #fff;
}

.lh-why__card-sub {
  font-size: clamp(18px, 1.8vw, 24px);
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  transition: color var(--transition);
}

.lh-why__card:hover .lh-why__card-sub {
  color: rgba(255,255,255,0.8);
}
.lh_why_card-line{
  width:100%;
  height: 1px;
  background: #c5c5c5;
  margin-bottom: 16px;
  margin-top: 16px;
}
.lh-why__card-desc {
  font-size: 16px;
  color: var(--text);
  line-height: 1.8;
  transition: color var(--transition);
}

.lh-why__card:hover .lh-why__card-desc {
  color: rgba(255,255,255,0.75);
}

.lh-why__note {
  text-align: center;
  margin-top: 32px;
  font-size: 16px;
  color: var(--primary);
}




/* ============================================================
   §3  合作支持体系 BANNER（图字分离）
   ============================================================ */
.lh-banner {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
}

.lh-banner__bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.lh-banner__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



.lh-banner__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 18%;
}



.lh-banner__title {
  font-size: clamp(20px, 2.2vw, 32px);  color: var(--text);
  margin-bottom: 16px;
}



.lh-banner__desc {
  font-size: clamp(12px, 1.1vw, 18px);
  color: var(--text);

}


/* ============================================================
   §4  6大加盟支持
   ============================================================ */
.lh-support {
  background: #fff;
  padding: 88px 0;
}

.lh-support__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.lh-support__header {
  text-align: center;
  margin-bottom: 56px;
}

.lh-support__title {
  font-size: clamp(20px, 2.2vw, 32px);
  color: var(--text);
  margin-bottom: 10px;
}

.lh-support__sub {
  font-size: 18px;
  color: var(--text);
}

.lh-support__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.lh-support__item {
  padding: 44px 28px;
  text-align: left;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
  cursor: default;
}

/* 右列无右边框 */
.lh-support__item:nth-child(3n) {
  border-right: none;
}

/* 末行无下边框 */
.lh-support__item:nth-child(n+4) {
  border-bottom: none;
}

.lh-support__item:hover {
  background: var(--primary);
  box-shadow: inset 0 0 0 1px var(--primary);
}



.lh-support__name {
  font-size: clamp(18px, 1.8vw, 24px);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
    transition: color var(--transition);
}

.lh-support__item:hover .lh-support__name {
  color: #fff;
}

.lh-support__desc {
  font-size: clamp(18px, 1.8vw, 24px);
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.lh-support__card-desc {
    font-size: 16px;
    color: var(--text);
    line-height: 1.8;
    transition: color var(--transition);
}
.lh-support__item:hover .lh-support__desc,
.lh-support__item:hover .lh-support__card-desc {
  color: rgba(255,255,255,0.8);
}


/* ============================================================
   §5  整店输出·7天开业
   ============================================================ */
.lh-open {
  background: #f5f5f2;
  padding: 88px 0;
}

.lh-open__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.lh-open__header {
  text-align: center;
  margin-bottom: 52px;
}

.lh-open__title {
  font-size: clamp(20px, 2.2vw, 32px);
  color: var(--text);
  margin-bottom: 10px;
}

.lh-open__sub {
  font-size: 18px;
  color: var(--text-mid);
}

/* 流程箭头行 */
.lh-open__flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 32px;
  background: #fff;
  border: 1px solid var(--border);
}

.lh-open__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 20px;
  flex: 1;
  min-width: 80px;
  transition: background var(--transition);
  cursor: default;
}

.lh-open__step:hover {
  background: var(--primary);
}

.lh-open__step:hover .lh-open__step-num,
.lh-open__step:hover .lh-open__step-name {
  color: #fff;
}

.lh-open__step--last {
  background: var(--primary);
}

.lh-open__step--last .lh-open__step-num,
.lh-open__step--last .lh-open__step-name {
  color: #fff;
}

.lh-open__step-num {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
  transition: color var(--transition);
}

.lh-open__step-name {
  font-size: 16px;
  color: var(--text);
  text-align: center;
  transition: color var(--transition);
}

.lh-open__arrow {
  font-size: 22px;
  color: #ccc;
  padding: 0 4px;
  flex-shrink: 0;
}

/* 标签行 */
.lh-open__tags {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  background: #fff;
}

.lh-open__tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 20px 16px;
  min-width: 64px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.lh-open__tag--green {
  background: var(--primary);
  color: #fff;
}

.lh-open__tag-item {
  flex: 1;
  padding: 20px 12px;
  text-align: center;
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.6;
  border-left: 1px solid var(--border);
  transition: background var(--transition), color var(--transition);
  cursor: default;
}

.lh-open__tag-item:hover {
  background: var(--primary);
  color: #fff;
}


/* ============================================================
   §6  合作流程
   ============================================================ */
.lh-process {
  background: #fff;
  padding: 88px 0;
}

.lh-process__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.lh-process__header {
  text-align: center;
  margin-bottom: 56px;
}

.lh-process__title {
  font-size: clamp(20px, 2.2vw, 32px);
  color: var(--text);
}

.lh-process__steps {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lh-process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  cursor: default;
}

.lh-process__step-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.lh-process__step:hover .lh-process__step-circle {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(112,155,18,0.25);
}

.lh-process__step-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-mid);
  transition: color var(--transition);
}

.lh-process__step:hover .lh-process__step-label {
  color: rgba(255,255,255,0.8);
}

.lh-process__step-num {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  transition: color var(--transition);
}

.lh-process__step:hover .lh-process__step-num {
  color: #fff;
}

.lh-process__step-name {
  font-size: 14px;
  color: var(--text);
  text-align: center;
  font-weight: 500;
}

.lh-process__connector {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 8px;
  margin-bottom: 40px;
  max-width: 80px;
}


/* ============================================================
   §7  门店类型
   ============================================================ */
.lh-stores {
  padding: 40px 0;
  max-width: var(--container);
  margin: 0 auto;
}

.lh-stores__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.lh-stores__item {
  position: relative;
  overflow: hidden;
  background:#f3f3f1;
}

.lh-stores__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.lh-stores__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.lh-stores__item:hover .lh-stores__img {
  transform: scale(1.06);
}

.lh-stores__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 50, 5, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.lh-stores__item:hover .lh-stores__overlay {
  background: rgba(20, 50, 5, 0.62);
}

.lh-stores__overlay-text {
  color: #fff;
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.lh-stores__item:hover .lh-stores__overlay-text {
  opacity: 1;
  transform: translateY(0);
}

.lh-stores__caption {
  padding: 18px 24px;
  border-top: 3px solid transparent;
  transition: border-color var(--transition);
  display: flex;
  flex-direction: column;
  gap: 4px;
}



.lh-stores__cn {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.lh-stores__en {
  font-size: 16px;
  color: var(--text);
  letter-spacing: 0.06em;
}


/* ============================================================
   §8  产品展示（图字分离）
   ============================================================ */
.lh-products {
  position: relative;
  padding: 88px 0;
  overflow: hidden;
}

.lh-products__bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.lh-products__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lh-products__mask {
  position: absolute;
  inset: 0;
  background: #fff;
}

.lh-products__content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.lh-products__header {
  text-align: center;
  margin-bottom: 52px;
}

.lh-products__title {
  font-size: clamp(18px, 2vw, 28px);
  color: var(--text);
  margin-bottom: 10px;
}


.lh-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.lh-products__card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  overflow: hidden;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  cursor: default;
}

.lh-products__card:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-4px);
}

.lh-products__img-wrap {
  overflow: hidden;
  background: rgba(255,255,255,0.05);
}

.lh-products__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.lh-products__card:hover .lh-products__img {
  transform: scale(1.05);
}

.lh-products__card-info {
  padding: 16px 18px 20px;
  text-align: center;
}

.lh-products__card-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;

}

.lh-products__card-desc {
  font-size: 16px;
  color: var(--text);
  letter-spacing: 0.04em;
}


/* ============================================================
   §9  合作模式
   ============================================================ */
.lh-modes {
  background: #f8f7f4;
  padding: 88px 0;
}

.lh-modes__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.lh-modes__header {
  text-align: center;
  margin-bottom: 56px;
}

.lh-modes__title {
  font-size: clamp(20px, 2.2vw, 32px);
  color: var(--text);
  margin-bottom: 10px;
}

.lh-modes__sub {
  font-size: 18px;
  color: var(--text);
}

.lh-modes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lh-modes__card {
  background: #fff;
  padding: 44px 32px;
  text-align: center;
  border-bottom: 3px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: default;
}

.lh-modes__card:hover {
  box-shadow: 0 10px 36px rgba(112,155,18,0.14);
  transform: translateY(-4px);
}



.lh-modes__card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.lh-modes__card-tag {
  font-size: 18px;
  color: var(--primary);
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.lh-modes__card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  text-align: left;
}

.lh-modes__card-list li {
  font-size: 16px;
  color: var(--text);
  padding: 10px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.lh-modes__card-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}




/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ≤ 1050px */
@media (max-width: 1050px) {
  .lh-process__connector {
    max-width: 48px;
  }
}

/* ≤ 900px */
@media (max-width: 900px) {
  .lh-hero__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 24px;
  }

  .lh-hero {
    padding: 56px 0;
  }

  .lh-hero__img {
    height: 280px;
  }

  .lh-why__inner,
  .lh-support__inner,
  .lh-open__inner,
  .lh-process__inner,
  .lh-products__content,
  .lh-modes__inner {
    padding: 0 24px;
  }

  .lh-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lh-why__card:nth-child(2) {
    border-right: none;
  }

  .lh-why__card:nth-child(1),
  .lh-why__card:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }

  .lh-support__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lh-support__item:nth-child(3n) {
    border-right: 1px solid var(--border);
  }

  .lh-support__item:nth-child(2n) {
    border-right: none;
  }

  .lh-support__item:nth-child(n+4) {
    border-bottom: 1px solid var(--border);
  }

  .lh-support__item:nth-child(n+5) {
    border-bottom: none;
  }

  .lh-stores__inner {
    grid-template-columns: 1fr;
  }

  .lh-products__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lh-modes__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .lh-process__steps {
    flex-wrap: wrap;
    gap: 20px;
  }

  .lh-process__connector {
    display: none;
  }

  .lh-open__flow {
    flex-wrap: wrap;
  }

  .lh-open__arrow {
    display: none;
  }

  .lh-open__step {
    min-width: 80px;
    flex: 0 0 calc(25% - 1px);
  }

  .lh-open__tags {
    flex-wrap: wrap;
  }

  .lh-open__tag-item {
    flex: 0 0 calc(25% - 1px);
  }

  .lh-banner {
    height: 280px;
  }
}

/* ≤ 600px */
@media (max-width: 600px) {
  .lh-hero__inner,
  .lh-why__inner,
  .lh-support__inner,
  .lh-open__inner,
  .lh-process__inner,
  .lh-products__content,
  .lh-modes__inner {
    padding: 0 16px;
  }

  .lh-why__grid {
    grid-template-columns: 1fr;
  }

  .lh-why__card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .lh-why__card:last-child {
    border-bottom: none;
  }

  .lh-support__grid {
    grid-template-columns: 1fr;
  }

  .lh-support__item {
    border-right: none;
    border-bottom: 1px solid var(--border) !important;
  }

  .lh-support__item:last-child {
    border-bottom: none !important;
  }

  .lh-products__grid {
    grid-template-columns: 1fr;
  }

  .lh-open__step {
    flex: 0 0 calc(50% - 1px);
  }

  .lh-open__tag-item {
    flex: 0 0 calc(50% - 1px);
  }

  .lh-banner {
    height: auto;
    min-height: 240px;
    padding: 48px 0;
  }

  .lh-banner__content {
    position: relative;
    inset: auto;
    padding: 0 20px;
  }

  .lh-why,
  .lh-support,
  .lh-open,
  .lh-process,
  .lh-products,
  .lh-modes {
    padding: 56px 0;
  }
}



.aloe-house{
    width：100%；
}

.aloe-house .main-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    flex-wrap: wrap;
    gap: 20px;
    max-width: var(--container);
    margin: 0 auto;
}

/* 左侧文字区域：匹配原图排版/字号 */
.aloe-house .text-wrap {
    flex: 1;
    min-width: 600px;
}
.aloe-house .brand-title {
    font-size: clamp(24px, 2.8vw, 36px);
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 18px;
}
.aloe-house .brand-desc {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #555;
}

/* 右侧图片区域：自适应宽度 */
.aloe-house .img-wrap {
    flex: 2;
    min-width: 300px;
}
.aloe-house .img-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

/* 底部绿色通栏：匹配原图配色/文字排版 */
.aloe-house .footer-banner {
    background: var(--primary); /* 还原原图绿色 */
    color: #fff;
    padding: 15px 20px;
    text-align: left;
    margin-top: 10px;
}
.aloe-house .footer-banner-con{
    max-width: var(--container);
    margin: 0 auto;
    padding:0 40px;
}
.aloe-house .banner-title {
    font-size: 22px;
    margin-bottom: 5px;
    font-weight: normal;
}
.aloe-house .banner-subtitle {
    font-size: 16px;
    opacity: 0.9;
}

/* 响应式适配：手机端优化 */
@media (max-width: 768px) {
    .aloe-house.main-container {
        flex-direction: column;
        text-align: center;
    }
    .aloe-house .brand-title {font-size: 18px;}
    .aloe-house .brand-desc {font-size: 16px;}
    .aloe-house .banner-title {font-size: 20px;}
    .aloe-house .banner-subtitle {font-size: 14px;}
}












.gl-hero {
  position: relative;
  width: 100%;
  height: calc(80vh - 80px);
  min-height: 500px;
  overflow: hidden;
}

.gl-hero__bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.gl-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: glHeroZoom 8s ease-out forwards;
}

@keyframes glHeroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1); }
}


.gl-hero__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 18% 72px;
}



.gl-hero__title {
  font-size: clamp(26px, 5vw, 40px);
  color: #fff;
  line-height: 1.25;
  margin-bottom: 16px;
}

.gl-hero__desc {
  font-size: clamp(14px, 1.2vw, 18px);
  color: #fff;
  letter-spacing: 0.04em;
}


/* ── 栏目标签条（图片内正中下方，纯展示） ── */
.gl-anchor-nav {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  width: 100%;
  max-width: var(--container);
  background: #fff;
  overflow: hidden;
}

.gl-anchor-nav__item {
  flex: 1;
  padding: 16px 20px;
  text-align: center;
  font-size: clamp(14px, 1.2vw, 18px);
  color: var(--text);
  letter-spacing: 0.06em;
  border-right: 1px solid rgba(255,255,255,0.15);
  white-space: nowrap;
  cursor: default;
  user-select: none;
}
.gl-anchor-nav__color{
  color:var(--primary);
}
.gl-anchor-nav__item:last-child { border-right: none; }


/* ============================================================
   §2  品牌介绍（左文右图）
   ============================================================ */
.gl-intro {
  background: #fff;
  padding: 80px 0;
}

.gl-intro__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: center;
}

.gl-intro__lead {
  font-size: clamp(24px, 1.8vw, 26px);
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 16px;
}

.gl-intro__desc {
  font-size: clamp(14px, 1.1vw, 18px);
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 10px;
}


.gl-intro__img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gl-intro__img {
  max-width: 100%;
  max-height: 280px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(112,155,18,0.15));
  transition: transform 0.5s ease;
}

.gl-intro__img-wrap:hover .gl-intro__img {
  transform: translateY(-6px) scale(1.03);
}


/* ============================================================
   §3  全球业务布局（地图）
   ============================================================ */
.gl-map {
  background: #f5f5f2;
  padding: 88px 0;
}

.gl-map__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.gl-map__header {
  text-align: center;
  margin-bottom: 56px;
}


.gl-map__title {
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.gl-map__sub {
  font-size: 18px;
  color: var(--text);
  line-height: 1.9;
}

/* 世界地图 + 标注点 */
.gl-map__world-wrap {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.gl-map__world-img {
  width: 100%;
  display: block;
  opacity: 0.85;
}

.gl-map__pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: default;
}

.gl-map__pin-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid #fff;
  box-shadow: 0 0 0 4px rgba(112,155,18,0.25);
  display: block;
  transition: box-shadow var(--transition), transform var(--transition);
}

.gl-map__pin:hover .gl-map__pin-dot {
  box-shadow: 0 0 0 8px rgba(112,155,18,0.3);
  transform: scale(1.3);
}

.gl-map__pin-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  background: rgba(255,255,255,0.9);
  padding: 2px 6px;
}

/* ── SVG 连线层 ── */
.gl-map__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

/* 连线基础样式 */
.gl-map__route {
  fill: none;
  stroke: var(--primary);
  stroke-width: 0.15;
  stroke-linecap: round;
  opacity: 0.82;

  animation: gmDrawRoute 1.6s cubic-bezier(.4,0,.2,1) forwards;
  animation-play-state: paused;
}
/* 动画触发（JS 添加 .gl-map--animate 类后运行）*/
.gl-map--animate .gl-map__route { animation-play-state: running; }
.gl-map__route--1 { animation-delay: 0.1s; }
.gl-map__route--2 { animation-delay: 0.5s; }
.gl-map__route--3 { animation-delay: 0.9s; }
.gl-map__route--4 { animation-delay: 1.2s; }
.gl-map__route--5 { animation-delay: 1.5s; }

@keyframes gmDrawRoute {
  to { stroke-dashoffset: 0; }
}

/* ── 亚洲枢纽 pin ── */
.gl-map__pin--hub {
  z-index: 10;
  transform: translate(-50%, -50%);  /* 覆盖 absolute left/top 偏移 */
}
/* 正常 pin 的 transform 补偿（让标注点居中于百分比位置）*/
.gl-map__pin {
  transform: translate(-50%, -50%);
}

.gl-map__pin-dot--hub {
  width: 20px;
  height: 20px;
  background: var(--primary);
  border: 3px solid #fff;
  box-shadow: 0 0 0 5px rgba(112,155,18,0.35), 0 4px 16px rgba(112,155,18,0.4);
  position: relative;
  z-index: 2;
}

/* 双层脉冲环 */
.gl-map__hub-ring {
  position: absolute;
  border-radius: 50%;
  background: rgba(112,155,18,0.18);
  pointer-events: none;
}
.gl-map__hub-ring--1 {
  width: 44px; height: 44px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: gmHubPulse 2.4s ease-in-out infinite;
}
.gl-map__hub-ring--2 {
  width: 64px; height: 64px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: gmHubPulse 2.4s ease-in-out infinite 0.8s;
}
@keyframes gmHubPulse {
  0%, 100% { opacity: 0.7; transform: translate(-50%,-50%) scale(0.7); }
  60%      { opacity: 0;   transform: translate(-50%,-50%) scale(1.4); }
}

.gl-map__pin-label--hub {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  background: rgba(255,255,255,0.96);
  border: 1.5px solid var(--primary);
  padding: 3px 10px;
  border-radius: 2px;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 2;
}


/* ============================================================
   §4  全球线上渠道矩阵
   ============================================================ */
.gl-channels {
  background: #fff;
  padding: 88px 0;
}

.gl-channels__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.gl-channels__header {
  text-align: center;
  margin-bottom: 56px;
}


.gl-channels__title {
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}

.gl-channels__sub {
  font-size: 18px;
  color: var(--text);
  line-height: 1.8;
}

.gl-channels__platforms {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-bottom: 24px;
}

.gl-channels__platform {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 16px;
  cursor: default;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.gl-channels__platform:last-child { border-right: none; }
.gl-channels__platform-logo {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gl-channels__platform-logo img {
  max-width: 100%;
  object-fit: contain;
  display: block;
}


.gl-channels__note {
  text-align: center;
  font-size: 18px;
  color: var(--text);
  letter-spacing: 0.06em;
}


/* ============================================================
   §5  海外社交媒体布局
   ============================================================ */
.gl-social {
  background: #ffffff;
}

.gl-social__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.gl-social__header {
  text-align: center;
  margin-bottom: 56px;
}



.gl-social__title {
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}

.gl-social__sub {
  font-size: 18px;
  color: var(--text-mid);
}

.gl-social__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gl-social__card {
  background: #fff;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  cursor: default;
  border:1px solid #c5c5c5;
}

.gl-social__card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

.gl-social__img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.gl-social__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gl-social__card:hover .gl-social__img {
  transform: scale(1.06);
}

.gl-social__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 40, 5, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.gl-social__card:hover .gl-social__overlay {
  background: rgba(15, 40, 5, 0.65);
}

.gl-social__overlay-text {
  color: #fff;
  font-size: 13px;
  line-height: 1.9;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  padding: 0 16px;
}

.gl-social__card:hover .gl-social__overlay-text {
  opacity: 1;
  transform: translateY(0);
}

.gl-social__caption {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 3px solid transparent;
  transition: border-color var(--transition);
}


.gl-social__platform-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gl-social__platform-icon svg {
  width: 25px;
  height: 25px;
}

.gl-social__platform-icon--tiktok {
  background: #000;
  color: #fff;
}

.gl-social__platform-icon--facebook {
  background: #1877f2;
  color: #fff;
}

.gl-social__platform-icon--instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}

.gl-social__name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.gl-social__desc {
  font-size: 14px;
  color: var(--text);
}


/* ============================================================
   §6  海外业务模式（Tab）
   ============================================================ */
.gl-models {
  background: #fff;
  padding: 88px 0;
}

.gl-models__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.gl-models__header {
  text-align: center;
  margin-bottom: 48px;
}

.gl-models__title {
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.gl-models__sub {
  font-size: 18px;
  color: var(--text);
}

/* Tab 按钮 */
.gl-models__tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 0;

}

.gl-models__tab {
  padding: 20px 16px;
  font-size: 18px;
  font-family: inherit;
  color: var(--text);
  background: #f3f3f1;
  border: none;
  border: 1px solid var(--text);
  cursor: pointer;
  text-align: center;
  letter-spacing: 0.03em;
  transition: background var(--transition), color var(--transition);

}


.gl-models__tab small {
  display: block;
  font-size: 16px;
  letter-spacing: 0.04em;
  margin-top: 3px;
}

.gl-models__tab:hover {
  background: var(--primary);
  color: #fff;
}




/* ============================================================
   §7  品牌商业合作（2×2 网格）
   ============================================================ */
.gl-coop {
  background: #ffffff;
  padding: 0 0 90px 0;
}

.gl-coop__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.gl-coop__header {
  text-align: center;
  margin-bottom: 56px;
}

.gl-coop__title {
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.gl-coop__sub {
  font-size: 18px;
  color: var(--text-mid);
}

.gl-coop__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.gl-coop__card {
  background: #f3f3f1;
  padding: 40px 36px;
  border-bottom: 3px solid transparent;
  border:0.5px solid var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.gl-coop__card:hover{
  background:var(--primary);

}
.gl-coop__card:hover .gl-coop__card-title,
.gl-coop__card:hover .gl-coop__card-tag{
  color:#fff;
}
/* 强调卡：深绿背景 */


.gl-coop__card-top {
  margin-bottom: 0px;
}

.gl-coop__card-title {
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  transition: color var(--transition);
}

.gl-coop__card--featured .gl-coop__card-title {
  color: #fff;
}

.gl-coop__card-tag {
  font-size: 18px;
  color: var(--text);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}

.gl-coop__card--featured .gl-coop__card-tag {
  color: rgba(255,255,255,0.75);
}


.gl-coop__card--featured .gl-coop__card-btn {
  border-color: rgba(255,255,255,0.7);
  color: #fff;
  background: transparent;
}

.gl-coop__card--featured .gl-coop__card-btn:hover {
  background: rgba(255,255,255,0.2);
  border-color: #fff;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ≤ 1050px */
@media (max-width: 1050px) {
  .gl-channels__platforms {
    grid-template-columns: repeat(3, 1fr);
  }

  .gl-channels__platform:nth-child(3) {
    border-right: none;
  }

  .gl-channels__platform:nth-child(n+4) {
    border-top: 1px solid var(--border);
  }
}

/* ≤ 900px */
@media (max-width: 900px) {
  .gl-hero { height: 400px; }

  .gl-hero__content { padding: 0 6% 56px; }

  .gl-intro__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 24px;
  }

  .gl-intro__img-wrap { justify-content: flex-start; }

  .gl-map__inner,
  .gl-channels__inner,
  .gl-social__inner,
  .gl-models__inner,
  .gl-coop__inner {
    padding: 0 24px;
  }

  .gl-social__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .gl-models__tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .gl-models__tab:nth-child(2) { border-right: none; }
  .gl-models__tab:nth-child(n+3) { border-top: 1px solid var(--border); }

  .gl-models__pane-grid {
    grid-template-columns: 1fr;
  }

  .gl-models__pane-img {
    aspect-ratio: 16/7;
    order: -1;
  }

  .gl-models__pane-text { padding: 32px 28px; }

  .gl-coop__grid {
    grid-template-columns: 1fr;
  }

  .gl-anchor-nav__item {
    font-size: 13px;
    padding: 15px 16px;
    min-width: 130px;
  }

  .gl-map, .gl-channels, .gl-social, .gl-models, .gl-coop {
    padding: 64px 0;
  }
}

/* ≤ 600px */
@media (max-width: 600px) {
  .gl-hero { height: 320px; min-height: 280px; }

  .gl-intro__inner,
  .gl-map__inner,
  .gl-channels__inner,
  .gl-social__inner,
  .gl-models__inner,
  .gl-coop__inner {
    padding: 0 16px;
  }

  .gl-channels__platforms {
    grid-template-columns: repeat(2, 1fr);
  }

  .gl-channels__platform:nth-child(2n) { border-right: none; }
  .gl-channels__platform:nth-child(3) { border-right: 1px solid var(--border); }
  .gl-channels__platform:nth-child(n+3) { border-top: 1px solid var(--border); }

  .gl-models__tabs {
    grid-template-columns: 1fr;
  }

  .gl-models__tab {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .gl-models__tab:last-child { border-bottom: none; }
  .gl-models__tab:nth-child(n+3) { border-top: none; }

  .gl-coop__card { padding: 28px 20px; }

  .gl-map, .gl-channels, .gl-social, .gl-models, .gl-coop, .gl-intro {
    padding: 48px 0;
  }
}

.qa-store {
  width:100%;
}

/* 响应式图片样式 */
.qa-store .responsive-img {
    width: 100%; /* 宽度自适应容器 */
    height: auto; /* 高度自动，保持宽高比 */
    object-fit: contain; /* 保证图片完整显示，不裁剪 */
}

.qa-channels {
  background: #fff;
  padding: 88px 0;
}

.qa-channels .qa-channels__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.qa-channels .qa-channels__header {
  text-align: center;
  margin-bottom: 56px;
}


.qa-channels .qa-channels__title {
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}



.qa-container {
    background: #f3f3f1;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.02);
}

/* 板块标题：极简线条装饰+低饱和色系 */
.section-title {
    font-size: 22px;
    color: var(--primary);
    margin: 0 0 24px 0;
    font-weight: 600;
    position: relative;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--primary);
    display: inline-block; /* 线条仅适配文字宽度 */
}

/* 板块包裹：分区留白，强化结构 */
.section-wrap {
    margin-bottom: 32px;
}
.section-wrap:last-child {margin-bottom: 0;}

/* 单个问答项：内间距+分层（移除圆角+hover效果） */
.qa-item {
    margin-bottom: 24px;
    padding: 24px;
    background: #fff;
    border-left: 3px solid #f3f3f1; /* 固定浅灰边框，移除hover */
}
.qa-item:last-child {margin-bottom: 0;}

/* Q/A 横排顶部：轻奢排版 */
.qa-num {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}
.slash {
    margin: 0 10px;
    color: var(--text);
    font-weight: 400;
}

/* 问题样式：粗体+极简分隔线 */
.q-label {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f3f3f1;
    color: var(--text);
}

/* 答案样式：低饱和文本+舒适行高 */
.qa-content {
    color: var(--text);
    font-size: 16px;
}
.qa-content p {
    margin-bottom: 24px;
}
.qa-content p:last-child {margin-bottom: 0;}

/* 响应式适配：移动端优化 */
@media (max-width: 768px) {

    .section-title {
        font-size: 20px;
    }
    .q-label {
        font-size: 17px;
    }
    .qa-content {
        font-size: 15px;
    }
}





.nw-banner {
  position: relative;
  width: 100%;
  height: calc(80vh - 80px);
  min-height: 500px;
  overflow: hidden;
}

.nw-banner__bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.nw-banner__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: nwBannerZoom 8s ease-out forwards;
}

@keyframes nwBannerZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}

.nw-banner__mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.45) 100%
  );
}

.nw-banner__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.nw-banner__title {
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--text);
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.nw-banner__sub {
  font-size: clamp(13px, 1.2vw, 16px);
  color: var(--text);
  letter-spacing: 0.2em;
}


/* ============================================================
   §2  TOPBAR（面包屑 + 筛选）
   ============================================================ */
.nw-topbar {
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
}

.nw-topbar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 56px;
}

/* 详情页 topbar：仅有面包屑，居左 */
.nw-topbar--detail .nw-topbar__inner {
  justify-content: flex-start;
}

/* 面包屑 */
.nw-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.nw-breadcrumb__item {
  font-size: 13px;
  color: var(--text-mid);
  text-decoration: none;
  transition: color var(--transition);
}

.nw-breadcrumb__item:hover {
  color: var(--primary);
}

.nw-breadcrumb__item--active {
  color: var(--text);
}

.nw-breadcrumb__sep {
  font-size: 12px;
  color: #bbb;
  line-height: 1;
}

/* 分类筛选按钮 */
.nw-filter {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nw-filter__btn {
  padding: 6px 18px;
  font-size: 13px;
  color: var(--text-mid);
  background: transparent;
  border: 1px solid #ddd;
  border-radius: 2px;
  cursor: pointer;
  font-family: inherit;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.nw-filter__btn:hover,
.nw-filter__btn--active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}


/* ============================================================
   §3  NEWS LIST + GRID（一行四列）
   ============================================================ */
.nw-list {
  background: #f7f7f5;
  padding: 56px 0 72px;
}

.nw-list__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.nw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ── 卡片 ── */
.nw-card {
  background: #fff;
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}

.nw-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

/* 图片区 */
.nw-card__img-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.nw-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.nw-card:hover .nw-card__img {
  transform: scale(1.06);
}


/* 正文区 */
.nw-card__body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.nw-card__date {
  font-size: 12px;
  color: #aaa;
  letter-spacing: 0.06em;
}

.nw-card__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nw-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

.nw-card__title a:hover {
  color: var(--primary);
}

.nw-card__excerpt {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.nw-card__more {
  display: inline-block;
  font-size: 13px;
  color: var(--primary);
  text-decoration: none;
  margin-top: 4px;
  letter-spacing: 0.04em;
  transition: color var(--transition);
  align-self: flex-start;
}

.nw-card__more:hover {
  color: #4e6e0c;
}


/* ============================================================
   §4  PAGINATION
   ============================================================ */
.nw-pagination{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.nw-pagination ul li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  margin:0 5px;

}

.nw-pagination ul li a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  border-radius: 2px;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  padding: 5px 10px;
}
.nw-pagination .active{
  background: var(--primary);

}
.nw-pagination .active a{
  color:#fff;
}
.nw-pagination ul li a:hover{
    background:var(--primary);
    color:#fff;
}


/* ============================================================
   §5  DETAIL PAGE — topbar（仅面包屑）
   ============================================================ */
/* 已在 §2 的 .nw-topbar--detail 中处理 */


/* ============================================================
   §6  DETAIL PAGE — 文章 + 侧边栏布局
   ============================================================ */
.nw-detail {
  background: #f7f7f5;
  padding: 48px 0 72px;
}

.nw-detail__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

/* ── 文章主体 ── */
.nw-article {
  background: #fff;
  border-radius: 2px;
  padding: 40px 48px;
}

/* 头部 */
.nw-article__header {
  margin-bottom: 28px;
}



.nw-article__title {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 16px;
}

.nw-article__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid #eee;
}

.nw-article__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--text-mid);
}

.nw-article__meta-item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* 特色图 */
.nw-article__featured-img {
  margin-bottom: 32px;
  border-radius: 2px;
  overflow: hidden;
}

.nw-article__featured-img img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 420px;
}

/* 正文排版 */
.nw-article__body {
  font-size: 15px;
  color: var(--text);
  line-height: 1.9;
}

.nw-article__body p,
.nw-article__body span{
  margin: 0!important;
  padding:0!important;
  line-height: 1.7!important;
  font-size: 16px!important;
  text-indent: 2em!important;
}

.nw-article__body h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 36px 0 14px;
  padding-left: 12px;
  border-left: 3px solid var(--primary);
  line-height: 1.4;
}

.nw-article__body ul {
  margin: 0 0 20px 20px;
  padding: 0;
}

.nw-article__body ul li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.nw-article__body ul li::marker {
  color: var(--primary);
}

/* 引言 */
.nw-article__quote {
  margin: 28px 0;
  padding: 20px 28px;
  background: #f7f9f2;
  border-left: 4px solid var(--primary);
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
}

.nw-article__quote cite {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  font-style: normal;
  color: var(--text-mid);
}





/* 上下篇 */
.nw-article__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  border-top: 1px solid #eee;
  padding-top: 24px;
}

.nw-article__nav-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  padding: 16px 20px;
  background: #f7f7f5;
  border-radius: 2px;
  transition: background var(--transition);
}

.nw-article__nav-item:hover {
  background: #edf2e0;
}

.nw-article__nav-item--next {
  align-items: flex-end;
  text-align: right;
}

.nw-article__nav-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-mid);
}

.nw-article__nav-label svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.nw-article__nav-title {
  font-size: 13px;
  color: var(--text);

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


/* ============================================================
   §7  SIDEBAR
   ============================================================ */
.nw-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nw-sidebar__widget {
  background: #fff;
  border-radius: 2px;
  overflow: hidden;
}

.nw-sidebar__widget-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--primary);
  padding: 12px 20px;
  letter-spacing: 0.06em;
  margin: 0;
}

/* 分类列表 */
.nw-sidebar__cat-list {
  list-style: none;
  padding: 8px 0;
  margin: 0;
}

.nw-sidebar__cat-list li {
  border-bottom: 1px solid #f0f0f0;
}

.nw-sidebar__cat-list li:last-child {
  border-bottom: none;
}

.nw-sidebar__cat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  font-size: 13px;
  color: var(--text-mid);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}

.nw-sidebar__cat-item span {
  font-size: 12px;
  color: #bbb;
}

.nw-sidebar__cat-item:hover,
.nw-sidebar__cat-item--active {
  background: #f7f9f2;
  color: var(--primary);
}

.nw-sidebar__cat-item--active span {
  color: var(--primary);
}

/* 热门文章 */
.nw-sidebar__hot-list {
  list-style: none;
  padding: 12px 0;
  margin: 0;
}

.nw-sidebar__hot-item {
  border-bottom: 1px solid #f0f0f0;
}

.nw-sidebar__hot-item:last-child {
  border-bottom: none;
}

.nw-sidebar__hot-item a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  text-decoration: none;
  transition: background var(--transition);
}

.nw-sidebar__hot-item a:hover {
  background: #f7f9f2;
}

.nw-sidebar__hot-img {
  width: 60px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 2px;
  overflow: hidden;
}

.nw-sidebar__hot-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nw-sidebar__hot-text {
  flex: 1;
  min-width: 0;
}

.nw-sidebar__hot-title {
  font-size: 13px;
  color: var(--text);

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 4px;
}

.nw-sidebar__hot-date {
  font-size: 11px;
  color: #bbb;
}




/* ============================================================
   RESPONSIVE
   ============================================================ */
/* ≤1200px：4列改3列 */
@media (max-width: 1200px) {
  .nw-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ≤960px */
@media (max-width: 960px) {
  .nw-topbar__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 24px;
    gap: 12px;
    min-height: auto;
  }

  .nw-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nw-detail__inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }

  .nw-list__inner {
    padding: 0 24px;
  }

  .nw-related__inner {
    padding: 0 24px;
  }

  .nw-article {
    padding: 28px 24px;
  }

  .nw-article__nav {
    grid-template-columns: 1fr;
  }

  .nw-article__nav-item--next {
    align-items: flex-start;
    text-align: left;
  }

  .nw-banner {
    height: 240px;
  }
}

/* ≤600px */
@media (max-width: 600px) {
  .nw-grid {
    grid-template-columns: 1fr;
  }

  .nw-filter {
    gap: 6px;
  }

  .nw-filter__btn {
    padding: 5px 12px;
    font-size: 12px;
  }

  .nw-topbar__inner {
    padding: 12px 16px;
  }

  .nw-list__inner,
  .nw-detail__inner,
  .nw-related__inner {
    padding: 0 16px;
  }



  .nw-banner {
    height: 200px;
  }

  .nw-list {
    padding: 36px 0 52px;
  }

  .nw-detail {
    padding: 32px 0 52px;
  }

  .nw-related {
    padding: 40px 0 52px;
  }
}









.ct-hero {
  position: relative;
  width: 100%;
  height: calc(80vh - 80px);
  min-height: 500px;
  overflow: hidden;
}

.ct-hero__bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ct-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: ctHeroZoom 8s ease-out forwards;
}

@keyframes ctHeroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1); }
}

.ct-hero__mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0.72) 0%,
    rgba(255,255,255,0.35) 50%,
    rgba(255,255,255,0) 100%
  );
}

.ct-hero__content {
  position: absolute;
  inset: 0;
  max-width: var(--container);
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20%;
}

.ct-hero__line {
  font-size: clamp(16px, 1.6vw, 22px);
  color: var(--text);
  line-height: 2.2;
}

.ct-hero__line--main {
  font-size: clamp(14px, 1.2vw, 17px);
  color: var(--text);
}


/* ============================================================
   §2  留言表单 + 联系信息
   ============================================================ */
.ct-main {
  background: #fff;
  padding: 80px 0 100px;
}

.ct-main__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* ── 左侧：表单区 ── */
.ct-form__title {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.ct-form__sub {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 36px;
}

.ct-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ct-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.ct-form__field {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ct-form__field--full {
  grid-column: 1 / -1;
}

.ct-form__label {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 0;
}

.ct-form__input {
  background: transparent;
  border: none;
  border-bottom: 1.5px solid #c8c8c8;
  border-radius: 0;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text);
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}

.ct-form__input:focus {
  border-bottom-color: var(--primary);
}

.ct-form__select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}

.ct-form__textarea {
  resize: vertical;
  min-height: 160px;
  line-height: 1.7;
  padding: 10px 0;
  border: none;
  border-bottom: 1.5px solid #c8c8c8;
}
.ct-form-wrap{
  background:#f3f3f1;
  padding:20px 20px;
}
.ct-form__textarea:focus {
  border-bottom-color: var(--primary);
}

.ct-form__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 13px 36px;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  font-family: inherit;
  letter-spacing: 0.06em;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  margin-top: 8px;
}

.ct-form__btn:hover {
  background: #4e6e0c;
  transform: translateY(-2px);
}


/* ── 右侧：联系信息 ── */
.ct-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ct-info__card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: #f7f7f5;
  border-left: 3px solid transparent;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  cursor: default;
}

.ct-info__card:hover {
  border-left-color: var(--primary);
  background: #f0f5e6;
  box-shadow: 0 4px 18px rgba(112,155,18,0.1);
}

.ct-info__icon {
  width: 40px;
  height: 40px;
  color: var(--primary);
  flex-shrink: 0;
}

.ct-info__icon svg {
  width: 100%;
  height: 100%;
}

.ct-info__name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.ct-info__sub {
  font-size: 13px;
  color: var(--text-mid);
  letter-spacing: 0.06em;
}

/* 地图图片 */
.ct-map-wrap {
  margin-top: 8px;
  overflow: hidden;
  border-radius: 2px;
}

.ct-map-img {
  width: 100%;
  display: block;
  opacity: 0.75;
  transition: opacity var(--transition), transform 0.5s ease;
}

.ct-map-wrap:hover .ct-map-img {
  opacity: 1;
  transform: scale(1.02);
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .ct-main__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 24px;
  }

  .ct-info-wrap {
    padding-top: 0;
  }

  .ct-hero {
    height: 320px;
  }

  .ct-main {
    padding: 56px 0 72px;
  }
}

@media (max-width: 600px) {
  .ct-main__inner {
    padding: 0 16px;
  }

  .ct-form__row {
    grid-template-columns: 1fr;
  }

  .ct-hero {
    height: 260px;
  }

  .ct-hero__content {
    padding: 0 6%;
  }

  .ct-main {
    padding: 44px 0 60px;
  }
}

