/* ==========================================================
   |   原创设计 版权所有 抄袭必究   |
   |   石家庄云图信息技术有限公司   |
   ========================================================== */

:root {
  --bg: #ffffff;
  --bg-soft: #f7f9fc;
  --bg-deep: #0b1220;
  --surface: #ffffff;
  --ink: #0f172a;
  --ink-2: #475569;
  --ink-3: #8b98ad;
  --line: #e7ecf4;
  --line-2: #f0f3f8;

  --brand: #2563eb;
  --brand-d: #1d4ed8;
  --brand-l: #eff5ff;
  --cyan: #06b6d4;
  --violet: #7c3aed;
  --green: #10b981;
  --amber: #f59e0b;
  --red: #ef4444;

  --grad: linear-gradient(120deg, #2563eb 0%, #06b6d4 100%);
  --grad-soft: linear-gradient(120deg, #eff5ff 0%, #eefbfe 100%);

  --r-sm: 8px;
  --r: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  --sh-1: 0 1px 2px rgba(15, 23, 42, .05);
  --sh-2: 0 4px 16px rgba(15, 23, 42, .06);
  --sh-3: 0 12px 36px rgba(15, 23, 42, .09);
  --sh-brand: 0 10px 30px rgba(37, 99, 235, .22);

  --maxw: 1180px;
  --nav-h: 66px;

  --font: "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", "Hiragino Sans GB",
          -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono: "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }

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

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

::selection { background: rgba(37, 99, 235, .16); }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; overflow-x: clip; }
.section { padding: 92px 0; position: relative; }
.section--soft { background: var(--bg-soft); }
.section--tight { padding: 64px 0; }

.sec-head { max-width: 920px; margin: 0 auto 52px; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; letter-spacing: .04em;
  color: var(--brand); background: var(--brand-l);
  border: 1px solid rgba(37, 99, 235, .14);
  padding: 5px 13px; border-radius: 999px; margin-bottom: 18px;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }
.sec-title { font-size: clamp(26px, 3.4vw, 38px); }
.sec-sub { margin-top: 14px; color: var(--ink-2); font-size: 16px; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 46px; padding: 0 22px; border-radius: 10px;
  font-size: 15px; font-weight: 600; cursor: pointer; border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .22s ease, background .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn--primary { background: var(--grad); color: #fff; box-shadow: var(--sh-brand); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(37, 99, 235, .3); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line); box-shadow: var(--sh-1); }
.btn--ghost:hover { border-color: #cbd8ee; transform: translateY(-2px); box-shadow: var(--sh-2); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { transform: translateY(-2px); background: #1e293b; }
.btn--sm { height: 38px; padding: 0 16px; font-size: 14px; border-radius: 9px; }
.btn--lg { height: 52px; padding: 0 28px; font-size: 16px; }
.btn--block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100; height: calc(var(--nav-h) + env(safe-area-inset-top, 0px)); padding-top: env(safe-area-inset-top, 0px);
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.nav.is-stuck { border-bottom-color: var(--line); box-shadow: 0 2px 18px rgba(15, 23, 42, .04); }
.nav-in { height: var(--nav-h); display: flex; align-items: center; gap: 28px; overflow: visible; }

.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 19px; letter-spacing: -.03em; }
.logo-mark {
  width: 36px; height: 36px; border-radius: 9px; background: var(--grad);
  display: grid; place-items: center; box-shadow: var(--sh-brand); flex: none;
}
.logo-mark svg { width: 24px; height: 24px; }
.logo small { display: block; font-size: 10px; font-weight: 500; letter-spacing: .18em; color: var(--ink-3); margin-top: -4px; }

.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-links a {
  padding: 8px 14px; border-radius: 9px; font-size: 15px; font-weight: 500; color: var(--ink-2);
  transition: color .16s ease, background .16s ease;
}
.nav-links a:hover { color: var(--ink); background: var(--bg-soft); }
.nav-links a.active { color: var(--brand); background: var(--brand-l); font-weight: 600; }
.nav-cta { width: auto; display: flex; align-items: center; gap: 10px; }

.burger {
  display: none; width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line);
  background: #fff; cursor: pointer; align-items: center; justify-content: center; margin-left: auto;
}
.burger span { display: block; width: 17px; height: 2px; background: var(--ink); border-radius: 2px; position: relative; transition: .2s; }
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 17px; height: 2px; background: var(--ink); border-radius: 2px; transition: .2s;
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.burger.on span { background: transparent; }
.burger.on span::before { top: 0; transform: rotate(45deg); }
.burger.on span::after { top: 0; transform: rotate(-45deg); }

.m-menu {
  position: fixed; top: calc(var(--nav-h) + env(safe-area-inset-top, 0px)); left: 0; right: 0; z-index: 99;
  background: #fff; border-bottom: 1px solid var(--line);
  padding: 14px 24px 22px; display: none; box-shadow: var(--sh-3);
  overflow: hidden; /* 兜底：禁止内部任何内容超出右边界 */
}
.m-menu.on { display: block; animation: slideDown .22s ease; }
.m-menu a { display: block; padding: 13px 12px; border-radius: 10px; font-weight: 500; color: var(--ink-2); }
.m-menu a.active { color: var(--brand); background: var(--brand-l); font-weight: 600; }
.m-menu .btn { margin-top: 12px; }
.m-menu a.btn--primary { color: #fff; }
.m-cta { display: flex; gap: 10px; margin-top: 12px; min-width: 0; }
.m-cta .btn { margin-top: 0; padding: 0; flex: 1 1 0; min-width: 0; display: flex; align-items: center; justify-content: center; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.m-cta .btn--sm { height: 46px; padding: 0 0; font-size: 15px; border-radius: 10px; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }


/* 顶部二级导航 */
.nav-item { position: relative; }
.nav-item.has-sub > a { display: inline-flex; align-items: center; }
.caret { display: inline-block; width: 0; height: 0; margin-left: 6px; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 5px solid currentColor; opacity: .65; transition: transform .18s ease; }
.nav-item.has-sub:hover .caret { transform: rotate(180deg); }
.sub-nav { position: absolute; top: calc(100% + 6px); left: 0; min-width: 152px; padding: 8px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 14px 36px rgba(15,23,42,.14); display: flex; flex-direction: column; gap: 2px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .18s ease, transform .18s ease, visibility .18s; z-index: 60; }
.sub-nav::before { content: ""; position: absolute; left: 0; right: 0; top: -10px; height: 10px; }
.nav-item.has-sub:hover .sub-nav,
.nav-item.has-sub:focus-within .sub-nav { opacity: 1; visibility: visible; transform: translateY(0); }
.sub-nav a { display: flex; align-items: center; gap: 9px; padding: 8px 11px; border-radius: 9px; color: var(--ink-2); font-size: 14px; font-weight: 500; white-space: nowrap; }
.sub-nav .si { width: 16px; height: 16px; flex: 0 0 16px; color: var(--brand); }
.sub-nav a:hover { background: var(--brand-l); color: var(--brand); }

/* 移动端二级导航 */
.m-sub { display: none; flex-direction: column; }
.m-sub.open { display: flex; }
.m-sub a { display: flex; align-items: center; gap: 9px; padding: 11px 12px; border-radius: 9px; color: var(--ink-3); font-size: 14px; }
.m-sub .si { width: 16px; height: 16px; flex: 0 0 16px; color: var(--brand); }
.m-sub a:hover { background: var(--brand-l); color: var(--brand); }
.m-toggle { display: flex; align-items: center; justify-content: space-between; }
.m-toggle .caret { margin-left: auto; transition: transform .2s ease; }
.m-toggle.open .caret { transform: rotate(180deg); }

/* 移动端 split-button：「优势」左侧文字可跳转 + 右侧独立按钮展开二级 */
.m-item { display: flex; align-items: center; justify-content: space-between; gap: 8px; min-height: 44px; }
.m-item .m-label { flex: 1 1 auto; }
.m-caret-btn {
  flex: 0 0 auto;
  margin: 15px;
  width: 25px; height: 25px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(15, 23, 42, .06);
  color: var(--ink-2);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background .15s ease, color .15s ease;
}
.m-caret-btn:hover, .m-caret-btn:focus-visible { background: rgba(15, 23, 42, .14); outline: none; }
.m-caret-btn svg { width: 20px; height: 20px; }
.m-caret-btn[aria-expanded="true"] { background: var(--brand); color: #fff; }
.m-caret-btn[aria-expanded="true"] svg { transform: rotate(180deg); }


/* 锚点滚动避让吸顶导航 */
#core, #features, #compare, #plugins, #workflow { scroll-margin-top: calc(var(--nav-h) + 18px); }
/* ---------- Hero ---------- */
.hero { position: relative; padding: 78px 0 76px; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(to right, rgba(37, 99, 235, .05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(37, 99, 235, .05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 90% 62% at 50% 34%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 62% at 50% 34%, #000 40%, transparent 100%);
}
.hero-glow {
  position: absolute; z-index: -1; border-radius: 50%; filter: blur(90px); opacity: .5; pointer-events: none;
}
.hero-glow.a { width: 460px; height: 460px; background: #bfdbfe; top: -170px; left: -110px; }
.hero-glow.b { width: 420px; height: 420px; background: #cffafe; top: -120px; right: -100px; }

.hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 56px; align-items: center; }
.hero h1 { font-size: 42px; line-height: 1.18; letter-spacing: -.035em; min-height: calc(3 * 1.18em); }
.hl-type { display: inline; }
#hlText::after { content: ''; display: inline-block; width: 3px; height: 1.02em; margin-left: 5px; vertical-align: -0.14em; background: linear-gradient(180deg, var(--brand, #4f7cff), var(--brand2, #8a5cff)); border-radius: 2px; animation: hlBlink 1.05s steps(1) infinite; }
@keyframes hlBlink { 0%, 50% { opacity: 1; } 50.01%, 100% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { #hlText::after { animation: none; opacity: 1; } }
.hero-sub { margin-top: 20px; font-size: 17px; color: var(--ink-2); max-width: 520px; }
.hero-acts { margin-top: 20px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-note { margin-top: 20px; font-size: 13.5px; color: var(--ink-3); display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.hero-note b { color: var(--ink-2); font-weight: 600; }

.tagline-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.chip {
  font-size: 13px; color: var(--ink-2); background: #fff; border: 1px solid var(--line);
  padding: 5px 12px; border-radius: 999px; box-shadow: var(--sh-1);
}
.chip b { color: var(--brand); font-weight: 600; }

/* Terminal card */
.term {
  background: var(--bg-deep); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 26px 60px rgba(11, 18, 32, .3); border: 1px solid #1e293b;
}
.term-bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; background: #111a2c; border-bottom: 1px solid #1e293b; }
.term-bar i { width: 10px; height: 10px; border-radius: 50%; display: block; }
.term-bar .r { background: #ff5f57; } .term-bar .y { background: #febc2e; } .term-bar .g { background: #28c840; }
.term-bar span { margin-left: 8px; font-size: 12px; color: #64748b; font-family: var(--mono); }
.term-body { padding: 18px 18px 22px; font-family: var(--mono); font-size: 12.5px; line-height: 2; color: #cbd5e1; }
.term-body .ln { display: flex; gap: 10px; opacity: 0; animation: fadeIn .4s ease forwards; }
.term-body .ln:nth-child(1) { animation-delay: .15s; }
.term-body .ln:nth-child(2) { animation-delay: .45s; }
.term-body .ln:nth-child(3) { animation-delay: .75s; }
.term-body .ln:nth-child(4) { animation-delay: 1.05s; }
.term-body .ln:nth-child(5) { animation-delay: 1.35s; }
.term-body .ln:nth-child(6) { animation-delay: 1.65s; }
.term-body .ln:nth-child(7) { animation-delay: 1.95s; }
.tk { color: #38bdf8; } .tok { color: #34d399; } .tw { color: #fbbf24; } .tc { color: #64748b; } .tp { color: #a78bfa; }
@keyframes fadeIn { to { opacity: 1; } }

.term-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 18px; background: #0d1526; border-top: 1px solid #1e293b;
  font-family: var(--mono); font-size: 11.5px; color: #64748b;
}
.pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: #34d399; display: inline-block; margin-right: 7px; box-shadow: 0 0 0 0 rgba(52, 211, 153, .6); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(52, 211, 153, 0); } 100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); } }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.stat { background: #fff; padding: 26px 22px; text-align: center; }
.stat b { display: block; font-size: 30px; font-weight: 800; letter-spacing: -.03em; }
.stat span { font-size: 13.5px; color: var(--ink-3); }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 20px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-3); border-color: #d8e3f5; }
.card h3 { font-size: 18px; margin-bottom: 10px; }
.card p { color: var(--ink-2); font-size: 14.5px; }
.card .num { position: absolute; right: 18px; top: 10px; font-size: 46px; font-weight: 800; color: var(--line-2); letter-spacing: -.04em; }

.ico {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  margin-bottom: 18px; background: var(--grad-soft); border: 1px solid rgba(37, 99, 235, .12);
}
.ico svg { width: 22px; height: 22px; stroke: var(--brand); }
.ico.cy { background: linear-gradient(120deg, #ecfeff, #f0fdfa); border-color: rgba(6, 182, 212, .16); }
.ico.cy svg { stroke: #0891b2; }
.ico.vi { background: linear-gradient(120deg, #f5f3ff, #faf5ff); border-color: rgba(124, 58, 237, .14); }
.ico.vi svg { stroke: var(--violet); }
.ico.gr { background: linear-gradient(120deg, #ecfdf5, #f0fdf4); border-color: rgba(16, 185, 129, .16); }
.ico.gr svg { stroke: #059669; }
.ico.am { background: linear-gradient(120deg, #fffbeb, #fefce8); border-color: rgba(245, 158, 11, .18); }
.ico.am svg { stroke: #d97706; }

.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.tag { font-size: 12px; color: var(--ink-2); background: var(--bg-soft); border: 1px solid var(--line); padding: 3px 10px; border-radius: 6px; }
.tag.b { color: var(--brand); background: var(--brand-l); border-color: rgba(37, 99, 235, .14); }

/* feature list */
.flist li { display: flex; gap: 11px; align-items: flex-start; padding: 8px 0; font-size: 14.5px; color: var(--ink-2); }
.flist li svg { width: 18px; height: 18px; flex: none; margin-top: 4px; stroke: var(--green); }
.flist li b { color: var(--ink); font-weight: 600; }

/* ---------- Workflow ---------- */
.flow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; align-items: stretch; }
.flow-node {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 20px 16px;
  text-align: center; position: relative; box-shadow: var(--sh-1); transition: .22s;
}
.flow-node:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: #cfdefa; }
.flow-node .fi { width: 40px; height: 40px; margin: 0 auto 12px; border-radius: 12px; background: var(--grad-soft); display: grid; place-items: center; }
.flow-node .fi svg { width: 19px; height: 19px; stroke: var(--brand); }
.flow-node h4 { font-size: 15px; margin-bottom: 6px; }
.flow-node p { font-size: 12.5px; color: var(--ink-3); line-height: 1.6; }
.flow-node::after {
  content: ""; position: absolute; right: -12px; top: 50%; width: 10px; height: 10px;
  border-top: 2px solid #c9d8f2; border-right: 2px solid #c9d8f2; transform: translateY(-50%) rotate(45deg); z-index: 2;
}
.flow-node:last-child::after { display: none; }
.flow-node .step { position: absolute; top: 10px; left: 12px; font-size: 11px; font-weight: 700; color: var(--ink-3); font-family: var(--mono); }

/* ---------- Table ---------- */
.tbl-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-lg); background: #fff; -webkit-overflow-scrolling: touch; }
table { width: 100%; border-collapse: collapse; min-width: 640px; }
th, td { padding: 15px 20px; text-align: left; font-size: 14.5px; border-bottom: 1px solid var(--line-2); }
th { background: var(--bg-soft); font-weight: 600; font-size: 13.5px; color: var(--ink-2); white-space: nowrap; }
td { color: var(--ink-2); }
td:first-child { color: var(--ink); font-weight: 500; }
tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: #fbfcfe; }
.yes { color: var(--green); font-weight: 600; }
.no { color: var(--ink-3); }
.hl { background: #fbfdff; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.plan {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); padding: 32px 28px;
  position: relative; transition: transform .22s ease, box-shadow .22s ease;
}
.plan:hover { transform: translateY(-5px); box-shadow: var(--sh-3); }
.plan.pop { border: 1.5px solid var(--brand); box-shadow: var(--sh-brand); }
.plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #fff; font-size: 12px; font-weight: 700;
  padding: 5px 16px; border-radius: 999px; white-space: nowrap; box-shadow: var(--sh-brand);
}
.plan h3 { font-size: 19px; }
.plan .desc { color: var(--ink-3); font-size: 13.5px; margin-top: 6px; min-height: 42px; }
.plan .price { margin: 18px 0 4px; display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.plan .price .cur { font-size: 20px; font-weight: 700; }
.plan .price .val { font-size: 44px; font-weight: 800; letter-spacing: -.04em; line-height: 1; }
.plan .price .unit { font-size: 14px; color: var(--ink-3); }
.plan .old { font-size: 14px; color: var(--ink-3); margin-bottom: 18px; }
.plan .old s { text-decoration: line-through; }
.plan .old em { font-style: normal; color: var(--red); font-weight: 600; margin-left: 8px; }
.plan ul { margin: 22px 0 26px; }
.plan ul li { display: flex; gap: 10px; align-items: flex-start; padding: 7px 0; font-size: 14px; color: var(--ink-2); }
.plan ul li svg { width: 17px; height: 17px; flex: none; margin-top: 4px; stroke: var(--green); }
.plan ul li.off { color: var(--ink-3); }
.plan ul li.off svg { stroke: #cbd5e1; }

/* ---------- Vendors ---------- */
.vendors { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.vendor {
  display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line);
  border-radius: 10px; padding: 10px 16px; font-size: 14px; color: var(--ink-2); box-shadow: var(--sh-1);
  transition: .2s;
}
.vendor:hover { transform: translateY(-2px); box-shadow: var(--sh-2); color: var(--ink); border-color: #d8e3f5; }
.vendor i { width: 8px; height: 8px; border-radius: 2px; background: var(--grad); display: block; }

/* ---------- Accordion / FAQ ---------- */
.acc { border: 1px solid var(--line); border-radius: var(--r); background: #fff; overflow: hidden; margin-bottom: 12px; transition: box-shadow .2s; }
.acc:hover { box-shadow: var(--sh-2); }
.acc-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 19px 54px 19px 22px; font-size: 15.5px; font-weight: 600; color: var(--ink);
  font-family: var(--font); position: relative; line-height: 1.6;
}
.acc-q::after {
  content: ""; position: absolute; right: 22px; top: 25px; width: 9px; height: 9px;
  border-right: 2px solid var(--ink-3); border-bottom: 2px solid var(--ink-3);
  transform: rotate(45deg); transition: transform .22s ease;
}
.acc.on .acc-q::after { transform: rotate(-135deg); top: 28px; }
.acc.on .acc-q { color: var(--brand); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.acc-a-in { padding: 0 22px 20px; color: var(--ink-2); font-size: 14.5px; }
.acc-a-in code { background: var(--bg-soft); border: 1px solid var(--line); padding: 1px 6px; border-radius: 5px; font-family: var(--mono); font-size: 13px; color: var(--brand); }

/* ---------- Steps ---------- */
.steps { counter-reset: s; display: grid; gap: 18px; }
.step-item {
  display: grid; grid-template-columns: 46px 1fr; gap: 18px; align-items: start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px;
  transition: .22s;
}
.step-item:hover { box-shadow: var(--sh-2); border-color: #d8e3f5; }
.step-item .sn {
  width: 46px; height: 46px; border-radius: 13px; background: var(--grad); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 17px; box-shadow: var(--sh-brand);
}
.step-item h4 { font-size: 17px; margin-bottom: 8px; }
.step-item p { color: var(--ink-2); font-size: 14.5px; }

/* ---------- Pain / Callout ---------- */
.callout {
  background: linear-gradient(120deg, #fff7ed, #fffbeb); border: 1px solid #fde3b5;
  border-radius: var(--r-lg); padding: 24px 26px; display: flex; gap: 16px; align-items: flex-start;
}
.callout svg { width: 22px; height: 22px; stroke: #d97706; flex: none; margin-top: 4px; }
.callout h4 { font-size: 16px; margin-bottom: 6px; color: #92400e; }
.callout p { font-size: 14.5px; color: #a16207; }

.note {
  background: var(--brand-l); border: 1px solid rgba(37, 99, 235, .14); border-radius: var(--r);
  padding: 18px 22px; font-size: 14.5px; color: #1e40af;
}
/* ---------- CTA ---------- */
.cta {
  background: linear-gradient(135deg, #173a6b 0%, #0e6e8c 100%);
  border-radius: var(--r-xl); padding: 62px 48px; text-align: center;
  position: relative; overflow: hidden;
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, #000, transparent 75%);
}
.cta > * { position: relative; }
.cta h2 { color: #fff; font-size: clamp(24px, 3.2vw, 34px); }
.cta p { color: #94a3b8; margin-top: 14px; font-size: 16px; }
.cta .btns { margin-top: 30px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta .btn--ghost { background: rgba(255, 255, 255, .08); color: #fff; border-color: rgba(255, 255, 255, .18); box-shadow: none; }
.cta .btn--ghost:hover { background: rgba(255, 255, 255, .14); border-color: rgba(255, 255, 255, .3); }

/* ---------- Footer ---------- */
.footer { background: #fbfcfe; border-top: 1px solid var(--line); padding: 56px 0 26px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.foot-brand p { color: var(--ink-3); font-size: 14px; margin-top: 14px; max-width: 300px; }
.foot-col h5 { font-size: 14px; font-weight: 700; margin: 0 0 14px; }
.foot-col a { display: block; color: var(--ink-3); font-size: 14px; padding: 5px 0; transition: color .16s; }
.foot-col a:hover { color: var(--brand); }
.foot-bot {
  margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: 13px; color: var(--ink-3);
}
.foot-beian { display: inline-flex; gap: 16px; flex-wrap: wrap; }
.foot-beian a { color: var(--ink-3); text-decoration: none; }
.foot-beian a:hover { color: var(--brand); }
.kw { margin-top: 16px; font-size: 12.5px; color: #b3bdcc; line-height: 2; }

/* ---------- Reveal ---------- */
.rv { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.rv.in { opacity: 1; transform: none; }

/* ---------- Search box ---------- */
.searchbox { position: relative; max-width: 520px; margin: 0 auto 34px; }
.searchbox input {
  width: 100%; height: 50px; border-radius: 12px; border: 1px solid var(--line); background: #fff;
  padding: 0 18px 0 46px; font-size: 15px; font-family: var(--font); color: var(--ink);
  box-shadow: var(--sh-1); outline: none; transition: .2s;
}
.searchbox input:focus { border-color: var(--brand); box-shadow: 0 0 0 4px rgba(37, 99, 235, .1); }
.searchbox svg { position: absolute; left: 16px; top: 15px; width: 19px; height: 19px; stroke: var(--ink-3); }
.no-result { text-align: center; color: var(--ink-3); padding: 30px; display: none; }

/* ---------- Page hero (inner pages) ---------- */
.phero { padding: 62px 0 46px; position: relative; overflow: hidden; text-align: center; }
.phero h1 { font-size: clamp(28px, 4vw, 42px); }
.phero p { margin: 16px auto 0; max-width: 760px; color: var(--ink-2); font-size: 16.5px; }

.crumb { font-size: 13px; color: var(--ink-3); margin-bottom: 16px; }
.crumb a:hover { color: var(--brand); }

/* ---------- Misc ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split.rev .split-txt { order: 2; }
.mini-list li { display: flex; gap: 10px; padding: 6px 0; font-size: 14.5px; color: var(--ink-2); }
.mini-list li i { width: 5px; height: 5px; border-radius: 50%; background: var(--brand); margin-top: 11px; flex: none; }

.code-block {
  background: var(--bg-deep); border-radius: var(--r); padding: 18px 20px; overflow-x: auto;
  font-family: var(--mono); font-size: 13px; line-height: 1.9; color: #cbd5e1; border: 1px solid #1e293b;
}

.badge-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.badge { font-size: 12px; font-weight: 600; padding: 4px 11px; border-radius: 7px; }
.badge.b { color: var(--brand); background: var(--brand-l); }
.badge.g { color: #047857; background: #ecfdf5; }
.badge.v { color: #6d28d9; background: #f5f3ff; }
.badge.a { color: #b45309; background: #fffbeb; }

.timeline { position: relative; padding-left: 30px; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(180deg, var(--brand), var(--cyan), transparent); }
.tl-item { position: relative; padding: 0 0 30px; }
.tl-item::before { content: ""; position: absolute; left: -30px; top: 7px; width: 16px; height: 16px; border-radius: 50%; background: #fff; border: 3px solid var(--brand); }
.tl-item time { font-size: 13px; font-weight: 700; color: var(--brand); font-family: var(--mono); }
.tl-item h4 { font-size: 16.5px; margin: 5px 0 6px; }
.tl-item p { font-size: 14.5px; color: var(--ink-2); }

.contact-card { display: flex; gap: 14px; align-items: flex-start; padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); transition: .22s; position: relative; }
.contact-card:hover { box-shadow: var(--sh-2); transform: translateY(-3px); }
.contact-card .ci { width: 42px; height: 42px; border-radius: 12px; background: var(--grad-soft); display: grid; place-items: center; flex: none; }
.contact-card .ci svg { width: 20px; height: 20px; stroke: var(--brand); }
.contact-card h4 { font-size: 15px; margin-bottom: 4px; }
.contact-card p { font-size: 14px; color: var(--ink-2); word-break: break-all; }
/* 整卡点击覆盖（"联系我们"三项跳转在线客服） */
.contact-card-link { position: absolute; inset: 0; z-index: 1; border-radius: inherit; }

.plugin {
  background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px;
  font-size: 13.5px; color: var(--ink-2); display: flex; align-items: center; gap: 9px; transition: .18s;
}
.plugin:hover { border-color: #cfdefa; color: var(--ink); box-shadow: var(--sh-1); }
.plugin i { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); flex: none; }

/* ---------- 插件/授权目录 (Tab) ---------- */
.dir-tabs {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  position: sticky; top: var(--nav-h); z-index: 40;
  background: var(--bg); padding: 14px 0 16px; margin-bottom: 22px;
  border-bottom: 1px solid var(--line); box-shadow: 0 6px 16px rgba(15, 23, 42, .05);
}
.dir-tab {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  padding: 10px 18px; border-radius: 999px; background: #fff;
  border: 1px solid var(--line); color: var(--ink-2); font-size: 14.5px; font-weight: 600;
  font-family: var(--font); transition: .18s ease;
}
.dir-tab span { font-size: 12px; background: var(--bg-soft); color: var(--ink-3); padding: 2px 9px; border-radius: 999px; transition: .18s; }
.dir-tab:hover { border-color: #cbd8ee; color: var(--ink); }
.dir-tab.on { background: var(--grad); color: #fff; border-color: transparent; box-shadow: var(--sh-brand); }
.dir-tab.on span { background: rgba(255, 255, 255, .22); color: #fff; }

.dir-panel { display: none; }
.dir-panel.on { display: block; animation: fadeIn .3s ease; }
.dir-cat { margin-bottom: 8px; }
.dir-h3 { font-size: 16px; font-weight: 700; margin: 26px 0 13px; display: flex; align-items: center; gap: 10px; }
.dir-h3::before { content: ""; width: 4px; height: 16px; border-radius: 2px; background: var(--grad); }
.dir-num { font-size: 12px; font-weight: 600; color: var(--ink-3); background: var(--bg-soft); border: 1px solid var(--line); padding: 1px 9px; border-radius: 999px; }
.dir-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 18px; }
.dir-list li {
  background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 11px 14px;
  font-size: 13.5px; transition: .18s ease;
}
.dir-list li:hover { border-color: #cfdefa; box-shadow: var(--sh-1); }
.dir-list li b { display: block; color: var(--ink); font-weight: 600; font-size: 13.5px; margin-bottom: 2px; }
.dir-list li span { color: var(--ink-3); font-size: 12.5px; line-height: 1.6; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-sub { max-width: none; }
  .flow { grid-template-columns: repeat(3, 1fr); }
  .flow-node:nth-child(3)::after { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .split { gap: 32px; }
}

@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .section { padding: 66px 0; }
  .g3, .g2, .price-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .split, .split.rev .split-txt { grid-template-columns: 1fr; order: 0; }
  .hero { padding: 56px 0 58px; }
  .cta { padding: 46px 24px; }
  .plan.pop { transform: none; }
}

@media (max-width: 620px) {
  .wrap { padding: 0 18px; }
  .flow { grid-template-columns: 1fr; }
  .flow-node::after { display: none; }
  .sec-head { margin-bottom: 36px; }
  .card { padding: 22px; }
  .stat b { font-size: 25px; }
  .foot-grid { grid-template-columns: 1fr; gap: 26px; }
  .term-body { font-size: 11px; padding: 14px; }
  .btn { width: 100%; }
  .hero h1 { font-size: 28px; }
  .grid.g2.rv { grid-template-columns: repeat(2, 1fr); }
  .page-about .grid.g2.rv { grid-template-columns: 1fr; }
  .hero-acts { flex-direction: column; }
  .cta .btns .btn { width: 100%; }
  .step-item { grid-template-columns: 1fr; gap: 12px; }
  .plan { padding: 26px 22px; }
  .acc-q { font-size: 15px; padding: 17px 46px 17px 18px; }
  .contact-card { padding: 18px; }
  .timeline { padding-left: 26px; }
  .dir-list { grid-template-columns: 1fr; }
  .dir-tabs { gap: 8px; }
  .dir-tab { padding: 8px 14px; font-size: 13.5px; }
  .m-cta .btn { width: auto; }
  .m-menu { padding: 14px 18px 22px; }
  .m-menu a { padding: 13px 8px; }
}

/* ---------- 品牌标语 (logo 后) ---------- */
.brand-slogan {
  font-size: 13px; color: var(--ink-3); white-space: nowrap;
  padding-left: 14px; margin-left: 4px; position: relative; letter-spacing: .01em;
}
.brand-slogan::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 18px; background: var(--line);
}
@media (max-width: 860px) { .brand-slogan { display: none; } }

/* ---------- 页脚主办单位 / 备案 / 友情链接 ---------- */
.foot-flinks { font-size: 13px; color: var(--ink-3); }
.foot-flinks a { color: var(--ink-3); text-decoration: none; }
.foot-flinks a:hover { color: var(--brand); }

/* ---------- 右下角悬浮按钮 ---------- */
.fab { position: fixed; right: max(22px, env(safe-area-inset-right, 0px)); bottom: max(22px, env(safe-area-inset-bottom, 0px)); z-index: 300; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.fab-item {
  position: relative; width: 48px; height: 48px; border-radius: 14px;
  background: var(--grad); color: #fff; display: grid; place-items: center;
  box-shadow: var(--sh-brand); cursor: pointer; border: none; text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.fab-item:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(37, 99, 235, .32); }
.fab-item svg { width: 22px; height: 22px; }
.fab-item.fab-top { background: #0f172a; box-shadow: 0 10px 24px rgba(15, 23, 42, .25); }
.fab-item.fab-top:hover { background: #1e293b; }
.fab-tip {
  position: absolute; right: 58px; top: 50%; transform: translateY(-50%) translateX(6px);
  background: #0f172a; color: #fff; font-size: 12.5px; font-weight: 600; padding: 6px 11px; border-radius: 8px;
  white-space: nowrap; opacity: 0; pointer-events: none; transition: .18s ease;
}
.fab-item:hover .fab-tip { opacity: 1; transform: translateY(-50%) translateX(0); }
.fab-pop {
  position: absolute; right: 58px; bottom: 0; width: 188px; background: #fff;
  border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--sh-3); padding: 14px;
  opacity: 0; transform: translateY(8px) scale(.96); transform-origin: bottom right; pointer-events: none;
  transition: .2s ease;
}
.fab-wx.on .fab-pop,
.fab-wx:hover .fab-pop,
.fab-wx:focus-within .fab-pop { opacity: 1; transform: none; pointer-events: auto; }
.fab-qr {
  height: 150px; border: 1px dashed var(--line); border-radius: 10px; display: grid; place-items: center;
  color: var(--ink-3); font-size: 13px; background: var(--bg-soft); text-align: center; padding: 10px;
}
.fab-qr img { width: 100%; height: 100%; object-fit: contain; display: block; border-radius: 8px; }
.fab-pop p { text-align: center; font-size: 12.5px; color: var(--ink-2); margin-top: 10px; }
@media (max-width: 620px) {
  .fab { right: max(14px, env(safe-area-inset-right, 0px)); bottom: max(14px, env(safe-area-inset-bottom, 0px)); gap: 10px; }
  .fab-item { width: 44px; height: 44px; }
  .fab-item svg { width: 20px; height: 20px; }
}

/* ---------- 商标免责声明 ---------- */
.foot-tm { font-size: 12px; line-height: 1.7; color: var(--ink-3); margin-top: 10px; }


/* ---------- 动态 / 文章页 ---------- */
.news-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.news-card { display: flex; flex-direction: column; min-width: 0; }
.news-card .nc-top { display: flex; gap: 10px; align-items: center; font-size: 13px; color: var(--ink-3); margin-bottom: 12px; flex-wrap: wrap; }
.news-card .nc-top .cat { color: var(--brand); background: var(--brand-l); border: 1px solid rgba(37, 99, 235, .14); padding: 3px 11px; border-radius: 999px; font-weight: 600; }
.news-card .nc-top .soon { color: var(--ink-3); background: var(--bg-soft); border: 1px solid var(--line); padding: 3px 11px; border-radius: 999px; font-weight: 600; }
.news-card h3 { font-size: 19px; margin-bottom: 10px; line-height: 1.45; overflow-wrap: anywhere; word-break: break-word; }
.news-card h3 a { color: var(--ink); }
.news-card h3 a:hover { color: var(--brand); }
.news-card p { color: var(--ink-2); font-size: 14.5px; flex: 1; overflow-wrap: anywhere; word-break: break-word; }
.news-card .nc-more { margin-top: 16px; font-weight: 600; color: var(--brand); font-size: 14px; }
.post { max-width: 820px; margin: 0 auto; }
.post-meta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; font-size: 13.5px; color: var(--ink-3); margin: 18px 0 18px; }
.post-meta .cat { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }
.post-meta .cat a, .post-meta .cat .tag { color: var(--brand); background: var(--brand-l); border: 1px solid rgba(37,99,235,.14); padding: 3px 12px; border-radius: 999px; font-weight: 600; text-decoration: none; }
.post-body { margin-top: 26px; font-size: 16.5px; line-height: 1.95; color: var(--ink-2); }
.post-body h2 { font-size: 24px; color: var(--ink); margin: 38px 0 14px; letter-spacing: -.02em; }
.post-body h3 { font-size: 19px; color: var(--ink); margin: 28px 0 10px; }
.post-body p { margin: 14px 0; }
.post-body ul.fa { margin: 14px 0; padding: 0; list-style: none; }
.post-body ul.fa li { position: relative; padding-left: 22px; margin: 8px 0; }
.post-body ul.fa li::before { content: ""; position: absolute; left: 6px; top: 12px; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }
.post-body blockquote { margin: 22px 0; padding: 16px 20px; border-left: 3px solid var(--brand); background: var(--brand-l); border-radius: 0 10px 10px 0; color: var(--ink); font-size: 15.5px; }
.post-body strong { color: var(--ink); }
.post-body code { background: var(--bg-soft); border: 1px solid var(--line); padding: 1px 6px; border-radius: 5px; font-family: var(--mono); font-size: 14px; color: var(--brand); }
.post-body table { width: 100%; border-collapse: collapse; margin: 22px 0; font-size: 15px; }
.post-body th, .post-body td { border: 1px solid var(--line); padding: 11px 14px; text-align: left; vertical-align: top; }
.post-body th { background: var(--brand-l); color: var(--brand); font-weight: 600; }
.post-body tbody tr:nth-child(even) td { background: var(--bg-soft); }
@media (max-width: 860px) { .news-list { grid-template-columns: minmax(0, 1fr); } }

/* 内联"关注我们"二维码悬停 */
.qr-hover { position: relative; color: var(--brand); font-weight: 700; cursor: pointer; }
.qr-hover .qr-pop {
  position: absolute; left: 50%; bottom: calc(100% + 12px); transform: translateX(-50%) translateY(8px);
  width: 180px; background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--sh-3); padding: 14px; opacity: 0; pointer-events: none; transition: .2s ease; z-index: 30;
}
.qr-hover .qr-pop::after {
  content: ""; position: absolute; left: 50%; bottom: -7px; transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px; background: #fff; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.qr-hover:hover .qr-pop, .qr-hover:focus .qr-pop, .qr-hover:focus-within .qr-pop { opacity: 1; transform: translateX(-50%) translateY(0); }
.qr-hover .qr-img {
  display: grid; place-items: center; height: 140px; border: 1px dashed var(--line);
  border-radius: 10px; background: var(--bg-soft); color: var(--ink-3); font-size: 13px; text-align: center; padding: 10px;
}
.qr-hover .qr-img img { width: 100%; height: 100%; object-fit: contain; display: block; border-radius: 8px; }
.qr-hover .qr-pop em { display: block; text-align: center; font-style: normal; font-size: 12.5px; color: var(--ink-2); margin-top: 10px; }

/* 动态列表分页（为后期接入 CMS 预留） */
.pager { display: flex; gap: 8px; justify-content: center; align-items: center; margin-top: 34px; flex-wrap: wrap; }
.pager button {
  min-width: 40px; height: 40px; padding: 0 14px; border: 1px solid var(--line); background: #fff;
  border-radius: 10px; font-family: var(--font); font-size: 14px; font-weight: 600; color: var(--ink-2);
  cursor: pointer; transition: .18s ease;
}
.pager button:hover:not(:disabled) { border-color: #cdddf3; color: var(--brand); }
.pager button.on { background: var(--brand); border-color: var(--brand); color: #fff; box-shadow: var(--sh-brand); }
.pager button:disabled { opacity: .4; cursor: not-allowed; }

/* ===== 动态栏目 · pbootcms 子栏目筛选（对齐简部风格） ===== */
.news-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.news-filter a {
  padding: 4px 14px; border: 1px solid var(--line); border-radius: 999px;
  font-size: 14px; font-weight: 600; color: var(--ink-2); text-decoration: none; transition: .18s ease;
}
.news-filter a:hover { border-color: #cdddf3; color: var(--brand); }
.news-filter a.active { background: var(--brand); border-color: var(--brand); color: #fff; box-shadow: var(--sh-brand); }

/* pbootcms 原生分页条对齐简部按钮风格 */
.pager .page-status { width: 100%; text-align: center; color: var(--ink-3); font-size: 13px; margin-bottom: 10px; }
.pager .page-index a,
.pager .page-pre a,
.pager .page-next a,
.pager .page-last a,
.pager .page-numbar a,
.pager .page-num {
  min-width: 40px; height: 40px; padding: 0 14px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); background: #fff; border-radius: 10px; font-family: var(--font);
  font-size: 14px; font-weight: 600; color: var(--ink-2); text-decoration: none; transition: .18s ease; margin: 0 2px;
}
.pager .page-index a:hover,
.pager .page-pre a:hover,
.pager .page-next a:hover,
.pager .page-last a:hover,
.pager .page-numbar a:hover,
.pager .page-num:hover { border-color: #cdddf3; color: var(--brand); }
.pager .page-num.page-num-current { background: var(--brand); border-color: var(--brand); color: #fff; box-shadow: var(--sh-brand); }
.pager .page-none { color: var(--ink-3); font-size: 14px; }
