/* ==========================================================================
   民悦数字农业 · 企业官网设计系统  v2.0
   主色 深绿 #14532d / 科技青绿 #10b981 / 强调 琥珀金 #d97706
   ========================================================================== */

:root {
  --my-green-950: #082b17;
  --my-green-900: #0f3d22;
  --my-green-800: #14532d;
  --my-green-700: #15803d;
  --my-green-600: #16a34a;
  --my-emerald-500: #10b981;
  --my-emerald-400: #34d399;
  --my-emerald-200: #a7f3d0;
  --my-emerald-50: #ecfdf5;
  --my-amber-600: #d97706;
  --my-amber-500: #f59e0b;
  --my-amber-50: #fffbeb;

  --my-ink: #16211c;
  --my-ink-2: #3f5148;
  --my-ink-3: #6b7f75;
  --my-ink-4: #9aa9a1;
  --my-line: #e3eae5;
  --my-line-2: #eef3f0;
  --my-bg: #ffffff;
  --my-bg-soft: #f7faf8;
  --my-bg-mist: #eef4f0;

  --my-font: "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", "Noto Sans SC", "Source Han Sans SC", "Hiragino Sans GB", -apple-system, "Segoe UI", sans-serif;
  --my-mono: "SF Mono", "JetBrains Mono", Menlo, Consolas, monospace;

  --my-r-sm: 6px;
  --my-r: 12px;
  --my-r-lg: 20px;
  --my-r-xl: 28px;

  --my-shadow-sm: 0 1px 2px rgba(15, 61, 34, .06), 0 2px 8px rgba(15, 61, 34, .04);
  --my-shadow: 0 4px 16px rgba(15, 61, 34, .07), 0 12px 40px rgba(15, 61, 34, .05);
  --my-shadow-lg: 0 18px 60px rgba(15, 61, 34, .12);

  --my-max: 1240px;
  --my-ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--my-font);
  color: var(--my-ink);
  background: var(--my-bg);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
h1, h2, h3, h4 { margin: 0; line-height: 1.25; font-weight: 700; letter-spacing: -.01em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- 布局 ---------- */
.my-wrap { width: 100%; max-width: var(--my-max); margin: 0 auto; padding: 0 24px; }
.my-wrap-narrow { max-width: 860px; }
.my-sec { padding: 88px 0; position: relative; }
.my-sec-sm { padding: 56px 0; }
.my-sec-lg { padding: 120px 0; }
.bg-soft { background: var(--my-bg-soft); }
.bg-mist { background: var(--my-bg-mist); }
.bg-deep { background: var(--my-green-800); color: #fff; }
.bg-deep h1, .bg-deep h2, .bg-deep h3 { color: #fff; }
@media (max-width: 760px) { .my-sec { padding: 60px 0; } .my-sec-lg { padding: 76px 0; } }

.my-grid { display: grid; gap: 24px; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .g-3, .g-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .g-2, .g-3, .g-4 { grid-template-columns: 1fr; } }

/* ---------- 文字层级 ---------- */
.my-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--my-emerald-500);
}
.my-eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--my-emerald-500); border-radius: 2px; }
.my-h1 { font-size: clamp(2.1rem, 5.2vw, 4rem); text-wrap: balance; }
.my-h2 { font-size: clamp(1.6rem, 3.4vw, 2.5rem); text-wrap: balance; }
.my-h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
.my-lead { font-size: clamp(1rem, 1.6vw, 1.2rem); color: var(--my-ink-2); }
.my-muted { color: var(--my-ink-3); font-size: 14px; }
.my-mission {
  font-size: clamp(1.35rem, 3vw, 2.15rem); font-weight: 700; line-height: 1.5;
  letter-spacing: .01em;
}
.my-center { text-align: center; }
.my-sec-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.my-sec-head .my-eyebrow { margin-bottom: 14px; }
.my-sec-head p { margin-top: 14px; color: var(--my-ink-3); }
.my-note { font-size: 12px; color: var(--my-ink-4); line-height: 1.7; }

