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

        body {
            font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, sans-serif;
            background: #fefefe;
            color: #11181c;
            line-height: 1.45;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 32px;
        }

        /* 导航 */
        .site-header {
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: box-shadow 0.3s ease;
        }
        .site-header.scrolled {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        }
        .header-flex {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0;
            flex-wrap: wrap;
            gap: 20px;
        }
        .brand {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            flex-shrink: 0;
        }
        .brand-logo-img {
            width: 38px;
            height: 38px;
            object-fit: contain;
            border-radius: 8px;
            flex-shrink: 0;
        }
        .brand-name {
            font-size: 1.55rem;
            font-weight: 700;
            letter-spacing: -0.4px;
            color: #0c4e6e;
            white-space: nowrap;
        }
        .brand-name span {
            font-weight: 400;
            color: #5a7d8c;
            font-size: 0.85rem;
            letter-spacing: 0;
            margin-left: 2px;
        }
        .nav-links-new {
            display: flex;
            gap: 24px;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-links-new a {
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            color: #2c3e50;
            transition: color 0.2s, transform 0.15s;
            position: relative;
            white-space: nowrap;
        }
        .nav-links-new a:hover,
        .nav-links-new a.active {
            color: #1f7b8c;
        }
        .nav-links-new a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: #1f7b8c;
            border-radius: 2px;
            transition: width 0.25s ease;
        }
        .nav-links-new a:hover::after,
        .nav-links-new a.active::after {
            width: 100%;
        }
        .btn-ghost {
            border: 1px solid #cbd5e1;
            padding: 7px 20px;
            border-radius: 100px;
            background: transparent;
            font-weight: 500;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.2s;
            text-decoration: none;
            color: #2c3e50;
            white-space: nowrap;
        }
        .btn-ghost:hover {
            border-color: #1f7b8c;
            color: #1f7b8c;
            background: #f0faf9;
        }

        /* 页面标题区 */
        .page-hero {
            padding: 50px 0 30px;
            text-align: center;
            background: #ffffff;
        }
        .page-hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            letter-spacing: -0.025em;
            background: linear-gradient(135deg, #134e6f 0%, #1e6b5e 60%, #2a7f6e 100%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-bottom: 14px;
        }
        .page-hero .lead {
            font-size: 1.1rem;
            color: #3e5a6c;
            max-width: 700px;
            margin: 0 auto 20px;
            line-height: 1.55;
        }
        .badge-new {
            background: #e6f7f5;
            color: #0f6e6a;
            padding: 6px 16px;
            border-radius: 40px;
            font-size: 0.82rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 18px;
        }
        .pulse-dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            background: #0f6e6a;
            border-radius: 50%;
            animation: softPulse 2s infinite;
            margin-right: 6px;
            vertical-align: middle;
        }
        @keyframes softPulse {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.7;
            }
        }
        .intro-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px 28px;
            list-style: none;
            margin: 16px 0 0;
            font-size: 0.95rem;
            color: #4a5f6b;
            font-weight: 500;
        }
        .intro-list li::before {
            content: '✓';
            color: #0f6e6a;
            margin-right: 6px;
            font-weight: 700;
        }

        /* 下载卡片区域 */
        .download-section {
            padding: 40px 0 60px;
            background: #f9fbfd;
        }
        .download-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
        }
        .download-card {
            background: #ffffff;
            border-radius: 28px;
            padding: 30px 26px;
            border: 1px solid #e8eef3;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            position: relative;
            text-decoration: none;
            color: inherit;
        }
        .download-card:hover {
            transform: translateY(-6px);
            border-color: #b8d8d4;
            box-shadow: 0 20px 32px -14px rgba(15, 110, 106, 0.12);
        }
        .download-card .card-badge {
            position: absolute;
            top: 14px;
            right: 14px;
            background: #e6f7f5;
            color: #0f6e6a;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 20px;
            letter-spacing: 0.03em;
        }
        .download-card.recommended {
            border-color: #0f6e6a;
            background: #fafdfc;
            box-shadow: 0 6px 18px rgba(15, 110, 106, 0.07);
        }
        .download-card.recommended .card-badge {
            background: #0f6e6a;
            color: #fff;
        }
        .card-icon {
            font-size: 2.4rem;
            margin-bottom: 16px;
            line-height: 1;
        }
        .download-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1a3c4a;
            margin-bottom: 8px;
        }
        .download-card .card-desc {
            font-size: 0.9rem;
            color: #5c7380;
            line-height: 1.5;
            margin-bottom: 14px;
            flex: 1;
        }
        .card-features {
            list-style: none;
            font-size: 0.85rem;
            color: #3e5a6c;
            margin: 0 0 18px;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 14px;
        }
        .card-features li {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .card-features li::before {
            content: '●';
            color: #0f6e6a;
            font-size: 0.55rem;
            flex-shrink: 0;
        }
        .btn-download {
            background: #0f6e6a;
            color: #fff;
            border: none;
            padding: 12px 24px;
            border-radius: 100px;
            font-weight: 600;
            font-size: 0.93rem;
            text-align: center;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            transition: all 0.25s;
            cursor: pointer;
            align-self: flex-start;
        }
        .btn-download:hover {
            background: #0b5653;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(15, 110, 106, 0.25);
        }
        .btn-outline-sm {
            background: transparent;
            border: 1.5px solid #c0dfd9;
            color: #0f6e6a;
            padding: 10px 20px;
            border-radius: 100px;
            font-weight: 600;
            font-size: 0.88rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: all 0.2s;
            align-self: flex-start;
        }
        .btn-outline-sm:hover {
            border-color: #0f6e6a;
            background: #f6fbfa;
            transform: translateY(-2px);
        }
        .platform-badge {
            display: inline-block;
            background: #f1f5f9;
            color: #2c3e50;
            font-size: 0.75rem;
            padding: 3px 10px;
            border-radius: 12px;
            margin-right: 6px;
            font-weight: 500;
            letter-spacing: 0.02em;
        }

        /* SEO长内容区 */
        .seo-section {
            padding: 60px 0;
            background: #ffffff;
        }
        .seo-content {
            max-width: 900px;
            margin: 0 auto;
        }
        .seo-content h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #1a3c4a;
            margin-bottom: 18px;
            letter-spacing: -0.02em;
        }
        .seo-content h3 {
            font-size: 1.35rem;
            font-weight: 700;
            color: #1a3c4a;
            margin: 24px 0 10px;
        }
        .seo-content p {
            font-size: 1rem;
            color: #3e5a6c;
            line-height: 1.7;
            margin-bottom: 16px;
        }
        .highlight-box {
            background: #f6faf9;
            border-left: 4px solid #1f7b8c;
            padding: 18px 22px;
            border-radius: 0 12px 12px 0;
            margin: 22px 0;
            font-weight: 500;
            color: #1a4d55;
            font-size: 0.97rem;
            line-height: 1.6;
        }
        .seo-list {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 10px;
            margin: 16px 0;
        }
        .seo-list li {
            padding: 10px 14px;
            background: #f9fbfc;
            border-radius: 10px;
            font-size: 0.93rem;
            color: #3e5a6c;
            display: flex;
            align-items: center;
            gap: 8px;
            border: 1px solid #eef2f7;
        }
        .seo-list li::before {
            content: '🔹';
            font-size: 0.8rem;
            flex-shrink: 0;
        }

        /* 内链区 */
        .internal-links {
            padding: 30px 0 50px;
            background: #f9fbfd;
        }
        .link-cards {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
        }
        .link-card {
            background: #fff;
            border: 1px solid #e8eef3;
            border-radius: 18px;
            padding: 16px 22px;
            text-decoration: none;
            color: #2c3e50;
            font-weight: 600;
            font-size: 0.93rem;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .link-card:hover {
            border-color: #1f7b8c;
            background: #f6fbfa;
            color: #1f7b8c;
            transform: translateY(-2px);
        }
        .link-arrow {
            color: #1f7b8c;
            font-weight: 700;
        }

        /* 页脚 */
        .footer-alt {
            background: #f1f5f9;
            border-top: none;
            padding: 44px 0 32px;
            font-size: 0.9rem;
            color: #5c7380;
        }
        .footer-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 32px;
        }
        .footer-col h5 {
            font-weight: 700;
            color: #1a3c4a;
            margin-bottom: 10px;
            font-size: 0.95rem;
        }
        .footer-col a {
            display: block;
            color: #5c7380;
            text-decoration: none;
            margin-bottom: 6px;
            transition: color 0.2s;
            font-size: 0.88rem;
        }
        .footer-col a:hover {
            color: #1f7b8c;
        }
        .footer-bottom {
            text-align: center;
            margin-top: 28px;
            padding-top: 20px;
            border-top: 1px solid #dde4ea;
            font-size: 0.82rem;
            color: #8a9ba7;
        }

        /* 响应式 */
        @media (max-width: 780px) {
            .page-hero h1 {
                font-size: 2rem;
            }
            .container {
                padding: 0 20px;
            }
            .download-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
            .nav-links-new {
                gap: 14px;
            }
            .nav-links-new a {
                font-size: 0.85rem;
            }
            .brand-name span {
                display: none;
            }
            .brand-name {
                font-size: 1.3rem;
            }
            .seo-list {
                grid-template-columns: 1fr 1fr;
            }
            .download-card {
                padding: 20px 18px;
            }
        }
        @media (max-width: 480px) {
            .download-grid {
                grid-template-columns: 1fr;
            }
            .seo-list {
                grid-template-columns: 1fr;
            }
            .page-hero h1 {
                font-size: 1.8rem;
            }
            .intro-list {
                flex-direction: column;
                align-items: center;
            }
            .header-flex {
                gap: 12px;
            }
        }