 
        :root {
            --primary-color: #2E7D32; /* 主色调 - 绿色，符合curl命令行工具特性 */
            --secondary-color: #4CAF50;
            --dark-color: #1B5E20;
            --light-color: #C8E6C9;
            --text-color: #333;
            --light-text: #666;
            --background-color: #f8f9fa;
            --white: #fff;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --border-radius: 8px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
        }
        
        body {
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--background-color);
        }
        
        /* 导航栏样式 */
        header {
            background-color: var(--white);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            font-weight: 700;
            font-size: 24px;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .logo i {
            margin-right: 10px;
            font-size: 28px;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--primary-color);
        }
        
        .download-btn-nav {
            background-color: var(--primary-color);
            color: var(--white);
            padding: 8px 20px;
            border-radius: var(--border-radius);
            font-weight: 600;
        }
        
        .download-btn-nav:hover {
            background-color: var(--dark-color);
            color: var(--white);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--primary-color);
            cursor: pointer;
        }
        
        /* 英雄区域样式 */
        .hero {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--light-color) 0%, var(--white) 100%);
        }
        
        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .hero-text {
            flex: 1;
            padding-right: 40px;
        }
        
        .hero-text h1 {
            font-size: 42px;
            line-height: 1.2;
            margin-bottom: 20px;
            color: var(--dark-color);
        }
        
        .hero-text p {
            font-size: 18px;
            color: var(--light-text);
            margin-bottom: 30px;
        }
        
        .hero-image {
            flex: 1;
            text-align: center;
        }
        
        .hero-image img {
            max-width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        
        /* 下载按钮样式 */
        .download-btn {
            display: inline-block;
            background-color: var(--primary-color);
            color: var(--white);
            padding: 15px 35px;
            font-size: 18px;
            font-weight: 600;
            border-radius: var(--border-radius);
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
            margin-top: 10px;
            margin-bottom: 20px;
        }
        
        .download-btn:hover {
            background-color: var(--dark-color);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
        }
        
        .download-btn i {
            margin-right: 10px;
        }
        
        /* 下载区域样式 */
        .download-section {
            background-color: var(--white);
            padding: 60px 0;
            text-align: center;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 36px;
            color: var(--dark-color);
            position: relative;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background-color: var(--primary-color);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .download-options {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 40px;
        }
        
        .download-box {
            background-color: var(--background-color);
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow);
            max-width: 500px;
            width: 100%;
        }
        
        .download-box h3 {
            color: var(--primary-color);
            margin-bottom: 20px;
            font-size: 24px;
        }
        
        .quark-download {
            border-top: 4px solid var(--primary-color);
        }
        
        .qrcode {
            margin: 25px 0;
            text-align: center;
        }
        
        .qrcode img {
            width: 180px;
            height: 180px;
            border-radius: 8px;
            padding: 10px;
            background: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .quark-link {
            display: block;
            margin-top: 15px;
            color: var(--primary-color);
            font-weight: 600;
            word-break: break-all;
        }
        
        /* 功能介绍区域 */
        .features {
            padding: 80px 0;
            background-color: var(--background-color);
        }
        
        .feature-cards {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .feature-card {
            background-color: var(--white);
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow);
            transition: transform 0.3s;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
        }
        
        .feature-icon {
            background-color: var(--light-color);
            color: var(--primary-color);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 24px;
        }
        
        .feature-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--dark-color);
        }
        
        /* 使用教程区域 */
        .tutorial {
            padding: 80px 0;
            background-color: var(--white);
        }
        
        .steps {
            max-width: 800px;
            margin: 50px auto 0;
        }
        
        .step {
            display: flex;
            margin-bottom: 40px;
            align-items: flex-start;
        }
        
        .step-number {
            background-color: var(--primary-color);
            color: var(--white);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 20px;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .step-content h3 {
            margin-bottom: 10px;
            color: var(--dark-color);
        }
        
        /* 常见问题区域 */
        .faq {
            padding: 80px 0;
            background-color: var(--background-color);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 50px auto 0;
        }
        
        .faq-item {
            background-color: var(--white);
            margin-bottom: 15px;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        
        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 18px;
        }
        
        .faq-question i {
            transition: transform 0.3s;
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
        }
        
        .faq-item.active .faq-answer {
            padding: 0 20px 20px;
            max-height: 300px;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        /* 页脚样式 */
        footer {
            background-color: var(--dark-color);
            color: var(--white);
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--light-color);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--light-color);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            color: #aaa;
        }
        
        .floating-download-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: var(--primary-color);
            color: var(--white);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            z-index: 999;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .floating-download-btn:hover {
            background-color: var(--dark-color);
            transform: scale(1.1);
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .hero-content {
                flex-direction: column;
            }
            
            .hero-text {
                padding-right: 0;
                text-align: center;
                margin-bottom: 40px;
            }
            
            .hero-text h1 {
                font-size: 36px;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--white);
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .nav-links li {
                margin: 10px 0;
                margin-left: 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero-text h1 {
                font-size: 32px;
            }
            
            .section-title {
                font-size: 30px;
            }
        }
        
        @media (max-width: 576px) {
            .hero-text h1 {
                font-size: 28px;
            }
            
            .download-btn {
                padding: 12px 25px;
                font-size: 16px;
            }
            
            .section-title {
                font-size: 26px;
            }
            
            .feature-card, .download-box {
                padding: 20px;
            }
        }
  