        :root {
            --primary-color: #00E676;
            --dark-bg: #121212;
            --text-light: #ffffff;
            --text-secondary: #ccc;
        }
        
        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-light);
            overflow-x: hidden;
            /* background-image: url('data/exports/首页_背景@1x.png'); */
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
        }
        
        .navbar {
            background-color: rgba(18, 18, 18, 0.8);
            backdrop-filter: blur(10px);
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        
        .navbar-brand img {
            height: 40px;
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover img {
            transform: scale(1.05);
        }
        
        .navbar-dark .navbar-nav .nav-link {
            color: var(--text-light);
            margin: 0 30px;
            font-size: 16px;
            position: relative;
            padding: 8px 0;
            transition: color 0.3s ease;
        }
        
        .navbar-dark .navbar-nav .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            bottom: 0;
            left: 0;
            transition: width 0.3s ease;
        }
        
        .navbar-dark .navbar-nav .nav-link:hover,
        .navbar-dark .navbar-nav .nav-link.active {
            color: var(--primary-color);
        }
        
        .navbar-dark .navbar-nav .nav-link:hover:after,
        .navbar-dark .navbar-nav .nav-link.active:after {
            width: 100%;
        }
        
        .hero-section {
            padding: 120px 0 80px;
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
        
        .hero-content {
            padding-right: 15px;
        }
        
        .hero-content h1 {
            font-size: 78px;
            font-weight: bold;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #ffffff, #00E676);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-content p {
            font-size: 18px;
            color: var(--text-secondary);
            margin-bottom: 30px;
        }
        
        .stats-container {
            display: flex;
            gap: 40px;
            margin-bottom: 30px;
        }
        
        .stat-item {
            background-color: var(--primary-color);
            color: #000;
            border-radius: 50%;
            width: 110px;
            height: 110px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            font-weight: bold;
            box-shadow: 0 4px 15px rgba(0, 230, 118, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            padding: 0;
        }
        
        .stat-item:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 8px 20px rgba(0, 230, 118, 0.4);
        }
        
        .stat-item .number {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 5px;
        }
        
        .stat-item .label {
            font-size: 14px;
            line-height: 1;
        }
        
        .platform-preview {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
            align-items: center;
        }
        
        .platform-preview-icon {
            height: 20px;
            width: auto;
            transition: transform 0.3s ease;
        }
        
        .platform-preview-icon:hover {
            transform: scale(1.1);
        }
        
        .action-buttons {
            display: flex;
            gap: 20px;
            margin-top: 20px;
        }
        
        .btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .btn-primary {
            background: linear-gradient(90deg, #ffffff, #69eeae);
            border: none;
            color: #000;
            box-shadow: 0 4px 15px rgba(0, 230, 118, 0.3);
        }
        
        .btn-primary:hover {
            background: linear-gradient(90deg, #69eeae, #00E676);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 230, 118, 0.4);
        }
        
        .btn-outline {
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: rgba(255, 255, 255, 0.7);
        }
        
        .btn-outline:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            transform: translateY(-3px);
        }
        
        .hero-image {
            position: relative;
            display: flex;
            justify-content: flex-start;
            align-items: center;
            padding-left: 0;
        }
        
        .hero-main-image {
            max-width: 100%;
            border-radius: 20px;
            transition: transform 0.5s ease;
            animation: float 6s ease-in-out infinite;
            z-index: 1;
        }
        
        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-15px);
            }
            100% {
                transform: translateY(0px);
            }
        }
        
        .social-icons {
            text-align: center;
            margin: 70px 0;
            background: linear-gradient(to bottom, rgba(18, 18, 18, 0.9), rgba(10, 10, 10, 0.95));
            padding: 60px 0;
            border-radius: 30px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .social-content {
            position: relative;
            z-index: 2;
        }
        
        .center-logo {
            width: 180px;
            height: auto;
            margin-bottom: 40px;
            animation: pulse 3s ease-in-out infinite;
            filter: drop-shadow(0 0 15px rgba(0, 230, 118, 0.5));
        }
        
        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.08);
            }
            100% {
                transform: scale(1);
            }
        }
        
        .social-icons h3 {
            margin-bottom: 50px;
            font-size: 36px;
            font-weight: 700;
            background: linear-gradient(90deg, #ffffff, #00E676);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 10px rgba(0, 230, 118, 0.3);
        }
        
        .social-icons-container {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 40px;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .social-icon-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 90px;
            height: 90px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 50%;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .social-icon-wrapper:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .social-icon-wrapper:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-10px) scale(1.1);
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
            border-color: rgba(255, 255, 255, 0.2);
        }
        
        .social-icon-wrapper:hover:before {
            opacity: 1;
        }
        
        .social-icon {
            width: 50px;
            height: 50px;
            transition: transform 0.4s ease, filter 0.4s ease;
            filter: grayscale(30%) brightness(0.9);
            z-index: 1;
        }
        
        .social-icon-wrapper:hover .social-icon {
            filter: grayscale(0%) brightness(1.1);
            transform: scale(1.1);
        }
        
        .glow-3 {
            bottom: -100px;
            right: 20%;
            width: 600px;
            height: 600px;
            opacity: 0.5;
            background: radial-gradient(circle, rgba(0,230,118,0.4) 0%, rgba(0,230,118,0) 70%);
            filter: blur(60px);
        }
        
        .glow-4 {
            top: -100px;
            left: 20%;
            width: 500px;
            height: 500px;
            opacity: 0.3;
            background: radial-gradient(circle, rgba(0,230,118,0.3) 0%, rgba(0,230,118,0) 70%);
            filter: blur(50px);
        }
        
        .feature-section {
            padding: 0px;
            position: relative;
        }
        
        .feature-card {
            background-color: rgba(18, 18, 18, 0.7);
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 30px;
            position: relative;
            backdrop-filter: blur(5px);
        }
        
        .feature-card h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--primary-color);
        }
        
        .feature-card p {
            font-size: 16px;
            color: var(--text-secondary);
        }
        
        .feature-image img {
            max-width: 100%;
            border-radius: 20px;
        }
        
        .testimonial-section {
            padding: 100px 0;
            background: linear-gradient(to bottom, rgba(18, 18, 18, 0.9), rgba(10, 10, 10, 0.95));
            position: relative;
            overflow: hidden;
        }
        
        .testimonials-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .testimonials-title {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .testimonials-description {
            font-size: 18px;
            color: var(--text-secondary);
            max-width: 800px;
            margin: 0 auto;
        }
        
        .testimonials-container {
            display: flex;
            align-items: center;
            justify-content: center;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }
        
        .testimonials-content-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            max-width: 1000px;
            width: 100%;
        }
        
        /* 导航按钮 */
        .testimonial-nav-button {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: rgba(0, 230, 118, 0.1);
            border: 1px solid rgba(0, 230, 118, 0.3);
            color: #00e676;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            margin: 0 20px;
        }
        
        .testimonial-nav-button:hover {
            background-color: rgba(0, 230, 118, 0.2);
            transform: scale(1.1);
        }
        
        .testimonial-nav-button:active {
            transform: scale(0.95);
        }
        
        .testimonial-nav-button svg {
            width: 24px;
            height: 24px;
        }
        
        /* 头像区域 */
        .testimonials-avatars {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
            width: 100%;
            transition: transform 0.5s ease;
        }
        
        .avatar-item {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            cursor: pointer;
            opacity: 0.7;
            transform: scale(0.85);
            flex-shrink: 0;
        }
        
        .avatar-item.active {
            border-color: #00e676;
            opacity: 1;
            transform: scale(1);
            box-shadow: 0 0 20px rgba(0, 230, 118, 0.5);
        }
        
        .avatar-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* 评价内容 */
        .testimonial-content {
            text-align: center;
            margin-bottom: 30px;
            max-width: 800px;
            opacity: 1;
            transition: opacity 0.3s ease;
        }
        
        .testimonial-content.fade {
            opacity: 0;
        }
        
        .testimonial-bubble {
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 30px;
            position: relative;
            margin-bottom: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .testimonial-bubble:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 20px;
            background-color: rgba(255, 255, 255, 0.05);
            border-right: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transform: translateX(-50%) rotate(45deg);
        }
        
        .testimonial-quote-icon {
            position: absolute;
            top: 20px;
            left: 20px;
            width: 30px;
            height: 30px;
            background-color: #00e676;
            mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.5 10c-.223 0-.437.034-.65.065.069-.232.14-.468.254-.68.114-.308.292-.575.469-.844.148-.291.409-.488.601-.737.201-.242.475-.403.692-.604.213-.21.492-.315.714-.463.232-.133.434-.28.65-.35.208-.086.39-.16.539-.222.302-.125.474-.197.474-.197L9.758 4.03c0 0-.218.052-.597.144C8.97 4.222 8.737 4.278 8.472 4.345c-.271.05-.56.187-.882.312C7.272 4.799 6.904 4.895 6.562 5.123c-.344.218-.741.4-1.091.692-.339.301-.748.562-1.05.945-.33.358-.656.734-.909 1.162C3.249 8.343 3.058 8.775 2.9 9.218c-.158.438-.292.922-.384 1.406-.102.502-.173 1-.241 1.5-.074.465-.104.549-.104 1.875s.03 1.41.104 1.875c.068.502.138 1 .241 1.5.092.483.227.968.384 1.406.159.442.351.875.552 1.297.253.428.579.804.909 1.162.302.383.711.644 1.05.945.35.292.747.474 1.091.692.342.229.71.325 1.028.465.322.125.611.262.882.312.265.066.498.122.687.17.379.092.597.144.597.144l-.486-1.013c0 0-.171-.072-.474-.197-.15-.062-.332-.136-.539-.222-.216-.071-.418-.218-.65-.351-.222-.148-.501-.253-.714-.463-.217-.201-.491-.362-.692-.604-.192-.249-.453-.447-.601-.737-.177-.27-.355-.537-.469-.845-.115-.21-.185-.446-.254-.679.214.031.428.065.65.065.654 0 1.206-.091 1.759-.421.571-.342.994-.814 1.328-1.336.258-.406.484-.909.629-1.44.16-.502.257-1.035.257-1.584 0-.549-.097-1.082-.257-1.584-.145-.531-.371-1.034-.629-1.439-.334-.522-.757-.994-1.328-1.336C7.706 10.091 7.154 10 6.5 10zM17.5 10c-.223 0-.437.034-.65.065.069-.232.14-.468.254-.68.114-.308.292-.575.469-.844.148-.291.409-.488.601-.737.201-.242.475-.403.692-.604.213-.21.492-.315.714-.463.232-.133.434-.28.65-.35.208-.086.39-.16.539-.222.302-.125.474-.197.474-.197L20.758 4.03c0 0-.218.052-.597.144-.191.048-.424.104-.689.171-.271.05-.56.187-.882.312-.317.143-.686.238-1.028.467-.344.218-.741.4-1.091.692-.339.301-.748.562-1.05.944-.33.358-.656.734-.909 1.162-.203.423-.351.875-.552 1.297-.158.438-.292.922-.384 1.406-.102.502-.173 1-.241 1.5-.074.465-.104.549-.104 1.875s.03 1.41.104 1.875c.068.502.138 1 .241 1.5.092.483.227.968.384 1.406.159.442.351.875.552 1.297.253.428.579.804.909 1.162.302.383.711.644 1.05.945.35.292.747.474 1.091.692.342.229.71.325 1.028.465.322.125.611.262.882.312.265.066.498.122.687.17.379.092.597.144.597.144l-.486-1.013c0 0-.171-.072-.474-.197-.15-.062-.332-.136-.539-.222-.216-.071-.418-.218-.65-.351-.222-.148-.501-.253-.714-.463-.217-.201-.491-.362-.692-.604-.192-.249-.453-.447-.601-.737-.177-.27-.355-.537-.469-.845-.115-.21-.185-.446-.254-.679.214.031.428.065.65.065.654 0 1.206-.091 1.759-.421.571-.342.994-.814 1.328-1.336.258-.406.484-.909.629-1.44.16-.502.257-1.035.257-1.584 0-.549-.097-1.082-.257-1.584-.145-.531-.371-1.034-.629-1.439-.334-.522-.757-.994-1.328-1.336C18.706 10.091 18.154 10 17.5 10z'/%3E%3C/svg%3E") no-repeat center center;
            -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.5 10c-.223 0-.437.034-.65.065.069-.232.14-.468.254-.68.114-.308.292-.575.469-.844.148-.291.409-.488.601-.737.201-.242.475-.403.692-.604.213-.21.492-.315.714-.463.232-.133.434-.28.65-.35.208-.086.39-.16.539-.222.302-.125.474-.197.474-.197L9.758 4.03c0 0-.218.052-.597.144C8.97 4.222 8.737 4.278 8.472 4.345c-.271.05-.56.187-.882.312C7.272 4.799 6.904 4.895 6.562 5.123c-.344.218-.741.4-1.091.692-.339.301-.748.562-1.05.945-.33.358-.656.734-.909 1.162C3.249 8.343 3.058 8.775 2.9 9.218c-.158.438-.292.922-.384 1.406-.102.502-.173 1-.241 1.5-.074.465-.104.549-.104 1.875s.03 1.41.104 1.875c.068.502.138 1 .241 1.5.092.483.227.968.384 1.406.159.442.351.875.552 1.297.253.428.579.804.909 1.162.302.383.711.644 1.05.945.35.292.747.474 1.091.692.342.229.71.325 1.028.465.322.125.611.262.882.312.265.066.498.122.687.17.379.092.597.144.597.144l-.486-1.013c0 0-.171-.072-.474-.197-.15-.062-.332-.136-.539-.222-.216-.071-.418-.218-.65-.351-.222-.148-.501-.253-.714-.463-.217-.201-.491-.362-.692-.604-.192-.249-.453-.447-.601-.737-.177-.27-.355-.537-.469-.845-.115-.21-.185-.446-.254-.679.214.031.428.065.65.065.654 0 1.206-.091 1.759-.421.571-.342.994-.814 1.328-1.336.258-.406.484-.909.629-1.44.16-.502.257-1.035.257-1.584 0-.549-.097-1.082-.257-1.584-.145-.531-.371-1.034-.629-1.439-.334-.522-.757-.994-1.328-1.336C18.706 10.091 18.154 10 17.5 10z'/%3E%3C/svg%3E") no-repeat center center;
        }
        
        .testimonial-text {
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 20px;
            color: #fff;
        }
        
        .testimonial-rating {
            display: flex;
            justify-content: center;
            gap: 5px;
        }
        
        .star {
            color: #00e676;
            font-size: 20px;
        }
        
        .testimonial-author {
            margin-top: 20px;
        }
        
        .testimonial-name {
            font-size: 20px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 5px;
        }
        
        .testimonial-location {
            font-size: 16px;
            color: var(--text-secondary);
        }
        
        /* 指示器 */
        .testimonial-indicator {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }
        
        .indicator-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .indicator-dot.active {
            background-color: #00e676;
            transform: scale(1.2);
        }
        
        /* 响应式调整 */
        @media (max-width: 992px) {
            .testimonials-avatars {
                gap: 15px;
            }
            
            .avatar-item {
                width: 100px;
                height: 100px;
            }
        }
        
        @media (max-width: 768px) {
            .testimonials-avatars {
                gap: 10px;
            }
            
            .avatar-item {
                width: 80px;
                height: 80px;
            }
            
            .testimonial-text {
                font-size: 16px;
            }
            
            .testimonial-nav-button {
                width: 40px;
                height: 40px;
                margin: 0 10px;
            }
        }
        
        @media (max-width: 576px) {
            .testimonials-avatars {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .avatar-item {
                width: 70px;
                height: 70px;
            }
            
            .testimonial-bubble {
                padding: 20px;
            }
            
            .testimonial-nav-button {
                width: 36px;
                height: 36px;
                margin: 0 5px;
            }
        }
        
        .testimonial-date {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.5);
            display: flex;
            align-items: center;
            margin-top: auto;
        }
        
        .date-icon {
            display: inline-block;
            width: 12px;
            height: 12px;
            margin-right: 5px;
            background-color: rgba(255, 255, 255, 0.5);
            mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M152 64H296V24C296 10.75 306.7 0 320 0C333.3 0 344 10.75 344 24V64H384C419.3 64 448 92.65 448 128V448C448 483.3 419.3 512 384 512H64C28.65 512 0 483.3 0 448V128C0 92.65 28.65 64 64 64H104V24C104 10.75 114.7 0 128 0C141.3 0 152 10.75 152 24V64zM48 448C48 456.8 55.16 464 64 464H384C392.8 464 400 456.8 400 448V192H48V448z'/%3E%3C/svg%3E");
            -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M152 64H296V24C296 10.75 306.7 0 320 0C333.3 0 344 10.75 344 24V64H384C419.3 64 448 92.65 448 128V448C448 483.3 419.3 512 384 512H64C28.65 512 0 483.3 0 448V128C0 92.65 28.65 64 64 64H104V24C104 10.75 114.7 0 128 0C141.3 0 152 10.75 152 24V64zM48 448C48 456.8 55.16 464 64 464H384C392.8 464 400 456.8 400 448V192H48V448z'/%3E%3C/svg%3E");
            mask-size: cover;
            -webkit-mask-size: cover;
            flex-shrink: 0;
        }
        
        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 15px;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-dot.active {
            background-color: var(--primary-color);
            transform: scale(1.2);
        }
        
        .slider-arrows {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            padding: 0 10px;
            z-index: 10;
            pointer-events: none;
        }
        
        .slider-arrow {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(0, 0, 0, 0.5);
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
            pointer-events: auto;
        }
        
        .slider-arrow:hover {
            background-color: rgba(0, 230, 118, 0.3);
            transform: scale(1.1);
        }
        
        .arrow-icon {
            width: 15px;
            height: 15px;
            border-top: 2px solid white;
            border-right: 2px solid white;
            transition: all 0.3s ease;
        }
        
        .arrow-prev .arrow-icon {
            transform: rotate(-135deg);
        }
        
        .arrow-next .arrow-icon {
            transform: rotate(45deg);
        }
        
        .testimonials-glow {
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(0, 230, 118, 0.2) 0%, rgba(0, 230, 118, 0) 70%);
            border-radius: 50%;
            z-index: 1;
            filter: blur(40px);
        }
        
        .glow-1 {
            top: 20%;
            left: 10%;
        }
        
        .glow-2 {
            bottom: 20%;
            right: 10%;
        }
        
        @media (max-width: 992px) {
            .testimonial-section {
                padding: 60px 20px;
                margin: 50px 0;
            }
            
            .testimonials-title {
                font-size: 36px;
            }
            
            .testimonials-description {
                font-size: 16px;
            }
            
            .testimonial-card {
                flex: 0 0 calc(50% - 10px);
            }
        }
        
        @media (max-width: 768px) {
            .testimonial-section {
                padding: 50px 15px;
            }
            
            .testimonials-title {
                font-size: 30px;
            }
            
            .testimonials-description {
                font-size: 15px;
            }
            
            .testimonial-card {
                flex: 0 0 calc(100% - 0px);
            }
            
            .slider-arrow {
                width: 35px;
                height: 35px;
            }
            
            .arrow-icon {
                width: 12px;
                height: 12px;
            }
        }
        
        @media (max-width: 576px) {
            .testimonial-section {
                padding: 40px 10px;
                margin: 40px 0;
            }
            
            .testimonials-title {
                font-size: 26px;
            }
            
            .testimonials-description {
                font-size: 14px;
            }
            
            .testimonial-avatar {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
            
            .testimonial-name {
                font-size: 16px;
            }
            
            .testimonial-text {
                font-size: 13px;
            }
            
            .slider-arrow {
                width: 30px;
                height: 30px;
            }
            
            .arrow-icon {
                width: 10px;
                height: 10px;
            }
        }
        
        .download-section {
            padding: 80px 0;
            text-align: center;
        }
        
        .platform-icons {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
            flex-wrap: wrap;
        }
        
        .platform-icon {
            width: 60px;
            height: 60px;
        }
        
        .download-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        
        footer {
            padding: 30px 0;
            text-align: center;
            text-align: center;
            backdrop-filter: blur(5px);
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        
        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
        }
        
        .footer-links a:hover {
            color: var(--primary-color);
        }
        
        .copyright {
            color: var(--text-secondary);
            font-size: 14px;
        }
        
        /* 火焰图标样式 */
        .fire-icon {
            color: #FF5722;
            margin-right: 10px;
        }
        
        /* 响应式调整 */
        @media (max-width: 992px) {
            .hero-section {
                padding: 100px 0 50px;
                min-height: auto;
            }
            
            .hero-content {
                padding-right: 0;
                text-align: center;
                margin-bottom: 30px;
            }
            
            .hero-content h1 {
                font-size: 36px;
            }
            
            .stats-container {
                justify-content: center;
                gap: 15px;
            }
            
            .platform-preview {
                justify-content: center;
            }
            
            .action-buttons {
                justify-content: center;
            }
            
            .hero-image {
                justify-content: center;
                padding-left: 15px;
                padding-right: 15px;
            }
            
            .social-icons {
                margin: 70px 0;
                padding: 20px 0;
                border-radius: 25px;
            }
            
            .center-logo {
                width: 150px;
                margin-bottom: 30px;
            }
            
            .social-description {
                font-size: 16px;
                margin-bottom: 30px;
            }
            
            .social-icons h3 {
                font-size: 30px;
                margin-bottom: 30px;
            }
            
            .social-icons-container {
                gap: 30px;
                max-width: 700px;
            }
            
            .social-icon-wrapper {
                width: 80px;
                height: 80px;
            }
            
            .social-icon {
                width: 45px;
                height: 45px;
            }
            
            .glow-3, .glow-4 {
                width: 400px;
                height: 400px;
            }
            
            @keyframes rippleWave {
                0% {
                    width: 40%;
                    padding-bottom: 40%;
                    opacity: 1;
                }
                100% {
                    width: 80%;
                    padding-bottom: 80%;
                    opacity: 0;
                }
            }
        }
        
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 32px;
            }
            
            .stats-container {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
                align-items: center;
                gap: 15px;
            }
            
            .stat-item {
                width: 100px;
                height: 100px;
                margin: 0 5px 10px;
            }
            
            .stat-item .number {
                font-size: 20px;
            }
            
            .stat-item .label {
                font-size: 12px;
            }
            
            .action-buttons {
                flex-direction: column;
                align-items: center;
                width: 100%;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
                margin-bottom: 15px;
                justify-content: center;
            }
            
            .social-icons {
                margin: 50px 0;
                padding: 40px 15px;
                border-radius: 20px;
            }
            
            .center-logo {
                width: 120px;
                margin-bottom: 25px;
            }
            
            .social-description {
                font-size: 15px;
                margin-bottom: 25px;
                padding: 0 15px;
            }
            
            .social-icons h3 {
                font-size: 24px;
                margin-bottom: 20px;
            }
            
            .social-icons-container {
                gap: 20px;
            }
            
            .social-icon-wrapper {
                width: 65px;
                height: 65px;
            }
            
            .social-icon {
                width: 35px;
                height: 35px;
            }
            
            .social-icon-wrapper:after {
                display: none; /* 在移动设备上隐藏工具提示 */
            }
            
            .glow-3, .glow-4 {
                width: 300px;
                height: 300px;
                opacity: 0.3;
            }
            
            .feature-main-image {
                max-width: 70%;
            }
            
            /* 调整图标位置，使其更适合小屏幕 */
            .social-icons-left .social-icon-float:nth-child(1) { left: 10%; top: 20%; }
            .social-icons-left .social-icon-float:nth-child(2) { left: 15%; top: 50%; }
            .social-icons-left .social-icon-float:nth-child(3) { left: 12%; top: 80%; }
            .social-icons-left .social-icon-float:nth-child(4) { left: 25%; top: 35%; }
            .social-icons-left .social-icon-float:nth-child(5) { left: 20%; top: 65%; }
            
            .social-icons-right .social-icon-float:nth-child(1) { right: 10%; top: 25%; }
            .social-icons-right .social-icon-float:nth-child(2) { right: 15%; top: 55%; }
            .social-icons-right .social-icon-float:nth-child(3) { right: 12%; top: 85%; }
            .social-icons-right .social-icon-float:nth-child(4) { right: 25%; top: 30%; }
            .social-icons-right .social-icon-float:nth-child(5) { right: 20%; top: 60%; }
            
            .social-icon-float {
                width: 50px !important;
                height: 50px !important;
            }
            
            /* 调整波纹效果在平板屏幕上的显示 */
            .social-media-container::before,
            .social-media-container::after,
            .third-ripple {
                width: 50%;
                padding-bottom: 50%;
            }
            
            .rotating-light {
                width: 60%;
                padding-bottom: 60%;
            }
            
            @keyframes rippleWave {
                0% {
                    width: 50%;
                    padding-bottom: 50%;
                    opacity: 1;
                }
                100% {
                    width: 90%;
                    padding-bottom: 90%;
                    opacity: 0;
                }
            }
        }
        
        @media (max-width: 480px) {
            .stats-container {
                gap: 15px;
            }
            
            .stat-item {
                width: 90px;
                height: 90px;
            }
            
            .social-icons {
                margin: 40px 0;
                padding: 30px 10px;
            }
            
            .center-logo {
                width: 100px;
            }
            
            .social-icons h3 {
                font-size: 20px;
            }
            
            .social-description {
                font-size: 14px;
                margin-bottom: 20px;
            }
            
            .social-icons-container {
                gap: 15px;
            }
            
            .social-icon-wrapper {
                width: 55px;
                height: 55px;
            }
            
            .social-icon {
                width: 30px;
                height: 30px;
            }
        }
        
        @media (max-width: 576px) {
            .social-icon-float {
                width: 45px;
                height: 45px;
            }
            
            .social-icon {
                width: 22px;
                height: 22px;
            }
            
            .social-icons-left, .social-icons-right {
                gap: 10px;
            }
            
            .feature-image::before {
                width: 150px;
                height: 150px;
            }
            
            .social-media-container {
                min-height: 150px;
            }
            
            .feature-main-image {
                max-width: 80%;
            }
            
            .social-icon-float {
                width: 45px !important;
                height: 45px !important;
                animation: none !important;
            }
            
            /* 在最小屏幕上调整图标位置 */
            .social-icons-left .social-icon-float:nth-child(1) { left: 10%; top: 30%; }
            .social-icons-left .social-icon-float:nth-child(2) { left: 15%; top: 60%; }
            .social-icons-left .social-icon-float:nth-child(3) { left: 20%; top: 90%; }
            
            .social-icons-right .social-icon-float:nth-child(1) { right: 10%; top: 25%; }
            .social-icons-right .social-icon-float:nth-child(2) { right: 15%; top: 55%; }
            .social-icons-right .social-icon-float:nth-child(3) { right: 20%; top: 85%; }
            
            /* 调整波纹效果在手机屏幕上的显示 */
            .social-media-container::before,
            .social-media-container::after,
            .third-ripple {
                width: 60%;
                padding-bottom: 60%;
            }
            
            .rotating-light {
                width: 70%;
                padding-bottom: 70%;
                opacity: 0.5;
            }
            
            @keyframes rippleWave {
                0% {
                    width: 60%;
                    padding-bottom: 60%;
                    opacity: 1;
                }
                100% {
                    width: 100%;
                    padding-bottom: 100%;
                    opacity: 0;
                }
            }
        }
        
        /* 添加背景遮罩效果 */
        /* .bg-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
            z-index: -1;
        } */
        
        /* 添加绿色光晕效果 */
        .green-glow {
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(0,230,118,0.3) 0%, rgba(0,230,118,0) 70%);
            border-radius: 50%;
            z-index: -1;
            filter: blur(40px);
        }
        
        .glow-1 {
            top: 10%;
            right: 5%;
        }
        
        .glow-2 {
            bottom: 30%;
            left: 10%;
        }
        
        @media (max-width: 992px) {
            .navbar-dark .navbar-nav .nav-link {
                margin: 5px 0;
                padding: 8px;
            }
            
            .navbar-dark .navbar-toggler {
                border-color: var(--primary-color);
            }
            
            .navbar-collapse {
                background-color: rgba(18, 18, 18, 0.95);
                border-radius: 10px;
                padding: 10px;
                margin-top: 10px;
            }
        }
        
        .social-description {
            color: rgba(255, 255, 255, 0.7);
            font-size: 18px;
            max-width: 600px;
            margin: 0 auto 40px;
            line-height: 1.6;
        }
        
        .social-icon-wrapper {
            position: relative;
        }
        
        .social-icon-wrapper:after {
            content: attr(data-tooltip);
            position: absolute;
            bottom: -40px;
            left: 50%;
            transform: translateX(-50%) scale(0.8);
            background-color: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 12px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            white-space: nowrap;
            z-index: 10;
        }
        
        .social-icon-wrapper:hover:after {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) scale(1);
            bottom: -35px;
        }
        
        .social-media-container {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            padding: 0;
            min-height: 300px;
        }
        
        .feature-main-image {
            max-width: 45%;
            width: 25%;
            border-radius: 20px;
            position: relative;
            z-index: 2;
        }
        
        /* 添加图片后的光效容器 */
        .social-media-container {
            position: relative;
        }
        
        /* 波纹光效 */
        /* .social-media-container::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 30%;
            height: 0;
            padding-bottom: 30%;
            background: transparent;
            border-radius: 50%;
            border: 2px solid rgba(0, 230, 118, 0.5);
            transform: translate(-50%, -50%);
            z-index: 1;
            animation: rippleWave 2s linear infinite;
        } */
        
        .social-media-container::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 25%;
            height: 0;
            padding-bottom: 25%;
            background: transparent;
            border-radius: 50%;
            border: 2px solid rgba(0, 230, 118, 0.3);
            transform: translate(-50%, -50%);
            z-index: 1;
            animation: rippleWave 2s linear infinite 1s;
        } 
        
        @keyframes rippleWave {
            0% {
                width: 25%;
                padding-bottom: 25%;
                opacity: 1;
            }
            100% {
                width: 60%;
                padding-bottom: 60%;
                opacity: 0;
            }
        }
        
        /* 中心光晕 */
        .feature-main-image::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(0, 230, 118, 0.3) 0%, rgba(0, 230, 118, 0) 70%);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            z-index: -1;
            filter: blur(15px);
            animation: pulseLight 3s ease-in-out infinite;
        }
        
        @keyframes pulseLight {
            0% {
                opacity: 0.5;
                transform: translate(-50%, -50%) scale(1);
            }
            50% {
                opacity: 0.8;
                transform: translate(-50%, -50%) scale(1.2);
            }
            100% {
                opacity: 0.5;
                transform: translate(-50%, -50%) scale(1);
            }
        }
        
        .social-icons-left, .social-icons-right {
            position: absolute;
            z-index: 3;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
        }
        
        .social-icon-float {
            position: absolute;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
            animation: float 6s ease-in-out infinite;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            pointer-events: auto;
        }
        
        /* 左侧图标位置 - 更加靠近中间 */
        .social-icons-left .social-icon-float:nth-child(1) { 
            left: 20%; 
            top: 10%; 
            animation-delay: 0s;
            animation-duration: 5s;
        }
        .social-icons-left .social-icon-float:nth-child(2) { 
            left: 15%; 
            top: 40%; 
            animation-delay: 1.2s;
            animation-duration: 7s;
        }
        .social-icons-left .social-icon-float:nth-child(3) { 
            left: 25%; 
            top: 70%; 
            animation-delay: 2.5s;
            animation-duration: 6s;
        }
        .social-icons-left .social-icon-float:nth-child(4) { 
            left: 35%; 
            top: 25%; 
            animation-delay: 0.7s;
            animation-duration: 8s;
        }
        .social-icons-left .social-icon-float:nth-child(5) { 
            left: 30%; 
            top: 55%; 
            animation-delay: 1.8s;
            animation-duration: 5.5s;
        }
        
        /* 右侧图标位置 - 更加靠近中间 */
        .social-icons-right .social-icon-float:nth-child(1) { 
            right: 20%; 
            top: 15%; 
            animation-delay: 0.5s;
            animation-duration: 6.5s;
        }
        .social-icons-right .social-icon-float:nth-child(2) { 
            right: 15%; 
            top: 45%; 
            animation-delay: 1.5s;
            animation-duration: 5.8s;
        }
        .social-icons-right .social-icon-float:nth-child(3) { 
            right: 25%; 
            top: 65%; 
            animation-delay: 2.2s;
            animation-duration: 7.2s;
        }
        .social-icons-right .social-icon-float:nth-child(4) { 
            right: 35%; 
            top: 20%; 
            animation-delay: 0.9s;
            animation-duration: 6.8s;
        }
        .social-icons-right .social-icon-float:nth-child(5) { 
            right: 30%; 
            top: 50%; 
            animation-delay: 1.7s;
            animation-duration: 7.5s;
        }
        
        /* 调整图标大小，统一为50px */
        .social-icons-left .social-icon-float:nth-child(1),
        .social-icons-left .social-icon-float:nth-child(2),
        .social-icons-left .social-icon-float:nth-child(3),
        .social-icons-left .social-icon-float:nth-child(4),
        .social-icons-left .social-icon-float:nth-child(5),
        .social-icons-right .social-icon-float:nth-child(1),
        .social-icons-right .social-icon-float:nth-child(2),
        .social-icons-right .social-icon-float:nth-child(3),
        .social-icons-right .social-icon-float:nth-child(4),
        .social-icons-right .social-icon-float:nth-child(5) { 
            width: 50px; 
            height: 50px; 
        }
        
        .social-icon {
            width: 80%;
            height: 80%;
            filter: grayscale(30%) brightness(0.9);
            transition: all 0.3s ease;
        }
        
        /* 修改浮动动画，使其更加自然 */
        @keyframes float {
            0% {
                transform: translate(0, 0);
            }
            25% {
                transform: translate(5px, -10px);
            }
            50% {
                transform: translate(0, -5px);
            }
            75% {
                transform: translate(-5px, -8px);
            }
            100% {
                transform: translate(0, 0);
            }
        }
        
        /* 添加绿色光晕效果 */
        .feature-image::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(0,230,118,0.2) 0%, rgba(0,230,118,0) 70%);
            border-radius: 50%;
            z-index: 1;
            filter: blur(40px);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        
        .social-icon-float:hover {
            transform: scale(1.2);
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            z-index: 10;
        }
        
        .social-icon-float:hover .social-icon {
            filter: grayscale(0%) brightness(1.1);
        }
        
        .social-icon-float:after {
            content: attr(data-tooltip);
            position: absolute;
            bottom: -25px;
            left: 50%;
            transform: translateX(-50%) scale(0.8);
            background-color: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 10px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            white-space: nowrap;
            z-index: 10;
        }
        
        .social-icon-float:hover:after {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) scale(1);
            bottom: -20px;
        }
        
        /* 旋转光效 */
        .rotating-light {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 35%;
            height: 0;
            padding-bottom: 35%;
            background: conic-gradient(
                rgba(0, 230, 118, 0) 0%, 
                rgba(0, 230, 118, 0.1) 25%, 
                rgba(0, 230, 118, 0.3) 50%, 
                rgba(0, 230, 118, 0.1) 75%, 
                rgba(0, 230, 118, 0) 100%
            );
            border-radius: 50%;
            transform: translate(-50%, -50%);
            z-index: 1;
            opacity: 0.7;
            animation: rotateLight 8s linear infinite;
        }
        
        @keyframes rotateLight {
            0% {
                transform: translate(-50%, -50%) rotate(0deg);
            }
            100% {
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }
        
        /* 第三层波纹 */
        .third-ripple {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 25%;
            height: 0;
            padding-bottom: 25%;
            background: transparent;
            border-radius: 50%;
            border: 2px solid rgba(0, 230, 118, 0.7);
            transform: translate(-50%, -50%);
            z-index: 1;
            animation: rippleWave 2s linear infinite 0.5s;
        }
        
        @keyframes rippleWave {
            0% {
                width: 25%;
                padding-bottom: 25%;
                opacity: 1;
            }
            100% {
                width: 60%;
                padding-bottom: 60%;
                opacity: 0;
            }
        }
        
        /* 第三部分：手点手机样式 */
        .touch-section {
            padding: 10px 0;
            position: relative;
            overflow: hidden;
        }
        
        .touch-content {
            padding-right: 30px;
        }
        
        .section-title {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 25px;
            color: var(--text-light);
        }
        
        .highlight {
            background: linear-gradient(90deg, #ffffff, #00E676);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 10px rgba(0, 230, 118, 0.3);
        }
        
        .section-description {
            font-size: 18px;
            color: var(--text-secondary);
            margin-bottom: 40px;
            line-height: 1.6;
        }
        
        .features-list {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        
        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 20px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .feature-item:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            border-color: rgba(0, 230, 118, 0.3);
        }
        
        .feature-icon {
            width: 50px;
            height: 50px;
            display: flex;
            justify-content: center;
            align-items: center;
            background: rgba(0, 230, 118, 0.1);
            border-radius: 50%;
            padding: 10px;
        }
        
        .flame-icon {
            width: 30px;
            height: 30px;
            filter: drop-shadow(0 0 5px rgba(0, 230, 118, 0.5));
            animation: flicker 3s ease-in-out infinite;
        }
        
        @keyframes flicker {
            0% { opacity: 1; }
            25% { opacity: 0.8; }
            50% { opacity: 1.2; }
            75% { opacity: 0.9; }
            100% { opacity: 1; }
        }
        
        .feature-text {
            flex: 1;
        }
        
        .feature-text h4 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--primary-color);
        }
        
        .feature-text p {
            font-size: 16px;
            color: var(--text-secondary);
            margin-bottom: 0;
        }
        
        .touch-image {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .image-container {
            position: relative;
            z-index: 2;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
        }
        
        .touch-phone-image {
            max-width: 45%;
            border-radius: 20px;
            position: relative;
            z-index: 2;
            animation: float-phone 6s ease-in-out infinite;
            margin: 0 auto; /* 添加水平居中 */
        }
        
        @keyframes float-phone {
            0% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-15px) rotate(1deg); }
            100% { transform: translateY(0) rotate(0deg); }
        }
        
        .touch-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(0, 230, 118, 0.4) 0%, rgba(0, 230, 118, 0) 70%);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            z-index: 1;
            filter: blur(50px);
            animation: pulse-glow 4s ease-in-out infinite;
        }
        
        @keyframes pulse-glow {
            0% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
            50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.2); }
            100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
        }
        
        /* 响应式调整 */
        @media (max-width: 992px) {
            .touch-section {
                padding: 10px 0;
            }
            
            .touch-content {
                padding-right: 0;
                padding-left: 0;
                margin-bottom: 50px;
                text-align: center;
            }
            
            .section-title {
                font-size: 36px;
            }
            
            .features-list {
                max-width: 600px;
                margin: 0 auto;
            }
            
            .feature-item {
                text-align: left;
            }
        }
        
        @media (max-width: 768px) {
            .touch-section {
                padding: 10px 0;
            }
            
            .section-title {
                font-size: 30px;
            }
            
            .section-description {
                font-size: 16px;
            }
            
            .feature-item {
                padding: 15px;
            }
            
            .feature-icon {
                width: 45px;
                height: 45px;
            }
            
            .flame-icon {
                width: 25px;
                height: 25px;
            }
            
            .feature-text h4 {
                font-size: 18px;
            }
            
            .feature-text p {
                font-size: 14px;
            }
            
            /* 在手机模式下隐藏右侧图片 */
            .touch-image {
                display: none;
            }
            
            /* 在手机模式下让左侧内容占满整行 */
            .touch-content {
                width: 100%;
                max-width: 100%;
                flex: 0 0 100%;
                text-align: center;
                padding: 0 15px;
            }
        }
        
        @media (max-width: 576px) {
            .touch-section {
                padding: 10px 0;
            }
            
            .section-title {
                font-size: 26px;
            }
            
            .features-list {
                gap: 15px;
            }
            
            .feature-item {
                padding: 12px;
                gap: 15px;
            }
            
            .feature-icon {
                width: 40px;
                height: 40px;
            }
            
            .flame-icon {
                width: 22px;
                height: 22px;
            }
            
            .feature-text h4 {
                font-size: 16px;
                margin-bottom: 5px;
            }
            
            .feature-text p {
                font-size: 13px;
            }
            
            /* 确保在最小屏幕上内容居中 */
            .touch-content {
                padding: 0 10px;
            }
        }
        
        /* 标题样式 */
        .section-heading {
            font-size: 46px;
            font-weight: 700;
            background: linear-gradient(90deg, #ffffff, #00E676);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 10px rgba(0, 230, 118, 0.3);
        }
        
        @media (max-width: 992px) {
            .section-heading {
                font-size: 38px;
            }
        }
        
        @media (max-width: 768px) {
            .section-heading {
                font-size: 32px;
            }
        }
        
        /* 第四部分：全球覆盖样式 */
        .global-coverage-section {
            padding: 80px 0;
            position: relative;
            overflow: hidden;
            margin: 70px 0;
        }
        
        .global-coverage-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .global-coverage-image {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            padding-right: 50px;
        }
        
        .global-coverage-text {
            flex: 1;
            padding-left: 50px;
        }
        
        .global-coverage-title {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 25px;
            color: var(--text-light);
        }
        
        .global-coverage-description {
            font-size: 18px;
            color: var(--text-secondary);
            margin-bottom: 30px;
            line-height: 1.6;
        }
        
        .global-coverage-stats {
            display: flex;
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .global-stat-item {
            text-align: center;
        }
        
        .global-stat-number {
            font-size: 36px;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 5px;
        }
        
        .global-stat-label {
            font-size: 16px;
            color: var(--text-secondary);
        }
        
        .globe-image {
            max-width: 100%;
            border-radius: 20px;
            position: relative;
            z-index: 2;
            animation: float 6s ease-in-out infinite;
        }
        
        .globe-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(0, 230, 118, 0.3) 0%, rgba(0, 230, 118, 0) 70%);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            z-index: 1;
            filter: blur(40px);
            animation: pulse-glow 4s ease-in-out infinite;
        }
        
        .country-flag {
            position: absolute;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            z-index: 3;
            animation: float 6s ease-in-out infinite;
        }
        
        .flag-usa {
            top: 10%;
            left: 50%;
            transform: translateX(-50%);
            animation-delay: 0.5s;
        }
        
        .flag-uk {
            bottom: 20%;
            left: 20%;
            animation-delay: 1.2s;
        }
        
        .flag-germany {
            top: 30%;
            left: 15%;
            animation-delay: 0.8s;
        }
        
        .flag-canada {
            bottom: 15%;
            right: 20%;
            animation-delay: 1.5s;
        }
        
        @media (max-width: 992px) {
            .global-coverage-section {
                padding: 60px 20px;
            }
            
            .global-coverage-content {
                flex-direction: column;
            }
            
            .global-coverage-image {
                padding-right: 0;
                margin-bottom: 40px;
                display: flex;
                justify-content: center;
                width: 100%;
            }
            
            .global-coverage-image > div {
                display: flex;
                justify-content: center;
                width: 100%;
            }
            
            .global-coverage-text {
                padding-left: 0;
                text-align: center;
            }
            
            .global-coverage-title {
                font-size: 36px;
            }
            
            .global-coverage-stats {
                justify-content: center;
            }
            
            .globe-image {
                max-width: 80%;
            }
            
            .country-flag {
                width: 50px;
                height: 50px;
            }
        }
        
        @media (max-width: 768px) {
            .global-coverage-section {
                padding: 50px 15px;
                margin: 50px 0;
            }
            
            .global-coverage-title {
                font-size: 30px;
            }
            
            .global-coverage-description {
                font-size: 16px;
            }
            
            .global-stat-number {
                font-size: 30px;
            }
            
            .global-stat-label {
                font-size: 14px;
            }
            
            .globe-image {
                max-width: 70%;
            }
            
            .country-flag {
                width: 40px;
                height: 40px;
            }
        }
        
        @media (max-width: 576px) {
            .global-coverage-section {
                padding: 40px 10px;
                margin: 40px 0;
            }
            
            .global-coverage-title {
                font-size: 26px;
            }
            
            .global-coverage-stats {
                flex-wrap: wrap;
                gap: 20px;
            }
            
            .global-stat-item {
                flex: 0 0 calc(50% - 10px);
            }
            
            .global-stat-number {
                font-size: 26px;
            }
            
            .global-stat-label {
                font-size: 13px;
            }
            
            .globe-image {
                max-width: 60%;
            }
            
            .country-flag {
                width: 35px;
                height: 35px;
            }
        }

        /* 第五部分：不限平台，无缝衔接 */
        .multi-platform-section {
            position: relative;
            overflow: hidden;
        }
        
        .multi-platform-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .multi-platform-text {
            flex: 1;
            padding-right: 50px;
        }
        
        .section-title {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 25px;
            color: var(--text-light);
        }
        
        .section-description {
            font-size: 18px;
            color: var(--text-secondary);
            margin-bottom: 40px;
            line-height: 1.6;
        }
        
        .platform-features {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        
        .platform-feature-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 20px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .platform-feature-item:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            border-color: rgba(0, 230, 118, 0.3);
        }
        
        .platform-icon-container {
            width: 50px;
            height: 50px;
            display: flex;
            justify-content: center;
            align-items: center;
            background: rgba(0, 230, 118, 0.1);
            border-radius: 50%;
            padding: 10px;
        }
        
        .platform-feature-text {
            flex: 1;
        }
        
        .platform-feature-text h4 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--primary-color);
        }
        
        .platform-feature-text p {
            font-size: 16px;
            color: var(--text-secondary);
            margin-bottom: 0;
        }
        
        .multi-platform-image {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }
        
        .devices-container {
            position: relative;
            z-index: 2;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: 400px;
        }
        
        .device-tablet {
            max-width: 70%;
            border-radius: 20px;
            position: absolute;
            z-index: 2;
            animation: float-device 6s ease-in-out infinite;
            left: 50%;
            transform: translateX(-50%);
            top:30px;
        }
        
        .device-phone {
            max-width: 40%;
            border-radius: 20px;
            position: absolute;
            z-index: 3;
            animation: float-device 6s ease-in-out infinite 1s;
            right: 10%;
            top: 20%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        
        .platform-icon {
            width: 30px;
            height: 30px;
            filter: drop-shadow(0 0 5px rgba(0, 230, 118, 0.5));
        }
        
        @keyframes float-device {
            0% { transform: translate(-50%, 0) rotate(0deg); }
            50% { transform: translate(-50%, -15px) rotate(1deg); }
            100% { transform: translate(-50%, 0) rotate(0deg); }
        }
        
        /* 响应式调整 */
        @media (max-width: 992px) {
            .multi-platform-section {
                padding: 60px 20px;
            }
            
            .multi-platform-content {
                flex-direction: column-reverse;
            }
            
            .multi-platform-text {
                padding-right: 0;
                text-align: center;
                margin-top: 50px;
            }
            
            .platform-features {
                max-width: 600px;
                margin: 0 auto;
            }
            
            .platform-feature-item {
                text-align: left;
            }
            
            .devices-container {
                height: 350px;
                width: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
            }
            
            .device-tablet {
                max-width: 70%;
            }
        }
        
        @media (max-width: 768px) {
            .multi-platform-section {
                padding: 50px 15px;
            }
            
            .devices-container {
                height: 300px;
                width: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
            }
            
            .device-tablet {
                max-width: 80%;
                position: relative;
                left: auto;
                transform: none;
                animation: float 6s ease-in-out infinite;
            }
            
            .device-phone {
                max-width: 45%;
                right: 5%;
            }
            
            .platform-feature-item {
                padding: 15px;
            }
            
            .platform-icon-container {
                width: 45px;
                height: 45px;
            }
            
            .platform-icon {
                width: 25px;
                height: 25px;
            }
            
            .platform-feature-text h4 {
                font-size: 18px;
            }
            
            .platform-feature-text p {
                font-size: 14px;
            }
        }
        
        @media (max-width: 576px) {
            .multi-platform-section {
                padding: 40px 10px;
            }
            
            .devices-container {
                height: 250px;
            }
            
            .device-tablet {
                max-width: 90%;
            }
            
            .device-phone {
                max-width: 50%;
                top: 15%;
            }
            
            .platform-features {
                gap: 15px;
            }
            
            .platform-feature-item {
                padding: 12px;
                gap: 15px;
            }
            
            .platform-icon-container {
                width: 40px;
                height: 40px;
            }
            
            .platform-icon {
                width: 22px;
                height: 22px;
            }
            
            .platform-feature-text h4 {
                font-size: 16px;
                margin-bottom: 5px;
            }
            
            .platform-feature-text p {
                font-size: 13px;
            }
        }
        
        .devices-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(0, 230, 118, 0.3) 0%, rgba(0, 230, 118, 0) 70%);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            z-index: 1;
            filter: blur(40px);
            animation: pulse-glow 4s ease-in-out infinite;
        }

        /* 第六部分：真人客服，永不失联 */
        .customer-service-section {
            padding: 80px 0;
            position: relative;
            overflow: hidden;
            margin: 70px 0;
        }
        
        .customer-service-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .customer-service-image {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            padding-right: 50px;
            position: relative;
        }
        
        .customer-service-text {
            flex: 1;
            padding-left: 50px;
        }
        
        .customer-service-title {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 25px;
            color: var(--text-light);
        }
        
        .customer-service-description {
            font-size: 18px;
            color: var(--text-secondary);
            margin-bottom: 30px;
            line-height: 1.6;
        }
        
        .service-image {
            max-width: 100%;
            border-radius: 20px;
            position: relative;
            z-index: 2;
            animation: float 6s ease-in-out infinite;
        }
        
        .service-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(0, 230, 118, 0.3) 0%, rgba(0, 230, 118, 0) 70%);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            z-index: 1;
            filter: blur(40px);
            animation: pulse-glow 4s ease-in-out infinite;
        }
        
        .service-icon {
            /* position: absolute;
            top: -20px; */
            right: 40%;
            width: 60px;
            height: 60px;
            margin-bottom: 20px;
            z-index: 3;
            filter: drop-shadow(0 0 10px rgba(255, 87, 34, 0.7));
            animation: pulse 3s ease-in-out infinite;
        }
        
        .service-stats {
            display: flex;
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .service-stat-item {
            text-align: center;
        }
        
        .service-stat-number {
            font-size: 36px;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 5px;
        }
        
        .service-stat-label {
            font-size: 16px;
            color: var(--text-secondary);
        }
        
        @media (max-width: 992px) {
            .customer-service-section {
                padding: 60px 20px;
            }
            
            .customer-service-content {
                flex-direction: column;
            }
            
            .customer-service-image {
                padding-right: 0;
                margin-bottom: 40px;
                order: -1;
            }
            
            .customer-service-text {
                padding-left: 0;
                text-align: center;
            }
            
            .customer-service-title {
                font-size: 36px;
            }
            
            .service-stats {
                justify-content: center;
            }
            
            .service-image {
                max-width: 80%;
            }
            
            .service-icon {
                right: 30%;
                width: 50px;
                height: 50px;
            }
        }
        
        @media (max-width: 768px) {
            .customer-service-section {
                padding: 50px 15px;
                margin: 50px 0;
            }
            
            .customer-service-title {
                font-size: 30px;
            }
            
            .customer-service-description {
                font-size: 16px;
            }
            
            .service-stat-number {
                font-size: 30px;
            }
            
            .service-stat-label {
                font-size: 14px;
            }
            
            .service-image {
                max-width: 70%;
            }
            
            .service-icon {
                right: 25%;
                width: 40px;
                height: 40px;
            }
        }
        
        @media (max-width: 576px) {
            .customer-service-section {
                padding: 40px 10px;
                margin: 40px 0;
            }
            
            .customer-service-title {
                font-size: 26px;
            }
            
            .service-stats {
                flex-wrap: wrap;
                gap: 20px;
            }
            
            .service-stat-item {
                flex: 0 0 calc(50% - 10px);
            }
            
            .service-stat-number {
                font-size: 26px;
            }
            
            .service-stat-label {
                font-size: 13px;
            }
            
            .service-image {
                max-width: 60%;
            }
            
            .service-icon {
                right: 20%;
                width: 35px;
                height: 35px;
            }
        }

        /* 用户评论模块样式 */
        .user-reviews-section {
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .user-reviews-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(18, 18, 18, 0.8) 0%, rgba(18, 18, 18, 0.95) 100%);
            z-index: -1;
        }
        
        .review-icon {
            width: 60px;
            height: 60px;
            margin-bottom: 20px;
            filter: drop-shadow(0 0 10px rgba(0, 230, 118, 0.5));
        }
        
        .review-title {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 15px;
            text-align: center;
        }
        
        .review-subtitle {
            font-size: 20px;
            color: var(--text-secondary);
            margin-bottom: 40px;
            text-align: center;
        }
        
        .highlight-number {
            color: var(--primary-color);
            font-weight: 700;
        }
        
        .review-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 60px;
            flex-wrap: wrap;
        }
        
        .review-stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .stat-circle {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(0, 230, 118, 0.2) 0%, rgba(0, 230, 118, 0.4) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            box-shadow: 0 0 20px rgba(0, 230, 118, 0.3);
            border: 2px solid rgba(0, 230, 118, 0.5);
        }
        
        .stat-number {
            font-size: 36px;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .stat-label {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .stars {
            color: #FFD700;
            font-size: 18px;
            margin-bottom: 5px;
        }
        
        .review-count {
            font-size: 14px;
            color: var(--text-secondary);
        }
        
        .reviews-container {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            padding: 20px 0;
            scroll-behavior: smooth;
            -ms-overflow-style: none;
            scrollbar-width: none;
            margin-bottom: 30px;
        }
        
        .reviews-container::-webkit-scrollbar {
            display: none;
        }
        
        .review-card {
            flex: 0 0 300px;
            background: rgba(30, 30, 30, 0.7);
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(0, 230, 118, 0.3);
        }
        
        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .reviewer-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
            border: 2px solid var(--primary-color);
        }
        
        .reviewer-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .reviewer-name {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .review-stars {
            color: #FFD700;
            font-size: 16px;
        }
        
        .review-text {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 15px;
            color: var(--text-secondary);
        }
        
        .review-date {
            font-size: 14px;
            color: #888;
            text-align: right;
        }
        
        .carousel-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 40px;
        }
        
        .prev-btn, .next-btn {
            background: rgba(0, 230, 118, 0.2);
            color: var(--primary-color);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin: 0 15px;
        }
        
        .prev-btn:hover, .next-btn:hover {
            background: rgba(0, 230, 118, 0.4);
            transform: scale(1.1);
        }
        
        .carousel-dots {
            display: flex;
            gap: 8px;
        }
        
        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .dot.active {
            background-color: var(--primary-color);
            transform: scale(1.2);
        }
        
        .review-cta {
            text-align: center;
            margin-top: 30px;
        }
        
        .review-cta p {
            font-size: 18px;
            margin-bottom: 20px;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border: none;
            padding: 12px 30px;
            font-size: 18px;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s ease;
            color: #000;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 230, 118, 0.4);
            background-color: #00ff85;
        }
        
        @media (max-width: 768px) {
            .review-stats {
                gap: 20px;
            }
            
            .stat-circle {
                width: 80px;
                height: 80px;
            }
            
            .stat-number {
                font-size: 28px;
            }
            
            .review-card {
                flex: 0 0 280px;
            }
        }

        /* 第八部分：多平台下载 */
        .download-section {
            padding: 100px 0;
            overflow: hidden;
        }
        
        .download-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(18, 18, 18, 0.8) 0%, rgba(18, 18, 18, 0.95) 100%);
            z-index: -1;
        }
        
        .download-section-icon {
            width: 60px;
            height: 60px;
            margin-bottom: 20px;
            filter: drop-shadow(0 0 10px rgba(0, 230, 118, 0.5));
        }
        
        .download-title {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 15px;
            text-align: center;
        }
        
        .download-subtitle {
            font-size: 20px;
            color: var(--text-secondary);
            margin-bottom: 50px;
            text-align: center;
        }
        
        .highlight-text {
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .download-options {
            display: flex;
            flex-direction: column;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .download-row {
            display: flex;
            justify-content: center;
            gap: 30px;
            width: 100%;
            flex-wrap: wrap;
        }
        
        .download-card {
            flex: 0 0 calc(25% - 30px);
            max-width: 250px;
            background: rgba(30, 30, 30, 0.7);
            border-radius: 20px;
            padding: 30px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            margin-bottom: 20px;
        }
        
        .download-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 230, 118, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: -1;
        }
        
        .download-card:hover::before {
            opacity: 1;
        }
        
        .download-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(0, 230, 118, 0.3);
        }
        
        .download-icon-container {
            width: 80px;
            height: 80px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(0, 230, 118, 0.1) 0%, rgba(0, 230, 118, 0.2) 100%);
            border-radius: 50%;
            padding: 15px;
            box-shadow: 0 0 20px rgba(0, 230, 118, 0.2);
            transition: all 0.3s ease;
        }
        
        .download-card:hover .download-icon-container {
            transform: scale(1.1);
            box-shadow: 0 0 30px rgba(0, 230, 118, 0.4);
        }
        
        .download-icon {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 0 5px rgba(0, 230, 118, 0.5));
        }
        
        .download-platform {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text-light);
            position: relative;
            display: inline-block;
        }
        
        .download-platform::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        .download-card:hover .download-platform::after {
            width: 100%;
        }
        
        .download-description {
            font-size: 16px;
            color: var(--text-secondary);
            margin-bottom: 25px;
            min-height: 40px;
            text-align: center;
        }
        
        .download-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 12px 25px;
            background-color: var(--primary-color);
            color: #000;
            font-weight: 600;
            border-radius: 30px;
            text-decoration: none;
            transition: all 0.3s ease;
            margin-bottom: 20px;
            width: 80%;
            position: relative;
            overflow: hidden;
        }
        
        .download-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: all 0.4s ease;
        }
        
        .download-btn:hover::before {
            left: 100%;
        }
        
        .download-btn:hover {
            background-color: #00ff85;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 230, 118, 0.4);
        }
        
        .download-btn-icon {
            font-size: 20px;
            font-weight: bold;
        }
        
        .qr-code-container {
            margin-top: 15px;
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .download-card:hover .qr-code-container {
            transform: scale(1.05);
        }
        
        .qr-code {
            width: 120px;
            height: 120px;
            background-color: white;
            padding: 10px;
            border-radius: 10px;
            margin-bottom: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }
        
        .download-card:hover .qr-code {
            box-shadow: 0 8px 25px rgba(0, 230, 118, 0.3);
        }
        
        .qr-code-text {
            font-size: 14px;
            color: var(--text-secondary);
        }
        
        .download-note {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 60px;
            background: rgba(0, 230, 118, 0.1);
            border-radius: 15px;
            padding: 20px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            border: 1px solid rgba(0, 230, 118, 0.2);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }
        
        .download-note:hover {
            background: rgba(0, 230, 118, 0.15);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            transform: translateY(-5px);
        }
        
        .note-icon {
            margin-right: 15px;
            display: flex;
            align-items: center;
        }
        
        .note-text {
            font-size: 16px;
            color: var(--text-light);
            margin: 0;
        }
        
        .note-link {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            padding-bottom: 2px;
        }
        
        .note-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        .note-link:hover::after {
            width: 100%;
        }
        
        .note-link:hover {
            color: #00ff85;
        }
        
        @media (max-width: 992px) {
            .download-row {
                flex-direction: column;
                align-items: center;
                gap: 30px;
            }
            
            .download-card {
                max-width: 100%;
                width: 100%;
            }
            
            .download-description {
                min-height: auto;
            }
        }
        
        @media (max-width: 768px) {
            .download-section {
                padding: 60px 0;
            }
            
            .download-section-icon {
                width: 50px;
                height: 50px;
            }
            
            .download-title {
                font-size: 32px;
            }
            
            .download-subtitle {
                font-size: 18px;
                margin-bottom: 30px;
            }
            
            .download-options {
                gap: 30px;
            }
            
            .download-card {
                padding: 25px;
            }
            
            .download-icon-container {
                width: 60px;
                height: 60px;
            }
            
            .download-platform {
                font-size: 20px;
            }
            
            .download-description {
                font-size: 14px;
            }
            
            .qr-code {
                width: 100px;
                height: 100px;
            }
            
            .download-note {
                flex-direction: column;
                text-align: center;
                padding: 15px;
            }
            
            .note-icon {
                margin-right: 0;
                margin-bottom: 10px;
            }
        }
        
        .device-svg {
            width: 100%;
            height: 100%;
            filter: drop-shadow(0 0 8px rgba(0, 230, 118, 0.4));
        }
        
        .qr-code-svg {
            width: 120px;
            height: 120px;
            background-color: white;
            padding: 10px;
            border-radius: 10px;
            margin-bottom: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }
        
        .download-card:hover .qr-code-svg {
            box-shadow: 0 8px 25px rgba(0, 230, 118, 0.3);
        }
        
        @media (max-width: 1200px) {
            .download-card {
                flex: 0 0 calc(25% - 20px);
                padding: 25px 15px;
            }
        }
        
        @media (max-width: 992px) {
            .download-card {
                flex: 0 0 calc(50% - 20px);
                max-width: 220px;
            }
        }
        
        @media (max-width: 576px) {
            .download-card {
                flex: 0 0 calc(50% - 15px);
                max-width: 180px;
                padding: 20px 10px;
            }
            
            .download-icon-container {
                width: 60px;
                height: 60px;
            }
            
            .download-platform {
                font-size: 18px;
            }
            
            .download-description {
                font-size: 14px;
                min-height: 60px;
            }
            
            .download-btn {
                padding: 10px 15px;
                font-size: 14px;
            }
        }

        /* 页脚样式 */
        .footer {
            background-color: #121212;
            padding: 80px 0 40px;
            /*  border-top: 1px solid rgba(255, 255, 255, 0.1);  */
            position: relative;
            overflow: hidden;
        }
        
        /* 页脚主题色光效果 */
        .footer-glow-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }
        
        .footer-glow {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            z-index: 0;
        }
        
        .footer-glow.glow-1 {
            top: -100px;
            left: 15%;
            width: 300px;
            height: 300px;
            background: rgba(0, 230, 118, 0.15);
            animation: pulse-glow 8s infinite alternate;
        }
        
        .footer-glow.glow-2 {
            top: -100px;
            right: 15%;
            width: 250px;
            height: 250px;
            background: rgba(0, 230, 118, 0.1);
            animation: pulse-glow 6s infinite alternate-reverse;
        }
        
        @keyframes pulse-glow {
            0% {
                opacity: 0.5;
                transform: scale(1);
            }
            100% {
                opacity: 0.8;
                transform: scale(1.2);
            }
        }
        
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 230, 118, 0.05), transparent);
            pointer-events: none;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
        }
        
        .footer-logo-section {
            flex: 0 0 250px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .footer-logo-img {
            height: 40px;
            width: auto;
            margin-right: 0;
        }
        
        .footer-logo-text {
            font-size: 24px;
            font-weight: 700;
            color: #fff;
        }
        
        .footer-copyright {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.5;
        }
        
        .footer-nav-section {
            flex: 1;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .footer-nav-column {
            flex: 0 0 calc(25% - 30px);
            min-width: 150px;
        }
        
        .footer-nav-title {
            font-size: 18px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 20px;
            position: relative;
        }
        
        /* .footer-nav-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 30px;
            height: 2px;
            background-color: var(--primary-color);
        } */
        
        .footer-nav-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-nav-list li {
            margin-bottom: 12px;
        }
        
        .footer-nav-list a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
            padding-left: 0;
        }
        
        .footer-nav-list a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }
        
        .footer-nav-list a.active {
            color: var(--primary-color);
            font-weight: 500;
        }
        
        .footer-nav-list a.active::before {
            content: '•';
            position: absolute;
            left: -10px;
            color: var(--primary-color);
        }
        
        @media (max-width: 992px) {
            .footer-content {
                flex-direction: column;
                gap: 30px;
            }
            
            .footer-logo-section {
                flex: 0 0 100%;
                text-align: center;
            }
            
            .footer-logo {
                justify-content: center;
            }
            
            .footer-nav-section {
                justify-content: space-around;
            }
            
            .footer-nav-column {
                flex: 0 0 calc(50% - 30px);
            }
            
            /* 响应式光效果调整 */
            .footer-glow.glow-1 {
                top: -100px;
                left: 5%;
                width: 250px;
                height: 250px;
            }
            
            .footer-glow.glow-2 {
                top: -80px;
                right: 5%;
                width: 200px;
                height: 200px;
            }
        }
        
        @media (max-width: 576px) {
            .footer {
                padding: 50px 0 30px;
            }
            
            .footer-nav-section {
                flex-direction: row;
                gap: 30px;
            }
            
            .footer-nav-column {
                flex:0 0 calc(50% - 30px);
            }
            
            .footer-nav-title {
                font-size: 16px;
                margin-bottom: 15px;
            }
            
            .footer-nav-list a {
                font-size: 14px;
            }
            
            /* 移动端光效果调整 */
            .footer-glow.glow-1 {
                top: -80px;
                left: 0;
                width: 200px;
                height: 200px;
            }
            
            .footer-glow.glow-2 {
                top: -60px;
                right: 0;
                width: 180px;
                height: 180px;
            }
        }
