:root {
    --blue: #0969f6;
    --blue-dark: #0648bd;
    --cyan: #14c8d4;
    --green: #18c878;
    --orange: #ff9b26;
    --ink: #101828;
    --muted: #667085;
    --line: #e6edf7;
    --soft: #f3f8ff;
    --white: #fff;
    --shadow: 0 18px 45px rgba(15, 82, 186, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.6;
    background: #fff;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: 80%; max-width: 1280px; margin: 0 auto; }
.narrow { width: 80%; max-width: 900px; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .92);
    border-bottom: 1px solid rgba(230, 237, 247, .82);
    backdrop-filter: blur(14px);
}
.site-header .container { width: 94%; max-width: 1280px; }
.nav-wrap { min-height: 78px; display: flex; align-items: center; gap: 32px; }
.brand { display: inline-flex; flex-direction: row; align-items: center; gap: 12px; line-height: 1.05; min-width: 0; }
.brand-logo {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: block;
}
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.brand-text strong {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--ink);
    white-space: nowrap;
}
.brand-text small {
    margin-top: 2px;
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 1px;
}
.footer-brand .brand-text strong { color: #fff; }
.footer-brand .brand-text small { color: #a9bdd8; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: 30px; flex: 1; font-weight: 700; font-size: 15px; }
.main-nav a { position: relative; padding: 28px 0; }
.main-nav a.active, .main-nav a:hover { color: var(--blue); }
.main-nav a.active::after, .main-nav a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 19px;
    height: 3px;
    border-radius: 10px;
    background: var(--blue);
}
.nav-cta, .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 26px;
    border-radius: 8px;
    border: 1px solid transparent;
    font-weight: 800;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
}
.nav-cta, .btn.primary { color: #fff; background: linear-gradient(135deg, #0b7cff, #0556d9); box-shadow: 0 10px 22px rgba(9, 105, 246, .24); }
.btn.secondary { background: #fff; color: var(--blue); border-color: var(--line); box-shadow: 0 10px 24px rgba(15, 82, 186, .08); }
.btn.light { background: #fff; color: var(--blue); }
.btn:hover, .nav-cta:hover { transform: translateY(-2px); }
.nav-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--ink); }

.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #4a3cc9 0%, #6b5ce7 40%, #7c6ef0 100%);
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 192, 203, .25) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(147, 197, 253, .2) 0%, transparent 50%);
    pointer-events: none;
}
.hero-split {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 48px;
    align-items: center;
    min-height: 580px;
    padding: 60px 0 50px;
}
.hero-text {
    color: #fff;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 99px;
    background: rgba(255, 255, 255, .18);
    backdrop-filter: blur(8px);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, .3);
}
.hero-text h1 {
    margin: 0 0 20px;
    font-size: clamp(38px, 4.5vw, 60px);
    line-height: 1.15;
    font-weight: 800;
    color: #fff;
}
.hero-subtitle {
    margin: 0 0 28px;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .88);
    max-width: 520px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}
.hero-actions .btn {
    min-width: 140px;
    height: 50px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 25px;
    cursor: pointer;
    transition: all .2s ease;
}
.hero-actions .btn-primary {
    background: #fff;
    color: #4a3cc9;
    border: 2px solid #fff;
}
.hero-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, .18);
}
.hero-actions .btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .6);
}
.hero-actions .btn-outline:hover {
    background: rgba(255, 255, 255, .15);
    border-color: #fff;
}
.hero-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}
.hero-checklist li {
    position: relative;
    padding-left: 26px;
    font-size: 15px;
    color: rgba(255, 255, 255, .92);
    line-height: 1.6;
}
.hero-checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    display: grid;
    place-items: center;
}

/* Hero Visual - APP 截图 + 后台截图 */
.hero-visual-wrap {
    position: relative;
    height: 540px;
    z-index: 1;
}