/* ---------- 按钮 ---------- */
.my-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 28px; border-radius: 100px; border: 1.5px solid transparent;
  font-size: 15px; font-weight: 600; cursor: pointer; white-space: nowrap;
  transition: transform .22s var(--my-ease), box-shadow .22s var(--my-ease),
              background .22s var(--my-ease), border-color .22s var(--my-ease), color .22s;
}
.my-btn:hover { transform: translateY(-2px); }
.my-btn:active { transform: translateY(0); }
.my-btn-primary { background: var(--my-emerald-500); color: #fff; box-shadow: 0 6px 22px rgba(16, 185, 129, .32); }
.my-btn-primary:hover { background: var(--my-green-600); box-shadow: 0 10px 30px rgba(16, 185, 129, .42); }
.my-btn-deep { background: var(--my-green-800); color: #fff; box-shadow: 0 6px 22px rgba(20, 83, 45, .26); }
.my-btn-deep:hover { background: var(--my-green-900); }
.my-btn-ghost { border-color: var(--my-line); color: var(--my-ink); background: #fff; }
.my-btn-ghost:hover { border-color: var(--my-emerald-500); color: var(--my-green-800); }
.my-btn-onDark { border-color: rgba(255, 255, 255, .5); color: #fff; background: rgba(255, 255, 255, .06); backdrop-filter: blur(6px); }
.my-btn-onDark:hover { background: rgba(255, 255, 255, .16); border-color: #fff; }
.my-btn-white { background: #fff; color: var(--my-green-800); box-shadow: 0 8px 26px rgba(0, 0, 0, .18); }
.my-btn-white:hover { background: var(--my-emerald-50); }
.my-btn-sm { padding: 10px 20px; font-size: 14px; }
.my-btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

.my-textlink {
  display: inline-flex; align-items: center; gap: 6px; font-weight: 600;
  color: var(--my-green-700); border-bottom: 1px solid transparent; transition: border-color .2s;
}
.my-textlink:hover { border-color: var(--my-green-700); }
.my-textlink svg { transition: transform .22s var(--my-ease); }
.my-textlink:hover svg { transform: translateX(3px); }

/* ---------- 顶栏 ---------- */
.my-topbar {
  background: var(--my-green-950); color: rgba(255, 255, 255, .78);
  font-size: 12.5px; letter-spacing: .01em;
}
.my-topbar .my-wrap { display: flex; justify-content: space-between; align-items: center; height: 36px; gap: 16px; }
.my-topbar a:hover { color: #fff; }
.my-topbar-l { display: flex; gap: 18px; align-items: center; min-width: 0; }
.my-topbar-l span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.my-topbar-r { display: flex; gap: 14px; align-items: center; white-space: nowrap; }
@media (max-width: 860px) { .my-topbar-r { display: none; } }

.my-head {
  position: sticky; top: 0; z-index: 60; background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(160%) blur(14px); border-bottom: 1px solid var(--my-line);
  transition: box-shadow .25s;
}
.my-head.is-stuck { box-shadow: 0 4px 24px rgba(15, 61, 34, .08); }
.my-head .my-wrap { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 20px; }
.my-brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.my-brand-mark {
  width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0;
  background: linear-gradient(140deg, var(--my-green-800), var(--my-emerald-500));
  display: flex; align-items: center; justify-content: center; color: #fff;
  box-shadow: 0 4px 14px rgba(16, 185, 129, .3);
}
.my-brand-mark img { width: 100%; height: 100%; object-fit: cover; border-radius: 11px; }
.my-brand-txt strong { display: block; font-size: 17px; font-weight: 700; letter-spacing: .01em; color: var(--my-green-900); line-height: 1.25; }
.my-brand-txt em { display: block; font-style: normal; font-size: 10.5px; letter-spacing: .1em; color: var(--my-ink-4); text-transform: uppercase; }
@media (max-width: 420px) { .my-brand-txt em { display: none; } }

.my-nav { display: flex; align-items: center; gap: 4px; }
.my-nav > a {
  position: relative; padding: 9px 14px; border-radius: 8px; font-size: 15px;
  color: var(--my-ink-2); font-weight: 500; transition: color .2s, background .2s;
}
.my-nav > a:hover { color: var(--my-green-800); background: var(--my-emerald-50); }
.my-nav > a.is-active { color: var(--my-green-800); font-weight: 700; }
.my-nav > a.is-active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 2px;
  background: var(--my-emerald-500); border-radius: 2px;
}
.my-head-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
@media (max-width: 1080px) { .my-nav > a { padding: 9px 10px; font-size: 14px; } }
@media (max-width: 980px) { .my-nav, .my-head-cta .my-btn { display: none; } }

.my-burger {
  display: none; width: 44px; height: 44px; border-radius: 10px; border: 1px solid var(--my-line);
  background: #fff; cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.my-burger span { display: block; width: 18px; height: 2px; background: var(--my-green-900); border-radius: 2px; transition: .25s var(--my-ease); }
.my-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.my-burger.is-open span:nth-child(2) { opacity: 0; }
.my-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 980px) { .my-burger { display: flex; } }

.my-drawer {
  position: fixed; inset: 74px 0 0; z-index: 55; background: #fff; padding: 20px 24px 40px;
  transform: translateY(-8px); opacity: 0; pointer-events: none; transition: .26s var(--my-ease);
  overflow-y: auto; border-top: 1px solid var(--my-line);
}
.my-drawer.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.my-drawer a {
  display: flex; justify-content: space-between; align-items: center; padding: 16px 4px;
  font-size: 17px; font-weight: 500; border-bottom: 1px solid var(--my-line-2); color: var(--my-ink);
}
.my-drawer a.is-active { color: var(--my-green-800); font-weight: 700; }
.my-drawer .my-btn { margin-top: 22px; width: 100%; }

/* ---------- Hero ---------- */
.my-hero { position: relative; min-height: 620px; display: flex; align-items: center; overflow: hidden; background: var(--my-green-950); }
.my-hero-media { position: absolute; inset: 0; }
.my-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.my-hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(8, 43, 23, .93) 0%, rgba(15, 61, 34, .82) 42%, rgba(20, 83, 45, .45) 72%, rgba(16, 185, 129, .18) 100%);
}
.my-hero .my-wrap { position: relative; z-index: 2; padding-top: 74px; padding-bottom: 74px; }
.my-hero-inner { max-width: 800px; }
.my-hero h1 { color: #fff; }
.my-hero-badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 7px 15px; border-radius: 100px;
  background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .2);
  color: #fff; font-size: 13px; font-weight: 500; letter-spacing: .04em; margin-bottom: 24px; backdrop-filter: blur(8px);
}
.my-hero-badge i { width: 7px; height: 7px; border-radius: 50%; background: var(--my-emerald-400); box-shadow: 0 0 0 4px rgba(52, 211, 153, .25); }
.my-mission-bar {
  margin-top: 22px; padding: 22px 26px; border-left: 3px solid var(--my-emerald-400);
  background: rgba(255, 255, 255, .07); border-radius: 0 var(--my-r) var(--my-r) 0; backdrop-filter: blur(6px);
}
.my-mission-bar .my-mission { color: #fff; }
.my-mission-bar p { color: rgba(255, 255, 255, .78); font-size: 14.5px; margin-top: 8px; }
.my-hero-sub { color: rgba(255, 255, 255, .82); margin-top: 22px; max-width: 620px; }
.my-hero .my-btn-row { margin-top: 34px; }
@media (max-width: 760px) { .my-hero { min-height: 520px; } .my-hero .my-wrap { padding-top: 46px; padding-bottom: 46px; } }

.my-hero-strip {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  border-top: 1px solid rgba(255, 255, 255, .14);
  background: linear-gradient(180deg, rgba(8, 43, 23, .2), rgba(8, 43, 23, .72));
  backdrop-filter: blur(4px);
}
.my-hero-strip .my-wrap { display: flex; gap: 40px; padding-top: 16px; padding-bottom: 16px; overflow-x: auto; }
.my-hero-strip div { color: rgba(255, 255, 255, .74); font-size: 12.5px; white-space: nowrap; letter-spacing: .06em; }
@media (max-width: 760px) { .my-hero-strip { display: none; } }

/* ---------- 数据条 / 统计 ---------- */
.my-stats { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; background: var(--my-line); border: 1px solid var(--my-line); border-radius: var(--my-r-lg); overflow: hidden; }
.my-stat { background: #fff; padding: 28px 18px; text-align: center; transition: background .25s; }
.my-stat:hover { background: var(--my-emerald-50); }
.my-stat b { display: block; font-size: clamp(1.5rem, 3vw, 2.15rem); font-weight: 800; color: var(--my-green-800); letter-spacing: -.02em; line-height: 1.1; }
.my-stat b span { font-size: .5em; font-weight: 700; color: var(--my-emerald-500); margin-left: 3px; }
.my-stat em { display: block; font-style: normal; font-size: 13px; color: var(--my-ink-3); margin-top: 8px; line-height: 1.5; }
.my-stat.is-accent b { color: var(--my-amber-600); }
@media (max-width: 980px) { .my-stats { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .my-stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------- 卡片 ---------- */
.my-card {
  background: #fff; border: 1px solid var(--my-line); border-radius: var(--my-r-lg);
  padding: 32px 28px; height: 100%; transition: transform .3s var(--my-ease), box-shadow .3s var(--my-ease), border-color .3s;
  display: flex; flex-direction: column;
}
.my-card:hover { transform: translateY(-4px); box-shadow: var(--my-shadow); border-color: var(--my-emerald-200); }
.my-card-ico {
  width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  background: var(--my-emerald-50); color: var(--my-green-700); margin-bottom: 20px; flex-shrink: 0;
}
.my-card-ico svg { width: 26px; height: 26px; }
.my-card h3 { margin-bottom: 10px; }
.my-card p { color: var(--my-ink-3); font-size: 15px; }
.my-card-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.my-tag {
  font-size: 12.5px; padding: 4px 11px; border-radius: 100px;
  background: var(--my-bg-mist); color: var(--my-green-800); font-weight: 500;
}
.my-tag-amber { background: var(--my-amber-50); color: var(--my-amber-600); }

.my-value { display: flex; gap: 16px; padding: 24px; border-radius: var(--my-r); background: #fff; border: 1px solid var(--my-line); height: 100%; }
.my-value-ico { flex-shrink: 0; width: 42px; height: 42px; border-radius: 11px; background: linear-gradient(140deg, var(--my-green-800), var(--my-emerald-500)); color: #fff; display: flex; align-items: center; justify-content: center; }
.my-value-ico svg { width: 21px; height: 21px; }
.my-value h3 { font-size: 16px; margin-bottom: 6px; }
.my-value p { font-size: 13.5px; color: var(--my-ink-3); line-height: 1.65; }

/* ---------- 流程 ---------- */
.my-flow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; counter-reset: flow; }
.my-flow-step { position: relative; padding: 30px 22px 30px 34px; }
.my-flow-step::before {
  counter-increment: flow; content: counter(flow, decimal-leading-zero);
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%; margin-bottom: 16px;
  background: var(--my-green-800); color: #fff; font-size: 14px; font-weight: 700; font-family: var(--my-mono);
}
.my-flow-step::after {
  content: ""; position: absolute; top: 50px; left: 76px; right: 8px; height: 1.5px;
  background: repeating-linear-gradient(90deg, var(--my-emerald-200) 0 6px, transparent 6px 12px);
}
.my-flow-step:last-child::after { display: none; }
.my-flow-step h4 { font-size: 16px; margin-bottom: 8px; }
.my-flow-step p { font-size: 13.5px; color: var(--my-ink-3); line-height: 1.65; }
@media (max-width: 980px) { .my-flow { grid-template-columns: repeat(2, 1fr); } .my-flow-step::after { display: none; } }
@media (max-width: 560px) { .my-flow { grid-template-columns: 1fr; } .my-flow-step { padding: 18px 0 18px 0; } }

/* ---------- 产品 ---------- */
.my-prod {
  background: #fff; border: 1px solid var(--my-line); border-radius: var(--my-r-lg);
  overflow: hidden; height: 100%; display: flex; flex-direction: column;
  transition: transform .3s var(--my-ease), box-shadow .3s var(--my-ease);
}
.my-prod:hover { transform: translateY(-4px); box-shadow: var(--my-shadow); }
.my-prod-img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--my-bg-mist); }
.my-prod-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--my-ease); }
.my-prod:hover .my-prod-img img { transform: scale(1.05); }
.my-prod-flag {
  position: absolute; top: 14px; left: 14px; padding: 5px 12px; border-radius: 100px;
  background: rgba(255, 255, 255, .94); color: var(--my-green-800); font-size: 12px; font-weight: 700;
  box-shadow: var(--my-shadow-sm);
}
.my-prod-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.my-prod-body h3 { font-size: 19px; margin-bottom: 10px; }
.my-prod-body p { font-size: 14px; color: var(--my-ink-3); flex: 1; }
.my-prod-specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--my-line-2); border-radius: var(--my-r-sm); overflow: hidden; margin: 18px 0; }
.my-prod-specs div { background: var(--my-bg-soft); padding: 10px 12px; }
.my-prod-specs dt { font-size: 11.5px; color: var(--my-ink-4); }
.my-prod-specs dd { margin: 3px 0 0; font-size: 14px; font-weight: 600; color: var(--my-green-800); }

.my-prod-wide { display: grid; grid-template-columns: 1.05fr 1fr; gap: 0; border: 1px solid var(--my-line); border-radius: var(--my-r-lg); overflow: hidden; background: #fff; }
.my-prod-wide-media { position: relative; min-height: 380px; background: var(--my-bg-mist); }
.my-prod-wide-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.my-prod-wide-body { padding: 44px 40px; display: flex; flex-direction: column; justify-content: center; }
.my-prod-wide.is-rev .my-prod-wide-media { order: 2; }
@media (max-width: 860px) {
  .my-prod-wide { grid-template-columns: 1fr; }
  .my-prod-wide-media { min-height: 260px; position: relative; }
  .my-prod-wide.is-rev .my-prod-wide-media { order: 0; }
  .my-prod-wide-body { padding: 28px 22px; }
}

/* ---------- 表格 ---------- */
.my-table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--my-line); border-radius: var(--my-r); }
table.my-table { width: 100%; border-collapse: collapse; min-width: 620px; font-size: 14.5px; }
.my-table th, .my-table td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--my-line-2); }
.my-table thead th { background: var(--my-bg-soft); font-size: 13px; font-weight: 700; color: var(--my-green-800); letter-spacing: .02em; white-space: nowrap; }
.my-table tbody tr:last-child td { border-bottom: none; }
.my-table tbody tr:hover { background: var(--my-emerald-50); }
.my-table td strong { color: var(--my-amber-600); font-weight: 700; }

