/* 供享村社 · 官网统一样式 ------------------------------------------------ */
:root {
  --green: #15803d;
  --green-d: #0f5c2c;
  --green-l: #22c55e;
  --green-bg: #f0fdf4;
  --ink: #1f2937;
  --ink-2: #4b5563;
  --ink-3: #6b7280;
  --line: #e5e7eb;
  --bg: #f7f8f7;
  --card: #ffffff;
  --gold: #b45309;
  --gold-bg: #fffbeb;
  --radius: 14px;
  --shadow: 0 2px 12px rgba(0, 0, 0, .06);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, .10);
  --wrap: 1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }

/* ── 顶部导航 ─────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; gap: 24px; height: 62px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; color: var(--green); }
.brand .mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(135deg, var(--green-l), var(--green));
  color: #fff; display: grid; place-items: center; font-size: 18px; font-weight: 800;
}
.nav-links { margin-left: auto; display: flex; gap: 4px; align-items: center; flex-wrap: wrap; }
.nav-links a {
  padding: 8px 14px; border-radius: 9px; font-size: 15px; color: var(--ink-2); font-weight: 500;
}
.nav-links a:hover { background: var(--green-bg); color: var(--green); }
.nav-links a.active { color: var(--green); font-weight: 700; }
.nav-cta {
  background: var(--green) !important; color: #fff !important; font-weight: 600 !important;
}
.nav-cta:hover { background: var(--green-d) !important; }
.menu-btn { display: none; margin-left: auto; background: none; border: 1px solid var(--line); border-radius: 8px; padding: 6px 10px; font-size: 20px; cursor: pointer; }

/* ── 通用区块 ─────────────────────────────────────────── */
section { padding: 56px 0; }
.section-tag { color: var(--green); font-weight: 700; font-size: 14px; letter-spacing: 1px; }
h1 { font-size: 40px; line-height: 1.25; letter-spacing: -.5px; }
h2 { font-size: 30px; line-height: 1.3; margin: 8px 0 6px; }
h3 { font-size: 20px; }
.lead { color: var(--ink-2); font-size: 18px; max-width: 640px; }
.muted { color: var(--ink-3); }
.center { text-align: center; }
.center .lead { margin: 10px auto 0; }

/* ── 按钮 ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  padding: 13px 26px; border-radius: 11px; font-size: 16px; font-weight: 600;
  cursor: pointer; border: none; transition: .15s; white-space: nowrap;
}
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-d); transform: translateY(-1px); }
.btn-ghost { background: #fff; color: var(--green); border: 1.5px solid var(--green); }
.btn-ghost:hover { background: var(--green-bg); }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { filter: brightness(.94); }
.btn-lg { padding: 15px 32px; font-size: 17px; }
.btn-block { width: 100%; }

/* ── 首页 Hero ────────────────────────────────────────── */
.hero { background: radial-gradient(1200px 400px at 50% -80px, #dcfce7 0%, transparent 70%), var(--bg); text-align: center; padding: 72px 0 48px; }
.hero h1 span { color: var(--green); }
.hero .actions { display: flex; gap: 14px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }

/* ── 卡片网格 ─────────────────────────────────────────── */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow);
}
.card .ic {
  width: 48px; height: 48px; border-radius: 12px; background: var(--green-bg);
  color: var(--green); display: grid; place-items: center; font-size: 24px; margin-bottom: 14px;
}
.card h3 { margin-bottom: 6px; }
.card p { color: var(--ink-2); font-size: 15px; }
.feature-card { display: block; transition: .18s; }
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: #bbf7d0; }
.feature-card .more { color: var(--green); font-weight: 600; margin-top: 12px; font-size: 15px; display: inline-block; }

