        /* ============ 全局基础样式 ============ */
        * { margin:0; padding:0; box-sizing:border-box; font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Segoe UI", Roboto, sans-serif; }
        :root {
            --primary: #7c3aed;
            --primary-light: #a78bfa;
            --primary-dark: #5b21b6;
            --secondary: #3b82f6;
            --accent: #ec4899;
            --bg: #faf5ff;
            --bg-card: #ffffff;
            --text-dark: #0f172a;
            --text-mid: #475569;
            --text-light: #94a3b8;
            --border: #e2e8f0;
            --shadow: 0 4px 24px rgba(124, 58, 237, 0.08);
            --radius: 16px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --red: #dc2626;
            --green: #16a34a;
            --orange: #f59e0b;
        }
        body { background: var(--bg); color: var(--text-dark); line-height: 1.6; }
        a { text-decoration: none; color: inherit; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

        /* ============ 头部导航（与首页一致） ============ */
        header {
            position: sticky; top: 0; z-index: 100;
            background: rgba(255,255,255,0.72); backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(124,58,237,0.06);
        }
        .nav-inner {
            display: flex; justify-content: space-between; align-items: center;
            padding: 0.8rem 0; max-width: 1200px; margin: 0 auto; padding: 0.8rem 2rem;
        }
        .brand { display: flex; align-items: center; gap: 0.6rem; font-weight: 800; font-size: 1.3rem; color: var(--primary-dark); }
        .brand svg { width: 32px; height: 32px; }
        .brand span { background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .nav-links { display: flex; gap: 2.2rem; list-style: none; font-weight: 500; font-size: 0.95rem; color: var(--text-mid); }
        .nav-links a { transition: var(--transition); }
        .nav-links a:hover, .nav-links a.active { color: var(--primary); }
        .nav-actions { display: flex; gap: 0.8rem; align-items: center; }
        .btn-primary {
            padding: 0.5rem 1.4rem; background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 40px; font-weight: 600; font-size: 0.85rem; color: #fff;
            transition: var(--transition); box-shadow: 0 2px 12px rgba(124,58,237,0.25);
            display: inline-block;
        }
        .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(124,58,237,0.35); }

        /* ============ Hero 区域 ============ */
        .faq-hero {
            padding: 4rem 0 2.5rem; text-align: center;
        }
        .faq-hero .badge {
            display: inline-flex; align-items: center; gap: 0.4rem;
            background: rgba(124,58,237,0.08); color: var(--primary);
            padding: 0.2rem 0.8rem; border-radius: 40px; font-size: 0.8rem; font-weight: 600;
            border: 1px solid rgba(124,58,237,0.12); margin-bottom: 1rem;
        }
        .faq-hero h1 {
            font-size: 3.2rem; font-weight: 900; letter-spacing: -1.5px; line-height: 1.1;
            margin-bottom: 0.8rem;
        }
        .faq-hero h1 .gradient {
            background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        }
        .faq-hero .sub {
            font-size: 1.15rem; color: var(--text-mid); max-width: 780px; margin: 0 auto;
        }
        .faq-hero .sub strong { color: var(--primary-dark); }

        /* 安全评分仪表盘 */
        .security-score {
            display: flex; align-items: center; justify-content: center; gap: 2rem;
            margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--border);
            flex-wrap: wrap;
        }
        .score-circle {
            width: 120px; height: 120px; border-radius: 50%;
            background: conic-gradient(var(--green) 0deg 342deg, #e2e8f0 342deg 360deg);
            display: grid; place-items: center; position: relative;
            box-shadow: 0 0 40px rgba(22,163,74,0.15);
        }
        .score-circle::before {
            content: ''; position: absolute; width: 100px; height: 100px;
            background: #fff; border-radius: 50%;
        }
        .score-circle .score-value {
            position: relative; z-index: 1; text-align: center;
        }
        .score-circle .score-value strong {
            font-size: 2rem; font-weight: 900; color: var(--green);
        }
        .score-circle .score-value span {
            font-size: 0.7rem; color: var(--text-light);
        }
        .score-stats {
            display: flex; gap: 2rem; flex-wrap: wrap;
        }
        .score-stat { text-align: center; }
        .score-stat strong {
            display: block; font-size: 1.8rem; font-weight: 800; color: var(--primary-dark);
        }
        .score-stat span { font-size: 0.8rem; color: var(--text-light); }

        /* ============ 分类标签筛选 ============ */
        .filter-section {
            padding: 2rem 0 1rem; text-align: center;
        }
        .filter-tabs {
            display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center;
        }
        .filter-tab {
            padding: 0.5rem 1.4rem; border-radius: 40px; cursor: pointer;
            background: #fff; border: 1px solid var(--border); color: var(--text-mid);
            font-weight: 600; font-size: 0.85rem; transition: var(--transition);
        }
        .filter-tab:hover { border-color: var(--primary-light); color: var(--primary); }
        .filter-tab.active {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: #fff; border-color: transparent;
            box-shadow: 0 2px 12px rgba(124,58,237,0.25);
        }

        /* ============ FAQ 列表 ============ */
        .faq-list-section {
            padding: 2rem 0 3rem;
        }
        .faq-category {
            margin-bottom: 2rem;
        }
        .faq-category h3 {
            font-size: 1.5rem; font-weight: 800; letter-spacing: -0.5px;
            margin-bottom: 1rem; color: var(--primary-dark);
            display: flex; align-items: center; gap: 0.6rem;
        }
        .faq-category h3 .cat-icon {
            width: 32px; height: 32px; border-radius: 8px;
            background: rgba(124,58,237,0.08); display: grid; place-items: center;
        }
        .faq-category h3 .cat-icon svg { width: 18px; height: 18px; fill: var(--primary); }
        .faq-item {
            background: #fff; border: 1px solid var(--border); border-radius: 12px;
            margin-bottom: 0.8rem; overflow: hidden; transition: var(--transition);
        }
        .faq-item:hover { border-color: var(--primary-light); }
        .faq-item summary {
            padding: 1.2rem 1.5rem; font-weight: 600; cursor: pointer; list-style: none;
            display: flex; align-items: center; justify-content: space-between;
        }
        .faq-item summary::after {
            content: '+'; font-size: 1.5rem; color: var(--primary);
            transition: var(--transition); flex-shrink: 0;
        }
        .faq-item[open] summary::after { content: '−'; transform: rotate(180deg); }
        .faq-item .faq-answer {
            padding: 0 1.5rem 1.2rem; color: var(--text-mid); font-size: 0.95rem;
        }
        .faq-item .faq-answer p { margin-bottom: 0.5rem; }
        .faq-item .faq-answer .audit-ref {
            display: inline-block; background: var(--bg); border: 1px solid var(--border);
            padding: 0.2rem 0.6rem; border-radius: 4px; font-size: 0.75rem;
            color: var(--text-mid); margin-top: 0.5rem;
        }
        .faq-item .faq-answer a {
            color: var(--primary); font-weight: 600;
        }

        /* ============ 验证矩阵表格 ============ */
        .matrix-section {
            padding: 4rem 0; background: #fff; border-top: 1px solid var(--border);
        }
        .matrix-section h2 {
            text-align: center; font-size: 2.2rem; font-weight: 800; letter-spacing: -0.5px;
            margin-bottom: 0.4rem;
        }
        .matrix-section .sub {
            text-align: center; color: var(--text-mid); max-width: 560px; margin: 0 auto 2.5rem;
        }
        .matrix-table {
            max-width: 800px; margin: 0 auto; border-radius: var(--radius);
            overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow);
        }
        .matrix-row {
            display: grid; grid-template-columns: 1.5fr 1fr 1fr;
            border-bottom: 1px solid var(--border);
        }
        .matrix-row:last-child { border-bottom: none; }
        .matrix-header {
            background: var(--bg); font-weight: 700; color: var(--text-dark);
        }
        .matrix-cell {
            padding: 0.9rem 1.2rem; font-size: 0.9rem; color: var(--text-mid);
            display: flex; align-items: center; gap: 0.4rem;
        }
        .matrix-cell.feature { font-weight: 600; color: var(--text-dark); background: #fafafa; }
        .cell-yes { color: var(--green); }
        .cell-no { color: var(--red); }

        /* ============ 审计报告下载区 ============ */
        .audit-section {
            padding: 4rem 0; background: var(--bg); border-top: 1px solid var(--border);
        }
        .audit-section h2 {
            text-align: center; font-size: 2.2rem; font-weight: 800; letter-spacing: -0.5px;
            margin-bottom: 0.4rem;
        }
        .audit-section .sub {
            text-align: center; color: var(--text-mid); max-width: 560px; margin: 0 auto 2.5rem;
        }
        .audit-grid {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
        }
        .audit-card {
            background: #fff; border-radius: var(--radius); padding: 2rem;
            border: 1px solid var(--border); text-align: center; transition: var(--transition);
        }
        .audit-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow); transform: translateY(-4px); }
        .audit-card .a-icon {
            width: 48px; height: 48px; margin: 0 auto 1rem; border-radius: 12px;
            background: rgba(124,58,237,0.08); display: grid; place-items: center;
        }
        .audit-card .a-icon svg { width: 24px; height: 24px; fill: var(--primary); }
        .audit-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.3rem; }
        .audit-card p { color: var(--text-mid); font-size: 0.85rem; margin-bottom: 1rem; }
        .audit-card .btn-download {
            display: inline-block; padding: 0.5rem 1.4rem; border-radius: 40px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: #fff; font-weight: 600; font-size: 0.85rem; transition: var(--transition);
        }
        .audit-card .btn-download:hover { transform: scale(1.03); }

        /* ============ 官方声明横幅 ============ */
        .statement-banner {
            background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
            color: #fff; padding: 3rem 0; text-align: center;
        }
        .statement-banner h3 {
            font-size: 1.8rem; font-weight: 800; margin-bottom: 0.6rem;
        }
        .statement-banner p {
            max-width: 700px; margin: 0 auto; opacity: 0.9;
        }

        /* ============ CTA ============ */
        .cta-section {
            padding: 4rem 0; background: #fff; border-top: 1px solid var(--border);
            text-align: center;
        }
        .cta-section h2 {
            font-size: 2.2rem; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 0.6rem;
        }
        .cta-section p {
            color: var(--text-mid); max-width: 480px; margin: 0 auto 1.8rem;
        }
        .cta-section .btn-primary { padding: 0.8rem 2.4rem; font-size: 1rem; }

        /* ============ 页脚（与首页一致） ============ */
        footer { background: #0f172a; color: #94a3b8; padding: 4rem 0 2rem; font-size: 0.9rem; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
        .footer-brand p { margin-top: 0.8rem; max-width: 300px; color: #64748b; }
        .footer-col h4 { color: #f1f5f9; font-size: 0.95rem; margin-bottom: 1rem; }
        .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
        .footer-col a { color: #94a3b8; transition: var(--transition); }
        .footer-col a:hover { color: var(--primary-light); }
        .footer-bottom {
            border-top: 1px solid #1e293b; padding-top: 2rem;
            display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
        }

        /* 页脚下拉工具区（与首页一致） */
        .footer-tools {
            display: flex; flex-wrap: wrap; gap: 1.5rem; margin: 2rem 0;
            padding-top: 1.5rem; border-top: 1px solid #1e293b;
        }
        .footer-tools-title {
            display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem;
            font-size: 0.8rem; font-weight: 600; color: #64748b;
            text-transform: uppercase; letter-spacing: 1.5px;
            width: 100%;
        }
        .footer-tools-line {
            flex: 1; height: 1px;
            background: linear-gradient(90deg, rgba(168,85,247,0.25), transparent);
        }
        .footer-tools-row {
            display: flex; flex-wrap: wrap; gap: 1.2rem; align-items: flex-start;
            width: 100%;
        }
        .footer-select { position: relative; display: inline-block; }
        .footer-select-btn {
            display: flex; align-items: center; justify-content: space-between; gap: 8px;
            width: 240px; padding: 11px 16px;
            background: rgba(255,255,255,0.04); color: #e2e8f0;
            border: 1px solid rgba(168,85,247,0.25); border-radius: 8px;
            font-size: 13px; cursor: pointer; transition: all 0.3s ease;
        }
        .footer-select-btn:hover { border-color: var(--primary-light); background: rgba(124,58,237,0.1); color: #fff; }
        .footer-select-btn .arrow { flex-shrink: 0; transition: transform 0.3s ease; margin-left: auto; }
        .footer-select.active .footer-select-btn .arrow { transform: rotate(180deg); }
        .footer-select-dropdown {
            position: absolute; bottom: calc(100% + 8px); left: 0;
            width: 100%; min-width: 280px; max-height: 280px; overflow-y: auto;
            background: rgba(20,10,35,0.98); border: 1px solid rgba(168,85,247,0.3);
            border-radius: 8px; padding: 6px 0; display: none; z-index: 999;
            box-shadow: 0 12px 32px rgba(0,0,0,0.35); backdrop-filter: blur(8px);
        }
        .footer-select.active .footer-select-dropdown { display: block; }
        .footer-select-dropdown a {
            display: block; padding: 9px 16px; color: #b0aac2;
            text-decoration: none; font-size: 12px; transition: all 0.2s ease;
            white-space: nowrap;
        }
        .footer-select-dropdown a:hover { color: #fff; background: rgba(124,58,237,0.15); }
        .footer-select-dropdown::-webkit-scrollbar { width: 4px; }
        .footer-select-dropdown::-webkit-scrollbar-track { background: transparent; }
        .footer-select-dropdown::-webkit-scrollbar-thumb { background: rgba(168,85,247,0.4); border-radius: 4px; }

        /* ============ 响应式 ============ */
        @media (max-width: 1024px) {
            .audit-grid { grid-template-columns: 1fr 1fr; }
            .matrix-row { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 768px) {
            .faq-hero h1 { font-size: 2.2rem; }
            .security-score { flex-direction: column; }
            .score-stats { justify-content: center; }
            .audit-grid { grid-template-columns: 1fr; }
            .nav-links { display: none; }
            .container { padding: 0 1rem; }
            .nav-inner { padding: 0.8rem 1rem; }
            .filter-tab { padding: 0.4rem 1rem; font-size: 0.8rem; }
        }
        @media (max-width: 640px) {
            .footer-grid { grid-template-columns: 1fr; }
            .footer-tools-row { flex-direction: column; }
            .footer-select, .footer-select-btn { width: 100%; }
            .footer-select-dropdown { min-width: 100%; }
            .footer-bottom { flex-direction: column; gap: 0.8rem; }
        }