       :root {
            --primary-dark: #1a1a40;
            --primary: #270082;
            --primary-light: #7a0bc0;
            --accent: #1de5e2;
            --accent-secondary: #f5008b;
            --text-light: #ffffff;
            --text-gray: #e0e0e0;
            --card-bg: rgba(39, 0, 130, 0.6);
            --card-hover: rgba(122, 11, 192, 0.7);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
            background-attachment: fixed;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 导航栏样式 */
        header {
            background: rgba(26, 26, 64, 0.9);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
        }
        
        nav {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 15px 0;
            position: relative;
        }
        
        .logo {
            position: absolute;
            left: 20px;
            font-size: 28px;
            font-weight: 700;
            color: var(--text-light);
            display: flex;
            align-items: center;
            white-space: nowrap;
        }
        
        .logo i {
            color: var(--accent);
            margin-right: 10px;
            font-size: 28px;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            margin: 0 auto;
        }
        
        .nav-links li {
            margin-left: 25px;
            position: relative;
        }
        
        .nav-links a {
            color: var(--text-gray);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            font-size: 16px;
            padding: 8px 0;
            position: relative;
        }
        
        .nav-links a:not(.nav-btn):after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
            transition: width 0.3s ease;
        }
        
        .nav-links a:not(.nav-btn):hover:after {
            width: 100%;
        }
        
        .nav-links a:not(.nav-btn):hover {
            color: var(--accent);
        }
        
        .nav-buttons {
            position: absolute;
            right: 20px;
            display: flex;
            gap: 10px;
        }
        
        .nav-btn {
            background: var(--accent);
            color: var(--primary-dark);
            border: none;
            padding: 10px 20px;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            font-size: 14px;
            white-space: nowrap;
        }
        
        .nav-btn:hover {
            background: #6df3f1;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(29, 229, 226, 0.4);
        }
        
        .nav-btn-secondary {
            background: var(--accent-secondary);
            color: white;
        }
        
        .nav-btn-secondary:hover {
            background: #ff4da6;
            box-shadow: 0 5px 15px rgba(245, 0, 139, 0.4);
        }
        
        /* 页面标题区域 */
        .page-header {
            padding: 150px 0 80px;
            text-align: center;
            position: relative;
        }
        
        .page-header h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
        }
        
        .page-header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            color: var(--text-gray);
        }
        
        /* 网站介绍区域 */
        .intro-section {
            padding: 80px 0;
        }
        
        .intro-container {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .intro-content {
            flex: 1;
        }
        
        .intro-content h2 {
            font-size: 2.5rem;
            margin-bottom: 25px;
            color: var(--accent);
        }
        
        .intro-content p {
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        .intro-image {
            flex: 1;
            position: relative;
        }
        
        .intro-image img {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            transition: transform 0.5s;
        }
        
        .intro-image:hover img {
            transform: scale(1.02);
        }
        
        .intro-image::before {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 100px;
            height: 100px;
            border-top: 4px solid var(--accent);
            border-right: 4px solid var(--accent);
            border-radius: 0 15px 0 0;
            transition: all 0.5s;
        }
        
        .intro-image::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: -20px;
            width: 100px;
            height: 100px;
            border-bottom: 4px solid var(--accent-secondary);
            border-left: 4px solid var(--accent-secondary);
            border-radius: 0 0 0 15px;
            transition: all 0.5s;
        }
        
        .intro-image:hover::before,
        .intro-image:hover::after {
            width: 120px;
            height: 120px;
        }
        
        /* 发展历程区域 */
        .timeline-section {
            padding: 80px 0;
            background: rgba(26, 26, 64, 0.3);
            position: relative;
        }
        
        .timeline-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100" opacity="0.05"><circle cx="50" cy="50" r="40" stroke="%231de5e2" fill="none" /></svg>');
            background-size: 200px;
            z-index: -1;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            display: block;
            width: 70px;
            height: 4px;
            background: var(--accent);
            margin: 15px auto;
            border-radius: 2px;
        }
        
        .section-title p {
            max-width: 700px;
            margin: 0 auto;
            color: var(--text-gray);
        }
        
        .timeline {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 4px;
            background: linear-gradient(to bottom, var(--accent), var(--accent-secondary));
            transform: translateX(-50%);
        }
        
        .timeline-item {
            display: flex;
            justify-content: flex-end;
            padding-right: 30px;
            position: relative;
            margin-bottom: 80px;
            width: 50%;
        }
        
        .timeline-item:nth-child(even) {
            align-self: flex-end;
            justify-content: flex-start;
            padding-left: 30px;
            padding-right: 0;
            left: 50%;
        }
        
        .timeline-content {
            background: var(--card-bg);
            backdrop-filter: blur(5px);
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            width: 400px;
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s;
        }
        
        .timeline-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        }
        
        .timeline-item:nth-child(even) .timeline-content {
            text-align: right;
        }
        
        .timeline-content::before {
            content: '';
            position: absolute;
            top: 50%;
            right: -10px;
            width: 20px;
            height: 20px;
            background: var(--accent);
            border-radius: 50%;
            transform: translateY(-50%);
        }
        
        .timeline-item:nth-child(even) .timeline-content::before {
            right: auto;
            left: -10px;
        }
        
        .timeline-date {
            color: var(--accent);
            font-weight: 700;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        
        .timeline-text {
            color: var(--text-gray);
        }
        
        /* 核心团队区域 */
        .team-section {
            padding: 80px 0;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .team-member {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .team-member::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-light), var(--accent));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s;
        }
        
        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }
        
        .team-member:hover::before {
            transform: scaleX(1);
        }
        
        .member-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 20px;
            border: 3px solid var(--accent);
            position: relative;
        }
        
        .member-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .team-member:hover .member-avatar img {
            transform: scale(1.1);
        }
        
        .member-name {
            font-size: 1.4rem;
            margin-bottom: 5px;
        }
        
        .member-role {
            color: var(--accent);
            margin-bottom: 15px;
            font-size: 1rem;
        }
        
        .member-desc {
            color: var(--text-gray);
            font-size: 0.95rem;
            margin-bottom: 20px;
        }
        
        .member-social {
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        
        .member-social a {
            color: var(--text-light);
            font-size: 1.2rem;
            transition: color 0.3s;
        }
        
        .member-social a:hover {
            color: var(--accent);
        }
        
        /* 合作伙伴区域 */
        .partners-section {
            padding: 80px 0;
            background: rgba(26, 26, 64, 0.3);
        }
        
        .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 30px;
        }
        
        .partner-item {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            transition: all 0.3s;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            height: 150px;
        }
        
        .partner-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        
        .partner-logo {
            max-width: 100%;
            max-height: 80px;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s;
        }
        
        .partner-item:hover .partner-logo {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.1);
        }
        
        /* 页脚样式 */
        footer {
            background: rgba(13, 13, 33, 0.95);
            padding: 60px 0 30px;
            margin-top: 80px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 3px;
            background: var(--accent);
        }
        
        .footer-column p, .footer-column a {
            color: var(--text-gray);
            margin-bottom: 15px;
            display: block;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column a:hover {
            color: var(--accent);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .logo {
                font-size: 24px;
            }
            
            .logo i {
                font-size: 24px;
            }
            
            .nav-links li {
                margin-left: 15px;
            }
            
            .nav-btn {
                padding: 8px 16px;
                font-size: 13px;
            }
            
            .intro-container {
                flex-direction: column;
            }
            
            .timeline::before {
                left: 30px;
            }
            
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 0;
            }
            
            .timeline-item:nth-child(even) {
                left: 0;
            }
            
            .timeline-content {
                width: 100%;
            }
            
            .timeline-content::before {
                left: -40px;
                right: auto;
            }
            
            .timeline-item:nth-child(even) .timeline-content::before {
                left: -40px;
            }
            
            .timeline-item:nth-child(even) .timeline-content {
                text-align: left;
            }
        }
        
        @media (max-width: 768px) {
            nav {
                flex-direction: column;
                padding: 10px 0;
            }
            
            .logo {
                position: static;
                margin-bottom: 15px;
                font-size: 22px;
            }
            
            .logo i {
                font-size: 22px;
            }
            
            .nav-links {
                margin: 15px 0;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .nav-links li {
                margin: 0 10px 10px;
            }
            
            .nav-buttons {
                position: static;
                margin-top: 15px;
            }
            
            .page-header h1 {
                font-size: 2.5rem;
            }
            
            .page-header p {
                font-size: 1rem;
            }
            
            .team-grid, .partners-grid {
                grid-template-columns: 1fr;
            }
        }