* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            background: #0a0a0a;
            color: #f5e6d3;
            line-height: 1.7;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* 导航 */
        .navbar {
            background: linear-gradient(135deg, #4a0a0a, #991b1b);
            padding: 15px 0;
            border-bottom: 2px solid #d4a44a;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(153, 27, 27, 0.5);
        }
        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: #f5e6d3;
            text-shadow: 0 0 15px #d4a44a;
            letter-spacing: 2px;
        }
        .nav-links {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #f5e6d3;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 30px;
            transition: all 0.3s;
            border: 1px solid transparent;
        }
        .nav-links a:hover {
            background: #d4a44a;
            color: #4a0a0a;
            border-color: #d4a44a;
        }
        /* H1 */
        .hero-section {
            background: linear-gradient(145deg, #1a1a1a 0%, #2d0a0a 100%);
            padding: 60px 0;
            text-align: center;
            border-bottom: 3px solid #991b1b;
        }
        .hero-section h1 {
            font-size: 3.2rem;
            font-weight: 900;
            background: linear-gradient(to right, #d4a44a, #f5e6d3, #d4a44a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 30px rgba(212, 164, 74, 0.3);
            margin-bottom: 20px;
        }
        .hero-section p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            color: #c9b99a;
        }
        /* 通用区块 */
        .section {
            padding: 60px 0;
            border-bottom: 1px solid #2a1a1a;
        }
        .section-title {
            font-size: 2rem;
            text-align: center;
            margin-bottom: 40px;
            color: #d4a44a;
            position: relative;
        }
        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: #991b1b;
            margin: 15px auto 0;
        }
        /* 卡片 */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        .card {
            background: linear-gradient(145deg, #1f0f0f, #2a1414);
            border: 2px solid #d4a44a;
            border-radius: 16px;
            padding: 30px 20px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 8px 30px rgba(212, 164, 74, 0.1);
        }
        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(212, 164, 74, 0.25);
        }
        .card img {
            width: 80px;
            height: 80px;
            object-fit: contain;
            margin-bottom: 15px;
            filter: drop-shadow(0 4px 8px rgba(212, 164, 74, 0.3));
        }
        .card h3 {
            font-size: 1.4rem;
            color: #d4a44a;
            margin-bottom: 10px;
        }
        .card p {
            color: #b8a88a;
            font-size: 0.95rem;
        }
        /* 新闻 */
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .news-item {
            background: #1a0e0e;
            border-left: 5px solid #d4a44a;
            padding: 20px 25px;
            border-radius: 0 12px 12px 0;
            transition: background 0.3s;
        }
        .news-item:hover {
            background: #2a1414;
        }
        .news-item h3 {
            color: #f5e6d3;
            font-size: 1.2rem;
            margin-bottom: 8px;
        }
        .news-item .date {
            color: #991b1b;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 6px;
        }
        .news-item p {
            color: #b8a88a;
        }
        /* FAQ */
        .faq-item {
            background: #1a0e0e;
            border: 1px solid #2a1a1a;
            border-radius: 12px;
            padding: 20px 25px;
            margin-bottom: 20px;
        }
        .faq-item h3 {
            color: #d4a44a;
            font-size: 1.15rem;
            margin-bottom: 10px;
        }
        .faq-item p {
            color: #c9b99a;
        }
        /* 数据统计 */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 30px;
            text-align: center;
        }
        .stat-item {
            background: #1a0e0e;
            border: 1px solid #d4a44a;
            border-radius: 12px;
            padding: 25px 15px;
        }
        .stat-item .number {
            font-size: 2.5rem;
            font-weight: 900;
            color: #d4a44a;
        }
        .stat-item .label {
            color: #b8a88a;
            margin-top: 5px;
        }
        /* 合作伙伴 */
        .partner-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }
        .partner-grid img {
            width: 120px;
            height: 70px;
            object-fit: contain;
            filter: grayscale(0.5);
            transition: filter 0.3s;
            border-radius: 8px;
        }
        .partner-grid img:hover {
            filter: grayscale(0);
        }
        /* CTA */
        .cta-section {
            background: linear-gradient(135deg, #4a0a0a, #991b1b);
            padding: 50px 0;
            text-align: center;
            border-radius: 20px;
            margin: 40px 0;
        }
        .cta-section h2 {
            font-size: 2rem;
            color: #f5e6d3;
            margin-bottom: 15px;
        }
        .cta-section p {
            color: #e0d0b8;
            margin-bottom: 25px;
        }
        .btn {
            display: inline-block;
            background: #d4a44a;
            color: #4a0a0a;
            padding: 14px 40px;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s;
            border: 2px solid #d4a44a;
        }
        .btn:hover {
            background: transparent;
            color: #d4a44a;
        }
        /* 页脚 */
        .footer {
            background: #0d0505;
            padding: 40px 0;
            border-top: 2px solid #991b1b;
            margin-top: 60px;
            text-align: center;
        }
        .footer .container {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            color: #b8a88a;
        }
        .footer-links a {
            color: #d4a44a;
            text-decoration: none;
        }
        .footer-links a:hover {
            text-decoration: underline;
        }
        .footer-info {
            color: #7a6a5a;
            font-size: 0.9rem;
        }
        /* 响应式 */
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2rem;
            }
            .navbar .container {
                flex-direction: column;
                gap: 10px;
            }
            .nav-links {
                gap: 10px;
                justify-content: center;
            }
        }