/* ---------- 时间轴 ---------- */
.my-timeline { position: relative; padding-left: 34px; }
.my-timeline::before { content: ""; position: absolute; left: 9px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(180deg, var(--my-emerald-500), var(--my-emerald-200)); }
.my-tl-item { position: relative; padding-bottom: 38px; }
.my-tl-item:last-child { padding-bottom: 0; }
.my-tl-item::before {
  content: ""; position: absolute; left: -33px; top: 6px; width: 20px; height: 20px; border-radius: 50%;
  background: #fff; border: 3px solid var(--my-emerald-500); box-shadow: 0 0 0 4px rgba(16, 185, 129, .12);
}
.my-tl-year { font-family: var(--my-mono); font-size: 13px; font-weight: 700; color: var(--my-emerald-500); letter-spacing: .04em; }
.my-tl-item h3 { font-size: 18px; margin: 6px 0 8px; }
.my-tl-item p { color: var(--my-ink-3); font-size: 14.5px; }

/* ---------- 视频矩阵 ---------- */
.my-video { border-radius: var(--my-r); overflow: hidden; border: 1px solid var(--my-line); background: #fff; }
.my-video-top { aspect-ratio: 16 / 10; background: linear-gradient(140deg, var(--my-green-900), var(--my-emerald-500)); position: relative; display: flex; align-items: center; justify-content: center; }
.my-video-top img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .78; }
.my-video-play {
  position: relative; z-index: 2; width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255, 255, 255, .92); display: flex; align-items: center; justify-content: center;
  color: var(--my-green-800); transition: transform .25s var(--my-ease);
}
.my-video:hover .my-video-play { transform: scale(1.1); }
.my-video-body { padding: 18px 20px; }
.my-video-body h3 { font-size: 15.5px; margin-bottom: 6px; }
.my-video-body p { font-size: 13px; color: var(--my-ink-3); }

