/* =============================================================
   Theme Style — 爱思助手主题样式（SEO 友好 · 2025 主题色）
   ============================================================= */
:root {
  --color-primary: #0066FF;
  --color-primary-dark: #0052cc;
  --color-primary-light: #3399ff;
  --color-text: #0f172a;
  --color-text-muted: #64748b;
}

/* ── 基础重置 ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", Arial, sans-serif; color: var(--color-text); background: #fff; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { max-width: 1360px; margin: 0 auto; padding: 0 40px; }

/* ══════════════════════════
   导航栏
══════════════════════════ */
.nav-bar { background: rgba(255,255,255,.96); backdrop-filter: blur(12px); border-bottom: 1px solid #edf0f7; position: sticky; top: 0; z-index: 100; }
.admin-bar .nav-bar { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .nav-bar { top: 46px; } }
.nav-container { max-width: 1360px; margin: 0 auto; padding: 0 40px; height: 60px; display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; flex-shrink: 0; }
.nav-brand img { height: 36px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; }
.nav-links ul { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav-links li { position: relative; }
.nav-links li a { display: block; padding: 6px 13px; border-radius: 6px; font-size: 14px; color: #475569; transition: background .18s, color .18s; text-decoration: none; }
.nav-links li a:hover,
.nav-links li.current-menu-item > a,
.nav-links li.current-menu-ancestor > a { background: #eef4ff; color: var(--color-primary); }
.nav-toggle { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 40px; height: 40px; border-radius: 8px; cursor: pointer; background: none; border: none; padding: 0; flex-shrink: 0; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: #0d1117; border-radius: 2px; transition: transform .28s ease, opacity .2s ease, width .2s ease; transform-origin: center; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-drawer { display: none; position: absolute; top: 60px; left: 0; right: 0; background: #fff; border-bottom: 1px solid #edf0f7; box-shadow: 0 8px 24px rgba(0,0,0,.08); overflow: hidden; max-height: 0; transition: max-height .35s cubic-bezier(.4,0,.2,1), opacity .3s ease; opacity: 0; }
.nav-drawer.open { max-height: 400px; opacity: 1; }
.nav-drawer-inner { padding: 12px 16px 16px; }
.nav-drawer-inner ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.nav-drawer-inner li { list-style: none; }
.nav-drawer-inner li a { display: block; padding: 11px 14px; border-radius: 8px; font-size: 15px; color: #475569; font-weight: 500; transition: background .18s, color .18s; text-decoration: none; }
.nav-drawer-inner li a:hover,
.nav-drawer-inner li.current-menu-item > a { background: #eef4ff; color: var(--color-primary); }
.nav-drawer-inner li.current-menu-item > a { font-weight: 700; }

/* ══════════════════════════
   首页（E-E-A-T + SEO 布局）
══════════════════════════ */
.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; }

/* Hero */
.hp-hero { background: #0066FF; padding: 64px 0 72px; }
.hp-hero-in { display: flex; align-items: center; gap: 48px; min-height: 420px; }
.hp-hero-copy { flex: 1; color: #fff; }
.hp-hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); border-radius: 100px; padding: 6px 16px; font-size: 12.5px; color: rgba(255,255,255,.9); margin-bottom: 24px; }
.hp-hero-dot { width: 7px; height: 7px; border-radius: 50%; background: #6ee7b7; animation: pdpulse 2s infinite; }
@keyframes pdpulse { 0%, 100% { opacity: 1; } 50% { opacity: .5; } }
.hp-hero-h1 { font-size: 38px; font-weight: 900; line-height: 1.25; color: #fff; margin-bottom: 16px; letter-spacing: -.5px; }
.hp-hero-desc { font-size: 15px; color: rgba(255,255,255,.85); line-height: 1.8; margin-bottom: 28px; max-width: 480px; }
.hp-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.hp-hero-btn { display: inline-flex; align-items: center; padding: 13px 32px; border-radius: 9px; font-size: 14.5px; font-weight: 700; transition: opacity .2s, transform .1s; text-decoration: none; }
.hp-hero-btn.primary { background: #fff; color: var(--color-primary); box-shadow: 0 4px 16px rgba(0,0,0,.12); }
.hp-hero-btn.primary:hover { opacity: .93; transform: translateY(-2px); }
.hp-hero-btn.secondary { border: 1.5px solid rgba(255,255,255,.5); color: #fff; }
.hp-hero-btn.secondary:hover { background: rgba(255,255,255,.1); }
.hp-hero-note { font-size: 12px; color: rgba(255,255,255,.5); margin: 0; }
.hp-hero-vis { flex: 0 0 480px; display: flex; align-items: flex-end; justify-content: center; }
.hp-hero-vis img { width: 100%; max-width: 520px; height: auto; border-radius: 12px; }

/* Trust 权威数据 */
.hp-trust { background: #fff; border-bottom: 1px solid #e8edf6; }
.hp-trust-list { display: grid; grid-template-columns: repeat(5, 1fr); list-style: none; margin: 0; padding: 0; }
.hp-trust-item { text-align: center; padding: 28px 16px; border-right: 1px solid #e8edf6; }
.hp-trust-item:last-child { border-right: none; }
.hp-trust-num { display: block; font-size: 26px; font-weight: 900; color: var(--color-primary); line-height: 1.2; }
.hp-trust-num small { font-size: 14px; }
.hp-trust-lbl { display: block; font-size: 12px; color: #94a3b8; margin-top: 6px; }

/* Cap 核心能力 */
.hp-cap { background: #f8faff; padding: 72px 0; }
.hp-cap-hd { text-align: center; margin-bottom: 40px; }
.hp-cap-hd h2 { font-size: 28px; font-weight: 800; color: var(--color-text); margin-bottom: 10px; }
.hp-cap-hd p { font-size: 15px; color: var(--color-text-muted); margin: 0; }
.hp-cap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; list-style: none; margin: 0; padding: 0; }
.hp-cap-item { background: #fff; border-radius: 14px; padding: 24px; border: 1px solid #e8eef8; transition: box-shadow .2s; }
.hp-cap-item:hover { box-shadow: 0 8px 28px rgba(0,102,255,.1); }
.hp-cap-ico { width: 44px; height: 44px; border-radius: 12px; background: #eef6ff; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.hp-cap-ico svg { width: 22px; height: 22px; fill: var(--color-primary); }
.hp-cap-item h3 { font-size: 15px; font-weight: 800; color: var(--color-text); margin-bottom: 8px; }
.hp-cap-item p { font-size: 13px; color: var(--color-text-muted); line-height: 1.7; margin: 0; }

/* Prod 产品矩阵 */
.hp-prod { background: #fff; padding: 72px 0; }
.hp-prod-hd { text-align: center; margin-bottom: 40px; }
.hp-prod-hd h2 { font-size: 28px; font-weight: 800; color: var(--color-text); margin-bottom: 10px; }
.hp-prod-hd p { font-size: 15px; color: var(--color-text-muted); margin: 0; }
.hp-prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hp-prod-card { background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid #e8eef8; transition: box-shadow .25s, transform .2s; }
.hp-prod-card:hover { box-shadow: 0 12px 36px rgba(0,102,255,.12); transform: translateY(-3px); }
.hp-prod-vis { aspect-ratio: 16/10; overflow: hidden; background: #f4f7fd; }
.hp-prod-vis img { width: 100%; height: 100%; object-fit: cover; }
.hp-prod-body { padding: 20px; }
.hp-prod-body h3 { font-size: 17px; font-weight: 800; color: var(--color-text); margin-bottom: 6px; }
.hp-prod-body p { font-size: 13px; color: var(--color-text-muted); margin-bottom: 16px; line-height: 1.6; }
.hp-prod-btn { display: inline-flex; align-items: center; padding: 10px 24px; background: var(--color-primary); color: #fff !important; border-radius: 8px; font-size: 14px; font-weight: 700; text-decoration: none; transition: opacity .2s; }
.hp-prod-btn:hover { opacity: .9; }

/* Compat 兼容机型与系统（SEO 友好） */
.hp-compat { background: #f8faff; padding: 72px 0; }
.hp-compat-hd { text-align: center; margin-bottom: 36px; }
.hp-compat-hd h2 { font-size: 28px; font-weight: 800; color: var(--color-text); margin-bottom: 10px; }
.hp-compat-hd p { font-size: 15px; color: var(--color-text-muted); margin: 0; }
.hp-compat-wrap { max-width: 720px; margin: 0 auto; overflow-x: auto; border-radius: 12px; border: 1px solid #e8eef8; background: #fff; }
.hp-compat-tbl { width: 100%; border-collapse: collapse; font-size: 14px; }
.hp-compat-tbl th { background: var(--color-primary); color: #fff; font-weight: 700; padding: 14px 20px; text-align: left; }
.hp-compat-tbl th:first-child { border-radius: 11px 0 0 0; }
.hp-compat-tbl th:last-child { border-radius: 0 11px 0 0; }
.hp-compat-tbl td { padding: 12px 20px; color: #475569; border-bottom: 1px solid #f0f4fb; }
.hp-compat-tbl tr:last-child td { border-bottom: none; }
.hp-compat-tbl tr:nth-child(even) td { background: #fafcff; }
.hp-compat-bad { display: inline-flex; font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 100px; }
.hp-compat-bad.latest { background: #dbeafe; color: var(--color-primary); }
.hp-compat-bad { background: #dcfce7; color: #166534; }
.hp-compat-note { text-align: center; font-size: 13px; color: var(--color-text-muted); margin: 20px 0 0; line-height: 1.6; }

/* About 爱思助手详细介绍（左右图文布局） */
.hp-about { background: #fff; padding: 72px 0; border-top: 1px solid #f0f4fb; }
.hp-about-hd { text-align: center; margin-bottom: 40px; }
.hp-about-hd h2 { font-size: 28px; font-weight: 800; color: var(--color-text); margin: 0; }
.hp-about-layout { display: flex; align-items: flex-start; gap: 48px; max-width: 1100px; margin: 0 auto; }
.hp-about-vis { flex: 0 0 42%; }
.hp-about-vis img { width: 100%; height: auto; border-radius: 12px; display: block; box-shadow: 0 12px 36px rgba(0,0,0,.08); }
.hp-about-body { flex: 1; min-width: 0; }
.hp-about-body p { font-size: 15px; color: #475569; line-height: 1.9; margin-bottom: 22px; }
.hp-about-body p:last-child { margin-bottom: 0; }
@media (max-width: 900px) {
  .hp-about-layout { flex-direction: column; gap: 32px; }
  .hp-about-vis { flex: none; width: 100%; max-width: 480px; margin: 0 auto; }
}

/* News 新闻中心 */
.hp-news { background: #fff; padding: 64px 0 72px; border-top: 1px solid #f0f4fb; }
.hp-news-hd { text-align: center; margin-bottom: 28px; }
.hp-news-hd h2 { font-size: 28px; font-weight: 800; color: var(--color-text); margin: 0; }
.hp-news-tabs { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 24px; border-bottom: 1px solid #e2e8f0; }
.hp-news-tab { padding: 12px 16px; font-size: 14px; font-weight: 600; color: var(--color-text-muted); background: none; border: none; border-bottom: 3px solid transparent; margin-bottom: -1px; cursor: pointer; transition: color .2s, border-color .2s; }
.hp-news-tab:hover { color: var(--color-text); }
.hp-news-tab.active { color: var(--color-primary); border-bottom-color: var(--color-primary); }
.hp-news-pane { display: none; }
.hp-news-pane.active { display: block; }
.hp-news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 0; padding: 0; list-style: none; }
.hp-news-grid .tutorial-card { list-style: none; }
.hp-news-empty { text-align: center; padding: 48px 20px; color: var(--color-text-muted); margin: 0; }
.hp-news-more { text-align: center; margin: 32px 0 0; }
.hp-news-btn { display: inline-flex; padding: 12px 32px; font-size: 14px; font-weight: 600; color: var(--color-primary); border: 2px solid var(--color-primary); border-radius: 8px; text-decoration: none; transition: background .2s, color .2s; }
.hp-news-btn:hover { background: var(--color-primary); color: #fff; }

/* Reviews 用户真实体验 */
.hp-reviews { background: #f8faff; padding: 72px 0; }
.hp-reviews-hd { text-align: center; margin-bottom: 40px; }
.hp-reviews-hd h2 { font-size: 28px; font-weight: 800; color: var(--color-text); margin-bottom: 10px; }
.hp-reviews-hd p { font-size: 15px; color: var(--color-text-muted); margin: 0; }
.hp-reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; list-style: none; margin: 0; padding: 0; }
.hp-reviews-item { background: #fff; border-radius: 14px; padding: 28px; border: 1px solid #e8eef8; transition: box-shadow .2s; }
.hp-reviews-item:hover { box-shadow: 0 8px 28px rgba(0,102,255,.08); }
.hp-reviews-stars { color: #fbbf24; font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.hp-reviews-item p { font-size: 14px; color: #475569; line-height: 1.85; margin-bottom: 20px; }
.hp-reviews-user { font-size: 13px; color: #94a3b8; }

/* FAQ */
.hp-faq { background: #fff; padding: 72px 0; }
.hp-faq-hd { text-align: center; margin-bottom: 40px; }
.hp-faq-hd h2 { font-size: 28px; font-weight: 800; color: var(--color-text); margin-bottom: 10px; }
.hp-faq-hd p { font-size: 15px; color: var(--color-text-muted); margin: 0; }
.hp-faq-list { max-width: 800px; margin: 0 auto; }
.hp-faq-item { border: 1px solid #e8eef8; border-radius: 12px; margin-bottom: 12px; overflow: hidden; background: #fff; }
.hp-faq-item summary { padding: 18px 24px; font-size: 15px; font-weight: 600; color: var(--color-text); cursor: pointer; }
.hp-faq-item[open] summary { border-bottom: 1px solid #f0f4fb; color: var(--color-primary); }
.hp-faq-item p { padding: 18px 24px; font-size: 14px; color: var(--color-text-muted); line-height: 1.9; margin: 0; }

/* CTA */
.hp-cta { background: #0066FF; padding: 64px 0; text-align: center; }
.hp-cta h2 { font-size: 28px; font-weight: 900; color: #fff; margin-bottom: 10px; }
.hp-cta p { font-size: 14px; color: rgba(255,255,255,.8); margin-bottom: 28px; }
.hp-cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.hp-cta-btn { display: inline-flex; align-items: center; padding: 13px 36px; border-radius: 9px; font-size: 14.5px; font-weight: 700; text-decoration: none; transition: opacity .2s; }
.hp-cta-btn:not(.ghost) { background: #fff; color: var(--color-primary); }
.hp-cta-btn.ghost { border: 2px solid rgba(255,255,255,.6); color: #fff; }
.hp-cta-btn:hover { opacity: .92; }

@media (max-width: 1024px) {
  .hp-hero-in { flex-direction: column; min-height: auto; }
  .hp-hero-vis { flex: none; width: 100%; }
  .hp-cap-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-prod-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hp-trust-list { grid-template-columns: repeat(2, 1fr); }
  .hp-trust-item { border-right: none; border-bottom: 1px solid #e8edf6; }
  .hp-cap-grid { grid-template-columns: 1fr; }
  .hp-prod-grid { grid-template-columns: 1fr; }
  .hp-news-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hp-hero-h1 { font-size: 26px; }
  .hp-news-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════
   产品系列（其他页面可能使用）
══════════════════════════ */
.suite-sec { background: #f8faff; padding: 80px 0; }
.s-hd { text-align: center; margin-bottom: 44px; padding: 0 16px; }
.s-hd h2 { font-size: 30px; font-weight: 900; color: #0d1117; margin-bottom: 10px; }
.s-hd p { font-size: 15px; color: #7c8899; margin-bottom: 0; }
.suite-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.suite-item { background: #fff; border-radius: 18px; overflow: hidden; border: 1px solid #e4ebf7; transition: box-shadow .3s, transform .25s; display: flex; flex-direction: column; }
.suite-item:hover { box-shadow: 0 12px 44px rgba(21,88,212,.12); transform: translateY(-4px); }
.suite-item-hd { padding: 28px 28px 0; }
.suite-illus { width: 100%; border-radius: 16px; overflow: hidden; margin-bottom: 18px; background: #f3f6ff; }
.suite-illus img { width: 100%; height: auto; display: block; }
.item-ico { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.item-ico svg { width: 28px; height: 28px; fill: #fff; }
.item-ico.c-blue { background: linear-gradient(135deg, var(--color-primary), #4d8ef5); }
.item-ico.c-orange { background: linear-gradient(135deg, #ea580c, #fb923c); }
.item-ico.c-violet { background: linear-gradient(135deg, #6d28d9, #a78bfa); }
.item-nm { font-size: 19px; font-weight: 800; color: #0d1117; margin-bottom: 4px; }
.item-plat { font-size: 12.5px; color: #94a3b8; margin-bottom: 20px; }
.item-sep { height: 1px; background: #f0f4fc; margin: 0 28px; }
.item-pts { padding: 18px 28px; flex: 1; display: flex; flex-direction: column; }
.item-pts li { font-size: 13.5px; color: #475569; padding: 9px 0; border-bottom: 1px solid #f5f7fb; display: flex; align-items: center; gap: 10px; }
.item-pts li:last-child { border-bottom: none; }
.item-pts li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--color-primary); flex-shrink: 0; }
.item-cta { padding: 0 28px 28px; }
.item-btn { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 11px 0; width: 100%; border-radius: 9px; font-size: 14px; font-weight: 700; transition: opacity .2s; margin-top: 18px; text-decoration: none; }
.item-btn:hover { opacity: .85; }
.item-btn.c-blue { background: var(--color-primary); color: #fff !important; }
.item-btn.c-orange { background: #ea580c; color: #fff !important; }
.item-btn.c-violet { background: #6d28d9; color: #fff !important; }
.item-btn svg { width: 14px; height: 14px; fill: #fff; }

/* ══════════════════════════
   核心功能
══════════════════════════ */
.fn-sec { background: #fff; padding: 80px 0; }
.fn-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.fn-item { display: flex; gap: 18px; padding: 24px; border: 1px solid #e8edf6; border-radius: 14px; background: #fafcff; transition: box-shadow .25s, border-color .25s; }
.fn-item:hover { box-shadow: 0 6px 24px rgba(21,88,212,.08); border-color: #c7d8f8; }
.fn-ico { width: 48px; height: 48px; border-radius: 12px; background: #eef4ff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fn-ico svg { width: 24px; height: 24px; fill: var(--color-primary); }
.fn-body { flex: 1; min-width: 0; }
.fn-nm { font-size: 15px; font-weight: 800; color: #0d1117; margin-bottom: 6px; }
.fn-txt { font-size: 13px; color: #64748b; line-height: 1.7; }

/* ══════════════════════════
   使用步骤
══════════════════════════ */
.guide-sec { background: #f8faff; padding: 80px 0; }
.guide-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.guide-row::after { content: ""; position: absolute; top: 30px; left: 12%; right: 12%; height: 2px; background: linear-gradient(90deg, var(--color-primary), #4d8ef5); z-index: 0; }
.guide-step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step-no { width: 60px; height: 60px; border-radius: 50%; background: var(--color-primary); color: #fff; font-size: 20px; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; box-shadow: 0 4px 16px rgba(21,88,212,.3); border: 3px solid #fff; }
.step-nm { font-size: 15px; font-weight: 800; color: #0d1117; margin-bottom: 8px; }
.step-txt { font-size: 13px; color: #64748b; line-height: 1.7; }

/* ══════════════════════════
   选择理由
══════════════════════════ */
.why-sec { background: #fff; padding: 80px 0; }
.why-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.why-item { padding: 20px; background: #f8faff; border-radius: 12px; border: 1px solid #e4ebf7; }
.why-ico { width: 40px; height: 40px; border-radius: 10px; background: #eef4ff; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.why-ico svg { width: 20px; height: 20px; fill: var(--color-primary); }
.why-nm { font-size: 14px; font-weight: 800; color: #0d1117; margin-bottom: 5px; }
.why-txt { font-size: 12.5px; color: #64748b; line-height: 1.65; }
.compat-tbl { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.compat-tbl th { background: var(--color-primary); color: #fff; font-weight: 700; padding: 12px 16px; text-align: left; font-size: 13px; }
.compat-tbl th:first-child { border-radius: 10px 0 0 0; }
.compat-tbl th:last-child { border-radius: 0 10px 0 0; }
.compat-tbl td { padding: 11px 16px; color: #475569; border-bottom: 1px solid #f0f4fb; }
.compat-tbl tr:last-child td { border-bottom: none; }
.compat-tbl tr:nth-child(even) td { background: #f8fbff; }
.compat-badge { display: inline-flex; align-items: center; font-size: 12px; font-weight: 700; padding: 2px 9px; border-radius: 100px; }
.compat-badge.latest { background: #dbeafe; color: var(--color-primary); }
.compat-badge.ok { background: #dcfce7; color: #166534; }

/* ══════════════════════════
   新闻资讯 + 教程 Hub
══════════════════════════ */
.digest-sec { background: #fff; padding: 72px 0; border-top: 1px solid #f0f4fb; }
.digest-hd { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.digest-hd h2 { font-size: 18px; font-weight: 900; color: #0d1117; }
.digest-more { display: inline-flex; align-items: center; gap: 3px; font-size: 13px; color: var(--color-primary); font-weight: 600; transition: opacity .18s; }
.digest-more:hover { opacity: .75; }
.digest-more svg { width: 13px; height: 13px; fill: var(--color-primary); }
.digest-feed { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }

/* ── 文章卡片（content-news-card.php）── */
.feed-item { background: #fff; border-radius: 18px; padding: 10px 10px 16px; box-shadow: 0 10px 30px rgba(15,23,42,.04); display: flex; flex-direction: column; transition: transform .18s, box-shadow .18s; }
.feed-item:hover { transform: translateY(-4px); box-shadow: 0 18px 50px rgba(15,23,42,.08); }
.fi-thumb { width: 100%; aspect-ratio: 16/10; border-radius: 14px; overflow: hidden; background: #eef4ff; margin-bottom: 12px; }
.fi-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; display: block; }
.feed-item:hover .fi-thumb img { transform: scale(1.05); }
.fi-body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.fi-title { font-size: 15px; font-weight: 800; color: #0d1117; line-height: 1.55; margin: 2px 4px 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: color .18s; }
.fi-title a { color: inherit; text-decoration: none; }
.feed-item:hover .fi-title { color: var(--color-primary); }
.fi-excerpt { font-size: 13px; color: #64748b; line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; flex: 1; margin: 0 4px 10px; }
.fi-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin: 0 4px; }
.fi-date, .fi-views { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; color: #94a3b8; }
.fi-date svg, .fi-views svg { width: 12px; height: 12px; fill: #b0bec8; }

/* ── 教程 Hub 三列区块 ── */
.hub-sec { background: #f8faff; padding: 80px 0; border-top: 1px solid #edf2ff; }
.hub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: flex-start; }
.hub-col { background: #fff; border-radius: 16px; border: 1px solid #e4ebf7; padding: 22px 22px 18px; box-shadow: 0 6px 24px rgba(15,23,42,.03); display: flex; flex-direction: column; min-height: 0; }
.hub-col-hd h3 { font-size: 16px; font-weight: 800; color: #0f172a; margin-bottom: 6px; }
.hub-col-hd h3 a { color: inherit; text-decoration: none; }
.hub-col-hd p { font-size: 12.5px; color: #64748b; line-height: 1.7; margin-bottom: 10px; }
.hub-more { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; color: var(--color-primary); text-decoration: none; font-weight: 600; margin-bottom: 10px; }
.hub-list { list-style: none; margin: 6px 0 0; padding: 0; border-top: 1px solid #f1f5f9; }
.hub-item { border-bottom: 1px solid #f1f5f9; }
.hub-item:last-child { border-bottom: none; }
.hub-link { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 9px 0; font-size: 13px; color: #1e293b; text-decoration: none; }
.hub-title { flex: 1; min-width: 0; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.hub-date { font-size: 11px; color: #94a3b8; flex-shrink: 0; }
.hub-link:hover .hub-title { color: var(--color-primary); }
.hub-empty { font-size: 12.5px; color: #94a3b8; margin-top: 10px; }

/* ══════════════════════════
   首页教程区块（按栏目切换，SEO 友好）
══════════════════════════ */
.tutorial-sec { background: #fff; padding: 64px 0 72px; border-top: 1px solid #f0f4fb; }
.tutorial-sec-hd { margin-bottom: 28px; text-align: center; }
.tutorial-sec-title { font-size: 28px; font-weight: 800; color: var(--color-text); line-height: 1.35; margin: 0; }
.tutorial-tabs { display: flex; flex-wrap: wrap; gap: 4px 2px; margin-bottom: 24px; padding-bottom: 0; border-bottom: 1px solid #e2e8f0; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.tutorial-tab { padding: 12px 16px; font-size: 14px; font-weight: 600; color: var(--color-text-muted); background: none; border: none; border-bottom: 3px solid transparent; margin-bottom: -1px; border-radius: 6px 6px 0 0; cursor: pointer; transition: color .2s, border-color .2s, background .2s; white-space: nowrap; }
.tutorial-tab:hover { color: var(--color-text); background: #f8fafc; }
.tutorial-tab.active { color: var(--color-primary); border-bottom-color: var(--color-primary); background: transparent; }
.tutorial-pane { display: none; }
.tutorial-pane.active { display: block; }
.tutorial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tutorial-card { background: #fff; border-radius: 12px; overflow: hidden; border: 1px solid #e8eef8; display: flex; flex-direction: column; transition: box-shadow .2s, transform .2s; }
.tutorial-card:hover { box-shadow: 0 12px 32px rgba(15,23,42,.08); transform: translateY(-2px); }
.tc-thumb { position: relative; width: 100%; aspect-ratio: 16/10; overflow: hidden; background: #f1f5f9; }
.tc-thumb a { display: block; width: 100%; height: 100%; }
.tc-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; display: block; }
.tutorial-card:hover .tc-thumb img { transform: scale(1.04); }
.tc-thumb-placeholder { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; font-size: 32px; font-weight: 800; color: #cbd5e1; background: linear-gradient(135deg, #f1f5f9, #e2e8f0); }
.tc-cat { position: absolute; left: 10px; top: 10px; padding: 4px 10px; border-radius: 6px; font-size: 12px; font-weight: 600; line-height: 1.2; }
.tc-cat a { color: #fff; text-decoration: none; }
.tc-cat { background: var(--color-primary); color: #fff; }
.tc-cat--news, .tc-cat--1 { background: #ea580c; color: #fff; }
.tc-cat--shiyong-jiqiao, .tc-cat--jiqiao, .tc-cat--7 { background: #0ea5e9; color: #fff; }
.tc-cat--yueyu, .tc-cat--yueyu-jiaocheng, .tc-cat--9 { background: #7c3aed; color: #fff; }
.tc-cat--shuaji, .tc-cat--shuaji-jiaocheng, .tc-cat--8 { background: #c084fc; color: #fff; }
.tc-cat--aisi, .tc-cat--aisi-jiaocheng, .tc-cat--6 { background: var(--color-primary-dark); color: #fff; }
.tc-body { padding: 14px 12px 16px; flex: 1; display: flex; flex-direction: column; min-width: 0; }
.tc-title { font-size: 14px; font-weight: 700; color: var(--color-text); line-height: 1.45; margin: 0 0 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.tc-title a { color: inherit; text-decoration: none; transition: color .18s; }
.tutorial-card:hover .tc-title a { color: var(--color-primary); }
.tc-excerpt { font-size: 13px; color: var(--color-text-muted); line-height: 1.7; margin: 0 0 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.tc-time { font-size: 12px; color: #94a3b8; margin-top: auto; }
.tutorial-empty { text-align: center; padding: 48px 20px; color: var(--color-text-muted); font-size: 14px; margin: 0; }
.tutorial-more-wrap { text-align: center; margin: 32px 0 0; padding: 0; }
.tutorial-more-btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 32px; font-size: 14px; font-weight: 600; color: var(--color-primary); border: 2px solid var(--color-primary); border-radius: 8px; text-decoration: none; transition: background .2s, color .2s; }
.tutorial-more-btn:hover { background: var(--color-primary); color: #fff; }
@media (max-width: 1200px) { .tutorial-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .tutorial-sec { padding: 48px 0 56px; } .tutorial-sec-title { font-size: 18px; } .tutorial-tabs { margin-bottom: 20px; } .tutorial-tab { padding: 10px 12px; font-size: 13px; } .tutorial-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } .tc-body { padding: 12px 10px 14px; } .tc-title { font-size: 13px; } .tutorial-more-wrap { margin-top: 24px; } }
@media (max-width: 480px) { .tutorial-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════
   FAQ
══════════════════════════ */
.qa-sec { background: #f8faff; padding: 80px 0; }
.qa-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.qa-item { background: #fff; border-radius: 12px; border: 1px solid #e4ebf7; overflow: hidden; transition: border-color .25s; }
.qa-item.open { border-color: var(--color-primary); }
.qa-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 24px; text-align: left; }
.qa-q { font-size: 15px; font-weight: 600; color: #0d1117; line-height: 1.45; flex: 1; min-width: 0; }
.qa-item.open .qa-q { color: var(--color-primary); }
.qa-arrow { width: 28px; height: 28px; border-radius: 50%; background: #f0f4fc; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform .3s, background .25s; }
.qa-arrow svg { width: 14px; height: 14px; fill: var(--color-primary); transition: fill .25s; }
.qa-item.open .qa-arrow { transform: rotate(180deg); background: var(--color-primary); }
.qa-item.open .qa-arrow svg { fill: #fff; }
.qa-ans { max-height: 0; overflow: hidden; transition: max-height .38s cubic-bezier(.4,0,.2,1); }
.qa-ans p { padding: 14px 24px 20px; font-size: 14px; color: #5a6a7e; line-height: 1.9; border-top: 1px solid #f0f4fb; }
.qa-item.open .qa-ans { max-height: 500px; }

/* ══════════════════════════
   用户评价
══════════════════════════ */
.fb-sec { background: #fff; padding: 80px 0; }
.fb-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.fb-item { background: #fff; border-radius: 16px; padding: 28px; border: 1px solid #e4ebf7; position: relative; overflow: hidden; transition: box-shadow .25s; }
.fb-item:hover { box-shadow: 0 8px 32px rgba(21,88,212,.1); }
.fb-item::before { content: "\201C"; position: absolute; right: 18px; top: 8px; font-size: 88px; line-height: 1; color: #eef4ff; font-family: Georgia, serif; pointer-events: none; }
.fb-rating { color: #fbbf24; font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.fb-text { font-size: 14px; color: #475569; line-height: 1.9; margin-bottom: 22px; position: relative; z-index: 1; }
.fb-user { display: flex; align-items: center; gap: 12px; }
.fb-ava { width: 42px; height: 42px; border-radius: 50%; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 900; flex-shrink: 0; }
.fb-nm { font-size: 14px; font-weight: 700; color: #0d1117; }
.fb-meta { font-size: 12px; color: #94a3b8; margin-top: 2px; }

/* ══════════════════════════
   底部 CTA 条
══════════════════════════ */
.cta-strip { background: linear-gradient(135deg, #07205c, var(--color-primary)); padding: 60px 0; text-align: center; }
.cta-strip h2 { font-size: 26px; font-weight: 900; color: #fff; margin-bottom: 8px; }
.cta-strip p { font-size: 14px; color: rgba(255,255,255,.62); margin-bottom: 30px; }
.cta-row { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.cta-dl-btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 36px; border-radius: 9px; font-size: 14.5px; font-weight: 800; transition: opacity .2s, transform .15s; text-decoration: none; }
.cta-dl-btn:hover { opacity: .9; transform: translateY(-2px); }
.cta-dl-btn.solid { background: #fff; color: var(--color-primary) !important; }
.cta-dl-btn.ghost { border: 1.5px solid rgba(255,255,255,.45); color: #fff !important; }
.cta-dl-btn svg { width: 16px; height: 16px; }
.cta-dl-btn.solid svg { fill: var(--color-primary); }
.cta-dl-btn.ghost svg { fill: #fff; }

/* ══════════════════════════
   响应式调整
══════════════════════════ */
@media (max-width: 1024px) {
  .suite-grid { grid-template-columns: repeat(2, 1fr); }
  .fn-grid { grid-template-columns: repeat(2, 1fr); }
  .fb-grid { grid-template-columns: repeat(2, 1fr); }
  .hub-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .banner-in { flex-direction: column; align-items: flex-start; padding: 40px 20px 60px; }
  .banner-img { flex: none; width: 100%; padding-top: 0; }
  .kpi-row { grid-template-columns: repeat(2, 1fr); padding: 0 20px; }
  .suite-grid { grid-template-columns: 1fr; }
  .fn-grid { grid-template-columns: 1fr; }
  .guide-row::after { display: none; }
  .guide-row { grid-template-columns: 1fr 1fr; row-gap: 30px; }
  .why-layout { grid-template-columns: 1fr; }
  .fb-grid { grid-template-columns: 1fr; }
  .hub-grid { grid-template-columns: 1fr; }
  .pg-layout { flex-direction: column; }
  .side-panel { position: static; width: 100%; }
}

/* ══════════════════════════
   两栏布局（文章页 / 列表页）
══════════════════════════ */
.pg-layout { display: flex; gap: 32px; align-items: flex-start; }
.pg-main { flex: 1; min-width: 0; }

/* ── Sidebar ── */
.side-panel { width: 300px; flex-shrink: 0; display: flex; flex-direction: column; gap: 20px; position: sticky; top: 80px; }
.side-widget { background: #fff; border-radius: 12px; border: 1px solid #e8edf5; overflow: hidden; }
.sw-title { font-size: 14px; font-weight: 800; color: #0d1117; padding: 16px 20px; border-bottom: 1px solid #f0f4fb; margin: 0; }
.sw-posts { padding: 8px 0; }
.sw-post-item { display: flex; gap: 12px; padding: 10px 20px; transition: background .15s; }
.sw-post-item:hover { background: #f8faff; }
.sw-post-thumb { width: 64px; height: 48px; border-radius: 6px; overflow: hidden; flex-shrink: 0; }
.sw-post-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sw-post-info { flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: center; }
.sw-post-title { font-size: 13px; font-weight: 600; color: #374151; line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; text-decoration: none; transition: color .15s; }
.sw-post-item:hover .sw-post-title { color: var(--color-primary); }
.sw-post-date { font-size: 11px; color: #b0bec8; margin-top: 4px; }
.sw-cats { padding: 8px 0; }
.sw-cat-item a { display: flex; align-items: center; justify-content: space-between; padding: 9px 20px; font-size: 13px; color: #475569; text-decoration: none; transition: background .15s, color .15s; }
.sw-cat-item a:hover { background: #f0f6ff; color: var(--color-primary); }
.sw-cat-nm { font-weight: 500; }
.sw-cat-cnt { font-size: 12px; background: #f0f4fb; color: #94a3b8; border-radius: 100px; padding: 1px 8px; font-weight: 600; }
.sw-tags { display: flex; flex-wrap: wrap; gap: 8px; padding: 16px 20px; }
.sw-tag { display: inline-block; padding: 4px 11px; border-radius: 20px; background: #f0f4fb; color: #475569; font-size: 12.5px; text-decoration: none; transition: all .18s; }
.sw-tag:hover { background: var(--color-primary); color: #fff; }

/* ══════════════════════════
   文章列表页（archive.php）
══════════════════════════ */
.posts-pg { background: #f7f9fc; padding: 48px 0 72px; min-height: 60vh; }
.posts-header { margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid #e8edf5; }
.posts-h1 { font-size: 22px; font-weight: 900; color: #0d1117; margin: 0 0 8px; }
.posts-intro { font-size: 14px; color: #64748b; line-height: 1.7; margin: 0; }
.post-feed { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.posts-pager { margin-top: 36px; }
.posts-pager .nav-links { display: flex; align-items: center; justify-content: center; gap: 6px; flex-wrap: wrap; }
.posts-pager .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 36px; height: 36px; padding: 0 10px; border: 1px solid #e2e8f0; border-radius: 6px; font-size: 13px; font-weight: 600; color: #374151; text-decoration: none; transition: all .18s; }
.posts-pager .page-numbers:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.posts-pager .page-numbers.current { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.posts-pager .page-numbers.dots { border: none; background: none; cursor: default; }

/* ══════════════════════════
   文章详情页（single.php）
══════════════════════════ */
.article-pg { background: #f7f9fc; padding: 40px 0 72px; min-height: 60vh; }
.post-crumbs { font-size: 13px; color: #94a3b8; margin-bottom: 20px; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.post-crumbs a { color: #64748b; text-decoration: none; transition: color .15s; }
.post-crumbs a:hover { color: var(--color-primary); }
.crumbs-sep { color: #cbd5e1; }
.crumbs-end { color: #94a3b8; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; max-width: 380px; }

/* 文章主体 */
.post-block { background: #fff; border-radius: 10px; padding: 40px 48px 36px; margin-bottom: 24px; }
.post-h1 { font-size: 22px; font-weight: 900; color: #0d1117; line-height: 1.5; margin: 0 0 16px; }
.post-byline { display: flex; align-items: center; gap: 20px; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid #f0f4fb; flex-wrap: wrap; }
.byline-item { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; color: #94a3b8; }
.byline-item svg { width: 14px; height: 14px; fill: #b0bec8; flex-shrink: 0; }
.byline-author { color: var(--color-primary); text-decoration: none; font-weight: 500; }
.byline-author:hover { text-decoration: underline; }
.byline-author svg { fill: var(--color-primary); }

/* 文章内容 */
.post-content { font-size: 15px; color: #374151; line-height: 1.9; }
.post-content h2 { font-size: 18px; font-weight: 800; color: #0d1117; margin: 32px 0 12px; }
.post-content h3 { font-size: 16px; font-weight: 700; color: #0d1117; margin: 24px 0 10px; }
.post-content p { margin: 0 0 16px; }
.post-content img { max-width: 100%; height: auto; border-radius: 6px; display: block; margin: 20px auto; }
.post-content a { color: var(--color-primary); text-decoration: none; }
.post-content a:hover { text-decoration: underline; }
.post-content strong, .post-content b { font-weight: 700; color: #0d1117; }
.post-content ul, .post-content ol { padding-left: 24px; margin: 0 0 16px; }
.post-content li { margin-bottom: 6px; }
.post-content blockquote { margin: 20px 0; padding: 14px 20px; border-left: 3px solid var(--color-primary); background: #f0f6ff; color: #374151; border-radius: 0 6px 6px 0; }

/* 标签 */
.post-tags { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-top: 32px; padding-top: 24px; border-top: 1px solid #f0f4fb; }
.tags-label { font-size: 13px; color: #64748b; font-weight: 600; margin-right: 4px; }
.tag-chip { display: inline-block; padding: 4px 12px; border-radius: 20px; background: #f0f4fb; color: #374151; font-size: 13px; text-decoration: none; transition: all .18s; }
.tag-chip:hover { background: var(--color-primary); color: #fff; }

/* 作者卡片 */
.author-card { display: flex; align-items: flex-start; gap: 20px; background: #f8faff; border: 1px solid #e8f0fe; border-radius: 12px; padding: 24px; margin-top: 32px; }
.ac-avatar img { width: 64px; height: 64px; border-radius: 12px; object-fit: contain; background: #f0f4fb; padding: 4px; flex-shrink: 0; }
.ac-body { flex: 1; min-width: 0; }
.ac-name { display: block; font-size: 1em; font-weight: 700; color: #1a1a2e; text-decoration: none; margin-bottom: 6px; }
.ac-name:hover { color: var(--color-primary); }
.ac-bio { font-size: 0.9em; color: #475569; line-height: 1.7; margin: 0 0 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ac-more { font-size: 0.88em; color: var(--color-primary); text-decoration: none; }
.ac-more:hover { text-decoration: underline; }

/* 版权声明 */
.post-notice { margin-top: 24px; padding: 14px 16px; background: #f8fafc; border-radius: 6px; font-size: 12px; color: #94a3b8; line-height: 1.7; border: 1px solid #e8edf5; }

/* 相关阅读 */
.read-also { background: #fff; border-radius: 10px; padding: 28px 48px 32px; }
.read-also-hd { font-size: 16px; font-weight: 800; color: #0d1117; margin: 0 0 16px; padding-bottom: 14px; border-bottom: 1px solid #f0f4fb; }
.read-also-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.read-also-item { padding: 11px 0; border-bottom: 1px solid #f7f9fc; }
.read-also-item:nth-last-child(-n+2) { border-bottom: none; }
.read-also-item a { font-size: 14px; color: #374151; text-decoration: none; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; transition: color .18s; }
.read-also-item a:hover { color: var(--color-primary); }

/* ══════════════════════════
   页脚
══════════════════════════ */
footer { background: #1b2230; color: #a1a1a6; text-align: center; padding: 45px 0 25px; font-size: 0.92em; }
.footer-intro { max-width: 640px; margin: 0 auto 20px; line-height: 1.7; color: #fff; font-size: 0.95em; }
footer a { color: #eee; text-decoration: none; }
footer a:hover { color: #fff; }
.footer-info { margin-top: 8px; }
.footer-copy { line-height: 2; }

/* ══════════════════════════
   产品页公共样式
══════════════════════════ */
.pg-wrap { max-width: 1380px; margin: 0 auto; padding: 0 40px; }

/* Hero banner（参考页：左图右文） */
.prd-hero { background: #fff; overflow: hidden; position: relative; }
.prd-hero-in { max-width: 1380px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; gap: 48px; min-height: 420px; position: relative; z-index: 1; }
.prd-hero-split .prd-vis-left { flex: 0 0 48%; order: 1; display: flex; align-items: center; justify-content: center; }
.prd-hero-split .prd-vis-left img { width: 100%; max-width: 520px; border-radius: 12px; }
.prd-hero-split .prd-copy-right { flex: 1; order: 2; padding: 48px 0; color: #1a1a2e; }
.prd-h1 { font-size: 38px; font-weight: 900; line-height: 1.25; color: #1a1a2e; margin-bottom: 20px; letter-spacing: -.5px; }
.prd-h1-line1 { display: block; }
.prd-h1-line2 { display: inline-block; border-bottom: 3px solid var(--color-primary-light); padding-bottom: 4px; }
.prd-desc { font-size: 14px; color: #5a6a7e; line-height: 1.8; margin-bottom: 24px; max-width: 520px; }
.prd-bullets { display: grid; grid-template-columns: 1fr 1fr; gap: 0 32px; margin-bottom: 28px; }
.prd-bullets-col { list-style: none; padding: 0; margin: 0; }
.prd-bullets-col li { position: relative; padding-left: 16px; margin-bottom: 10px; font-size: 14px; color: #4a5568; }
.prd-bullets-col li::before { content: ""; position: absolute; left: 0; top: 8px; width: 5px; height: 5px; border-radius: 50%; background: var(--color-primary-light); }
.prd-dl-row { display: flex; flex-wrap: wrap; gap: 12px; }
.prd-dl-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; background: var(--color-primary-light); color: #fff !important; border-radius: 8px; font-size: 14px; font-weight: 700; transition: opacity .2s, transform .1s; text-decoration: none; }
.prd-dl-btn:hover { opacity: .9; transform: translateY(-1px); color: #fff; }
.prd-dl-btn svg { width: 18px; height: 18px; fill: #fff; }
.prd-label { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25); border-radius: 100px; padding: 5px 14px; font-size: 12px; color: rgba(255,255,255,.9); margin-bottom: 22px; }
.label-dot { width: 6px; height: 6px; border-radius: 50%; background: #7ee8a2; box-shadow: 0 0 6px #7ee8a2; }
.prd-subtitle { font-size: 15px; color: rgba(255,255,255,.75); margin-bottom: 10px; }
.prd-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.btn-prd-dl { display: inline-flex; align-items: center; gap: 8px; padding: 12px 30px; background: #fff; color: var(--color-primary-light) !important; border-radius: 8px; font-size: 14px; font-weight: 700; transition: opacity .2s, transform .15s; text-decoration: none; }
.btn-prd-dl:hover { opacity: .92; transform: translateY(-1px); }
.btn-prd-dl svg { width: 16px; height: 16px; fill: var(--color-primary-light); }
.btn-prd-ghost { display: inline-flex; align-items: center; gap: 8px; padding: 12px 30px; border: 1.5px solid rgba(255,255,255,.55); color: #fff !important; border-radius: 8px; font-size: 14px; transition: background .2s; text-decoration: none; }
.btn-prd-ghost:hover { background: rgba(255,255,255,.1); }
.prd-version { font-size: 12px; color: rgba(255,255,255,.45); }
.prd-vis { flex: 0 0 520px; display: flex; align-items: flex-end; justify-content: center; padding-top: 40px; }
.prd-vis img { width: 100%; max-width: 520px; }

/* 第二屏：浅蓝底 左文右功能网格 */
.prd-feat-overview { background: #eef6ff; padding: 72px 0; }
.prd-feat-inner { display: flex; align-items: center; gap: 56px; }
.prd-feat-copy { flex: 0 0 42%; }
.prd-feat-h2 { font-size: 32px; font-weight: 900; line-height: 1.3; color: #1a1a2e; margin-bottom: 20px; }
.prd-feat-h2 .prd-h1-line1 { display: block; }
.prd-underline { border-bottom: 3px solid var(--color-primary-light); padding-bottom: 4px; display: inline-block; }
.prd-feat-p { font-size: 14px; color: #5a6a7e; line-height: 1.85; margin: 0; }
.prd-feat-grid { flex: 1; }
.prd-feat-grid-img img { width: 100%; max-width: 620px; display: block; margin: 0 auto; border-radius: 16px; box-shadow: 0 16px 40px rgba(15,23,42,.12); }
/* 产品页爱思助手详细介绍（左右图文） */
.prd-about-sec { background: #fff; padding: 56px 0; border-top: 1px solid #e8eef8; }
.prd-about-layout { display: flex; align-items: flex-start; gap: 48px; max-width: 1100px; margin: 0 auto; }
.prd-about-vis { flex: 0 0 42%; }
.prd-about-vis img { width: 100%; height: auto; border-radius: 12px; display: block; box-shadow: 0 12px 36px rgba(0,0,0,.08); }
.prd-about-body { flex: 1; min-width: 0; }
.prd-about-body p { font-size: 15px; color: #475569; line-height: 1.9; margin-bottom: 22px; }
.prd-about-body p:last-child { margin-bottom: 0; }
@media (max-width: 900px) {
  .prd-about-layout { flex-direction: column; gap: 32px; }
  .prd-about-vis { flex: none; width: 100%; max-width: 480px; margin: 0 auto; }
}
/* 远控页/投屏页详细介绍（左右图文） */
.rmt-about-sec, .air-about-sec { background: #fff; padding: 56px 0; border-top: 1px solid #e8eef8; }
.rmt-about-layout, .air-about-layout { display: flex; align-items: flex-start; gap: 48px; max-width: 1100px; margin: 0 auto; }
.rmt-about-vis, .air-about-vis { flex: 0 0 42%; }
.rmt-about-vis img, .air-about-vis img { width: 100%; height: auto; border-radius: 12px; display: block; box-shadow: 0 12px 36px rgba(0,0,0,.08); }
.rmt-about-body, .air-about-body { flex: 1; min-width: 0; }
.rmt-about-body p, .air-about-body p { font-size: 15px; color: #475569; line-height: 1.9; margin-bottom: 22px; }
.rmt-about-body p:last-child, .air-about-body p:last-child { margin-bottom: 0; }
@media (max-width: 900px) {
  .rmt-about-layout, .air-about-layout { flex-direction: column; gap: 32px; }
  .rmt-about-vis, .air-about-vis { flex: none; width: 100%; max-width: 480px; margin: 0 auto; }
}
.prd-cta-bar { background: #fff; padding: 56px 0; }
.prd-dl-row-bottom { justify-content: center; }

/* 相关产品推荐 4 列 */
.more-grid-four { max-width: none; grid-template-columns: repeat(4, 1fr); }
.more-card-muted { opacity: .88; }
.more-card-muted:hover { opacity: 1; }
.related-products .more-arrow { font-size: 13px; font-weight: 600; }
@media (max-width: 1100px) { .more-grid-four { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .more-grid-four { grid-template-columns: 1fr; } }

/* 产品页新布局响应式 */
@media (max-width: 1024px) {
    .prd-hero-split .prd-hero-in { flex-direction: column; align-items: stretch; min-height: auto; padding: 40px 24px; }
    .prd-hero-split .prd-vis-left { order: 1; }
    .prd-hero-split .prd-copy-right { order: 2; padding: 0 0 32px; }
    .prd-bullets { grid-template-columns: 1fr; }
    .prd-feat-inner { flex-direction: column; }
    .prd-feat-copy { flex: none; }
    .prd-feat-grid { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 768px) {
    .prd-h1 { font-size: 28px; }
    .prd-feat-h2 { font-size: 24px; }
    .prd-feat-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .prd-dl-row { justify-content: flex-start; }
    .prd-dl-row-bottom { justify-content: center; }
}
@media (max-width: 480px) {
    .prd-feat-grid { grid-template-columns: repeat(2, 1fr); }
    .prd-dl-row .prd-dl-btn { flex: 1 1 45%; }
    .prd-dl-row-bottom .prd-dl-btn { flex: 1 1 45%; }
}

/* 章节标题 */
.sec-hdg { text-align: center; margin-bottom: 28px; padding: 0 16px; }
.sec-hdg h2 { font-size: 28px; font-weight: 800; color: #1a1a2e; margin-bottom: 8px; }
.sec-hdg p { font-size: 14.5px; color: #7a8899; margin-bottom: 0; }

/* 核心功能卡片（产品页）*/
.fn-wrap { background: #fff; padding: 56px 0; }
.fn-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 0; }
.fn-card { border-radius: 16px; border: 1px solid #e8eef8; overflow: hidden; background: #fff; transition: box-shadow .25s, transform .2s; }
.fn-card:hover { box-shadow: 0 10px 40px rgba(26,122,248,.12); transform: translateY(-3px); }
.fn-card-pic { background: #f4f7fd; min-height: 180px; display: flex; align-items: center; justify-content: center; padding: 32px; }
.fn-card-ico { width: 80px; height: 80px; border-radius: 20px; background: var(--color-primary-light); display: flex; align-items: center; justify-content: center; }
.fn-card-ico svg { width: 44px; height: 44px; fill: #fff; }
.fn-card-body { padding: 24px; }
.fn-card-tag { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; color: var(--color-primary-light); background: #eff6ff; border-radius: 100px; padding: 3px 10px; margin-bottom: 12px; }
.fn-card-body h3 { font-size: 18px; font-weight: 800; color: #1a1a2e; margin-bottom: 8px; }
.fn-card-body p { font-size: 13.5px; color: #5a6a7e; line-height: 1.8; margin-bottom: 18px; }
.fn-card-pts { display: flex; flex-direction: column; gap: 8px; }
.fn-card-pt { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: #4a5568; }
.fn-card-pt::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--color-primary-light); flex-shrink: 0; margin-top: 6px; }

/* 功能 chips */
.feat-strip { background: #f4f7fd; padding: 64px 0; }
.feat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.feat-cell { background: #fff; border-radius: 12px; padding: 24px 20px; border: 1px solid #e8eef8; text-align: center; transition: box-shadow .2s; }
.feat-cell:hover { box-shadow: 0 4px 20px rgba(26,122,248,.09); }
.feat-icon { width: 48px; height: 48px; border-radius: 14px; background: #eff6ff; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.feat-icon svg { width: 26px; height: 26px; fill: var(--color-primary-light); }
.feat-nm { font-size: 13.5px; font-weight: 700; color: #1a1a2e; margin-bottom: 6px; }
.feat-note { font-size: 12px; color: #8a97a8; line-height: 1.6; }

/* 工具箱 */
.extras-sec { background: #fff; padding: 56px 0; }
.extras-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.extra-pill { display: flex; align-items: center; gap: 8px; padding: 9px 16px; background: #f8fbff; border: 1px solid #e8eef8; border-radius: 100px; transition: border-color .2s, box-shadow .2s; text-decoration: none; }
.extra-pill:hover { border-color: var(--color-primary-light); box-shadow: 0 2px 10px rgba(26,122,248,.1); }
.extra-pill img { width: 24px; height: 24px; object-fit: contain; }
.extra-pill span { font-size: 13px; color: #4a5568; white-space: nowrap; }

/* 产品页 FAQ */
.help-sec { background: #f4f7fd; padding: 48px 0 52px; }
.help-list { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.help-item { background: #fff; border-radius: 12px; border: 1px solid #e8eef8; overflow: hidden; }
.help-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; text-align: left; cursor: pointer; }
.help-q { font-size: 15px; font-weight: 600; color: #1a1a2e; line-height: 1.4; flex: 1; min-width: 0; }
.help-ico { width: 26px; height: 26px; border-radius: 50%; background: #eff6ff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform .3s, background .25s; }
.help-ico svg { width: 14px; height: 14px; fill: var(--color-primary-light); transition: fill .25s; }
.help-item.open .help-ico { transform: rotate(180deg); background: var(--color-primary-light); }
.help-item.open .help-ico svg { fill: #fff; }
.help-item.open .help-q { color: var(--color-primary-light); }
.help-ans { max-height: 0; overflow: hidden; transition: max-height .38s cubic-bezier(.4,0,.2,1); }
.help-ans p { padding: 0 24px 22px; font-size: 14px; color: #5a6a7e; line-height: 1.9; }
.help-item.open .help-ans { max-height: 500px; }

/* 产品页评价 */
.voice-sec { background: #fff; padding: 52px 0 56px; }
.voice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 0; }
.voice-card { background: #f8fafd; border-radius: 14px; padding: 26px; border: 1px solid #e8eef8; }
.vc-stars { color: #f59e0b; font-size: 14px; letter-spacing: 3px; margin-bottom: 14px; }
.vc-text { font-size: 13.5px; color: #4a5568; line-height: 1.85; margin-bottom: 20px; }
.vc-author { display: flex; align-items: center; gap: 12px; }
.vc-ava { width: 40px; height: 40px; border-radius: 50%; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 800; flex-shrink: 0; }
.vc-name { font-size: 13.5px; font-weight: 700; color: #1a1a2e; }
.vc-device { font-size: 12px; color: #a0acbd; margin-top: 2px; }

/* 相关产品 */
.more-sec { background: #f4f7fd; padding: 72px 0; }
.more-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
.more-card { background: #fff; border-radius: 14px; border: 1px solid #e8eef8; padding: 26px; display: flex; align-items: center; gap: 18px; transition: box-shadow .2s, transform .2s; text-decoration: none; color: inherit; }
.more-card:hover { box-shadow: 0 8px 28px rgba(26,122,248,.1); transform: translateY(-2px); }
.more-ico { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.more-ico svg { width: 26px; height: 26px; }
.more-card h3 { font-size: 16px; font-weight: 700; color: #1a1a2e; margin-bottom: 4px; }
.more-card p { font-size: 13px; color: #7a8899; line-height: 1.6; }
.more-arrow { margin-left: auto; color: var(--color-primary-light); font-size: 20px; flex-shrink: 0; }

/* 产品页 CTA */
.cta-band { background: linear-gradient(135deg, #0a3d8f 0%, var(--color-primary-light) 60%, #5aa4ff 100%); padding: 72px 0; text-align: center; }
.cta-band h2 { font-size: 30px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.cta-band p { font-size: 14px; color: rgba(255,255,255,.75); margin-bottom: 32px; }
.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta-btn-w { display: inline-flex; align-items: center; gap: 8px; padding: 12px 32px; background: #fff; color: var(--color-primary-light) !important; border-radius: 8px; font-size: 14px; font-weight: 700; transition: opacity .2s; text-decoration: none; }
.cta-btn-w:hover { opacity: .92; }
.cta-btn-w svg { width: 16px; height: 16px; fill: var(--color-primary-light); }
.cta-btn-o { display: inline-flex; align-items: center; gap: 8px; padding: 12px 32px; border: 1.5px solid rgba(255,255,255,.55); color: #fff !important; border-radius: 8px; font-size: 14px; transition: background .2s; text-decoration: none; }
.cta-btn-o:hover { background: rgba(255,255,255,.1); }
.cta-btn-o svg { width: 16px; height: 16px; fill: #fff; }
.cta-ver { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 16px; margin-bottom: 0; }

/* ══════════════════════════
   Airplayer 专属
══════════════════════════ */
.air-hero { background: linear-gradient(135deg, #7c2d12 0%, #ea580c 55%, #fb923c 100%); }
.air-hero .prd-hero-in { padding: 60px 40px; }
.air-hero .prd-copy,
.rmt-hero .prd-copy { color: #fff; }
.air-hero .prd-h1,
.rmt-hero .prd-h1 { color: #fff; }
.air-hero .prd-h1 .prd-h1-line2,
.rmt-hero .prd-h1 .prd-h1-line2 { border-bottom-color: rgba(255,255,255,.65); }
.air-hero .prd-desc,
.rmt-hero .prd-desc { color: rgba(255,255,255,.88); }
.air-hero .prd-bullets-col li,
.rmt-hero .prd-bullets-col li { color: rgba(255,255,255,.9); }
.air-dl-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 30px; background: #fff; color: #ea580c !important; border-radius: 8px; font-size: 14px; font-weight: 700; transition: opacity .2s, transform .15s; text-decoration: none; }
.air-dl-btn:hover { opacity: .92; transform: translateY(-1px); }
.air-dl-btn svg { width: 16px; height: 16px; fill: #ea580c; }
.air-vis-wide { width: 100%; max-width: 960px; display: flex; justify-content: center; padding-top: 40px; flex: none; }
.air-vis-wide img { width: 100%; max-width: 960px; }

/* 平台条 */
.plat-bar { background: #fff; border-bottom: 1px solid #f0f4fb; }
.plat-row { max-width: 1380px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: center; }
.plat-cell { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 20px 12px; border-right: 1px solid #f0f4fb; }
.plat-cell:last-child { border-right: none; }
.plat-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; background: #fff3e8; }
.plat-icon svg { width: 20px; height: 20px; fill: #ea580c; }
.plat-nm { font-size: 13px; font-weight: 700; color: #1a1a2e; }
.plat-vr { font-size: 11.5px; color: #a0acbd; }

/* 使用场景卡片 */
.use-sec { background: #fff; padding: 56px 0; }
.use-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.use-card { border-radius: 16px; border: 1px solid #e8eef8; overflow: hidden; background: #fff; transition: box-shadow .25s, transform .2s; }
.use-card:hover { box-shadow: 0 10px 40px rgba(234,88,12,.11); transform: translateY(-3px); }
.use-card-pic { min-height: 160px; display: flex; align-items: center; justify-content: center; padding: 32px; }
.use-ico { width: 76px; height: 76px; border-radius: 20px; display: flex; align-items: center; justify-content: center; }
.use-ico svg { width: 40px; height: 40px; fill: #fff; }
.scene-body { padding: 24px; }
.scene-tag { display: inline-flex; font-size: 11px; font-weight: 700; color: #ea580c; background: #fff3e8; border-radius: 100px; padding: 3px 10px; margin-bottom: 10px; }
.scene-body h3 { font-size: 18px; font-weight: 800; color: #1a1a2e; margin-bottom: 8px; }
.scene-body p { font-size: 13.5px; color: #5a6a7e; line-height: 1.8; margin-bottom: 16px; }
.scene-pts { display: flex; flex-direction: column; gap: 7px; }
.scene-pt { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: #4a5568; }
.scene-pt::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #ea580c; flex-shrink: 0; margin-top: 6px; }

/* Airplayer 优势 */
.air-why-sec { background: #fdf5f0; padding: 56px 0; }
.air-why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.air-adv-card { background: #fff; border-radius: 14px; border: 1px solid #f0e6df; padding: 28px; display: flex; gap: 18px; align-items: flex-start; transition: box-shadow .2s; }
.air-adv-card:hover { box-shadow: 0 6px 24px rgba(234,88,12,.09); }
.air-adv-ico { width: 50px; height: 50px; border-radius: 14px; background: #fff3e8; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.air-adv-ico svg { width: 26px; height: 26px; fill: #ea580c; }
.air-adv-txt h3 { font-size: 16px; font-weight: 700; color: #1a1a2e; margin-bottom: 6px; }
.air-adv-txt p { font-size: 13.5px; color: #64748b; line-height: 1.75; }

/* Airplayer FAQ overrides */
.qna-sec { padding: 56px 0; }
.qna-sec.air-qna { padding-top: 64px; }
.air-qna .help-item { background: #fdf5f0; border-color: #f0e6df; }
.air-qna .help-ico { background: #fff3e8; }
.air-qna .help-ico svg { fill: #ea580c; }
.air-qna .help-item.open .help-ico { background: #ea580c; }
.air-qna .help-item.open .help-q { color: #ea580c; }

/* Airplayer CTA */
.air-cta-band { background: linear-gradient(135deg, #7c2d12 0%, #ea580c 60%, #fb923c 100%); padding: 72px 0; text-align: center; }
.air-cta-band h2 { font-size: 30px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.air-cta-band p { font-size: 14px; color: rgba(255,255,255,.75); margin-bottom: 32px; }
.air-cta-btn-w { display: inline-flex; align-items: center; gap: 8px; padding: 12px 32px; background: #fff; color: #ea580c !important; border-radius: 8px; font-size: 14px; font-weight: 700; transition: opacity .2s; text-decoration: none; }
.air-cta-btn-w:hover { opacity: .92; }
.air-cta-btn-w svg { width: 16px; height: 16px; fill: #ea580c; }
.air-cta-btn-o { display: inline-flex; align-items: center; gap: 8px; padding: 12px 32px; border: 1.5px solid rgba(255,255,255,.55); color: #fff !important; border-radius: 8px; font-size: 14px; transition: background .2s; text-decoration: none; }
.air-cta-btn-o:hover { background: rgba(255,255,255,.1); }
.air-cta-btn-o svg { width: 16px; height: 16px; fill: #fff; }

/* ══════════════════════════
   Remote 专属
══════════════════════════ */
.rmt-hero { background: linear-gradient(135deg, #2e1065 0%, #7c3aed 55%, #a78bfa 100%); }
.rmt-hero .prd-label,
.rmt-hero .prd-subtitle,
.rmt-hero .prd-version,
.air-hero .prd-label,
.air-hero .prd-subtitle,
.air-hero .prd-version { color: rgba(255,255,255,.9); }
.rmt-dl-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 30px; background: #fff; color: #7c3aed !important; border-radius: 8px; font-size: 14px; font-weight: 700; transition: opacity .2s, transform .15s; text-decoration: none; }
.rmt-dl-btn:hover { opacity: .92; transform: translateY(-1px); }
.rmt-dl-btn svg { width: 16px; height: 16px; fill: #7c3aed; }

/* 数据条 */
.stat-strip { background: #fff; border-bottom: 1px solid #eef2fb; }
.stat-row-r { max-width: 1380px; margin: 0 auto; padding: 0 40px; display: flex; }
.stat-cell { flex: 1; text-align: center; padding: 22px 12px; border-right: 1px solid #eef2fb; }
.stat-cell:last-child { border-right: none; }
.stat-num { font-size: 26px; font-weight: 800; color: #7c3aed; line-height: 1.2; }
.stat-num small { font-size: 14px; }
.stat-lbl { font-size: 12px; color: #8a97a8; margin-top: 4px; }

/* Remote 核心功能 */
.rmt-fn-sec { background: #fff; padding: 56px 0; }
.rmt-fn-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.rmt-core-card { border-radius: 16px; border: 1px solid #e8eef8; overflow: hidden; background: #fff; transition: box-shadow .25s, transform .2s; }
.rmt-core-card:hover { box-shadow: 0 10px 40px rgba(124,58,237,.12); transform: translateY(-3px); }
.rmt-core-thumb { min-height: 180px; display: flex; align-items: center; justify-content: center; padding: 32px; }
.rmt-core-icon { width: 80px; height: 80px; border-radius: 20px; background: #7c3aed; display: flex; align-items: center; justify-content: center; }
.rmt-core-icon svg { width: 44px; height: 44px; fill: #fff; }
.rmt-core-body { padding: 24px; }
.rmt-core-tag { display: inline-flex; font-size: 11px; font-weight: 700; color: #7c3aed; background: #f3eeff; border-radius: 100px; padding: 3px 10px; margin-bottom: 12px; }
.rmt-core-body h3 { font-size: 18px; font-weight: 800; color: #1a1a2e; margin-bottom: 8px; }
.rmt-core-body p { font-size: 13.5px; color: #5a6a7e; line-height: 1.8; margin-bottom: 18px; }
.rmt-core-pts { display: flex; flex-direction: column; gap: 8px; }
.rmt-core-pt { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: #4a5568; }
.rmt-core-pt::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #7c3aed; flex-shrink: 0; margin-top: 6px; }

/* Remote 优势 */
.rmt-why-sec { background: #f5f0ff; padding: 56px 0; }
.qna-sec.rmt-qna { padding: 64px 0; }
.rmt-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rmt-adv-card { background: #fff; border-radius: 14px; border: 1px solid #e5d9f9; padding: 28px; text-align: center; transition: box-shadow .2s; }
.rmt-adv-card:hover { box-shadow: 0 6px 24px rgba(124,58,237,.09); }
.rmt-adv-ico { width: 56px; height: 56px; border-radius: 16px; background: #f3eeff; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.rmt-adv-ico svg { width: 28px; height: 28px; fill: #7c3aed; }
.rmt-adv-card h3 { font-size: 16px; font-weight: 700; color: #1a1a2e; margin-bottom: 8px; }
.rmt-adv-card p { font-size: 13.5px; color: #64748b; line-height: 1.75; }

/* Remote FAQ overrides */
.rmt-qna .help-item { background: #f5f0ff; border-color: #e5d9f9; }
.rmt-qna .help-ico { background: #f3eeff; }
.rmt-qna .help-ico svg { fill: #7c3aed; }
.rmt-qna .help-item.open .help-ico { background: #7c3aed; }
.rmt-qna .help-item.open .help-q { color: #7c3aed; }

/* Remote voice overrides */
.rmt-voice.voice-sec { background: #f5f0ff; }
.rmt-voice .voice-card { border-color: #e5d9f9; }

/* Remote CTA */
.rmt-cta-band { background: linear-gradient(135deg, #2e1065 0%, #7c3aed 60%, #a78bfa 100%); padding: 72px 0; text-align: center; }
.rmt-cta-band h2 { font-size: 30px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.rmt-cta-band p { font-size: 14px; color: rgba(255,255,255,.75); margin-bottom: 32px; }
.rmt-cta-btn-w { display: inline-flex; align-items: center; gap: 8px; padding: 12px 32px; background: #fff; color: #7c3aed !important; border-radius: 8px; font-size: 14px; font-weight: 700; transition: opacity .2s; text-decoration: none; }
.rmt-cta-btn-w:hover { opacity: .92; }
.rmt-cta-btn-w svg { width: 16px; height: 16px; fill: #7c3aed; }
.rmt-cta-btn-o { display: inline-flex; align-items: center; gap: 8px; padding: 12px 32px; border: 1.5px solid rgba(255,255,255,.55); color: #fff !important; border-radius: 8px; font-size: 14px; transition: background .2s; text-decoration: none; }
.rmt-cta-btn-o:hover { background: rgba(255,255,255,.1); }
.rmt-cta-btn-o svg { width: 16px; height: 16px; fill: #fff; }

/* ══════════════════════════
   404 页面
══════════════════════════ */
.error404-wrap { min-height: calc(80vh - 64px); display: flex; align-items: center; padding: 60px 0; text-align: center; }
.error404-wrap .container { width: 100%; }
.error404-code { font-size: 120px; font-weight: 800; line-height: 1; color: #e8f0fe; letter-spacing: -4px; margin-bottom: 16px; }
.error404-title { font-size: 1.8em; font-weight: 700; color: #1a1a2e; margin: 0 0 12px; }
.error404-desc { color: #64748b; font-size: 1em; margin: 0 0 32px; }
.error404-btn { display: inline-block; padding: 12px 32px; background: var(--color-primary); color: #fff; border-radius: 8px; text-decoration: none; font-size: 0.95em; font-weight: 600; transition: background 0.2s; }
.error404-btn:hover { background: #0d44a8; }

/* ══════════════════════════
   政策页
══════════════════════════ */
.policy-hero { background: linear-gradient(135deg, #0071e3, #40c4ff); color: #fff; padding: 110px 0 70px; text-align: center; }
.policy-hero h1 { font-size: 2.8em; margin: 0 0 16px; font-weight: 700; color: #fff; }
.policy-hero p { font-size: 1.1em; max-width: 700px; margin: 0 auto; opacity: 0.95; }
.policy-content { background: #fff; border-radius: 16px; box-shadow: 0 4px 24px rgba(0,0,0,.06); padding: 48px 56px; margin: 48px 0; line-height: 1.85; }
.policy-content h2 { font-size: 1.5em; color: #0071e3; margin: 36px 0 16px; font-weight: 700; }
.policy-content h2:first-child { margin-top: 0; }
.policy-content p { margin: 0 0 16px; color: #334155; font-size: 1.02em; }
.policy-content ul { margin: 12px 0 20px; padding-left: 24px; }
.policy-content li { margin: 8px 0; color: #334155; }
.policy-content .update-date { color: #64748b; font-size: 0.95em; margin-bottom: 32px; }
.policy-content a { color: #0071e3; text-decoration: none; }
.policy-content a:hover { text-decoration: underline; }

/* ══════════════════════════
   作者页
══════════════════════════ */
.author-wrap { padding: 48px 0 64px; background: #f7f9fc; min-height: 60vh; }
.author-profile { display: flex; align-items: flex-start; gap: 28px; background: #fff; border-radius: 16px; box-shadow: 0 4px 24px rgba(0,0,0,.06); padding: 36px 40px; margin-bottom: 40px; }
.author-avatar img { width: 96px; height: 96px; border-radius: 16px; object-fit: contain; background: #f0f4fb; padding: 6px; flex-shrink: 0; }
.author-name { font-size: 1.6em; font-weight: 700; color: #1a1a2e; margin: 0 0 10px; }
.author-bio { color: #475569; font-size: 1em; line-height: 1.75; margin: 0 0 12px; }
.author-meta { font-size: 0.92em; color: #64748b; }
.author-meta strong { color: var(--color-primary); }
.author-posts-hd { margin-bottom: 20px; }
.author-posts-hd h2 { font-size: 1.25em; font-weight: 700; color: #1a1a2e; border-left: 4px solid var(--color-primary); padding-left: 12px; margin: 0; }
.author-no-posts { color: #94a3b8; text-align: center; padding: 40px 0; }
/* 作者页：一排一个长方形布局（左图右文） */
.author-post-feed { display: flex; flex-direction: column; gap: 20px; }
.author-post-feed .feed-item { flex-direction: row; padding: 0; overflow: hidden; align-items: stretch; }
.author-post-feed .fi-thumb { width: 320px; min-width: 320px; aspect-ratio: 16/10; margin: 0; border-radius: 18px 0 0 18px; }
.author-post-feed .fi-body { flex: 1; padding: 20px 24px; display: flex; flex-direction: column; justify-content: center; }
.author-post-feed .fi-title { margin: 0 0 10px; -webkit-line-clamp: 2; }
.author-post-feed .fi-excerpt { margin: 0 0 12px; -webkit-line-clamp: 2; flex: none; }
.author-post-feed .fi-meta { margin: 0; }
@media (max-width: 768px) {
  .author-post-feed .feed-item { flex-direction: column; }
  .author-post-feed .fi-thumb { width: 100%; min-width: unset; aspect-ratio: 16/10; border-radius: 18px 18px 0 0; }
}

/* ══════════════════════════
   响应式
══════════════════════════ */
@media (max-width: 1100px) {
    .container { padding: 0 24px; }
    .nav-container { padding: 0 24px; }
    .banner-in { padding: 0 24px; }
    .kpi-row { padding: 0 24px; }
    .fn-grid { grid-template-columns: repeat(2, 1fr); }
    .guide-row::after { left: 16%; right: 16%; }
    .pg-wrap { padding: 0 24px; }
    .prd-hero-in { padding: 0 24px; }
    .feat-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 960px) {
    .suite-grid { grid-template-columns: 1fr 1fr; }
    .fb-grid { grid-template-columns: 1fr 1fr; }
    .why-layout { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .nav-drawer { display: block; }
    .kpi-row { grid-template-columns: repeat(3, 1fr); padding: 0 24px; }
    .kpi-cell:nth-child(3) { border-right: none; }
    .guide-row { grid-template-columns: 1fr 1fr; gap: 36px; }
    .guide-row::after { display: none; }
    .fn-cards { grid-template-columns: 1fr 1fr; }
    .voice-grid { grid-template-columns: 1fr 1fr; }
    .use-grid { grid-template-columns: 1fr 1fr; }
    .air-why-grid { grid-template-columns: 1fr; }
    .rmt-fn-grid { grid-template-columns: 1fr 1fr; }
    .rmt-why-grid { grid-template-columns: 1fr 1fr; }
    /* 两栏改单栏 */
    .pg-layout { flex-direction: column; }
    .side-panel { width: 100%; position: static; flex-direction: row; flex-wrap: wrap; }
    .side-widget { flex: 1; min-width: 280px; }
}
@media (max-width: 768px) {
    .container { padding: 0 16px; }
    .nav-container { padding: 0 16px; }
    .banner-in { flex-direction: column; min-height: auto; padding: 40px 16px 0; align-items: center; gap: 0; }
    .banner-copy { padding: 0 0 32px; text-align: center; order: 1; }
    .banner-desc { max-width: 100%; }
    .banner-cta { justify-content: center; }
    .banner-note { text-align: center; }
    .banner-img { flex: none; width: 100%; padding-top: 0; order: 2; max-width: 300px; margin: 0 auto; }
    .banner-h1 { font-size: 30px; }
    .kpi-row { grid-template-columns: repeat(2, 1fr); padding: 0; }
    .kpi-cell:nth-child(2) { border-right: none; }
    .kpi-cell:nth-child(3) { border-right: 1px solid #e8edf6; }
    .kpi-cell:last-child { grid-column: 1 / -1; border-right: none; }
    .suite-sec, .fn-sec, .guide-sec, .why-sec, .qa-sec, .fb-sec { padding: 52px 0; }
    .suite-grid { grid-template-columns: 1fr; }
    .fn-grid { grid-template-columns: 1fr; }
    .fb-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .guide-row { grid-template-columns: 1fr 1fr; }
    .s-hd h2 { font-size: 24px; }
    .post-block { padding: 24px 20px; }
    .read-also { padding: 24px 20px; }
    .post-h1 { font-size: 18px; }
    .read-also-list { grid-template-columns: 1fr; }
    .read-also-item:last-child { border-bottom: none; }
    .read-also-item:nth-last-child(2) { border-bottom: 1px solid #f7f9fc; }
    .fi-thumb { width: 100%; aspect-ratio: 16/10; }
    .feed-item { flex-direction: column; }
    .prd-hero-in { flex-direction: column; min-height: auto; padding: 36px 16px 0; }
    .prd-vis { flex: none; width: 100%; padding-top: 24px; order: 2; }
    .prd-vis img { max-width: 280px; margin: 0 auto; }
    .prd-copy { padding: 0; order: 1; text-align: center; }
    .prd-h1 { font-size: 26px; }
    .prd-btns { justify-content: center; margin-top: 20px; }
    .prd-version { text-align: center; margin-bottom: 24px; }
    .fn-wrap, .feat-strip, .extras-sec, .help-sec, .voice-sec, .more-sec { padding: 44px 0; }
    .fn-cards { grid-template-columns: 1fr; }
    .feat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .more-grid { grid-template-columns: 1fr; max-width: 100%; }
    .voice-grid { grid-template-columns: 1fr; }
    .sec-hdg h2 { font-size: 22px; }
    .plat-row { flex-wrap: wrap; padding: 0 16px; }
    .plat-cell { flex: 0 0 50%; border-right: none; border-bottom: 1px solid #f0f4fb; }
    .use-sec, .air-why-sec { padding: 44px 0; }
    .use-grid { grid-template-columns: 1fr; }
    .rmt-fn-sec, .rmt-why-sec { padding: 44px 0; }
    .rmt-fn-grid { grid-template-columns: 1fr; }
    .rmt-why-grid { grid-template-columns: 1fr; }
    .stat-row-r { flex-wrap: wrap; padding: 0; }
    .stat-cell { flex: 0 0 50%; border-right: none; border-bottom: 1px solid #eef2fb; }
    .policy-hero { padding: 80px 0 50px; }
    .policy-hero h1 { font-size: 2em; }
    .policy-content { padding: 32px 24px; }
    .author-profile { flex-direction: column; align-items: center; text-align: center; padding: 28px 20px; }
    .side-panel { flex-direction: column; }
    .side-widget { min-width: unset; }
    .ac-avatar { margin-bottom: 4px; }
    .author-card { flex-direction: column; align-items: center; text-align: center; }
}
@media (max-width: 480px) {
    .banner-h1 { font-size: 26px; }
    .guide-row { grid-template-columns: 1fr; }
    .dl-win-btn, .info-btn { padding: 12px 24px; font-size: 13.5px; }
    .prd-h1 { font-size: 22px; }
    .feat-grid { grid-template-columns: 1fr 1fr; }
    .btn-prd-dl, .btn-prd-ghost { padding: 11px 22px; font-size: 13px; }
    .air-adv-card { flex-direction: column; }
}
