* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary: #0a6cff;
            --primary-dark: #0051cc;
            --secondary: #00c6ff;
            --green: #2ecc71;
            --green-dark: #27ae60;
            --accent: #a855f7;
            --dark: #1a1a2e;
            --darker: #0f0f1a;
            --light: #f8f9fa;
            --gray: #6c757d;
            --transition: all 0.4s ease;
        }
        
        body {
            font-family: 'Noto Sans SC', sans-serif;
            background-color: var(--darker);
            color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(46, 204, 113, 0.1) 0%, transparent 20%),
                radial-gradient(circle at 80% 10%, rgba(10, 108, 255, 0.1) 0%, transparent 25%);
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 导航栏样式 */
        header {
            background: rgba(10, 15, 30, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            transition: var(--transition);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 40px;
            margin-right: 12px;
        }
        
        .logo h1 {
            color: white;
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(to right, var(--green), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin: 0 15px;
        }
        
        .nav-links a {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: var(--transition);
            position: relative;
            padding: 6px 0;
        }
        
        .nav-links a:hover {
            color: var(--green);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(to right, var(--green), var(--primary));
            transition: var(--transition);
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .cta-button {
            background: linear-gradient(135deg, var(--green), var(--primary));
            color: white;
            padding: 12px 28px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 1rem;
            box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary), var(--green));
            transition: var(--transition);
            z-index: -1;
        }
        
        .cta-button:hover::before {
            left: 0;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(46, 204, 113, 0.4);
        }
        
        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            color: white;
            cursor: pointer;
            z-index: 1001;
        }
        
        /* 侧边导航栏样式 */
        .sidebar {
            position: fixed;
            top: 0;
            right: -300px;
            width: 300px;
            height: 100vh;
            background: rgba(10, 15, 30, 0.98);
            backdrop-filter: blur(10px);
            z-index: 999;
            padding: 80px 30px 30px;
            transition: var(--transition);
            box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
            overflow-y: auto;
        }
        
        .sidebar.active {
            right: 0;
        }
        
        .sidebar-close {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 1.5rem;
            color: white;
            cursor: pointer;
            background: rgba(255, 255, 255, 0.1);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .sidebar-links {
            list-style: none;
            margin-top: 30px;
        }
        
        .sidebar-links li {
            margin-bottom: 15px;
        }
        
        .sidebar-links a {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 500;
            display: block;
            padding: 12px 15px;
            border-radius: 8px;
            transition: var(--transition);
        }
        
        .sidebar-links a:hover {
            color: var(--green);
            background: rgba(46, 204, 113, 0.1);
            transform: translateX(5px);
        }
        
        .sidebar-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }
        
        .sidebar-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        /* 英雄区域样式 */
        .hero {
            height: 100vh;
            background: linear-gradient(135deg, rgba(10, 15, 30, 0.9), rgba(5, 10, 20, 0.9)), url('https://images.unsplash.com/photo-1531297484001-80022131f5a1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1520&q=80') no-repeat center center/cover;
            display: flex;
            align-items: center;
            color: white;
            padding-top: 80px;
            position: relative;
            overflow: hidden;
        }
        
        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 150px;
            background: linear-gradient(to top, var(--darker), transparent);
        }
        
        .hero-content {
            max-width: 800px;
            z-index: 1;
            text-align: center;
            margin: 0 auto;
        }
        
        .hero h2 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
            background: linear-gradient(to right, #fff, var(--green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 35px;
            opacity: 0.9;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid var(--green);
            color: var(--green);
            padding: 12px 28px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn-outline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: var(--green);
            transition: var(--transition);
            z-index: -1;
        }
        
        .btn-outline:hover::before {
            width: 100%;
        }
        
        .btn-outline:hover {
            color: white;
        }
        
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }
        
        .particle {
            position: absolute;
            background: rgba(46, 204, 113, 0.5);
            border-radius: 50%;
            opacity: 0;
            animation: float 15s infinite linear;
        }
        
        @keyframes float {
            0% {
                transform: translateY(0) translateX(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh) translateX(100vw) rotate(360deg);
                opacity: 0;
            }
        }
        
        /* 公司介绍区域样式 */
        .intro {
            padding: 100px 0;
            background: var(--dark);
            position: relative;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 70px;
        }
        
        .section-title h2 {
            font-size: 2.8rem;
            color: white;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--green), var(--primary));
            border-radius: 2px;
        }
        
        .section-title p {
            color: var(--gray);
            max-width: 700px;
            margin: 25px auto 0;
            font-size: 1.1rem;
        }
        
        .intro-content {
            display: flex;
            align-items: center;
            gap: 60px;
        }
        
        .intro-text {
            flex: 1;
        }
        
        .intro-text h2 {
            font-size: 2.5rem;
            color: white;
            margin-bottom: 25px;
            background: linear-gradient(to right, var(--green), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .intro-text p {
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
        }
        
        .intro-image {
            flex: 1;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }
        
        .intro-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* 五大公司区域样式 */
        .companies {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--darker), var(--dark));
        }
        
        .companies-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .company-card {
            background: linear-gradient(145deg, rgba(30, 30, 60, 0.7), rgba(15, 15, 35, 0.7));
            border-radius: 15px;
            overflow: hidden;
            transition: var(--transition);
            padding: 40px 30px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
        }
        
        .company-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .company-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--green), var(--primary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: white;
            font-size: 2.2rem;
            box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
        }
        
        .company-card h3 {
            font-size: 1.6rem;
            margin-bottom: 15px;
            color: white;
        }
        
        .company-card p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 20px;
        }
        
        /* 绿色积分区域样式 */
        .green-points {
            padding: 100px 0;
            background: var(--dark);
        }
        
        .points-content {
            display: flex;
            align-items: center;
            gap: 60px;
        }
        
        .points-text {
            flex: 1;
        }
        
        .points-text h2 {
            font-size: 2.5rem;
            color: white;
            margin-bottom: 25px;
            background: linear-gradient(to right, var(--green), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .points-text p {
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
        }
        
        .benefit-item {
            background: rgba(46, 204, 113, 0.1);
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid var(--green);
        }
        
        .benefit-item h4 {
            color: var(--green);
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        
        .benefit-item p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 0;
        }
        
        .points-image {
            flex: 1;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }
        
        .points-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* 数字资产区域样式 */
        .digital-assets {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--darker), var(--dark));
        }
        
        .assets-content {
            display: flex;
            align-items: center;
            gap: 60px;
        }
        
        .assets-text {
            flex: 1;
        }
        
        .assets-text h2 {
            font-size: 2.5rem;
            color: white;
            margin-bottom: 25px;
            background: linear-gradient(to right, var(--green), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .assets-text p {
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
        }
        
        .wallets {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
        }
        
        .wallet-item {
            background: rgba(10, 108, 255, 0.1);
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid var(--primary);
        }
        
        .wallet-item h4 {
            color: var(--primary);
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        
        .wallet-item p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 0;
        }
        
        .assets-image {
            flex: 1;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }
        
        .assets-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* 商业模式区域样式 */
        .business-model {
            padding: 100px 0;
            background: var(--dark);
        }
        
        .model-steps {
            display: flex;
            justify-content: space-between;
            margin-top: 50px;
            position: relative;
        }
        
        .model-steps::before {
            content: '';
            position: absolute;
            top: 60px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(to right, var(--green), var(--primary));
            z-index: 1;
        }
        
        .step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
        }
        
        .step-icon {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, var(--green), var(--primary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: white;
            font-size: 2.5rem;
            box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
            position: relative;
        }
        
        .step h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: white;
        }
        
        .step p {
            color: rgba(255, 255, 255, 0.7);
            padding: 0 15px;
        }
        
        /* 页脚样式 */
        footer {
            background: var(--darker);
            color: rgba(255, 255, 255, 0.7);
            padding: 80px 0 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .footer-col h3 {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 12px;
        }
        
        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(to right, var(--green), var(--primary));
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 14px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .footer-links a:hover {
            color: var(--green);
            transform: translateX(5px);
        }
        
        .footer-newsletter p {
            margin-bottom: 20px;
            line-height: 1.7;
        }
        
        .newsletter-form {
            display: flex;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 14px 15px;
            border: none;
            border-radius: 5px 0 0 5px;
            font-family: inherit;
            background: rgba(255, 255, 255, 0.05);
            color: white;
        }
        
        .newsletter-form button {
            background: linear-gradient(135deg, var(--green), var(--primary));
            color: white;
            border: none;
            padding: 0 22px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .newsletter-form button:hover {
            background: linear-gradient(135deg, var(--primary), var(--green));
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.5);
        }
        
        .icp {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 15px;
            flex-wrap: wrap;
        }
        
        .icp a {
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
            margin: 5px 0;
        }
        
        .icp a:hover {
            color: var(--green);
        }
        
        .icp img {
            width: 18px;
            height: 18px;
        }
        
        .contact-info {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 15px;
            flex-wrap: wrap;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .contact-item:hover {
            color: var(--green);
        }
        
        .footer-icons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }
        
        .footer-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        
        .footer-icon:hover {
            background: var(--green);
            transform: translateY(-3px);
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .hero h2 {
                font-size: 2.8rem;
            }
            
            .intro-content, .points-content, .assets-content {
                flex-direction: column;
            }
            
            .model-steps {
                flex-direction: column;
                gap: 40px;
            }
            
            .model-steps::before {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .hero {
                text-align: center;
            }
            
            .hero-content {
                margin: 0 auto;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .hero h2 {
                font-size: 2.3rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .benefits-grid, .wallets {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .footer-col h3::after {
                left: 50%;
                transform: translateX(-50%);
            }
        }
        
        @media (max-width: 576px) {
            .hero h2 {
                font-size: 2rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }
            
            .btn-outline, .cta-button {
                width: 100%;
                text-align: center;
            }
            
            .companies-grid {
                grid-template-columns: 1fr;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-form input {
                border-radius: 5px;
                margin-bottom: 10px;
            }
            
            .newsletter-form button {
                border-radius: 5px;
                padding: 12px;
            }
			}