        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #0b0e17;
            color: #e8edf5;
            line-height: 1.6;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Header 与首页保持一致 */
        .header {
            padding: 18px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            position: sticky;
            top: 0;
            background: rgba(11, 14, 23, 0.92);
            backdrop-filter: blur(12px);
            z-index: 100;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 22px;
            font-weight: 700;
            letter-spacing: -0.3px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo svg {
            width: 32px;
            height: 32px;
            flex-shrink: 0;
        }
        .logo span {
            color: #3b82f6;
        }
        .logo small {
            font-size: 12px;
            font-weight: 400;
            color: #8b95a9;
            margin-left: 6px;
            letter-spacing: 0.2px;
        }
        .nav {
            display: flex;
            align-items: center;
            gap: 28px;
            font-size: 15px;
            font-weight: 500;
            flex-wrap: wrap;
        }
        .nav a {
            color: #b0baca;
            transition: color 0.2s;
        }
        .nav a:hover {
            color: #fff;
        }
        .nav a.active {
            color: #fff;
            border-bottom: 2px solid #3b82f6;
        }

        /* Page Hero */
        .page-hero {
            padding: 48px 0 32px;
            text-align: center;
        }
        .page-hero h1 {
            font-size: 40px;
            font-weight: 800;
            letter-spacing: -0.5px;
            line-height: 1.15;
        }
        .page-hero h1 .highlight {
            color: #3b82f6;
        }
        .page-hero .sub {
            margin-top: 16px;
            font-size: 18px;
            color: #aab3c9;
            max-width: 760px;
            margin-left: auto;
            margin-right: auto;
        }
        .page-hero .badge-row {
            margin-top: 22px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
        }
        .page-hero .badge-row span {
            background: rgba(59, 130, 246, 0.12);
            border: 1px solid rgba(59, 130, 246, 0.20);
            padding: 4px 18px;
            border-radius: 40px;
            font-size: 13px;
            color: #8bb4ff;
        }

        /* 信任指标栏 */
        .trust-bar {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 28px;
            margin-top: 28px;
            padding: 20px 16px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px;
        }
        .trust-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .trust-item .icon {
            font-size: 28px;
        }
        .trust-item .text {
            font-size: 15px;
            color: #d0d8e8;
            font-weight: 500;
        }
        .trust-item .text small {
            font-size: 12px;
            color: #8b95a9;
            display: block;
            font-weight: 400;
        }

        /* 分类标签 */
        .faq-tabs-section {
            padding: 40px 0 10px;
        }
        .tabs {
            display: flex;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 24px;
        }
        .tab-btn {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.10);
            color: #b0baca;
            padding: 8px 22px;
            border-radius: 40px;
            font-weight: 500;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s;
        }
        .tab-btn:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        .tab-btn.active {
            background: rgba(59, 130, 246, 0.18);
            border-color: rgba(59, 130, 246, 0.40);
            color: #fff;
        }

        /* FAQ 列表 */
        .faq-list-section {
            padding: 10px 0 40px;
        }
        .faq-category {
            display: none;
        }
        .faq-category.active {
            display: block;
        }
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .faq-list details {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 16px;
            padding: 18px 22px;
            transition: background 0.2s, border-color 0.2s;
        }
        .faq-list details:hover {
            background: rgba(255, 255, 255, 0.04);
            border-color: rgba(59, 130, 246, 0.25);
        }
        .faq-list summary {
            cursor: pointer;
            font-weight: 600;
            font-size: 17px;
            color: #d0d8e8;
            list-style: none;
            position: relative;
            padding-right: 28px;
            line-height: 1.5;
        }
        .faq-list summary::after {
            content: "+";
            position: absolute;
            right: 0;
            top: 0;
            font-size: 22px;
            color: #3b82f6;
            transition: transform 0.2s;
        }
        .faq-list details[open] summary::after {
            content: "−";
            transform: rotate(180deg);
        }
        .faq-list .answer {
            margin-top: 14px;
            font-size: 15px;
            color: #aab3c9;
            line-height: 1.8;
            padding-left: 8px;
            border-left: 2px solid rgba(59, 130, 246, 0.20);
        }
        .faq-list .answer p {
            margin-bottom: 8px;
        }
        .faq-list .answer strong {
            color: #d0d8e8;
        }

        /* 技术原理速览 */
        .tech-principles {
            padding: 40px 0 20px;
        }
        .principles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin-top: 10px;
        }
        .principle-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 24px 20px;
            text-align: center;
            transition: background 0.2s;
        }
        .principle-card:hover {
            background: rgba(255, 255, 255, 0.05);
        }
        .principle-card .icon {
            font-size: 40px;
            margin-bottom: 10px;
        }
        .principle-card h4 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 6px;
            color: #d0d8e8;
        }
        .principle-card p {
            font-size: 14px;
            color: #aab3c9;
            line-height: 1.7;
        }

        /* 官方政策解读 */
        .policy-section {
            padding: 40px 0 20px;
        }
        .policy-banner {
            background: linear-gradient(135deg, rgba(59,130,246,0.08), rgba(99,102,241,0.05));
            border: 1px solid rgba(59,130,246,0.20);
            border-radius: 20px;
            padding: 28px 24px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            align-items: center;
        }
        .policy-banner h4 {
            font-size: 20px;
            font-weight: 600;
            color: #d0d8e8;
            margin-bottom: 4px;
        }
        .policy-banner p {
            font-size: 14px;
            color: #aab3c9;
            line-height: 1.8;
        }
        .policy-banner .highlight-link {
            color: #3b82f6;
            font-weight: 600;
            text-decoration: underline;
        }
        @media (max-width: 700px) {
            .policy-banner {
                grid-template-columns: 1fr;
            }
        }

        .section-title {
            font-size: 28px;
            font-weight: 700;
            letter-spacing: -0.3px;
            margin-bottom: 6px;
            text-align: center;
        }
        .section-sub {
            color: #8b95a9;
            font-size: 16px;
            text-align: center;
            margin-bottom: 10px;
        }

        /* Footer 与首页保持一致 */
        .footer {
            margin-top: 50px;
            padding: 36px 0 28px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            font-size: 14px;
            color: #7a86a0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 24px;
        }
        .footer-grid .col h5 {
            color: #d0d8e8;
            font-weight: 600;
            font-size: 15px;
            margin-bottom: 10px;
        }
        .footer-grid .col p,
        .footer-grid .col a {
            color: #7a86a0;
            line-height: 1.8;
            display: block;
        }
        .footer-grid .col a:hover {
            color: #c8d0e0;
        }
        .footer-bottom {
            margin-top: 28px;
            padding-top: 18px;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            color: #5d6a82;
        }
        .footer-bottom .version-badge {
            background: rgba(59, 130, 246, 0.10);
            border: 1px solid rgba(59, 130, 246, 0.15);
            padding: 2px 16px;
            border-radius: 40px;
            font-size: 12px;
            color: #8bb4ff;
        }

        /* 页脚下拉工具区（与首页相同） */
        .footer-tools {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            display: flex;
            justify-content: center;
        }
        .footer-select {
            position: relative;
            width: 280px;
            max-width: 100%;
        }
        .footer-select-btn {
            width: 100%;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.12);
            color: #d0d8e8;
            padding: 12px 20px;
            border-radius: 40px;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: background 0.2s, border-color 0.2s;
        }
        .footer-select-btn:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(59, 130, 246, 0.25);
        }
        .footer-select-btn svg {
            transition: transform 0.2s;
        }
        .footer-select.open .footer-select-btn svg {
            transform: rotate(180deg);
        }
        .footer-select-dropdown {
            position: absolute;
            bottom: calc(100% + 8px);
            left: 0;
            right: 0;
            background: #131722;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 8px;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            gap: 4px;
            max-height: 220px;
            overflow-y: auto;
            opacity: 0;
            visibility: hidden;
            transform: translateY(8px);
            transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
            z-index: 200;
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
        }
        .footer-select.open .footer-select-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .footer-select-dropdown a {
            color: #b0baca;
            font-size: 13px;
            padding: 6px 10px;
            border-radius: 8px;
            transition: background 0.15s, color 0.15s;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .footer-select-dropdown a:hover {
            background: rgba(59, 130, 246, 0.12);
            color: #8bb4ff;
        }

        @media (max-width: 900px) {
            .page-hero h1 {
                font-size: 32px;
            }
            .header-inner {
                flex-direction: column;
                gap: 14px;
            }
            .nav {
                justify-content: center;
                gap: 16px;
                font-size: 14px;
            }
            .trust-bar {
                gap: 16px;
            }
        }
        @media (max-width: 600px) {
            .page-hero h1 {
                font-size: 26px;
            }
            .nav {
                gap: 12px;
                font-size: 13px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
            .footer-select {
                width: 100%;
            }
            .tabs {
                flex-direction: column;
                align-items: center;
            }
            .tab-btn {
                width: 100%;
                max-width: 280px;
                text-align: center;
            }
        }