        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: system-ui, -apple-system, 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
            background: linear-gradient(145deg, #f6f9fc 0%, #eef2f5 100%);
            color: #1a2c3e;
            line-height: 1.6;
            scroll-behavior: smooth;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Header 统一风格 */
        .site-header {
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
        }

        .navbar {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 0;
            gap: 1rem;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .logo-svg {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-text {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(135deg, #0f2b3d, #1e4a6e);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            letter-spacing: -0.3px;
        }

        .badge {
            font-size: 0.7rem;
            background: #eef2ff;
            padding: 0.2rem 0.6rem;
            border-radius: 30px;
            color: #1e4a6e;
            font-weight: 500;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            flex-wrap: wrap;
        }

        .nav-links a {
            text-decoration: none;
            font-weight: 500;
            color: #2c4c6c;
            transition: color 0.2s;
            font-size: 1rem;
            white-space: nowrap;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #0f6b9c;
            border-bottom: 2px solid #0f6b9c;
            padding-bottom: 0.25rem;
        }

        /* FAQ Hero */
        .faq-hero {
            padding: 3rem 0 2rem;
            text-align: center;
        }

        .faq-hero h1 {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(125deg, #0a2e42, #1f6390);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-bottom: 1rem;
        }

        .faq-hero .subtitle {
            font-size: 1.1rem;
            color: #3a627c;
            max-width: 680px;
            margin: 0 auto;
        }

        /* 问题分类标签 */
        .faq-categories {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin: 2rem 0 1rem;
        }

        .faq-category {
            background: rgba(255, 255, 255, 0.7);
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: 2rem;
            padding: 0.5rem 1.5rem;
            font-size: 0.9rem;
            font-weight: 500;
            color: #1e5a7a;
            text-decoration: none;
            transition: all 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }

        .faq-category:hover {
            background: white;
            box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.1);
            transform: translateY(-2px);
        }

        /* FAQ 列表 */
        .faq-section {
            padding: 2rem 0;
        }

        .section-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1a3a4e;
            margin-bottom: 0.8rem;
            text-align: center;
        }

        details.faq-item {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(4px);
            border-radius: 1.8rem;
            border: 1px solid rgba(255, 255, 255, 0.6);
            margin-bottom: 1.2rem;
            padding: 0.4rem 1.8rem;
            transition: all 0.25s;
            box-shadow: 0 6px 16px -8px rgba(0, 0, 0, 0.05);
        }

        details.faq-item[open] {
            background: white;
            box-shadow: 0 14px 28px -12px rgba(0, 0, 0, 0.12);
        }

        details.faq-item summary {
            font-weight: 650;
            font-size: 1.2rem;
            color: #1a3a4e;
            cursor: pointer;
            list-style: none;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 1rem 0;
        }

        details.faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-icon {
            font-size: 1.8rem;
            flex-shrink: 0;
        }

        .faq-arrow {
            margin-left: auto;
            font-size: 1.2rem;
            color: #1e5a7a;
            transition: transform 0.3s;
            display: inline-block;
        }

        details.faq-item[open] .faq-arrow {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 0 1.5rem 2.8rem;
            color: #3e627c;
            line-height: 1.8;
        }

        .faq-answer p {
            margin-bottom: 0.8rem;
        }

        .faq-answer ul,
        .faq-answer ol {
            margin: 0.8rem 0 0.8rem 1.2rem;
            padding-left: 0.5rem;
        }

        .faq-answer li {
            margin-bottom: 0.4rem;
        }

        .highlight-tip {
            background: #f0f7fc;
            border-left: 4px solid #1e5a7a;
            padding: 0.8rem 1.2rem;
            border-radius: 0.6rem;
            margin: 1rem 0;
            font-size: 0.95rem;
            color: #1a3a4e;
        }

        .inline-download-link {
            display: inline-block;
            margin-top: 0.5rem;
            font-weight: 600;
            color: #1e5a7a;
            text-decoration: none;
            border: 1px solid #1e5a7a;
            padding: 0.4rem 1.2rem;
            border-radius: 24px;
            font-size: 0.9rem;
            transition: 0.2s;
        }

        .inline-download-link:hover {
            background: rgba(30, 90, 122, 0.08);
        }

        /* 内链区域 */
        .internal-links-section {
            padding: 2rem 0 4rem;
        }

        .internal-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .internal-link-card {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 1.2rem;
            padding: 1rem 1.3rem;
            text-decoration: none;
            color: #2c4c6c;
            font-weight: 500;
            transition: all 0.2s;
            border: 1px solid rgba(0, 0, 0, 0.04);
            font-size: 0.95rem;
        }

        .internal-link-card:hover {
            background: white;
            transform: translateX(4px);
            box-shadow: 0 6px 16px -6px rgba(0, 0, 0, 0.1);
            color: #0f6b9c;
        }

        .internal-link-card .link-arrow {
            margin-left: auto;
            color: #1e5a7a;
            font-weight: 700;
            font-size: 1.1rem;
            transition: transform 0.2s;
        }

        .internal-link-card:hover .link-arrow {
            transform: translateX(4px);
        }

        .info-banner {
            background: linear-gradient(100deg, #e7f0f5 0%, #dce8ef 100%);
            border-radius: 2rem;
            padding: 2rem 1.5rem;
            margin: 1rem auto 3rem;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            max-width: 800px;
        }

        .info-banner p {
            margin: 0;
        }

        .domain {
            font-family: monospace;
            background: rgba(0, 0, 0, 0.05);
            padding: 0.2rem 0.5rem;
            border-radius: 12px;
        }

        .site-footer {
            background: #0f2b38;
            color: #cbdbe2;
            padding: 2.5rem 0;
            margin-top: 2rem;
            border-top: 1px solid #203e4e;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1.5rem;
            align-items: center;
        }

        .copyright {
            font-size: 0.85rem;
        }

        .footer-links a {
            color: #bfd7e5;
            text-decoration: none;
            margin-left: 1.5rem;
            font-size: 0.9rem;
        }

        .footer-links a:hover {
            color: white;
        }

        @media (max-width: 680px) {
            .container {
                padding: 0 1.25rem;
            }
            .navbar {
                flex-direction: column;
            }
            .nav-links {
                gap: 1rem;
            }
            .faq-hero h1 {
                font-size: 2rem;
            }
            details.faq-item summary {
                font-size: 1rem;
            }
            .faq-answer {
                padding-left: 1rem;
            }
            .faq-categories {
                gap: 0.5rem;
            }
        }