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

        body {
            font-family: 'Segoe UI', system-ui, -apple-system, 'Inter', 'SF Pro Text', 'PingFang SC', 'Microsoft YaHei', Roboto, Helvetica, Arial, sans-serif;
            background: #f5f7fc;
            color: #1a2c3e;
            line-height: 1.5;
        }

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

        .site-header {
            background: rgba(255,255,255,0.96);
            backdrop-filter: blur(2px);
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid #eef2f6;
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 0.9rem 0;
        }

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

.logo {
    width: 120px;   /* 根据需要调整大小 */
    height: auto;   /* 保持比例 */
    margin-right: 10px; /* 与文字徽章保持间距 */
}

.badge {
    font-size: 14px;
    color: #fff;
    background-color: #007bff;
    padding: 4px 8px;
    border-radius: 4px;
}


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

        .nav-links a {
            text-decoration: none;
            font-weight: 500;
            color: #2c3e4e;
            transition: color 0.2s;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #1f8cad;
            border-bottom: 2px solid #1f8cad;
            padding-bottom: 4px;
        }

        .page-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin: 2rem 0 0.5rem;
            background: linear-gradient(135deg, #1c2e3a, #1f6e8c);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        .subhead {
            color: #4a627a;
            margin-bottom: 2rem;
            border-left: 4px solid #1f8cad;
            padding-left: 1rem;
        }

        .platform-section {
            margin-bottom: 3.5rem;
        }

        .platform-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 1.5rem;
        }

        .platform-icon {
            font-size: 2.2rem;
        }

        .platform-header h2 {
            font-size: 1.9rem;
            font-weight: 700;
        }

        .download-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        .download-card {
            background: white;
            border-radius: 1.5rem;
            padding: 1.8rem;
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
            transition: transform 0.2s, box-shadow 0.2s;
            border: 1px solid #eef2f8;
        }

        .download-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.08);
        }

        .version-tag {
            display: inline-block;
            background: #e6f4f9;
            padding: 0.2rem 0.8rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            color: #1f6e8c;
            margin-bottom: 1rem;
        }

        .card-title {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .card-desc {
            color: #4a627a;
            margin-bottom: 1.2rem;
            font-size: 0.95rem;
        }

        .info-list {
            list-style: none;
            margin: 1rem 0;
        }

        .info-list li {
            padding: 0.3rem 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
        }

        .btn-download {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #1f6e8c;
            color: white;
            padding: 0.8rem 1.6rem;
            border-radius: 40px;
            font-weight: 600;
            text-decoration: none;
            margin-top: 1rem;
            transition: background 0.2s;
            border: none;
            cursor: pointer;
        }

        .btn-download:hover {
            background: #0a5a77;
        }

        .secondary-download {
            background: #f0f4fa;
            color: #1f6e8c;
            border: 1px solid #cbdde6;
            margin-left: 0.8rem;
        }

        .checksum {
            background: #f8fafd;
            border-radius: 1rem;
            padding: 0.8rem;
            margin-top: 1rem;
            font-family: monospace;
            font-size: 0.75rem;
            word-break: break-all;
            color: #2c6e7e;
            border: 1px solid #e2edf2;
        }

        .other-links {
            margin-top: 2rem;
            background: #ecf5f9;
            border-radius: 1.5rem;
            padding: 1.8rem;
            text-align: center;
        }

        .other-link-group {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 1rem;
        }

        .other-link-group a {
            color: #1f6e8c;
            font-weight: 500;
            text-decoration: none;
        }

        footer {
            background: #0f212e;
            color: #cddfe7;
            padding: 2rem 0;
            margin-top: 3rem;
            border-radius: 1.5rem 1.5rem 0 0;
        }

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

        .footer-links a {
            color: #bcd4df;
            text-decoration: none;
            margin-left: 1.5rem;
        }

        @media (max-width: 760px) {
            .header-inner {
                flex-direction: column;
                gap: 1rem;
            }
            .page-title {
                font-size: 1.8rem;
            }
            .nav-links {
                gap: 1rem;
            }
            .download-cards {
                grid-template-columns: 1fr;
            }
        }
    