/* APP 截图 */
.hero-app-shot {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 240px;
    height: 460px;
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .4), 0 0 0 6px rgba(255, 255, 255, .12);
    z-index: 2;
    display: flex;
    flex-direction: column;
}
.app-shot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px 6px;
    font-size: 11px;
    font-weight: 700;
    color: #333;
    background: #fff;
}
.app-shot-body {
    flex: 1;
    padding: 8px 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: linear-gradient(180deg, #faf5ff 0%, #fff 100%);
    overflow: hidden;
}
.app-search {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: #f3f4f6;
    border-radius: 20px;
    font-size: 11px;
    color: #9ca3af;
}
.app-match-banner {
    background: linear-gradient(135deg, #6366f1, #8b5cf6, #ec4899);
    border-radius: 12px;
    padding: 12px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.match-banner-tag {
    font-size: 10px;
    opacity: .85;
    margin-bottom: 4px;
}
.match-banner-title {
    font-size: 15px;
    font-weight: 800;
}
.match-banner-avatars {
    position: absolute;
    right: 10px;
    bottom: 10px;
    display: flex;
}
.avatar-mini {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -8px;
}
.avatar-mini.av-1 { background: linear-gradient(135deg, #fbbf24, #f59e0b); }
.avatar-mini.av-2 { background: linear-gradient(135deg, #f472b6, #ec4899); }
.app-user-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.app-user-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
}
.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
}
.user-avatar.u1 { background: linear-gradient(135deg, #fbbf24, #f59e0b); }
.user-avatar.u2 { background: linear-gradient(135deg, #f472b6, #ec4899); }
.user-avatar.u3 { background: linear-gradient(135deg, #818cf8, #6366f1); }
.user-info {
    flex: 1;
    min-width: 0;
}
.user-info strong {
    display: block;
    font-size: 12px;
    color: #1f2937;
    margin-bottom: 1px;
}
.user-info span {
    font-size: 10px;
    color: #9ca3af;
}
.user-like {
    color: #ec4899;
    font-size: 14px;
}
.app-shot-tabbar {
    display: flex;
    justify-content: space-around;
    padding: 8px 0 10px;
    background: #fff;
    border-top: 1px solid #f3f4f6;
}
.tab-item {
    font-size: 10px;
    color: #9ca3af;
    font-weight: 600;
}
.tab-item.active {
    color: #6366f1;
    font-weight: 800;
}

/* 后台截图 */
.hero-admin-shot {
    position: absolute;
    right: 0;
    top: 20px;
    width: 420px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 56px rgba(0, 0, 0, .35);
    z-index: 1;
}
.admin-shot-topbar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}
.admin-topbar-dots {
    display: flex;
    gap: 5px;
}
.admin-topbar-dots i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
}
.admin-topbar-dots i:nth-child(1) { background: #ef4444; }
.admin-topbar-dots i:nth-child(2) { background: #f59e0b; }
.admin-topbar-dots i:nth-child(3) { background: #10b981; }
.admin-topbar-title {
    font-size: 11px;
    color: #6b7280;
    font-weight: 600;
}
.admin-shot-body {
    display: flex;
    min-height: 240px;
}
.admin-sidebar-mini {
    width: 64px;
    background: #1f2937;
    padding: 12px 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.side-item {
    padding: 8px 0;
    text-align: center;
    font-size: 10px;
    color: #9ca3af;
    font-weight: 600;
}
.side-item.active {
    color: #fff;
    background: rgba(99, 102, 241, .3);
    border-left: 3px solid #6366f1;
}
.admin-main-content {
    flex: 1;
    padding: 12px;
    background: #fff;
}
.admin-stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}
.stat-card {
    background: #f9fafb;
    border-radius: 8px;
    padding: 10px 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.stat-num {
    font-size: 14px;
    font-weight: 800;
    color: #ffffff;
}
.stat-label {
    font-size: 9px;
    color: #ffffff;
}
.admin-chart {
    background: #f9fafb;
    border-radius: 8px;
    padding: 10px;
}
.chart-title {
    font-size: 11px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 8px;
}
.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 80px;
}
.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, #818cf8, #6366f1);
    border-radius: 3px 3px 0 0;
    min-height: 8px;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: transparent;
}
.hero-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 28px; align-items: center; min-height: 590px; padding: 42px 0 34px; }
.hero-banner-only {
    position: relative;
    z-index: 1;
    min-height: 500px;
    padding: 0;
    display: flex;
    align-items: center;
}
.badge { display: inline-flex; padding: 8px 18px; border-radius: 9px; color: #fff; background: linear-gradient(135deg, #0873ff, #19bed5); font-weight: 800; }
.hero h1 { margin: 18px 0 4px; font-size: clamp(38px, 5vw, 68px); line-height: 1.04; }
.hero h1 span { color: var(--blue); letter-spacing: 0; }
.hero-lead { margin: 0 0 12px; font-size: 24px; font-weight: 900; }
.hero-desc { max-width: 620px; color: var(--muted); font-size: 17px; }
.check-list { padding: 0; margin: 22px 0 0; list-style: none; display: grid; gap: 10px; }
.check-list li { position: relative; padding-left: 28px; font-weight: 650; }
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    color: #fff;
    background: var(--blue);
    font-size: 12px;
    display: grid;
    place-items: center;
}
.hero-actions { display: flex; gap: 18px; margin: 28px 0; flex-wrap: wrap; }
.hero-actions .btn { min-width: 150px; height: 52px; }
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; max-width: 620px; }
.hero-stats div { border-left: 3px solid var(--blue); padding-left: 10px; }
.hero-stats strong { display: block; font-size: 18px; }
.hero-stats span { color: var(--muted); font-size: 13px; }

.hero-visual { position: relative; min-height: 515px; }
.hero-banner-only .hero-visual { min-height: auto; }
.hero-banner-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-banner-track {
    position: relative;
    width: 100%;
    aspect-ratio: auto;
    min-height: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: none;
}
.hero-banner-only .hero-banner-track { min-height: 0; }
.hero-banner-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
}
.hero-banner-slide.active {
    position: relative;
    display: block;
    opacity: 1;
    pointer-events: auto;
}
.hero-banner-slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}
.hero-banner-dots {
    position: absolute;
    left: 50%;
    bottom: 38px;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
}
.hero-banner-btn {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 50%;
    background: rgba(255,255,255,.78);
    color: #d71920;
    box-shadow: 0 12px 28px rgba(120, 0, 0, .16);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
}
.hero-banner-btn.prev { left: -86px; }
.hero-banner-btn.next { right: -86px; }
.hero-banner-btn:hover { background: #fff; }
.hero-banner-dots button {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 99px;
    background: rgba(255,255,255,.55);
    cursor: pointer;
}
.hero-banner-dots button.active {
    width: 26px;
    background: #fff;
}
.float-icon { position: absolute; width: 58px; filter: drop-shadow(0 18px 22px rgba(24, 83, 165, .2)); }
.float-icon.icon-chat { padding: 10px; border-radius: 16px; background: linear-gradient(135deg, #21d4fd, #0969f6); }
.icon-chat { left: 12px; top: 134px; }
.icon-image { left: 0; top: 246px; }
.icon-play { left: 22px; top: 340px; }
.icon-cart { right: 96px; bottom: 70px; width: 72px; }

.section { padding: 62px 0; }
.section.soft { background: linear-gradient(180deg, #fff 0%, #f7fbff 100%); }
.section-title { text-align: center; margin-bottom: 32px; }
.section-title h2 { margin: 0; font-size: 30px; line-height: 1.2; }
.section-title p { margin: 8px 0 0; color: var(--muted); }
.platform-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.platform-card, .feature-card, .article-card, .list-item, .admin-panel, .login-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(30, 89, 166, .07);
}
.platform-card { display: flex; align-items: center; gap: 16px; padding: 24px; }
.platform-card img { width: 48px; height: 48px; flex: 0 0 48px; }
.feature-card img {
    width: 92px;
    height: 92px;
    padding: 14px;
    margin: 0 auto 46px;
    border-radius: 50%;
    background: radial-gradient(circle, #fff 0 42%, #eaf4ff 43% 100%);
    object-fit: contain;
    box-shadow: 0 16px 34px rgba(14, 105, 246, .12);
}
.platform-card h3 { margin: 0 0 4px; font-size: 17px; }
.feature-card h3 { margin: 0; font-size: 22px; line-height: 1.3; }
.feature-card h3::after {
    content: "";
    display: block;
    width: 34px;
    height: 4px;
    margin: 22px auto 20px;
    border-radius: 99px;
    background: linear-gradient(90deg, #087bff, #b9ddff);
}
.platform-card p, .article-card p, .list-item p { margin: 0; color: var(--muted); font-size: 14px; }
.feature-card p {
    margin: 0 auto;
    max-width: 180px;
    color: #263445;
    font-size: 16px;
    line-height: 1.85;
    text-align: center;
}
.store-row { margin-top: 26px; display: grid; grid-template-columns: repeat(8, 1fr); gap: 10px; text-align: center; }
.store-row span {
    display: grid;
    justify-items: center;
    gap: 8px;
    padding: 14px 8px 12px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid var(--line);
    font-size: 13px;
    line-height: 1.25;
}
.store-row img { width: 34px; height: 34px; }
.feature-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.feature-card {
    position: relative;
    padding: 58px 22px 42px;
    min-height: 350px;
    text-align: center;
}
.feature-card::before,
.feature-card::after {
    content: "";
    position: absolute;
    top: 82px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #9dccff;
}
.feature-card::before { left: calc(50% - 50px); }
.feature-card::after { right: calc(50% - 50px); }
.feature-card:nth-child(2) img,
.feature-card:nth-child(7) img { background: radial-gradient(circle, #fff 0 42%, #e7fbf6 43% 100%); box-shadow: 0 16px 34px rgba(20, 200, 176, .14); }
.feature-card:nth-child(2) h3::after,
.feature-card:nth-child(7) h3::after { background: linear-gradient(90deg, #11c8ad, #d5f3eb); }
.feature-card:nth-child(3) img { background: radial-gradient(circle, #fff 0 42%, #fff0df 43% 100%); box-shadow: 0 16px 34px rgba(255, 143, 24, .14); }
.feature-card:nth-child(3) h3::after { background: linear-gradient(90deg, #ff7a00, #ffe0c4); }
.feature-card:nth-child(4) img,
.feature-card:nth-child(9) img { background: radial-gradient(circle, #fff 0 42%, #eeeeff 43% 100%); box-shadow: 0 16px 34px rgba(95, 92, 255, .14); }
.feature-card:nth-child(4) h3::after,
.feature-card:nth-child(9) h3::after { background: linear-gradient(90deg, #6258ff, #d9d6ff); }
.feature-card:nth-child(5) img { background: radial-gradient(circle, #fff 0 42%, #ffedf5 43% 100%); box-shadow: 0 16px 34px rgba(255, 64, 130, .14); }
.feature-card:nth-child(5) h3::after { background: linear-gradient(90deg, #ff397d, #ffd0e2); }
}

.growth-band { padding: 70px 0; background: linear-gradient(110deg, #f1f7ff 0%, #fff 52%, #eaf5ff 100%); overflow: hidden; }
.growth-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 38px; }
.growth-grid h2 { margin: 0 0 12px; font-size: 34px; line-height: 1.25; }
.growth-grid p { color: var(--muted); max-width: 480px; }
.compact { gap: 8px; }
.target-wrap { position: relative; min-height: 300px; }
.target {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 220px;
    height: 220px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, #fff 0 18%, var(--blue) 19% 29%, #dceeff 30% 48%, #fff 49% 58%, #cfe5ff 59%);
    box-shadow: var(--shadow);
}
.target::after {
    content: "";
    position: absolute;
    left: 54%;
    top: -18px;
    width: 18px;
    height: 170px;
    border-radius: 18px;
    background: linear-gradient(180deg, #79d9ff, var(--blue));
    transform: rotate(42deg);
    transform-origin: bottom;
}
.target-wrap span { position: absolute; padding: 14px 20px; border-radius: 8px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); font-weight: 800; color: #315272; }
.target-wrap span:nth-child(2) { left: 64px; top: 18px; }
.target-wrap span:nth-child(3) { left: 22px; bottom: 48px; }
.target-wrap span:nth-child(4) { right: 36px; top: 52px; }
.target-wrap span:nth-child(5) { right: 94px; bottom: 34px; }

.screenshot-section {
    padding: 68px 0 72px;
    background: #fff;
    overflow: hidden;
}
.phone-carousel { position: relative; overflow: visible; }
.screenshot-section .phone-carousel { width: 85%; max-width: 1360px; }
.phone-viewport { overflow: hidden; }
.phone-scroll {
    display: flex;
    gap: 24px;
    align-items: center;
    overflow-x: auto;
    padding: 38px 0 20px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
}
.phone-scroll.dragging { cursor: grabbing; scroll-snap-type: none; }
.phone-scroll::-webkit-scrollbar { display: none; }
.phone-frame {
    flex: 0 0 calc((100% - 96px) / 5);
    max-width: none;
    margin: 0;
    scroll-snap-align: center;
    text-align: center;
}
.phone-shell {
    position: relative;
    overflow: visible;
    aspect-ratio: 547 / 1139;
    background: transparent;
    filter: drop-shadow(0 20px 32px rgba(12, 32, 68, .16));
}
.phone-shell::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: url("/assets/images/phone-frame.png") center / 100% 100% no-repeat;
}
.phone-screen {
    position: absolute;
    inset: 1.8% 3.7% 1.6%;
    z-index: 1;
    overflow: hidden;
    border-radius: 8.4% / 4.1%;
    background: #fff;
}
.phone-speaker { display: none; }
.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}
.phone-frame figcaption {
    margin-top: 10px;
    color: var(--muted);
    font-weight: 800;
    font-size: 13px;
}
.phone-scroll .template-card {
    flex: 0 0 calc((100% - 88px) / 5);
    min-width: 190px;
}
.phone-scroll-btn {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    color: var(--blue);
    box-shadow: var(--shadow);
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
}
.phone-scroll-btn.prev { left: -58px; }
.phone-scroll-btn.next { right: -58px; }
.phone-scroll-btn:hover { background: var(--blue); color: #fff; }

.plugin-section { background: linear-gradient(180deg, #fff 0%, #f7fbff 100%); }
.plugin-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.plugin-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    min-height: 132px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(15, 68, 136, .07);
    color: inherit;
}
.plugin-card:hover { transform: translateY(-3px); border-color: rgba(18, 117, 255, .35); }
.plugin-card img {
    width: 78px;
    height: 78px;
    padding: 10px;
    border-radius: 18px;
    background: #eef6ff;
    object-fit: contain;
    flex: 0 0 78px;
}
.plugin-card h3 { margin: 4px 0 8px; font-size: 18px; }
.plugin-card p { margin: 0; color: var(--muted); line-height: 1.7; }

.template-section { background: #fff; overflow: hidden; }
.template-carousel { position: relative; overflow: visible; width: 85%; max-width: 1360px; }
.template-viewport { overflow: hidden; }
.template-scroll {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 8px 0 14px;
    scrollbar-width: none;
}
.template-scroll::-webkit-scrollbar { display: none; }
.template-card {
    display: block;
    flex: 0 0 calc((100% - 88px) / 5);
    min-width: 190px;
    scroll-snap-align: start;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(15, 68, 136, .07);
    color: inherit;
    text-decoration: none;
    overflow: hidden;
}
a.template-card { cursor: pointer; }
.template-card:hover { transform: translateY(-3px); border-color: rgba(18, 117, 255, .35); }
.template-phone {
    padding: 10px 10px 0;
    background: linear-gradient(180deg, #f8fbff, #fff);
}
.template-phone .phone-shell {
    width: 100%;
    aspect-ratio: 420 / 860;
    filter: none;
}
.template-phone .phone-screen img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #eef6ff;
}
.template-info { padding: 14px 14px 16px; }
.template-card h3 { margin: 0 0 6px; font-size: 16px; }
.template-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }

.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.article-card a { display: block; padding: 24px; min-height: 190px; }
.article-card span, .list-item time, .page-hero span, .admin-title span { color: var(--blue); font-weight: 800; font-size: 13px; text-transform: uppercase; }
.article-card h3 { margin: 12px 0 10px; font-size: 20px; line-height: 1.35; }
.center-actions { margin-top: 28px; text-align: center; }
.license-band { padding: 46px 0; background: linear-gradient(135deg, #057bff, #004bcc); color: #fff; }
.license-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.license-inner h2 { margin: 0; font-size: 30px; }
.license-points { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; min-width: 520px; }
.license-points span { padding: 18px 14px; border-radius: 8px; background: rgba(255,255,255,.12); text-align: center; font-weight: 800; }

.page-hero { padding: 76px 0; background: linear-gradient(110deg, #0677ff, #0156d6); color: #fff; text-align: center; }
.page-hero h1 { margin: 8px 0; font-size: 42px; }
.page-hero span, .page-hero h1, .page-hero p { color: #fff; }
.page-hero p { margin: 0 auto; max-width: 650px; }
.article-list { display: grid; gap: 18px; }
.list-item a { display: grid; grid-template-columns: 120px 1fr 120px; align-items: center; gap: 20px; padding: 26px; }
.list-item h2 { margin: 0; font-size: 22px; }
.list-item span { color: var(--blue); font-weight: 800; text-align: right; }
.empty-state { padding: 50px; text-align: center; border: 1px dashed var(--line); border-radius: 8px; color: var(--muted); }
.article-detail { padding: 54px 0 76px; }
.breadcrumb { margin-bottom: 28px; color: var(--muted); font-size: 14px; }
.breadcrumb a { color: var(--blue); }
.article-detail header time { color: var(--blue); font-weight: 800; }
.article-detail h1 { margin: 10px 0; font-size: 40px; line-height: 1.22; }
.article-detail header p { color: var(--muted); font-size: 18px; }
.article-cover { width: 100%; border-radius: 8px; margin: 30px 0; }
.rich-content { font-size: 17px; color: #263445; }
.rich-content img { height: auto; border-radius: 8px; margin: 18px 0; }
.rich-content h2, .rich-content h3 { line-height: 1.28; margin-top: 32px; }
.rich-content a { color: var(--blue); text-decoration: underline; }

.site-footer { background: #08182f; color: #d7e4f5; padding: 48px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 34px; }
.footer-brand strong span { color: #fff; }
.footer-brand small { color: #d7e4f5; }
.site-footer h3 { color: #fff; margin: 0 0 14px; }
.site-footer a { display: block; margin: 8px 0; color: #d7e4f5; }
.footer-button { display: inline-flex !important; padding: 9px 16px; border-radius: 8px; background: var(--blue); color: #fff !important; }
.footer-bottom { margin-top: 34px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 16px; font-size: 13px; color: #a9bdd8; }

.admin-login-page { min-height: 100vh; background: linear-gradient(135deg, #f1f7ff, #fff); }
.login-shell { min-height: 100vh; display: grid; place-items: center; padding: 24px; }
.login-card { width: min(420px, 100%); padding: 34px; }
.login-card h1 { margin: 28px 0 18px; }
.login-card label, .article-form label { display: grid; gap: 8px; margin-bottom: 18px; font-weight: 800; }
input, textarea, select {
    width: 100%;
    border: 1px solid #d7e2f0;
    border-radius: 8px;
    padding: 12px 14px;
    font: inherit;
    background: #fff;
}
textarea { resize: vertical; }
.alert { padding: 12px 14px; border-radius: 8px; background: #fff1f0; color: #b42318; margin-bottom: 16px; }
.success { padding: 12px 14px; border-radius: 8px; background: #ecfdf3; color: #067647; margin-bottom: 16px; font-weight: 800; }
.admin-page { display: grid; grid-template-columns: 250px 1fr; min-height: 100vh; background: #f6f9fd; }
.admin-sidebar { padding: 28px 22px; background: #fff; border-right: 1px solid var(--line); }
.admin-sidebar { position: sticky; top: 0; height: 100vh; }
.admin-sidebar nav { display: grid; gap: 8px; margin-top: 34px; }
.admin-sidebar nav a { padding: 12px 14px; border-radius: 8px; font-weight: 800; color: var(--muted); }
.admin-sidebar nav a.active, .admin-sidebar nav a:hover { color: var(--blue); background: #eef6ff; }
.admin-main { padding: 34px; min-width: 0; }
.admin-title { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 22px; }
.admin-title h1 { margin: 2px 0 0; }
.admin-panel { padding: 24px; }
.admin-toolbar {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
    color: var(--muted);
    font-weight: 800;
    font-size: 14px;
}
.table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; min-width: 780px; }
.admin-table th, .admin-table td { text-align: left; padding: 15px; border-bottom: 1px solid var(--line); }
.admin-table th { color: var(--muted); font-size: 13px; }
.status { display: inline-flex; padding: 4px 9px; border-radius: 99px; font-size: 12px; font-weight: 800; background: #f2f4f7; color: #475467; }
.status.published { background: #ecfdf3; color: #067647; }
.actions { display: flex; align-items: center; gap: 12px; }
.actions a { color: var(--blue); font-weight: 800; }
.actions form { margin: 0; }
.actions button { border: 0; background: transparent; color: #b42318; font: inherit; font-weight: 800; cursor: pointer; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.ueditor-fallback { min-height: 360px; }
.admin-thumb {
    width: 58px;
    height: 78px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: #f8fbff;
}
.admin-banner-thumb {
    width: 140px;
    height: 44px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: #f8fbff;
}
.form-preview-icon {
    width: 70px;
    height: 70px;
    padding: 10px;
    margin: -6px 0 18px;
    object-fit: contain;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #f8fbff;
}
.phone-thumb { border-radius: 14px; }
.screenshot-preview {
    width: 180px;
    max-width: 100%;
    padding: 8px;
    margin: 4px 0 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}
.screenshot-preview img {
    width: 100%;
    border-radius: 6px;
}
.banner-preview {
    width: min(520px, 100%);
    padding: 8px;
    margin: 4px 0 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}
.banner-preview img {
    width: 100%;
    border-radius: 6px;
}
.pagination {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.pagination a {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--muted);
    font-weight: 800;
}
.pagination a.active {
    color: #fff;
    background: var(--blue);
    border-color: var(--blue);
}
.pagination a.disabled {
    pointer-events: none;
    opacity: .45;
}
.form-footer { display: flex; align-items: center; justify-content: flex-end; gap: 18px; margin-top: 18px; flex-wrap: wrap; }
.inline-radio { display: inline-flex !important; grid-template-columns: auto 1fr; align-items: center; gap: 7px !important; margin: 0 !important; }
.inline-radio input { width: auto; }

@media (max-width: 980px) {
    .nav-wrap { min-height: 68px; justify-content: space-between; }
    .nav-toggle { display: block; }
    .main-nav {
        display: none;
        position: absolute;
        left: 16px;
        right: 16px;
        top: 72px;
        padding: 14px;
        border-radius: 8px;
        background: #fff;
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }
    .main-nav.open { display: flex; }
    .main-nav a { padding: 10px 12px; }
    .main-nav a::after { display: none; }
    .nav-cta { display: none; }
    .hero-grid, .growth-grid { grid-template-columns: 1fr; }
    .hero-split { grid-template-columns: 1fr; min-height: auto; padding: 40px 0; gap: 32px; }
    .hero-visual-wrap { height: 420px; max-width: 480px; margin: 0 auto; }
    .hero-app-shot { width: 190px; height: 380px; }
    .hero-admin-shot { width: 330px; }
    .hero-banner-only .hero-visual { min-height: auto; }
    .platform-grid, .feature-grid, .article-grid, .plugin-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .store-row { grid-template-columns: repeat(4, 1fr); }
    .license-inner { display: grid; }
    .license-points { min-width: 0; grid-template-columns: repeat(2, 1fr); }
    .phone-scroll { padding-left: 0; padding-right: 0; }
    .phone-frame { flex-basis: 190px; }
    .phone-scroll-btn.prev { left: -16px; }
    .phone-scroll-btn.next { right: -16px; }
    .template-card { flex-basis: calc((100% - 44px) / 3); }
    .list-item a { grid-template-columns: 1fr; }
    .list-item span { text-align: left; }
    .admin-page { grid-template-columns: 1fr; }
    .admin-sidebar { position: static; height: auto; }
    .admin-sidebar nav { grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); }
}

@media (max-width: 640px) {
    .container, .narrow { width: calc(100% - 24px); max-width: none; }
    .brand-logo { width: 36px; height: 36px; }
    .brand-text strong { font-size: 18px; }
    .brand-text small { font-size: 10px; }
    .hero-split { min-height: auto; padding: 32px 0; gap: 24px; }
    .hero { padding: 0; }
    .hero .container {
        width: 100%;
        max-width: none;
    }
    .hero-text h1 { font-size: 36px; }
    .hero-subtitle { font-size: 16px; }
    .hero-actions { flex-wrap: wrap; gap: 12px; }
    .hero-actions .btn { flex: 1; min-width: 0; }
    .hero-visual-wrap { height: 360px; max-width: 320px; }
    .hero-app-shot { width: 150px; height: 300px; left: 0; }
    .hero-admin-shot { width: 250px; top: 0; }
    .admin-stat-row { gap: 4px; }
    .stat-card { padding: 6px 4px; }
    .stat-num { font-size: 12px; }
    .chart-bars { height: 60px; }
    .hero-stats, .platform-grid, .feature-grid, .article-grid, .plugin-grid, .footer-grid, .form-grid { grid-template-columns: 1fr; }
    .store-row { grid-template-columns: repeat(2, 1fr); }
    .section { padding: 44px 0; }
    .screenshot-section { padding: 48px 0 52px; }
    .screenshot-section .phone-carousel,
    .template-carousel { width: calc(100% - 24px); }
    .phone-scroll { padding: 24px 0 18px; gap: 16px; }
    .phone-frame,
    .phone-scroll .template-card {
        flex: 0 0 100%;
        min-width: 0;
    }
    .phone-frame {
        display: grid;
        justify-items: center;
    }
    .phone-frame .phone-shell { width: min(100%, 420px); }
    .template-carousel { width: calc(100% - 24px); }
    .template-scroll { gap: 16px; }
    .template-card { flex: 0 0 100%; min-width: 0; }
    .phone-scroll-btn { display: none; }
    .section-title h2, .growth-grid h2, .license-inner h2 { font-size: 26px; }
    .target-wrap { transform: scale(.82); transform-origin: center; }
    .license-points { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; }
    .page-hero { padding: 54px 0; }
    .page-hero h1, .article-detail h1 { font-size: 32px; }
    .admin-main { padding: 18px; }
    .admin-sidebar nav { grid-template-columns: 1fr 1fr; }
    .admin-title { align-items: flex-start; flex-direction: column; }
}



/* 微信二维码弹窗 */
.wechat-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}
.wechat-modal.open { display: flex; }
.wechat-modal-mask {
    position: absolute;
    inset: 0;
    background: rgba(8, 24, 47, .55);
    backdrop-filter: blur(4px);
}
.wechat-modal-box {
    position: relative;
    width: min(360px, 90%);
    padding: 32px 28px 28px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(8, 24, 47, .28);
    text-align: center;
    animation: wechatPop .25s ease;
}
@keyframes wechatPop {
    from { opacity: 0; transform: translateY(20px) scale(.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.wechat-modal-close {
    position: absolute;
    top: 10px;
    right: 14px;
    width: 30px;
    height: 30px;
    border: 0;
    background: transparent;
    font-size: 26px;
    line-height: 1;
    color: #98a2b3;
    cursor: pointer;
    transition: color .2s;
}
.wechat-modal-close:hover { color: var(--ink); }
.wechat-modal-box h3 {
    margin: 0 0 18px;
    font-size: 22px;
    color: var(--ink);
}
.wechat-qr-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}
.wechat-qr-wrap img {
    width: 220px;
    height: 220px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    object-fit: contain;
}
.wechat-modal-box p {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}
.wechat-modal-tips {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}
.wechat-modal-tips span {
    font-size: 13px;
    font-weight: 700;
    color: var(--green);
}

/* 版本展示区域 */
.edition-section {
    padding: 72px 0;
    background: linear-gradient(180deg, #f7fbff 0%, #fff 100%);
}
.edition-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
}
.edition-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 40px 28px 32px;
    box-shadow: 0 14px 38px rgba(15, 68, 136, .07);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.edition-card:hover {
    transform: translateY(-6px);
    border-color: rgba(18, 117, 255, .28);
    box-shadow: 0 24px 52px rgba(15, 82, 186, .14);
}
.edition-card.featured {
    border: 2px solid transparent;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, #0b7cff, #14c8d4) border-box;
    box-shadow: 0 20px 48px rgba(9, 105, 246, .18);
}
.edition-card.featured::before {
    content: "推荐";
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 22px;
    border-radius: 99px;
    background: linear-gradient(135deg, #0b7cff, #14c8d4);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    box-shadow: 0 10px 22px rgba(9, 105, 246, .28);
}
.edition-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 20px;
    width: fit-content;
}
.edition-badge.light {
    background: #eaf4ff;
    color: var(--blue);
}
.edition-badge.free {
    background: #e8f9f0;
    color: #067647;
}
.edition-badge.pro {
    background: linear-gradient(135deg, #e6f7ff, #e6fbfa);
    color: var(--blue-dark);
}
.edition-badge.agent {
    background: #fff4e5;
    color: #d97706;
}
.edition-badge-icon {
    width: 18px;
    height: 18px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    font-size: 11px;
    color: #fff;
}
.edition-badge.light .edition-badge-icon { background: var(--blue); }
.edition-badge.free .edition-badge-icon { background: var(--green); }
.edition-badge.pro .edition-badge-icon { background: linear-gradient(135deg, #0b7cff, #14c8d4); }
.edition-badge.agent .edition-badge-icon { background: var(--orange); }

.edition-title {
    margin: 0 0 8px;
    font-size: 26px;
    line-height: 1.25;
    color: var(--ink);
}
.edition-subtitle {
    margin: 0 0 24px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    min-height: 48px;
}
.edition-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line), transparent);
    margin-bottom: 22px;
}
.edition-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    gap: 12px;
    flex: 1;
}
.edition-features li {
    position: relative;
    padding-left: 28px;
    font-size: 14px;
    color: #344054;
    line-height: 1.6;
}
.edition-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    display: grid;
    place-items: center;
    font-weight: 800;
}
.edition-card:nth-child(1) .edition-features li::before { background: var(--green); }
.edition-card:nth-child(2) .edition-features li::before { background: var(--blue); }
.edition-card.featured .edition-features li::before { background: linear-gradient(135deg, #0b7cff, #14c8d4); }
.edition-card:nth-child(4) .edition-features li::before { background: var(--orange); }

.edition-audience {
    padding: 14px 16px;
    border-radius: 10px;
    margin-bottom: 24px;
    font-size: 13px;
    line-height: 1.7;
}
.edition-card:nth-child(1) .edition-audience {
    background: #ecfdf3;
    color: #067647;
    border-left: 3px solid var(--green);
}
.edition-card:nth-child(2) .edition-audience {
    background: #f0f7ff;
    color: #1e5aaa;
    border-left: 3px solid var(--blue);
}
.edition-card.featured .edition-audience {
    background: linear-gradient(135deg, #f0f7ff, #effbfc);
    color: #1e5aaa;
    border-left: 3px solid var(--cyan);
}
.edition-card:nth-child(4) .edition-audience {
    background: #fff8ed;
    color: #92400e;
    border-left: 3px solid var(--orange);
}
.edition-audience strong {
    display: block;
    margin-bottom: 2px;
    font-size: 14px;
}
.edition-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}
.edition-actions .btn {
    width: 100%;
    height: 46px;
    font-size: 15px;
}
.edition-card.featured .edition-actions .btn.primary {
    background: linear-gradient(135deg, #0b7cff, #05c2d1);
    box-shadow: 0 12px 26px rgba(9, 105, 246, .28);
}

@media (max-width: 1100px) {
    .edition-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
    .edition-grid { grid-template-columns: repeat(2, 1fr); }
    .edition-card { padding: 36px 24px 28px; }
    .edition-subtitle { min-height: auto; }
}

@media (max-width: 640px) {
    .edition-section { padding: 48px 0; }
    .edition-title { font-size: 22px; }
    .edition-card.featured { margin-top: 12px; }
}

/* ====== 版本详情页 ====== */
.edition-hero {
    padding: 80px 0 64px;
    text-align: center;
    color: #fff;
}
.edition-hero.hero-light { background: linear-gradient(110deg, #0677ff, #0156d6); }
.edition-hero.hero-free { background: linear-gradient(110deg, #067647, #048a52); }
.edition-hero.hero-pro   { background: linear-gradient(110deg, #0b7cff, #0a9fd6); }
.edition-hero.hero-agent { background: linear-gradient(110deg, #d97706, #c2610a); }

.edition-hero .edition-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 99px;
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(6px);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 20px;
}
.edition-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.15;
}
.edition-hero .hero-desc {
    max-width: 640px;
    margin: 0 auto 28px;
    font-size: 18px;
    line-height: 1.7;
    opacity: .92;
}
.edition-hero .hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.edition-hero .hero-actions .btn {
    min-width: 150px;
    height: 50px;
    font-size: 16px;
}

/* 概览信息条 */
.edition-overview {
    background: #fff;
    border-bottom: 1px solid var(--line);
}
.edition-overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 36px 0;
}
.overview-item {
    text-align: center;
    border-right: 1px solid var(--line);
    padding: 0 16px;
}
.overview-item:last-child { border-right: 0; }
.overview-item .overview-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 12px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 24px;
    background: #eef6ff;
}
.overview-item .overview-label {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 4px;
}
.overview-item .overview-value {
    font-size: 16px;
    font-weight: 800;
    color: var(--ink);
}

/* 功能模块 */
.edition-detail {
    padding: 64px 0;
    background: linear-gradient(180deg, #f7fbff 0%, #fff 100%);
}
.module-group {
    margin-bottom: 48px;
}
.module-group:last-child { margin-bottom: 0; }
.module-group-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 24px;
    font-size: 24px;
    font-weight: 800;
}
.module-group-title .module-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 20px;
    background: linear-gradient(135deg, #0b7cff, #14c8d4);
    color: #fff;
    flex-shrink: 0;
}
.module-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.module-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 10px 28px rgba(15, 68, 136, .05);
    transition: transform .2s ease, box-shadow .2s ease;
}
.module-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(15, 82, 186, .1);
}
.module-card h3 {
    margin: 0 0 8px;
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.module-card h3::before {
    content: "";
    width: 6px;
    height: 18px;
    border-radius: 3px;
    background: linear-gradient(180deg, #0b7cff, #14c8d4);
    flex-shrink: 0;
}
.module-card p {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}

/* 版本对比表 */
.compare-section {
    padding: 64px 0;
    background: #fff;
}
.compare-table-wrap {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid var(--line);
    box-shadow: 0 12px 32px rgba(15, 68, 136, .07);
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}
.compare-table th,
.compare-table td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid var(--line);
}
.compare-table th {
    background: #f7fbff;
    font-size: 16px;
    font-weight: 800;
    color: var(--ink);
}
.compare-table th.feature-col {
    text-align: left;
    color: var(--muted);
    font-size: 14px;
}
.compare-table th.highlight {
    background: linear-gradient(135deg, #eaf4ff, #e6fbfa);
    color: var(--blue);
}
.compare-table td.feature-name {
    text-align: left;
    font-weight: 700;
    font-size: 14px;
    color: #344054;
}
.compare-table td.has-feature { color: var(--green); font-weight: 800; font-size: 18px; }
.compare-table td.no-feature { color: #d0d5dd; font-size: 18px; }
.compare-table tr:last-child td { border-bottom: 0; }

/* 详情页底部 CTA */
.edition-cta {
    padding: 56px 0;
    text-align: center;
    background: linear-gradient(135deg, #057bff, #004bcc);
    color: #fff;
}
.edition-cta h2 { margin: 0 0 12px; font-size: 30px; }
.edition-cta p { margin: 0 0 28px; font-size: 17px; opacity: .9; }
.edition-cta .btn { min-width: 180px; height: 52px; font-size: 16px; }

@media (max-width: 980px) {
    .edition-overview-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
    .overview-item:nth-child(2) { border-right: 0; }
    .module-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .edition-hero { padding: 56px 0 44px; }
    .edition-overview-grid { grid-template-columns: 1fr; gap: 20px; }
    .overview-item { border-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 20px; }
    .overview-item:last-child { border-bottom: 0; }
    .module-grid { grid-template-columns: 1fr; }
    .edition-detail, .compare-section { padding: 44px 0; }
    .module-group-title { font-size: 20px; }
}

/* ====== 功能特色页 ====== */
.features-hero {
    padding: 88px 0 72px;
    text-align: center;
    color: #fff;
    background-image: url('/assets/images/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.features-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(5, 50, 120, 0.55);
    z-index: 0;
}
.features-hero .container {
    position: relative;
    z-index: 1;
}
.features-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.15;
}
.features-hero .hero-desc {
    max-width: 680px;
    margin: 0 auto 28px;
    font-size: 18px;
    line-height: 1.7;
    color: #fff;
    opacity: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.features-stats {
    display: flex;
    gap: 48px;
    justify-content: center;
    flex-wrap: wrap;
}
.features-stats .stat-item {
    
    text-align: center;
}
.features-stats .stat-num {
    font-size: 40px;
    font-weight: 900;
    line-height: 1;
}
.features-stats .stat-label {
    margin-top: 6px;
    font-size: 14px;
    opacity: .85;
}

/* 功能亮点横排 */
.feature-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 56px;
}
.highlight-card {
    text-align: center;
    padding: 32px 20px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 10px 28px rgba(15, 68, 136, .05);
    transition: transform .2s ease, box-shadow .2s ease;
}
.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(15, 82, 186, .1);
}
.highlight-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 28px;
    background: linear-gradient(135deg, #eaf4ff, #e6fbfa);
}
.highlight-card h3 {
    margin: 0 0 8px;
    font-size: 17px;
}
.highlight-card p {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

@media (max-width: 980px) {
    .feature-highlights { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .features-hero { padding: 56px 0 44px; }
    .features-stats { gap: 28px; }
    .features-stats .stat-num { font-size: 32px; }
    .feature-highlights { grid-template-columns: 1fr; }
}
