       /* 基础重置和变量 */
        :root {
            --neon-pink: #ff0080;
            --neon-blue: #00ffff;
            --neon-purple: #8000ff;
            --neon-green: #00ff80;
            --neon-yellow: #ffff00;
            --neon-orange: #ff8000;
            --neon-red: #ff4444;
            --dark-bg: #0a0a0f;
            --darker-bg: #050508;
            --card-bg: rgba(20, 20, 30, 0.95);
            --glass-bg: rgba(255, 255, 255, 0.05);
            --text-primary: #ffffff;
            --text-secondary: #cccccc;
            --text-accent: #ff0080;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', 'Microsoft YaHei', sans-serif;
            background: var(--dark-bg);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
        }
        
        /* 动态背景效果 */
        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 80%, rgba(255, 0, 128, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(128, 0, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 60% 80%, rgba(255, 128, 0, 0.1) 0%, transparent 50%),
                linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
            z-index: -2;
            animation: backgroundShift 15s ease-in-out infinite alternate;
        }
        
        /* 粒子效果背景 */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
        }
        
        .particle {
            position: absolute;
            border-radius: 50%;
            animation: float 8s ease-in-out infinite;
        }
        
        /* 导航栏 */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(10, 10, 15, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 0, 128, 0.3);
            z-index: 1000;
            box-shadow: 0 4px 30px rgba(255, 0, 128, 0.2);
        }
        
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: logoGlow 2s ease-in-out infinite alternate;
            box-shadow: 0 0 20px rgba(255, 0, 128, 0.5);
        }
        
        .logo-text {
            font-size: 1.5rem;
            font-weight: 900;
            background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue), var(--neon-purple));
            background-size: 200% 200%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientShift 3s ease-in-out infinite;
        }
        
        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
        }
        
        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 20px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .nav-links a.active,
        .nav-links a:hover {
            color: var(--neon-pink);
            text-shadow: 0 0 10px var(--neon-pink);
            box-shadow: 0 0 20px rgba(255, 0, 128, 0.3);
        }
        
        /* 主要内容区域 */
        .main-content {
            margin-top: 80px;
            padding: 0 20px;
        }
        
        /* Hero Section */
        .hero-section {
            max-width: 1200px;
            margin: 40px auto;
            background: var(--card-bg);
            border-radius: 30px;
            padding: 80px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 0, 128, 0.3);
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }
        
        .hero-section::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(
                from 0deg,
                transparent,
                rgba(255, 0, 128, 0.1),
                transparent,
                rgba(0, 255, 255, 0.1),
                transparent,
                rgba(128, 0, 255, 0.1),
                transparent
            );
            animation: rotate 25s linear infinite;
            z-index: -1;
        }
        
        .hero-title {
            font-size: 4rem;
            font-weight: 900;
            background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue), var(--neon-purple), var(--neon-orange));
            background-size: 300% 300%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientShift 4s ease-in-out infinite;
            margin-bottom: 30px;
            text-shadow: 0 0 50px rgba(255, 0, 128, 0.5);
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            color: var(--neon-yellow);
            margin-bottom: 30px;
            text-shadow: 0 0 20px rgba(255, 255, 0, 0.5);
            animation: pulse 3s ease-in-out infinite;
        }
        
        .hero-description {
            font-size: 1.2rem;
            color: var(--text-secondary);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }
        
        /* 统计数据区域 */
        .stats-section {
            max-width: 1200px;
            margin: 80px auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }
        
        .stat-card {
            background: var(--glass-bg);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 0, 128, 0.3);
            border-radius: 25px;
            padding: 40px 20px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .stat-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(255, 0, 128, 0.1), rgba(0, 255, 255, 0.1));
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .stat-card:hover {
            transform: translateY(-15px) scale(1.05);
            border-color: var(--neon-pink);
            box-shadow: 0 25px 50px rgba(255, 0, 128, 0.4);
        }
        
        .stat-card:hover::before {
            opacity: 1;
        }
        
        .stat-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, var(--neon-pink), var(--neon-purple));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            box-shadow: 0 10px 30px rgba(255, 0, 128, 0.3);
            position: relative;
            z-index: 1;
        }
        
        .stat-icon i {
            font-size: 1.5rem;
            color: white;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--neon-orange);
            text-shadow: 0 0 20px var(--neon-orange);
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }
        
        .stat-label {
            font-size: 1rem;
            color: var(--text-secondary);
            position: relative;
            z-index: 1;
        }
        
        /* 发展历程时间线 */
        .timeline-section {
            max-width: 1000px;
            margin: 100px auto;
        }
        
        .section-title {
            font-size: 3rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 60px;
            background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue), var(--neon-purple));
            background-size: 200% 200%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientShift 3s ease-in-out infinite;
            position: relative;
        }
        
        .section-title::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
            border-radius: 2px;
            box-shadow: 0 0 20px rgba(255, 0, 128, 0.5);
        }
        
        .timeline {
            position: relative;
            padding: 20px 0;
        }
        
        .timeline::before {
            content: "";
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(to bottom, var(--neon-pink), var(--neon-blue), var(--neon-purple));
            transform: translateX(-50%);
            box-shadow: 0 0 20px rgba(255, 0, 128, 0.5);
        }
        
        .timeline-item {
            position: relative;
            margin: 50px 0;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.6s ease;
        }
        
        .timeline-item.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .timeline-item:nth-child(odd) .timeline-content {
            margin-right: 50%;
            padding-right: 40px;
            text-align: right;
        }
        
        .timeline-item:nth-child(even) .timeline-content {
            margin-left: 50%;
            padding-left: 40px;
            text-align: left;
        }
        
        .timeline-marker {
            position: absolute;
            left: 50%;
            top: 20px;
            width: 20px;
            height: 20px;
            background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue));
            border-radius: 50%;
            transform: translateX(-50%);
            box-shadow: 0 0 20px rgba(255, 0, 128, 0.8);
            z-index: 2;
        }
        
        .timeline-content {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 30px;
            border: 1px solid rgba(255, 0, 128, 0.3);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            position: relative;
        }
        
        .timeline-year {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--neon-yellow);
            margin-bottom: 15px;
            text-shadow: 0 0 15px var(--neon-yellow);
        }
        
        .timeline-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--neon-blue);
            margin-bottom: 10px;
        }
        
        .timeline-description {
            color: var(--text-secondary);
            line-height: 1.7;
        }
        
        /* 团队介绍 */
        .team-section {
            max-width: 1200px;
            margin: 100px auto;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }
        
        .team-card {
            background: var(--card-bg);
            border-radius: 25px;
            padding: 30px;
            text-align: center;
            border: 1px solid rgba(255, 0, 128, 0.2);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .team-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }
        
        .team-card:hover {
            transform: translateY(-15px);
            border-color: var(--neon-pink);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
        }
        
        .team-card:hover::before {
            transform: scaleX(1);
        }
        
        .team-avatar {
            width: 120px;
            height: 120px;
            background: linear-gradient(45deg, var(--neon-pink), var(--neon-purple), var(--neon-blue));
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
            box-shadow: 0 15px 40px rgba(255, 0, 128, 0.4);
            animation: avatarGlow 3s ease-in-out infinite alternate;
        }
        
        .team-name {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--neon-blue);
            margin-bottom: 10px;
        }
        
        .team-position {
            font-size: 1rem;
            color: var(--neon-yellow);
            margin-bottom: 15px;
            text-shadow: 0 0 10px var(--neon-yellow);
        }
        
        .team-description {
            color: var(--text-secondary);
            line-height: 1.6;
            font-size: 0.95rem;
        }
        
        /* 企业文化 */
        .culture-section {
            max-width: 1200px;
            margin: 100px auto;
        }
        
        .culture-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }
        
        .culture-card {
            background: var(--glass-bg);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(0, 255, 255, 0.3);
            border-radius: 25px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .culture-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(0, 255, 255, 0.1), rgba(128, 0, 255, 0.1));
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .culture-card:hover {
            transform: translateY(-10px);
            border-color: var(--neon-blue);
            box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
        }
        
        .culture-card:hover::before {
            opacity: 1;
        }
        
        .culture-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-green));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            box-shadow: 0 15px 35px rgba(0, 255, 255, 0.4);
            position: relative;
            z-index: 1;
        }
        
        .culture-icon i {
            font-size: 2rem;
            color: white;
        }
        
        .culture-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--neon-blue);
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }
        
        .culture-description {
            color: var(--text-secondary);
            line-height: 1.7;
            position: relative;
            z-index: 1;
        }
        
        /* 联系信息 */
        .contact-section {
            max-width: 1200px;
            margin: 100px auto;
            background: var(--card-bg);
            border-radius: 30px;
            padding: 60px 40px;
            border: 1px solid rgba(255, 0, 128, 0.3);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            position: relative;
            overflow: hidden;
        }
        
        .contact-section::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(
                from 0deg,
                transparent,
                rgba(255, 0, 128, 0.05),
                transparent,
                rgba(0, 255, 255, 0.05),
                transparent
            );
            animation: rotate 30s linear infinite;
            z-index: -1;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }
        
        .contact-item {
            text-align: center;
            padding: 30px 20px;
            background: var(--glass-bg);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }
        
        .contact-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(255, 0, 128, 0.2);
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, var(--neon-orange), var(--neon-red));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            box-shadow: 0 10px 25px rgba(255, 128, 0, 0.4);
        }
        
        .contact-icon i {
            font-size: 1.5rem;
            color: white;
        }
        
        .contact-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--neon-orange);
            margin-bottom: 10px;
        }
        
        .contact-info {
            color: var(--text-secondary);
            line-height: 1.6;
        }
        
        /* 页脚 */
        .footer {
            background: var(--darker-bg);
            margin-top: 80px;
            padding: 60px 20px 30px;
            border-top: 1px solid rgba(255, 0, 128, 0.3);
            position: relative;
        }
        
        .footer::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue), var(--neon-purple));
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }
        
        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue));
            background-size: 200% 200%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientShift 3s ease-in-out infinite;
            margin-bottom: 20px;
        }
        
        .footer-text {
            color: var(--text-secondary);
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .footer-bottom {
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .nav-links {
                display: none;
            }
            
            .timeline::before {
                left: 20px;
            }
            
            .timeline-item:nth-child(odd) .timeline-content,
            .timeline-item:nth-child(even) .timeline-content {
                margin-left: 50px;
                margin-right: 0;
                padding-left: 20px;
                padding-right: 20px;
                text-align: left;
            }
            
            .timeline-marker {
                left: 20px;
            }
            
            .stats-section {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .team-grid,
            .culture-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* 动画定义 */
        @keyframes backgroundShift {
            0% { filter: hue-rotate(0deg); }
            100% { filter: hue-rotate(45deg); }
        }
        
        @keyframes float {
            0%, 100% { 
                transform: translateY(0px) rotate(0deg); 
                opacity: 0.7; 
            }
            50% { 
                transform: translateY(-30px) rotate(180deg); 
                opacity: 1; 
            }
        }
        
        @keyframes logoGlow {
            0% { box-shadow: 0 0 20px rgba(255, 0, 128, 0.5); }
            100% { box-shadow: 0 0 40px rgba(255, 0, 128, 0.8), 0 0 60px rgba(0, 255, 255, 0.3); }
        }
        
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.8; transform: scale(1.05); }
        }
        
        @keyframes avatarGlow {
            0% { box-shadow: 0 15px 40px rgba(255, 0, 128, 0.4); }
            100% { box-shadow: 0 15px 40px rgba(255, 0, 128, 0.8), 0 0 50px rgba(0, 255, 255, 0.3); }
        }