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

        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Helvetica, sans-serif;
            background-color: #ffffff;
            color: #111111;
            line-height: 1.5;
            scroll-behavior: smooth;
        }

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

        /* header 与首页一致 */
        .header {
            background-color: #ffffff;
            border-bottom: 1px solid #e5e7eb;
            position: sticky;
            top: 0;
            z-index: 50;
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            padding: 18px 0;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #25D366, #128C7E);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            gap: 32px;
            align-items: center;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            font-weight: 500;
            color: #1f2937;
            transition: color 0.2s;
            font-size: 1rem;
        }

        .nav-links a:hover {
            color: #25D366;
        }

        .nav-links .active {
            color: #128C7E;
            font-weight: 600;
        }

        .btn-outline {
            border: 1px solid #25D366;
            background: transparent;
            padding: 8px 20px;
            border-radius: 40px;
            font-weight: 600;
            color: #128C7E;
            transition: all 0.2s;
            text-decoration: none;
            cursor: pointer;
        }

        .btn-outline:hover {
            background: #25D36610;
            border-color: #128C7E;
        }

        .btn-primary {
            display: inline-block;
            background-color: #25D366;
            color: white;
            font-weight: 600;
            padding: 12px 32px;
            border-radius: 40px;
            text-decoration: none;
            transition: background 0.2s, transform 0.1s;
            border: none;
            font-size: 1rem;
            cursor: pointer;
        }

        .btn-primary:hover {
            background-color: #128C7E;
        }

        /* 页面标题 */
        .page-hero {
            background: linear-gradient(145deg, #f9fafb 0%, #ffffff 100%);
            padding: 64px 0 48px;
            text-align: center;
            border-bottom: 1px solid #eef2f6;
        }

        .page-hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #1f2b3c, #075e54);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 16px;
        }

        .page-hero .subtitle {
            font-size: 1.15rem;
            color: #4b5563;
            max-width: 720px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 16px;
            text-align: center;
        }

        .section-desc {
            color: #4b5563;
            max-width: 700px;
            margin: 0 auto 48px;
            font-size: 1.05rem;
            text-align: center;
            line-height: 1.6;
        }

        /* 下载卡片网格 */
        .download-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            margin-top: 24px;
        }

        .dl-card {
            background: #fff;
            border-radius: 28px;
            padding: 32px 28px;
            border: 2px solid #edf2f7;
            transition: all 0.25s;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .dl-card:hover {
            border-color: #25D366;
            box-shadow: 0 18px 32px -12px rgba(37, 211, 102, 0.18);
            transform: translateY(-4px);
        }

        .dl-card .platform-icon {
            font-size: 3rem;
            margin-bottom: 12px;
        }

        .dl-card h3 {
            font-weight: 700;
            font-size: 1.4rem;
            margin-bottom: 8px;
        }

        .dl-card .version {
            color: #6b7280;
            font-size: 0.85rem;
            margin-bottom: 16px;
        }

        .dl-card .features-list {
            list-style: none;
            text-align: left;
            margin-bottom: 24px;
            color: #374151;
            font-size: 0.9rem;
        }

        .dl-card .features-list li {
            padding: 5px 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .dl-card .features-list li::before {
            content: '✓';
            color: #25D366;
            font-weight: 700;
            flex-shrink: 0;
        }

        .dl-card .btn-download {
            display: inline-block;
            background: #25D366;
            color: #fff;
            font-weight: 600;
            padding: 12px 28px;
            border-radius: 40px;
            text-decoration: none;
            transition: background 0.2s;
            font-size: 0.95rem;
        }

        .dl-card .btn-download:hover {
            background: #128C7E;
        }

        .dl-card.recommend {
            border-color: #25D366;
            background: #f9fefb;
        }

        .dl-card.recommend::after {
            content: '推荐';
            position: absolute;
            top: 16px;
            right: 16px;
            background: #25D366;
            color: #fff;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 20px;
            letter-spacing: 0.02em;
        }

        /* 工具分类区 */
        .tool-category {
            padding: 80px 0;
        }

        .tool-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 28px;
            margin-top: 24px;
        }

        .tool-item {
            background: #f9fafb;
            border: 1px solid #eef2f6;
            border-radius: 24px;
            padding: 28px 22px;
            text-align: center;
            transition: 0.2s;
        }

        .tool-item:hover {
            border-color: #cbf0da;
            box-shadow: 0 12px 24px -8px rgba(0,0,0,0.05);
            background: #fff;
        }

        .tool-item .tool-icon {
            font-size: 2.4rem;
            margin-bottom: 12px;
        }

        .tool-item h4 {
            font-weight: 700;
            margin-bottom: 8px;
            font-size: 1.1rem;
        }

        .tool-item p {
            font-size: 0.88rem;
            color: #6b7280;
            margin-bottom: 16px;
            line-height: 1.5;
        }

        .tool-item .btn-small {
            display: inline-block;
            padding: 8px 20px;
            border-radius: 24px;
            background: #fff;
            border: 1px solid #25D366;
            color: #128C7E;
            font-weight: 600;
            text-decoration: none;
            font-size: 0.85rem;
            transition: 0.2s;
        }

        .tool-item .btn-small:hover {
            background: #25D36610;
            border-color: #128C7E;
        }

        /* 优化建议区 */
        .optimization-tips {
            background: #f9fafb;
            border-radius: 32px;
            padding: 48px 40px;
            margin: 0 0 80px;
            border: 1px solid #eef2f6;
        }

        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
            margin-top: 32px;
        }

        .tip-box {
            background: #fff;
            border-radius: 16px;
            padding: 24px 20px;
            border: 1px solid #edf2f7;
            transition: 0.2s;
        }

        .tip-box:hover {
            border-color: #d1fae5;
            box-shadow: 0 8px 20px -6px rgba(37, 211, 102, 0.1);
        }

        .tip-box .tip-icon {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .tip-box h4 {
            font-weight: 700;
            margin-bottom: 8px;
        }

        .tip-box p {
            font-size: 0.9rem;
            color: #4b5563;
            line-height: 1.5;
        }

        /* 内链 */
        .inner-links {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            margin: 0 0 56px;
        }

        .inner-link-card {
            background: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 16px;
            padding: 16px 28px;
            text-decoration: none;
            font-weight: 600;
            color: #1f2937;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: 0.2s;
        }

        .inner-link-card:hover {
            border-color: #25D366;
            background: #f0fdf4;
        }

        /* footer 与首页一致 */
        .footer {
            border-top: 1px solid #eaeef3;
            padding: 48px 0 32px;
            background: #fafcff;
        }

        .footer-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 32px;
            margin-bottom: 40px;
        }

        .footer-col {
            min-width: 140px;
        }

        .footer-col h4 {
            font-weight: 600;
            margin-bottom: 18px;
            color: #111827;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col li {
            margin-bottom: 12px;
        }

        .footer-col a {
            text-decoration: none;
            color: #4b5563;
            font-size: 0.9rem;
        }

        .footer-col a:hover {
            color: #128C7E;
        }

        .copyright {
            text-align: center;
            padding-top: 28px;
            border-top: 1px solid #e5e7eb;
            font-size: 0.8rem;
            color: #6c757d;
        }

        @media (max-width: 768px) {
            .nav {
                flex-direction: column;
                gap: 16px;
            }
            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 20px;
            }
            .page-hero h1 {
                font-size: 2rem;
            }
            .section-title {
                font-size: 1.6rem;
            }
            .download-cards {
                grid-template-columns: 1fr;
            }
            .optimization-tips {
                padding: 32px 20px;
            }
        }