/* ---------- 新闻 ---------- */
.my-news-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--my-line); border-radius: var(--my-r); overflow: hidden; height: 100%; transition: transform .28s var(--my-ease), box-shadow .28s var(--my-ease); }
.my-news-card:hover { transform: translateY(-4px); box-shadow: var(--my-shadow); }
.my-news-thumb { aspect-ratio: 16 / 10; overflow: hidden; background: var(--my-bg-mist); }
.my-news-thumb img { width: 100%; height: 100%; object-fit: cover; }
.my-news-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.my-news-meta { display: flex; gap: 10px; align-items: center; font-size: 12.5px; color: var(--my-ink-4); margin-bottom: 10px; }
.my-news-meta b { color: var(--my-emerald-500); font-weight: 600; background: var(--my-emerald-50); padding: 2px 9px; border-radius: 100px; }
.my-news-body h3 { font-size: 16.5px; margin-bottom: 8px; line-height: 1.45; }
.my-news-body p { font-size: 13.5px; color: var(--my-ink-3); flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.my-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.my-tabs a { padding: 8px 18px; border-radius: 100px; border: 1px solid var(--my-line); font-size: 14px; color: var(--my-ink-2); background: #fff; transition: .2s; }
.my-tabs a:hover { border-color: var(--my-emerald-500); color: var(--my-green-800); }
.my-tabs a.is-active { background: var(--my-green-800); border-color: var(--my-green-800); color: #fff; font-weight: 600; }

.my-page-hero { background: var(--my-green-800); color: #fff; padding: 66px 0 58px; position: relative; overflow: hidden; }
.my-page-hero::after {
  content: ""; position: absolute; right: -140px; top: -140px; width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, .3), transparent 68%);
}
.my-page-hero .my-wrap { position: relative; z-index: 2; }
.my-page-hero h1 { font-size: clamp(1.85rem, 4vw, 2.9rem); }
.my-page-hero p { color: rgba(255, 255, 255, .8); margin-top: 14px; max-width: 720px; }
.my-crumb { font-size: 13px; color: rgba(255, 255, 255, .62); margin-bottom: 16px; }
.my-crumb a:hover { color: #fff; }
.my-crumb span { margin: 0 7px; }

/* ---------- 表单 ---------- */
.my-form { display: grid; gap: 18px; }
.my-form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 620px) { .my-form-row { grid-template-columns: 1fr; } }
.my-field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--my-ink-2); margin-bottom: 7px; }
.my-field label i { color: var(--my-amber-600); font-style: normal; }
.my-input, .my-select, .my-textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--my-line); border-radius: var(--my-r-sm);
  font-size: 15px; font-family: inherit; color: var(--my-ink); background: #fff; transition: border-color .2s, box-shadow .2s;
}
.my-input:focus, .my-select:focus, .my-textarea:focus { outline: none; border-color: var(--my-emerald-500); box-shadow: 0 0 0 3px rgba(16, 185, 129, .14); }
.my-textarea { resize: vertical; min-height: 120px; }
.my-form-tip { margin-top: 6px; font-size: 12.5px; color: var(--my-ink-4); }
.my-alert { padding: 15px 17px; border-radius: var(--my-r-sm); font-size: 14px; border: 1px solid; line-height: 1.7; }
.my-alert-ok { background: var(--my-emerald-50); border-color: var(--my-emerald-200); color: var(--my-green-800); }
.my-alert-warn { background: var(--my-amber-50); border-color: #fde68a; color: #92400e; }

/* ---------- FAQ ---------- */
.my-faq { border: 1px solid var(--my-line); border-radius: var(--my-r); overflow: hidden; background: #fff; }
.my-faq details { border-bottom: 1px solid var(--my-line-2); }
.my-faq details:last-child { border-bottom: none; }
.my-faq summary {
  padding: 19px 24px; cursor: pointer; font-weight: 600; font-size: 15.5px; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: background .2s;
}
.my-faq summary::-webkit-details-marker { display: none; }
.my-faq summary:hover { background: var(--my-bg-soft); }
.my-faq summary::after { content: "+"; font-size: 20px; color: var(--my-emerald-500); font-weight: 400; flex-shrink: 0; transition: transform .25s; }
.my-faq details[open] summary { color: var(--my-green-800); }
.my-faq details[open] summary::after { transform: rotate(45deg); }
.my-faq .my-faq-a { padding: 0 24px 22px; color: var(--my-ink-3); font-size: 14.5px; line-height: 1.85; }

/* ---------- 图表 ---------- */
.my-chart-box { background: #fff; border: 1px solid var(--my-line); border-radius: var(--my-r-lg); padding: 26px 24px 18px; }
.my-chart-title { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; margin-bottom: 6px; flex-wrap: wrap; }
.my-chart-title h3 { font-size: 17px; }
.my-chart { width: 100%; height: 300px; }
.my-chart-lg { height: 380px; }
.my-src { font-size: 11.5px; color: var(--my-ink-4); margin-top: 10px; line-height: 1.6; }

/* ---------- Footer ---------- */
.my-foot { background: var(--my-green-950); color: rgba(255, 255, 255, .68); padding: 62px 0 0; font-size: 14px; }
.my-foot-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 44px; padding-bottom: 46px; }
@media (max-width: 980px) { .my-foot-top { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
@media (max-width: 560px) { .my-foot-top { grid-template-columns: 1fr; } }
.my-foot h4 { color: #fff; font-size: 15px; margin-bottom: 18px; font-weight: 600; }
.my-foot-brand { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.my-foot-brand .my-brand-mark { background: rgba(255, 255, 255, .1); box-shadow: none; }
.my-foot-brand strong { color: #fff; font-size: 16.5px; }
.my-foot ul li { margin-bottom: 11px; }
.my-foot a:hover { color: var(--my-emerald-400); }
.my-foot-contact li { display: flex; gap: 10px; align-items: flex-start; line-height: 1.65; }
.my-foot-contact svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 5px; color: var(--my-emerald-400); }
.my-qr { display: flex; gap: 14px; align-items: center; margin-top: 18px; }
.my-qr img, .my-qr-ph { width: 92px; height: 92px; border-radius: var(--my-r-sm); object-fit: cover; background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .14); display: flex; align-items: center; justify-content: center; font-size: 11px; text-align: center; line-height: 1.4; padding: 6px; }
.my-qr span { font-size: 12px; line-height: 1.6; }
.my-foot-bot { border-top: 1px solid rgba(255, 255, 255, .1); padding: 20px 0 26px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12.5px; color: rgba(255, 255, 255, .5); }
.my-foot-bot a:hover { color: var(--my-emerald-400); }

/* ---------- 其他 ---------- */
.my-cta { background: linear-gradient(115deg, var(--my-green-900), var(--my-green-800) 55%, #0d6b45); color: #fff; border-radius: var(--my-r-xl); padding: 56px 48px; position: relative; overflow: hidden; }
.my-cta::after { content: ""; position: absolute; right: -90px; bottom: -120px; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(16, 185, 129, .34), transparent 66%); }
.my-cta > * { position: relative; z-index: 2; }
.my-cta h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 14px; }
.my-cta p { color: rgba(255, 255, 255, .8); max-width: 620px; margin-bottom: 28px; }
@media (max-width: 620px) { .my-cta { padding: 36px 24px; border-radius: var(--my-r-lg); } }

.my-marquee { overflow: hidden; background: var(--my-green-900); color: #fff; padding: 15px 0; border-top: 1px solid rgba(255, 255, 255, .08); }
.my-marquee-track { display: flex; gap: 54px; width: max-content; animation: myMarquee 32s linear infinite; }
.my-marquee-track span { display: flex; align-items: center; gap: 12px; font-size: 15px; letter-spacing: .03em; color: rgba(255, 255, 255, .82); white-space: nowrap; }
.my-marquee-track svg { width: 15px; height: 15px; color: var(--my-emerald-400); }
@keyframes myMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .my-marquee-track { animation: none; } }

.my-quote { border-left: 3px solid var(--my-emerald-500); padding: 4px 0 4px 24px; }
.my-quote p { font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--my-green-900); font-weight: 500; line-height: 1.7; }
.my-quote cite { display: block; margin-top: 14px; font-style: normal; font-size: 14px; color: var(--my-ink-3); }

.my-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .my-split { grid-template-columns: 1fr; gap: 34px; } }
.my-figure { border-radius: var(--my-r-lg); overflow: hidden; border: 1px solid var(--my-line); background: var(--my-bg-mist); }
.my-figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.my-figure figcaption { padding: 13px 18px; font-size: 12.5px; color: var(--my-ink-4); background: #fff; border-top: 1px solid var(--my-line-2); }

.my-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.my-badge { display: flex; align-items: center; gap: 10px; padding: 14px 20px; border: 1px solid var(--my-line); border-radius: var(--my-r); background: #fff; font-size: 14px; font-weight: 500; }
.my-badge svg { width: 20px; height: 20px; color: var(--my-emerald-500); flex-shrink: 0; }

.my-job { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; padding: 24px; border: 1px solid var(--my-line); border-radius: var(--my-r); background: #fff; }
.my-job h3 { font-size: 17px; margin-bottom: 6px; }
.my-job .my-muted { font-size: 13.5px; }
@media (max-width: 620px) { .my-job { flex-direction: column; } }

.my-pager { display: flex; justify-content: center; gap: 8px; margin-top: 46px; flex-wrap: wrap; }
.my-pager a, .my-pager span {
  min-width: 42px; height: 42px; padding: 0 13px; border-radius: 10px; border: 1px solid var(--my-line);
  display: inline-flex; align-items: center; justify-content: center; font-size: 14.5px; background: #fff; color: var(--my-ink-2);
}
.my-pager a:hover { border-color: var(--my-emerald-500); color: var(--my-green-800); }
.my-pager .is-active { background: var(--my-green-800); border-color: var(--my-green-800); color: #fff; font-weight: 600; }

.my-article { max-width: 760px; margin: 0 auto; font-size: 16.5px; line-height: 1.95; color: var(--my-ink-2); }
.my-article h2 { font-size: 1.5rem; margin: 40px 0 16px; color: var(--my-ink); }
.my-article h3 { font-size: 1.2rem; margin: 30px 0 12px; color: var(--my-ink); }
.my-article p { margin: 0 0 18px; }
.my-article img { border-radius: var(--my-r); margin: 24px 0; }
.my-article ul { list-style: disc; padding-left: 22px; margin: 0 0 18px; }
.my-article li { margin-bottom: 8px; }
.my-article blockquote { margin: 24px 0; padding: 16px 22px; background: var(--my-bg-soft); border-left: 3px solid var(--my-emerald-500); border-radius: 0 var(--my-r-sm) var(--my-r-sm) 0; color: var(--my-ink-2); }
.my-article a { color: var(--my-green-700); border-bottom: 1px solid var(--my-emerald-200); }
.my-article table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 15px; }
.my-article th, .my-article td { border: 1px solid var(--my-line); padding: 11px 14px; text-align: left; }
.my-article th { background: var(--my-bg-soft); }

/* 进场动画：默认可见（JS 未加载也不会白屏），仅在 <html class="js"> 时才隐藏待入场 */
html.js .my-reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--my-ease), transform .7s var(--my-ease); }
html.js .my-reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .my-reveal { opacity: 1; transform: none; transition: none; }
}

/* 屏幕阅读器 */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

/* Halo 评论组件适配 */
.halo-comment-widget, [id^="comment"] { margin-top: 48px; }
