    :root {
            --primary-color: #FF2849;
            --secondary-color: #1a237e;
            --accent-color: #ffcc00;
            --text-color: #333;
            --light-text: #666;
            --bg-color: #f8f9fa;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
        }
        
        body {
            color: var(--text-color);
            line-height: 1.6;
            background-color: var(--bg-color);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 顶部导航栏 */
        header {
            background-color: var(--primary-color);
            color: white;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo-img {
            height: 40px;
            width: auto;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            font-size: 1.05rem;
        }
        
        .nav-links a:hover {
            color: var(--accent-color);
        }
        
        .download-btn {
            background-color: var(--accent-color);
            color: var(--text-color);
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: button;
            text-decoration: none;
            display: inline-block;
        }
        
        .download-btn:hover {
            background-color: #ffd633;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 204, 0, 0.3);
        }
        
        /* 英雄区域 */
        .hero {
            background: linear-gradient(135deg, #1990FF 0%, #2BA7FE 100%);
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            font-weight: 800;
        }
        
        .hero h1 span {
            color: var(--accent-color);
        }
        
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 40px;
            opacity: 0.9;
        }
        
        .download-platforms {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
            flex-wrap: wrap;
        }
        
        .platform-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.3s;
            min-width: 200px;
        }
        
        .android-btn {
            background-color: #3ddc84;
            color: #333;
        }
        
        .ios-btn {
            background-color: #007aff;
            color: white;
        }
        
        .platform-btn i {
            margin-right: 10px;
            font-size: 1.4rem;
        }
        
        .platform-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }
        
        .qr-code-container {
            margin-top: 40px;
            text-align: center;
        }
        
        .qr-code-img {
            width: 150px;
            height: 150px;
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 10px;
            background-color: white;
            margin: 0 auto;
        }
        
        .qr-code-hint {
            margin-top: 15px;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
        }
        
        /* 三步流程区域 */
        .steps-section {
            padding: 80px 0;
            background-color: white;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 60px;
            color: var(--secondary-color);
        }
        
        .steps-container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .step-card {
            flex: 1;
            min-width: 300px;
            background-color: var(--bg-color);
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            border-top: 5px solid var(--accent-color);
        }
        
        .step-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background-color: var(--accent-color);
            color: var(--text-color);
            font-weight: 700;
            font-size: 1.8rem;
            border-radius: 50%;
            margin-bottom: 25px;
        }
        
        .step-card h3 {
            font-size: 1.6rem;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }
        
        /* 赏帮赚功能介绍区域 */
        .features-section {
            padding: 80px 0;
            background-color: var(--bg-color);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .feature-card {
            background-color: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
        }
        
        .feature-icon {
            color: var(--accent-color);
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }
        
        /* 图文介绍区域 */
        .intro-section {
            padding: 80px 0;
            background-color: white;
        }
        
        .intro-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 50px;
        }
        
        .intro-content {
            flex: 1;
            min-width: 300px;
        }
        
        .intro-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }
        
        .intro-img {
            width: 100%;
            max-width: 500px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .intro-feature {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }
        
        .intro-icon {
            color: var(--accent-color);
            font-size: 2rem;
            margin-right: 20px;
            min-width: 40px;
        }
        
        .intro-text h3 {
            font-size: 1.5rem;
            color: var(--secondary-color);
            margin-bottom: 10px;
        }
        
        /* 收益展示区域 */
        .earnings-section {
            padding: 80px 0;
            background-color: white;
        }
        
        .earnings-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 50px;
        }
        
        .earnings-info {
            flex: 1;
            min-width: 300px;
        }
        
        .earnings-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }
        
        .earnings-img {
            width: 100%;
            max-width: 500px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .image-caption {
            margin-top: 15px;
            font-size: 0.9rem;
            color: var(--light-text);
        }
        
        .advantage-item {
            margin-bottom: 25px;
        }
        
        .advantage-item h3 {
            font-size: 1.3rem;
            color: var(--secondary-color);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .advantage-item h3 i {
            color: #4caf50;
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        /* 常见问题区域 */
        .faq-section {
            padding: 80px 0;
            background-color: var(--bg-color);
        }
        
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq-item {
            background-color: white;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }
        
        .faq-item:hover {
            transform: translateY(-5px);
        }
        
        .faq-question {
            font-size: 1.3rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .faq-question i {
            color: var(--accent-color);
            margin-right: 15px;
            font-size: 1.5rem;
        }
        
        .faq-answer {
            font-size: 1rem;
            line-height: 1.7;
            color: var(--light-text);
            padding-left: 45px;
        }
        
        /* 底部区域 */
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 60px 0 30px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            color: #95a5a6;
            font-size: 0.9rem;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .nav-links {
                display: none;
            }
            
            .steps-container {
                flex-direction: column;
                align-items: center;
            }
            
            .step-card {
                width: 100%;
                max-width: 500px;
            }
            
            .earnings-container {
                flex-direction: column;
            }
            
            .earnings-image {
                order: -1;
                margin-bottom: 30px;
            }
            
            .intro-container {
                flex-direction: column;
            }
            
            .intro-image {
                order: -1;
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.3rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .platform-btn {
                width: 100%;
            }
            
            .logo-img {
                height: 32px;
            }
            
            .faq-item {
                padding: 20px;
            }
            
            .faq-question {
                font-size: 1.2rem;
            }
            
            .faq-answer {
                padding-left: 0;
            }
        }