        :root {
            --primary-color: #00d9ff;
            --secondary-color: #8a2be2;
            --accent-color: #ff2a6d;
            --dark-bg: #0a0e17;
            --darker-bg: #050811;
            --card-bg: rgba(10, 14, 23, 0.85);
            --text-light: #ffffff;
            --text-dim: #a0b1c5;
        }
        
        a {
            color: inherit;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0.2em 0;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Exo 2', sans-serif;
            background-color: var(--darker-bg);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
            min-height: 100vh;
            background-image: 
                radial-gradient(circle at 5% 10%, rgba(0, 217, 255, 0.03) 0%, transparent 20%),
                radial-gradient(circle at 95% 90%, rgba(138, 43, 226, 0.03) 0%, transparent 20%),
                radial-gradient(circle at 50% 50%, rgba(255, 42, 109, 0.02) 0%, transparent 30%);
            padding-top: 80px; /* 为固定导航栏留出空间 */
        }
        
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 导航栏样式 */
        .main-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(5, 8, 17, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 217, 255, 0.1);
            z-index: 1000;
            padding: 15px 0;
            transition: all 0.3s ease;
        }
        
        .main-nav.scrolled {
            background: rgba(5, 8, 17, 0.98);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }
        
        .nav-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
        }
        
        .nav-logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
        }
        
        .nav-logo-text {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            font-size: 20px;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        
        .nav-item {
            position: relative;
        }
        
        .nav-link {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            padding: 10px 0;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-link:hover {
            color: var(--primary-color);
        }
        
        .nav-link.active {
            color: var(--primary-color);
        }
        
        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }
        
        /* 移动端菜单按钮 */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 24px;
            cursor: pointer;
            padding: 5px;
            transition: color 0.3s ease;
        }
        
        .mobile-menu-btn:hover {
            color: var(--primary-color);
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: rgba(5, 8, 17, 0.98);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 40px;
                gap: 0;
                transition: left 0.3s ease;
                backdrop-filter: blur(10px);
                border-top: 1px solid rgba(0, 217, 255, 0.1);
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-item {
                width: 100%;
                text-align: center;
            }
            
            .nav-link {
                display: block;
                padding: 20px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
                font-size: 18px;
            }
            
            .nav-link:hover {
                background: rgba(0, 217, 255, 0.05);
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            body {
                padding-top: 70px;
            }
        }
        
        /* 网格背景 */
        .grid-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.1;
            background-image: 
                linear-gradient(rgba(0, 217, 255, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 217, 255, 0.05) 1px, transparent 1px);
            background-size: 50px 50px;
        }
        
        /* 头部样式 */
        header {
            padding: 2px 0 20px;
            position: relative;
        }
        
        .logo-area {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            text-decoration: none;
            color: var(--text-light);
        }
        
        .logo-spider {
            width: 80px;
            height: 80px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .spider-body {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            box-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
        }
        
        .logo-text {
            text-align: left;
        }
        
        .logo-text h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: 42px;
            font-weight: 900;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color), var(--secondary-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.1;
            text-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
        }
        
        .logo-text p {
            font-size: 16px;
            color: var(--text-dim);
            margin-top: 8px;
            letter-spacing: 2px;
        }
        
        /* 域名速记区 */
        .domain-memory {
            background: linear-gradient(135deg, rgba(0, 217, 255, 0.05), rgba(138, 43, 226, 0.05));
            border-radius: 20px;
            padding: 30px;
            margin: -65px 0;
            text-align: center;
            border: 1px solid rgba(0, 217, 255, 0.1);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }
        
        .domain-memory h2 {
            color: var(--primary-color);
            margin-bottom: 25px;
            font-size: 28px;
            font-family: 'Orbitron', sans-serif;
            position: relative;
            display: inline-block;
        }
        
        .domain-display {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .domain-part {
            padding: 15px 25px;
            background: rgba(5, 8, 17, 0.7);
            border-radius: 12px;
            font-weight: 700;
            font-size: 22px;
            font-family: 'Orbitron', sans-serif;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 217, 255, 0.2);
            position: relative;
        }
        
        .domain-part.vip {
            background: linear-gradient(135deg, var(--accent-color), #ff6b6b);
            color: white;
        }
        
        .domain-part:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }
        
        .domain-explanation {
            color: var(--text-dim);
            font-size: 16px;
            line-height: 1.7;
            max-width: 800px;
            margin: 0 auto;
            padding: 15px;
            border-radius: 10px;
            background: rgba(5, 8, 17, 0.5);
            border-left: 3px solid var(--primary-color);
        }
        
        /* 公告区域 - 只显示一条 */
        .announcement-section {
            background: linear-gradient(135deg, rgba(255, 42, 109, 0.05), rgba(0, 217, 255, 0.05));
            border-radius: 20px;
            padding: 25px;
            margin: 100px 0;
            border: 1px solid rgba(255, 42, 109, 0.1);
            position: relative;
            backdrop-filter: blur(10px);
        }
        
        .announcement-section h3 {
            color: var(--accent-color);
            margin-bottom: 20px;
            font-size: 24px;
            font-family: 'Orbitron', sans-serif;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .announcement-content {
            background: rgba(5, 8, 17, 0.7);
            border-radius: 12px;
            padding: 20px;
            border-left: 4px solid var(--accent-color);
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .announcement-badge {
            background: linear-gradient(135deg, var(--accent-color), #ff6b6b);
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            white-space: nowrap;
        }
        
        .announcement-text {
            flex: 1;
            color: var(--text-light);
            font-size: 16px;
        }
        
        .announcement-date {
            color: var(--text-dim);
            font-size: 14px;
            min-width: 100px;
            text-align: right;
        }
        
        /* 导航卡片区 */
        .navigation-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 40px;
            margin: 50px 0;
        }
        
        .nav-card {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 35px;
            transition: all 0.3s ease;
            position: relative;
            border: 1px solid rgba(0, 217, 255, 0.1);
            backdrop-filter: blur(10px);
        }
        
        .nav-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        }
        
        .nav-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            border-color: rgba(0, 217, 255, 0.3);
        }
        
        .card-header {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
        }
        
        .card-icon {
            width: 70px;
            height: 70px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin-right: 20px;
            position: relative;
        }
        
        .d1-icon {
            background: linear-gradient(135deg, var(--primary-color), #1c3aad);
            color: white;
        }
        
        .dd-icon {
            background: linear-gradient(135deg, var(--secondary-color), #b066ff);
            color: white;
        }
        
        .card-title h3 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 8px;
            font-family: 'Orbitron', sans-serif;
        }
        
        .card-title p {
            color: var(--text-dim);
            font-size: 15px;
        }
        
        .card-links {
            margin-top: 25px;
        }
        
        .link-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px;
            background: rgba(5, 8, 17, 0.7);
            border-radius: 12px;
            margin-bottom: 20px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }
        
        .link-item:hover {
            background: rgba(10, 20, 40, 0.8);
            border-color: rgba(0, 217, 255, 0.3);
        }
        
        .link-info {
            flex-grow: 1;
        }
        
        .link-name {
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--text-light);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .link-name i {
            color: var(--primary-color);
        }
        
        .link-url {
            color: var(--text-dim);
            font-size: 14px;
            word-break: break-all;
            font-family: monospace;
        }
        
        .link-action {
            margin-left: 15px;
            flex-shrink: 0;
        }
        
        /* 按钮样式 */
        .btn {
            padding: 12px 25px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            border: none;
            cursor: pointer;
            font-family: 'Exo 2', sans-serif;
            position: relative;
            z-index: 1;
        }
        
        a.btn {
            display: inline-block;
            position: relative;
            z-index: 100;
        }
        
        .btn-login {
            background: linear-gradient(135deg, var(--primary-color), #1c3aad);
            color: white;
        }
        
        .btn-register {
            background: linear-gradient(135deg, var(--accent-color), #ff6b6b);
            color: white;
        }
        
        .btn-website {
            background: rgba(255, 255, 255, 0.05);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .btn-disabled {
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-dim);
            cursor: not-allowed;
            pointer-events: none;
        }
        
        .btn:hover:not(.btn-disabled) {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }
        
        .btn:active:not(.btn-disabled) {
            transform: translateY(0);
        }
        
        .btn i {
            margin-right: 8px;
        }
        
        .registration-note {
            background: rgba(255, 42, 109, 0.1);
            border-left: 4px solid var(--accent-color);
            padding: 20px;
            border-radius: 0 10px 10px 0;
            margin-top: 25px;
            font-size: 15px;
            color: #ffb8b8;
        }
        
        /* 关键词区域 */
        .keywords-section {
            background: linear-gradient(135deg, rgba(0, 217, 255, 0.05), rgba(138, 43, 226, 0.05));
            border-radius: 20px;
            padding: 30px;
            margin: 50px 0;
            text-align: center;
            border: 1px solid rgba(0, 217, 255, 0.1);
            backdrop-filter: blur(10px);
        }
        
        .keywords-section h3 {
            color: var(--primary-color);
            margin-bottom: 25px;
            font-size: 26px;
            font-family: 'Orbitron', sans-serif;
        }
        
        .keywords {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }
        
        .keyword {
            padding: 12px 25px;
            background: rgba(5, 8, 17, 0.7);
            border-radius: 50px;
            font-size: 16px;
            color: var(--text-dim);
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 217, 255, 0.1);
        }
        
        .keyword:hover {
            color: white;
            transform: translateY(-3px);
            border-color: transparent;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        }
        
        /* 友情链接区域 - 简化版 */
        .friendship-links {
            background: linear-gradient(135deg, rgba(138, 43, 226, 0.05), rgba(0, 217, 255, 0.05));
            border-radius: 20px;
            padding: 30px;
            margin: 40px 0;
            border: 1px solid rgba(138, 43, 226, 0.1);
            backdrop-filter: blur(10px);
        }
        
        .friendship-links h3 {
            color: var(--secondary-color);
            margin-bottom: 25px;
            font-size: 26px;
            font-family: 'Orbitron', sans-serif;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
        }
        
        .friend-link {
            background: rgba(5, 8, 17, 0.7);
            border-radius: 12px;
            padding: 15px 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(138, 43, 226, 0.1);
            text-decoration: none;
            color: var(--text-light);
            font-size: 16px;
            font-weight: 500;
        }
        
        .friend-link:hover {
            transform: translateY(-3px);
            border-color: rgba(138, 43, 226, 0.3);
            background: rgba(10, 20, 40, 0.8);
            color: var(--primary-color);
        }
        
        /* 页脚 */
        footer {
            text-align: center;
            padding: 40px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            margin-top: 60px;
            color: var(--text-dim);
            font-size: 15px;
            position: relative;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
        }
        
        .copyright {
            margin-bottom: 15px;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
            margin-top: 20px;
        }
        
        .footer-links a {
            color: var(--text-dim);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .footer-links a:hover {
            color: var(--primary-color);
        }
        
        /* 新增：关于我们板块样式 */
        .about-section {
            background: linear-gradient(135deg, rgba(0, 217, 255, 0.05), rgba(138, 43, 226, 0.05));
            border-radius: 20px;
            padding: 35px;
            margin: 40px 0;
            border: 1px solid rgba(0, 217, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .about-section h2 {
            color: var(--primary-color);
            margin-bottom: 25px;
            font-size: 28px;
            font-family: 'Orbitron', sans-serif;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .about-content {
            color: var(--text-light);
            line-height: 1.8;
        }

        .about-content h3 {
            color: var(--secondary-color);
            margin: 25px 0 15px;
            font-size: 22px;
            font-weight: 600;
        }

        .about-content p {
            margin-bottom: 15px;
            font-size: 16px;
        }

        .about-content ul, .about-content ol {
            margin: 15px 0 20px 25px;
            padding-left: 15px;
        }

        .about-content li {
            margin-bottom: 12px;
            font-size: 16px;
            color: var(--text-dim);
        }

        .about-content strong {
            color: var(--primary-color);
        }

        .contact-info {
            background: rgba(5, 8, 17, 0.7);
            border-radius: 12px;
            padding: 20px;
            margin-top: 25px;
            border-left: 4px solid var(--accent-color);
        }

        .contact-info p {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .contact-info i {
            color: var(--primary-color);
            width: 20px;
        }

        /* 新增：产品介绍板块样式 */
        .products-intro {
            background: linear-gradient(135deg, rgba(138, 43, 226, 0.05), rgba(0, 217, 255, 0.05));
            border-radius: 20px;
            padding: 35px;
            margin: 40px 0;
            border: 1px solid rgba(138, 43, 226, 0.1);
            backdrop-filter: blur(10px);
        }

        .products-intro h2 {
            color: var(--secondary-color);
            margin-bottom: 30px;
            font-size: 28px;
            font-family: 'Orbitron', sans-serif;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .product-detail {
            background: rgba(5, 8, 17, 0.5);
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 30px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .product-detail h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 24px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .product-detail p {
            color: var(--text-dim);
            margin-bottom: 20px;
            font-size: 16px;
            line-height: 1.7;
        }

        .product-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }

        .feature {
            background: rgba(10, 14, 23, 0.8);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 217, 255, 0.1);
        }

        .feature:hover {
            transform: translateY(-5px);
            border-color: var(--primary-color);
        }

        .feature i {
            font-size: 32px;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .feature h4 {
            color: var(--text-light);
            margin-bottom: 10px;
            font-size: 18px;
        }

        .feature p {
            color: var(--text-dim);
            font-size: 14px;
            margin: 0;
            line-height: 1.6;
        }

        .upgrade-note {
            background: rgba(255, 42, 109, 0.1);
            border-radius: 12px;
            padding: 20px;
            margin-top: 20px;
            border-left: 4px solid var(--accent-color);
        }

        .upgrade-note p {
            margin: 0;
            color: #ffb8b8;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .upgrade-note i {
            color: var(--accent-color);
            margin-top: 3px;
        }

        /* 新增：页脚样式增强 */
        .footer-content {
            text-align: center;
        }

        .seo-info {
            color: var(--text-dim);
            font-size: 14px;
            margin: 15px 0;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 25px;
        }

        .footer-links a {
            color: var(--text-dim);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 14px;
            padding: 8px 15px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-links a:hover {
            color: var(--primary-color);
            background: rgba(0, 217, 255, 0.1);
            border-color: rgba(0, 217, 255, 0.2);
        }

        /* 响应式设计 */
        @media (max-width: 900px) {
            .navigation-cards {
                grid-template-columns: 1fr;
            }
            
            .links-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
            
            .logo-text h1 {
                font-size: 32px;
            }
            
            .domain-part {
                font-size: 18px;
                padding: 12px 18px;
            }
            
            .nav-card {
                padding: 25px;
            }
            
            .announcement-content {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            
            .announcement-date {
                text-align: left;
                min-width: auto;
            }
            
            .about-section,
            .products-intro {
                padding: 25px;
            }
            
            .product-features {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 600px) {
            .logo {
                flex-direction: column;
                gap: 15px;
            }
            
            .logo-text {
                text-align: center;
            }
            
            .domain-display {
                gap: 10px;
            }
            
            .domain-part {
                font-size: 16px;
                padding: 10px 15px;
            }
            
            .footer-links {
                gap: 15px;
            }
            
            .links-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .about-section h2,
            .products-intro h2 {
                font-size: 24px;
            }
            
            .product-features {
                grid-template-columns: 1fr;
            }
            
            .footer-links {
                gap: 10px;
            }
            
            .footer-links a {
                padding: 6px 12px;
                font-size: 13px;
            }
        }
        
        @media (max-width: 400px) {
            .links-grid {
                grid-template-columns: 1fr;
            }
        }
                /* 添加的CSS用于保持居中布局 */
        .logo-area {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 30px 20px;
            text-align: center;
        }
        
        .logo-text {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        
        .logo-text h1 {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            font-size: 2.8rem;
            color: #fff;
            margin-bottom: 10px;
            text-shadow: 0 0 10px rgba(0, 174, 239, 0.5);
            letter-spacing: 1px;
            text-align: center;
        }
        
        .logo-text p {
            font-family: 'Exo 2', sans-serif;
            font-size: 1.2rem;
            color: #a0e7ff;
            margin-top: 0;
            opacity: 0.9;
            text-align: center;
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .logo-text h1 {
                font-size: 2.2rem;
            }
            
            .logo-text p {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .logo-text h1 {
                font-size: 1.8rem;
            }
            
            .logo-text p {
                font-size: 0.9rem;
            }
        }
        /* 新闻区域样式 */
.news-section {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.05), rgba(0, 217, 255, 0.05));
    border-radius: 20px;
    padding: 35px;
    margin: 40px 0;
    border: 1px solid rgba(138, 43, 226, 0.1);
    backdrop-filter: blur(10px);
}

.news-section h2 {
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-size: 28px;
    font-family: 'Orbitron', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.filter-btn {
    padding: 10px 20px;
    background: rgba(5, 8, 17, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: var(--text-dim);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: rgba(0, 217, 255, 0.1);
    color: var(--primary-color);
    border-color: rgba(0, 217, 255, 0.3);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: transparent;
}

.news-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.news-item {
    background: rgba(5, 8, 17, 0.7);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    gap: 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.news-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 217, 255, 0.2);
}

.news-item:hover::before {
    opacity: 1;
}

.news-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    background: rgba(10, 14, 23, 0.9);
    border-radius: 10px;
    padding: 15px 10px;
    text-align: center;
}

.news-day {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.news-month {
    font-size: 16px;
    color: var(--text-light);
    margin: 5px 0;
}

.news-year {
    font-size: 14px;
    color: var(--text-dim);
}

.news-content {
    flex: 1;
}

.news-content h3 {
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 1.4;
}

.news-content h3 a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-content h3 a:hover {
    color: var(--primary-color);
}

.news-excerpt {
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 15px;
}

.news-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
}

.news-category {
    background: rgba(0, 217, 255, 0.1);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.news-readtime {
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-archive-link {
    text-align: center;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-news {
    background: linear-gradient(135deg, var(--secondary-color), #b066ff);
    color: white;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 10px;
}

.btn-news:hover {
    background: linear-gradient(135deg, #b066ff, var(--secondary-color));
}

/* 响应式调整 */
@media (max-width: 768px) {
    .news-item {
        flex-direction: column;
        gap: 20px;
    }
    
    .news-date {
        flex-direction: row;
        justify-content: flex-start;
        gap: 15px;
        min-width: auto;
        padding: 15px;
    }
    
    .news-day {
        font-size: 24px;
    }
    
    .news-month, .news-year {
        font-size: 16px;
    }
    
    .news-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .news-filters {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .news-section {
        padding: 25px;
    }
    
    .news-item {
        padding: 20px;
    }
    
    .news-filters {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}
    .footer-compliance {
        background: rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        padding: 1.5rem;
        margin-bottom: 2rem;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        text-align: left;
    }

    .compliance-header {
        margin-bottom: 1.2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 0.8rem;
    }

    .compliance-header h5 {
        color: #fff;
        margin: 0;
        font-size: 1.1rem;
        display: flex;
        align-items: center;
        font-weight: 600;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    }

    .compliance-header h5 i {
        margin-right: 10px;
        font-size: 1.2rem;
        color: #0078d4;
    }

    .compliance-content p {
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    }

    .compliance-points {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .compliance-point {
        display: flex;
        align-items: flex-start;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 6px;
        padding: 0.8rem;
        transition: all 0.3s ease;
    }

    .compliance-point:hover {
        background: rgba(255, 255, 255, 0.08);
        transform: translateX(3px);
    }

    .point-icon {
        margin-right: 12px;
        font-size: 1.1rem;
        color: #0078d4;
        min-width: 24px;
        text-align: center;
    }

    .point-content {
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.9rem;
        line-height: 1.5;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        flex: 1;
    }

    .point-content strong {
        color: #fff;
        font-weight: 600;
    }
    .footer-content {
        padding: 2rem 1rem;
        margin-top: 3rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto 2rem;
    }
    
    .footer-section h4 {
        color: #fff;
        margin-bottom: 1rem;
        font-size: 1.1rem;
        display: flex;
        align-items: center;
        font-weight: 600;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    }
    
    .footer-section h4 i {
        margin-right: 8px;
        color: #0078d4;
    }
    
    .footer-section p {
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.6;
        margin-bottom: 1rem;
        font-size: 0.95rem;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    }
    
    .footer-contact p {
        display: flex;
        align-items: center;
        margin-bottom: 0.5rem;
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.9rem;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    }
    
    .footer-contact i {
        margin-right: 8px;
        color: #0078d4;
        width: 20px;
        font-size: 0.9rem;
    }
    
    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .footer-links li {
        margin-bottom: 0.5rem;
    }
    
    .footer-links a {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 0.95rem;
        display: inline-block;
        padding: 0.1rem 0;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    }
    
    .footer-links a:hover {
        color: #0078d4;
        transform: translateX(3px);
    }
    
    .seo-info {
        background: rgba(0, 120, 212, 0.1);
        border-left: 4px solid #0078d4;
        padding: 1rem;
        font-size: 0.9rem;
        line-height: 1.6;
        border-radius: 0 6px 6px 0;
        color: rgba(255, 255, 255, 0.9);
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }
    
    .seo-info strong {
        color: #fff;
    }
    
    .sitemap-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .sitemap-links a {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        font-size: 0.95rem;
        padding: 0.25rem 0;
        transition: all 0.3s ease;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    }
    
    .sitemap-links a:hover {
        color: #0078d4;
        text-decoration: underline;
        transform: translateX(3px);
    }
    
    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 1.5rem;
        text-align: center;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .copyright {
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
        font-weight: 500;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    }
    
    .footer-notice {
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.85rem;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
        line-height: 1.5;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    }
    
    .footer-notice span {
        display: inline-flex;
        align-items: center;
    }
    
    .footer-notice .sep {
        color: rgba(255, 255, 255, 0.4);
        margin: 0 0.25rem;
    }
    
    .footer-notice strong {
        color: #fff;
        font-weight: 600;
    }
    
    @media (max-width: 768px) {
        .footer-compliance {
            padding: 1.2rem;
            margin: 1rem auto 1.5rem;
            border-radius: 8px;
        }
        
        .compliance-point {
            padding: 0.7rem;
        }
        
        .point-icon {
            font-size: 1rem;
            min-width: 20px;
        }
        
        .footer-content {
            padding: 1.5rem 1rem;
        }
        
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        
        .footer-notice {
            flex-direction: column;
            gap: 0.5rem;
            font-size: 0.8rem;
        }
        
        .footer-notice .sep {
            display: none;
        }
        
        .copyright {
            font-size: 0.85rem;
        }
        
        .footer-section h4 {
            font-size: 1.05rem;
        }
        
        .footer-section p,
        .footer-links a,
        .sitemap-links a {
            font-size: 0.9rem;
        }
    }