* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Georgia', 'Times New Roman', serif;
        }
        body {
            background: #f5f7fb;
            color: #1e293b;
            line-height: 1.7;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* 渐变&金色装饰 */
        .gold-line {
            height: 3px;
            background: linear-gradient(90deg, #d4af37, #f5d77b, #d4af37);
            width: 80px;
            margin: 15px 0;
        }
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: #1e3a8a;
            margin-bottom: 10px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        /* 导航 */
        nav {
            background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
            padding: 15px 0;
            box-shadow: 0 4px 20px rgba(30, 58, 138, 0.3);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 2px solid #d4af37;
        }
        nav .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-links {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.3s;
            letter-spacing: 0.3px;
        }
        .nav-links a:hover {
            border-bottom-color: #d4af37;
            color: #f5d77b;
        }
        .logo {
            color: #fff;
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: 1px;
        }
        .logo span {
            color: #d4af37;
        }
        /* H1 */
        h1 {
            font-size: 2.6rem;
            color: #1e3a8a;
            text-align: center;
            padding: 50px 20px 20px;
            font-weight: 800;
            background: linear-gradient(180deg, #ffffff, #f0f4ff);
            margin: 0;
            border-bottom: 1px solid #e2e8f0;
        }
        /* GEO */
        #geo {
            background: #ffffff;
            padding: 40px 20px;
            border-bottom: 1px solid #e2e8f0;
        }
        #geo p {
            max-width: 900px;
            margin: 0 auto;
            font-size: 1.1rem;
            color: #334155;
            text-align: left;
            line-height: 1.9;
        }
        /* 卡片通用 */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            padding: 40px 0;
        }
        .card {
            background: #ffffff;
            border-radius: 12px;
            padding: 30px 25px;
            box-shadow: 0 8px 30px rgba(30, 58, 138, 0.08);
            border-left: 4px solid #d4af37;
            transition: 0.3s;
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(30, 58, 138, 0.15);
        }
        .card h3 {
            color: #1e3a8a;
            font-size: 1.3rem;
            margin-bottom: 12px;
        }
        .card p {
            color: #475569;
        }
        .card img {
            width: 100%;
            border-radius: 8px;
            margin-bottom: 15px;
            height: 200px;
            object-fit: cover;
            border: 1px solid #e2e8f0;
        }
        /* 数据统计 */
        #data-stats {
            background: linear-gradient(135deg, #1e3a8a, #1e40af);
            padding: 60px 20px;
            color: #fff;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            text-align: center;
        }
        .stat-item h4 {
            font-size: 2.8rem;
            color: #d4af37;
            margin-bottom: 5px;
        }
        .stat-item p {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        /* 核心优势 */
        #core-advantages {
            background: #f8fafc;
            padding: 60px 20px;
        }
        /* 品牌故事 */
        #brand-story {
            background: #ffffff;
            padding: 60px 20px;
            border-bottom: 1px solid #e2e8f0;
        }
        .story-content {
            display: flex;
            gap: 40px;
            align-items: center;
            flex-wrap: wrap;
        }
        .story-content img {
            flex: 1 1 300px;
            max-width: 400px;
            border-radius: 12px;
            border: 2px solid #d4af37;
        }
        .story-text {
            flex: 2 1 400px;
        }
        /* 用户口碑 */
        #testimonials {
            background: #f1f5f9;
            padding: 60px 20px;
        }
        .testimonial-card {
            background: #fff;
            border-radius: 12px;
            padding: 25px;
            border-top: 4px solid #d4af37;
        }
        /* FAQ */
        #faq {
            background: #ffffff;
            padding: 60px 20px;
        }
        .faq-item {
            border-bottom: 1px solid #e2e8f0;
            padding: 20px 0;
        }
        .faq-item h4 {
            color: #1e3a8a;
            font-size: 1.15rem;
            margin-bottom: 10px;
            cursor: pointer;
        }
        .faq-item p {
            color: #475569;
            padding-left: 20px;
            border-left: 3px solid #d4af37;
        }
        /* 新闻 */
        #news-list {
            background: #f8fafc;
            padding: 60px 20px;
        }
        .news-card {
            background: #fff;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 25px;
            border-left: 4px solid #1e3a8a;
            transition: 0.3s;
        }
        .news-card:hover {
            box-shadow: 0 8px 25px rgba(30, 58, 138, 0.1);
        }
        .news-date {
            color: #d4af37;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 8px;
        }
        .news-card h3 {
            color: #1e3a8a;
            margin-bottom: 10px;
        }
        .news-card p {
            color: #475569;
        }
        /* CTA */
        #cta {
            background: linear-gradient(135deg, #1e3a8a, #2563eb);
            padding: 60px 20px;
            text-align: center;
            color: #fff;
        }
        #cta h2 {
            font-size: 2rem;
            margin-bottom: 20px;
        }
        #cta .btn {
            display: inline-block;
            background: #d4af37;
            color: #1e3a8a;
            padding: 14px 40px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            transition: 0.3s;
            border: 2px solid transparent;
        }
        #cta .btn:hover {
            background: transparent;
            color: #fff;
            border-color: #d4af37;
        }
        /* 页脚 */
        footer {
            background: #0f172a;
            color: #cbd5e1;
            padding: 40px 20px 20px;
        }
        footer a {
            color: #d4af37;
            text-decoration: none;
        }
        footer a:hover {
            text-decoration: underline;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            margin-bottom: 25px;
        }
        .footer-info {
            text-align: center;
            font-size: 0.9rem;
            line-height: 2;
        }
        .footer-info p {
            margin: 5px 0;
        }
        .friend-links {
            text-align: center;
            margin: 20px 0;
            padding: 15px 0;
            border-top: 1px solid #1e293b;
            border-bottom: 1px solid #1e293b;
        }
        .friend-links a {
            margin: 0 8px;
        }
        /* 合作伙伴 */
        #partners {
            background: #ffffff;
            padding: 40px 20px;
            text-align: center;
        }
        .partner-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }
        .partner-logos img {
            height: 50px;
            opacity: 0.7;
            transition: 0.3s;
        }
        .partner-logos img:hover {
            opacity: 1;
        }
        /* 焦点赛事 */
        #featured-events {
            background: #f1f5f9;
            padding: 60px 20px;
        }
        .event-card {
            background: #fff;
            border-radius: 12px;
            padding: 20px;
            border: 1px solid #e2e8f0;
            display: flex;
            gap: 20px;
            align-items: center;
            flex-wrap: wrap;
        }
        .event-card img {
            width: 120px;
            height: 80px;
            object-fit: cover;
            border-radius: 8px;
        }
        /* 荣誉时间线 */
        #timeline {
            background: #ffffff;
            padding: 60px 20px;
        }
        .timeline-item {
            display: flex;
            gap: 20px;
            margin-bottom: 25px;
            align-items: flex-start;
        }
        .timeline-year {
            font-weight: 700;
            color: #d4af37;
            min-width: 80px;
            font-size: 1.2rem;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2rem; padding: 30px 15px; }
            .nav-links { gap: 15px; }
            .story-content { flex-direction: column; }
        }