/* ── 流程步骤 ─────────────────────────────────────────── */
.steps { counter-reset: s; display: grid; gap: 16px; grid-template-columns: repeat(4, 1fr); }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; position: relative; }
.step::before {
  counter-increment: s; content: counter(s);
  width: 34px; height: 34px; border-radius: 50%; background: var(--green); color: #fff;
  display: grid; place-items: center; font-weight: 700; margin-bottom: 12px;
}
.step h3 { font-size: 17px; margin-bottom: 4px; }
.step p { color: var(--ink-3); font-size: 14px; }

/* ── 列表勾选 ─────────────────────────────────────────── */
.ticks { list-style: none; display: grid; gap: 10px; }
.ticks li { padding-left: 30px; position: relative; color: var(--ink-2); }
.ticks li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--green); font-weight: 800; }

/* ── 表单 ─────────────────────────────────────────────── */
.form-wrap { max-width: 720px; margin: 0 auto; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 15px; margin-bottom: 7px; }
.field label .req { color: #dc2626; }
.field .hint { color: var(--ink-3); font-size: 13px; margin-top: 5px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px;
  font-size: 15px; font-family: inherit; background: #fff; color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green-l); box-shadow: 0 0 0 3px rgba(34, 197, 94, .12); }
.field textarea { min-height: 90px; resize: vertical; }
.upload {
  border: 1.5px dashed #cbd5e1; border-radius: 10px; padding: 22px; text-align: center;
  color: var(--ink-3); cursor: pointer; background: #fcfcfc;
}
.upload:hover { border-color: var(--green-l); background: var(--green-bg); }
.upload .fn { color: var(--green); font-weight: 600; margin-top: 6px; }
.grid-form { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
.check-row { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--ink-2); }
.check-row input { width: auto; margin-top: 5px; }

/* ── 资讯 / 付费 ──────────────────────────────────────── */
.tabs { display: flex; gap: 8px; border-bottom: 1px solid var(--line); margin-bottom: 24px; }
.tabs button {
  background: none; border: none; padding: 12px 4px; margin-right: 20px; font-size: 16px;
  color: var(--ink-3); cursor: pointer; font-weight: 600; border-bottom: 2.5px solid transparent; margin-bottom: -1px;
}
.tabs button.active { color: var(--green); border-color: var(--green); }
.article-list { display: grid; gap: 16px; }
.article-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px;
  display: flex; gap: 18px; align-items: center; transition: .15s;
}
.article-item:hover { box-shadow: var(--shadow-lg); border-color: #bbf7d0; }
.article-item .body { flex: 1; }
.article-item h3 { font-size: 18px; margin-bottom: 5px; }
.article-item p { color: var(--ink-3); font-size: 14px; }
.article-item .meta { color: var(--ink-3); font-size: 13px; margin-top: 8px; display: flex; gap: 14px; flex-wrap: wrap; }
.badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 700; }
.badge-free { background: #eff6ff; color: #2563eb; }
.badge-paid { background: var(--gold-bg); color: var(--gold); }
.price-tag { font-size: 22px; font-weight: 800; color: var(--gold); white-space: nowrap; }

/* 付费墙 */
.article-body { max-width: 760px; margin: 0 auto; }
.article-body p { margin: 16px 0; color: var(--ink-2); font-size: 17px; }
.article-head { max-width: 760px; margin: 0 auto 24px; }
.article-head h1 { font-size: 32px; }
.article-head .meta { color: var(--ink-3); margin-top: 12px; display: flex; gap: 16px; flex-wrap: wrap; }
.paywall {
  max-width: 760px; margin: 8px auto; position: relative;
}
.paywall .fade {
  height: 120px; margin-top: -120px; position: relative;
  background: linear-gradient(180deg, transparent, var(--bg));
}
.paywall .box {
  border: 1px solid #fde68a; background: var(--gold-bg); border-radius: var(--radius);
  padding: 28px; text-align: center;
}
.paywall .box .lock { font-size: 30px; }
.paywall .box h3 { margin: 8px 0; }
.paywall .box .price { font-size: 30px; font-weight: 800; color: var(--gold); margin: 6px 0 16px; }
.locked-content { filter: blur(5px); user-select: none; pointer-events: none; opacity: .55; }

/* ── 弹窗 ─────────────────────────────────────────────── */
.modal-mask {
  position: fixed; inset: 0; background: rgba(0, 0, 0, .5); z-index: 100;
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-mask.show { display: flex; }
.modal {
  background: #fff; border-radius: 18px; padding: 30px; max-width: 400px; width: 100%;
  text-align: center; box-shadow: var(--shadow-lg);
}
.modal .qr { width: 180px; height: 180px; margin: 16px auto; border-radius: 12px; background:
  repeating-conic-gradient(#111 0 25%, #fff 0 50%) 0 0 / 22px 22px, #fff; border: 8px solid #fff; box-shadow: var(--shadow); }
.modal h3 { margin-bottom: 4px; }
.modal .big-price { font-size: 34px; font-weight: 800; color: var(--gold); }
.modal .row { display: flex; gap: 10px; margin-top: 20px; }

/* 成功提示 */
.success-box { text-align: center; padding: 20px 0; }
.success-box .tick { width: 66px; height: 66px; border-radius: 50%; background: var(--green); color: #fff; font-size: 34px; display: grid; place-items: center; margin: 0 auto 16px; }
.notice-code { background: var(--green-bg); border-radius: 10px; padding: 12px; font-weight: 700; color: var(--green-d); margin: 14px 0; }

/* ── 页脚（含合规备案区，办证必备）─────────────────────── */
.footer { background: #14231a; color: #cbd5c8; padding: 44px 0 26px; margin-top: 40px; }
.footer .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; }
.footer h4 { color: #fff; font-size: 15px; margin-bottom: 12px; }
.footer a, .footer p { color: #a7b5ab; font-size: 14px; display: block; margin-bottom: 7px; }
.footer a:hover { color: #fff; }
.footer .brand { color: #fff; font-size: 20px; margin-bottom: 10px; }
.compliance {
  border-top: 1px solid #26382c; margin-top: 30px; padding-top: 20px;
  font-size: 13px; color: #8a9a8f; line-height: 2; text-align: center;
}
.compliance a { display: inline; color: #a7b5ab; }
.compliance .sep { margin: 0 8px; color: #3f5446; }

/* ── 通用小工具 ───────────────────────────────────────── */
.pagehead { background: linear-gradient(var(--green-bg), var(--bg)); padding: 48px 0 32px; border-bottom: 1px solid var(--line); }
.pagehead h1 { font-size: 34px; }
.pagehead .lead { margin-top: 8px; }
.crumb { font-size: 14px; color: var(--ink-3); margin-bottom: 12px; }
.crumb a:hover { color: var(--green); }
.note-bar { background: #eff6ff; border: 1px solid #bfdbfe; color: #1e40af; border-radius: 10px; padding: 12px 16px; font-size: 14px; margin: 18px 0; }

/* ── 线性图标 & 图片 ──────────────────────────────────── */
.ic svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.inline-ic { width: 18px; height: 18px; stroke: var(--green); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; vertical-align: -3px; margin-right: 6px; flex: none; }
.ticks li .inline-ic { display: none; }

.hero-media { max-width: var(--wrap); margin: 36px auto 0; padding: 0 20px; }
.hero-media figure { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-media img { width: 100%; height: 340px; object-fit: cover; display: block; }
.credit { color: var(--ink-3); font-size: 12px; margin-top: 8px; text-align: right; }
.credit a { color: var(--ink-3); text-decoration: underline; }

.card-media { margin: -24px -24px 18px; height: 172px; overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.feature-card:hover .card-media img { transform: scale(1.04); }

.pagehead.with-media { position: relative; overflow: hidden; }
.pagehead .ph-img { position: absolute; inset: 0; z-index: 0; }
.pagehead .ph-img img { width: 100%; height: 100%; object-fit: cover; }
.pagehead .ph-img::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(95deg, rgba(240,253,244,.97) 0%, rgba(240,253,244,.9) 42%, rgba(240,253,244,.4) 100%); }
.pagehead.with-media .wrap { position: relative; z-index: 1; }

.thumb { width: 136px; height: 94px; border-radius: 10px; object-fit: cover; flex: none; }

/* ── 电商版式：顶部工具条 ─────────────────────────────── */
.topbar { background: #14231a; color: #b9c7bd; font-size: 13px; }
.topbar .wrap { display: flex; align-items: center; height: 34px; gap: 16px; }
.topbar a { color: #b9c7bd; }
.topbar a:hover { color: #fff; }
.topbar .right { margin-left: auto; display: flex; gap: 16px; align-items: center; }
.topbar .hot { color: #fde68a; font-weight: 700; }

/* 主头部：logo + 搜索 + 购物车 */
.site-header { background: #fff; border-bottom: 1px solid var(--line); }
.site-header .wrap { display: flex; align-items: center; gap: 28px; padding: 18px 20px; }
.site-header .brand { font-size: 24px; }
.site-header .brand .mark { width: 40px; height: 40px; font-size: 21px; }
.brand .sub { font-size: 12px; color: var(--ink-3); font-weight: 500; display: block; letter-spacing: 2px; }
.search { margin-left: auto; display: flex; width: 440px; max-width: 46vw; border: 2px solid var(--green); border-radius: 24px; overflow: hidden; }
.search input { flex: 1; border: none; padding: 10px 18px; font-size: 15px; outline: none; }
.search button { background: var(--green); color: #fff; border: none; padding: 0 24px; font-weight: 600; cursor: pointer; font-size: 15px; }
.search button:hover { background: var(--green-d); }
.cart-btn { display: flex; align-items: center; gap: 6px; border: 1px solid var(--line); border-radius: 22px; padding: 8px 16px; font-size: 14px; color: var(--ink-2); font-weight: 600; }
.cart-btn:hover { border-color: var(--green); color: var(--green); }
.cart-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.7; }

/* 主导航条（绿底） */
.mainnav { background: var(--green); }
.mainnav .wrap { display: flex; gap: 4px; align-items: stretch; height: 46px; }
.mainnav a { color: #eafff0; padding: 0 20px; display: flex; align-items: center; font-size: 15.5px; font-weight: 500; }
.mainnav a:hover, .mainnav a.active { background: rgba(255,255,255,.16); color: #fff; font-weight: 700; }
.mainnav .home { background: var(--green-d); font-weight: 700; }

/* ── 首页 Hero：左分类 + 右轮播 ───────────────────────── */
.hero-shop { display: grid; grid-template-columns: 230px 1fr; gap: 16px; margin-top: 18px; }
.cat-panel { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 6px 0; box-shadow: var(--shadow); }
.cat-panel .ct { padding: 8px 18px 6px; font-size: 12px; font-weight: 700; color: var(--ink-3); letter-spacing: 1px; }
.cat-panel a { display: flex; align-items: center; justify-content: space-between; padding: 10px 18px; font-size: 14.5px; color: var(--ink-2); }
.cat-panel a:hover { background: var(--green-bg); color: var(--green); padding-left: 22px; }
.cat-panel a .arr { color: #cbd5c8; }
.carousel { position: relative; border-radius: 12px; overflow: hidden; height: 360px; box-shadow: var(--shadow); }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity .7s ease; }
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide .cap { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; padding: 0 52px; background: linear-gradient(90deg, rgba(20,35,26,.62) 0%, rgba(20,35,26,.15) 55%, transparent 100%); }
.slide .cap .en { color: #bbf7d0; font-size: 13px; letter-spacing: 3px; font-weight: 600; }
.slide .cap h2 { color: #fff; font-size: 34px; margin: 8px 0 6px; text-shadow: 0 2px 14px rgba(0,0,0,.35); }
.slide .cap p { color: #e6f5ea; font-size: 16px; max-width: 420px; }
.slide .cap .btn { margin-top: 18px; align-self: flex-start; }
.dots { position: absolute; bottom: 16px; left: 52px; display: flex; gap: 8px; }
.dots button { width: 10px; height: 10px; border-radius: 50%; border: none; background: rgba(255,255,255,.5); cursor: pointer; padding: 0; }
.dots button.on { background: #fff; width: 22px; border-radius: 5px; }

/* 服务保障条 */
.service-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; background: #fff; border: 1px solid var(--line); border-radius: 12px; margin-top: 16px; box-shadow: var(--shadow); }
.service-strip .s { display: flex; align-items: center; gap: 12px; padding: 18px 22px; border-right: 1px solid var(--line); }
.service-strip .s:last-child { border-right: none; }
.service-strip .s svg { width: 30px; height: 30px; stroke: var(--green); fill: none; stroke-width: 1.6; flex-shrink: 0; }
.service-strip .s b { font-size: 15px; display: block; }
.service-strip .s span { font-size: 12.5px; color: var(--ink-3); }

/* 区块标题 + 更多 */
.sec-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 20px; }
.sec-head h2 { font-size: 24px; }
.sec-head .en2 { color: var(--ink-3); font-size: 13px; letter-spacing: 2px; margin-left: 10px; font-weight: 600; }
.sec-head .more { color: var(--ink-3); font-size: 14px; }
.sec-head .more:hover { color: var(--green); }

/* 分类金刚区 */
.catnav { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.cat-tile { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 20px 10px; text-align: center; transition: .16s; }
.cat-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: #bbf7d0; }
.cat-tile .ico { width: 50px; height: 50px; margin: 0 auto 10px; border-radius: 50%; background: var(--green-bg); display: grid; place-items: center; }
.cat-tile .ico svg { width: 26px; height: 26px; stroke: var(--green); fill: none; stroke-width: 1.6; }
.cat-tile b { font-size: 15px; font-weight: 600; display: block; }
.cat-tile span { font-size: 12px; color: var(--ink-3); }

/* 送礼佳品 promo */
.promo-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 16px; }
.promo { position: relative; border-radius: 14px; overflow: hidden; min-height: 200px; box-shadow: var(--shadow); }
.promo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform .3s; }
.promo:hover img { transform: scale(1.05); }
.promo .t { position: absolute; inset: 0; padding: 22px 24px; background: linear-gradient(0deg, rgba(20,35,26,.75), rgba(20,35,26,.05) 60%); display: flex; flex-direction: column; justify-content: flex-end; color: #fff; }
.promo .t b { font-size: 20px; }
.promo .t span { font-size: 13px; color: #dcfce7; }
.promo.tall { grid-row: span 1; min-height: 416px; }

/* 商家入驻大 banner */
.join-banner { position: relative; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); }
.join-banner img { width: 100%; height: 300px; object-fit: cover; }
.join-banner .t { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; padding: 0 56px; background: linear-gradient(90deg, rgba(15,92,44,.88), rgba(15,92,44,.35)); color: #fff; }
.join-banner .t h2 { color: #fff; font-size: 30px; }
.join-banner .t p { color: #e6f5ea; font-size: 16px; margin: 8px 0 20px; max-width: 440px; }

/* ── 商城：商品卡 ─────────────────────────────────────── */
.shop-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); transition: .18s; display: flex; flex-direction: column; }
.product:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: #bbf7d0; }
.product .pimg { aspect-ratio: 1 / 1; background: #f3f4f6; overflow: hidden; }
.product .pimg img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.product:hover .pimg img { transform: scale(1.04); }
.product .pinfo { padding: 14px 16px 16px; display: flex; flex-direction: column; flex: 1; }
.product .origin { font-size: 12px; color: var(--green); font-weight: 700; margin-bottom: 5px; }
.product h3 { font-size: 15px; line-height: 1.45; margin-bottom: 4px; }
.product .spec { font-size: 13px; color: var(--ink-3); margin-bottom: 12px; }
.product .prow { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.product .price { color: #dc2626; font-weight: 800; font-size: 19px; }
.product .price small { font-size: 12px; font-weight: 600; }
.product .buy { background: var(--green); color: #fff; border: none; border-radius: 8px; padding: 8px 14px; font-size: 14px; font-weight: 600; cursor: pointer; white-space: nowrap; }
.product .buy:hover { background: var(--green-d); }
.self-tag { display: inline-block; background: var(--gold-bg); color: var(--gold); font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 20px; margin-left: 6px; vertical-align: 1px; }

/* 付费咨询 · 收款码卡 */
.qr-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 20px; text-align: center; box-shadow: var(--shadow); }
.qr-card img { width: 100%; max-width: 240px; margin: 0 auto 10px; display: block; border-radius: 10px; }
.qr-card .pay-title { font-weight: 700; font-size: 15px; margin-bottom: 2px; }
.qr-card .pay-note { font-size: 12.5px; color: var(--ink-3); }
.consult-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 26px; align-items: center; }
.price-list { display: grid; gap: 10px; margin-top: 14px; }
.price-list .pl { display: flex; align-items: center; justify-content: space-between; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 12px 16px; }
.price-list .pl b { font-size: 15px; } .price-list .pl .p { color: var(--gold); font-weight: 800; }
@media (max-width: 820px){ .consult-grid { grid-template-columns: 1fr; } }

/* 弹窗内真实收款码 */
.modal .real-qr { width: 210px; margin: 14px auto 6px; display: block; border-radius: 10px; }

/* 轻提示 */
.toast { position: fixed; left: 50%; bottom: 40px; transform: translateX(-50%) translateY(20px); background: rgba(20,35,26,.94); color: #fff; padding: 12px 22px; border-radius: 30px; font-size: 15px; z-index: 200; opacity: 0; transition: .3s; pointer-events: none; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── 响应式 ───────────────────────────────────────────── */
@media (max-width: 820px) {
  h1 { font-size: 30px; } h2 { font-size: 24px; }
  .grid-2, .grid-3, .grid-4, .steps { grid-template-columns: 1fr; }
  .grid-form { grid-template-columns: 1fr; }
  .footer .cols { grid-template-columns: 1fr; gap: 22px; }
  .nav-links { display: none; position: absolute; top: 62px; left: 0; right: 0; background: #fff; flex-direction: column; padding: 8px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; }
  .menu-btn { display: block; }
  .article-item { flex-direction: column; align-items: flex-start; }
  .thumb { width: 100%; height: 180px; }
  .hero-media img { height: 220px; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  /* 电商版式响应式 */
  .topbar .wrap { gap: 10px; font-size: 12px; }
  .topbar .right .hide-m { display: none; }
  .site-header .wrap { flex-wrap: wrap; gap: 12px; padding: 12px 16px; }
  .search { order: 3; width: 100%; max-width: 100%; margin-left: 0; }
  .cart-btn { margin-left: auto; }
  .mainnav .wrap { overflow-x: auto; height: 44px; }
  .mainnav a { padding: 0 14px; white-space: nowrap; }
  .hero-shop { grid-template-columns: 1fr; }
  .cat-panel { display: none; }
  .carousel { height: 220px; }
  .slide .cap { padding: 0 24px; }
  .slide .cap h2 { font-size: 22px; }
  .slide .cap p { font-size: 14px; }
  .dots { left: 24px; }
  .service-strip { grid-template-columns: repeat(2, 1fr); }
  .service-strip .s { border-right: none; border-bottom: 1px solid var(--line); }
  .service-strip .s:nth-child(odd) { border-right: 1px solid var(--line); }
  .catnav { grid-template-columns: repeat(3, 1fr); }
  .promo-grid { grid-template-columns: 1fr; }
  .promo.tall { min-height: 200px; }
  .join-banner .t { padding: 0 26px; }
  .join-banner .t h2 { font-size: 22px; }
}
