* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'PingFang SC', Roboto, 'Helvetica Neue', sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0f1a3e 0%, #1e3a8a 100%);
            color: #f5f0e6;
            line-height: 1.6;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* 导航 */
        .navbar {
            background: rgba(15, 26, 62, 0.95);
            backdrop-filter: blur(10px);
            padding: 15px 0;
            border-bottom: 2px solid #c9a84c;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 24px;
            font-weight: 700;
            color: #f5e6b8;
            letter-spacing: 2px;
            text-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
        }
        .logo span {
            color: #c9a84c;
        }
        .nav-links {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #e0d8c8;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: all 0.3s ease;
        }
        .nav-links a:hover {
            color: #c9a84c;
            border-bottom-color: #c9a84c;
        }
        /* 主标题区 */
        .hero {
            padding: 80px 0 60px;
            text-align: center;
            background: radial-gradient(circle at 30% 40%, rgba(201, 168, 76, 0.15) 0%, transparent 70%);
        }
        .hero h1 {
            font-size: 48px;
            font-weight: 800;
            color: #f5e6b8;
            letter-spacing: 3px;
            margin-bottom: 20px;
            text-shadow: 0 4px 30px rgba(0,0,0,0.5);
        }
        .hero h1 span {
            color: #c9a84c;
        }
        .hero-desc {
            max-width: 800px;
            margin: 0 auto 30px;
            font-size: 18px;
            color: #d6cec0;
        }
        .hero-img {
            margin-top: 30px;
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .hero-img img {
            width: 280px;
            height: 180px;
            object-fit: cover;
            border-radius: 12px;
            border: 2px solid #c9a84c;
            box-shadow: 0 10px 30px rgba(0,0,0,0.6);
            transition: transform 0.3s ease;
        }
        .hero-img img:hover {
            transform: scale(1.03);
        }
        /* 通用区块 */
        .section-block {
            padding: 60px 0;
            border-bottom: 1px solid rgba(201, 168, 76, 0.2);
        }
        .section-title {
            font-size: 32px;
            font-weight: 700;
            color: #f5e6b8;
            margin-bottom: 40px;
            text-align: center;
            position: relative;
        }
        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #c9a84c, #f5e6b8);
            margin: 12px auto 0;
            border-radius: 4px;
        }
        /* 卡片样式 */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        .card {
            background: rgba(30, 58, 138, 0.6);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(201, 168, 76, 0.3);
            border-radius: 16px;
            padding: 25px 20px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        }
        .card:hover {
            transform: translateY(-5px);
            border-color: #c9a84c;
            box-shadow: 0 16px 40px rgba(201, 168, 76, 0.2);
        }
        .card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 15px;
            border: 1px solid #c9a84c44;
        }
        .card h3 {
            font-size: 20px;
            color: #f5e6b8;
            margin: 10px 0;
        }
        .card p {
            color: #cbc4b4;
            font-size: 15px;
        }
        .gold-line {
            height: 2px;
            background: linear-gradient(90deg, transparent, #c9a84c, transparent);
            width: 60%;
            margin: 15px auto;
        }
        /* 数据统计 */
        .stats-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 50px;
            text-align: center;
        }
        .stat-item {
            min-width: 150px;
        }
        .stat-item .number {
            font-size: 48px;
            font-weight: 800;
            color: #c9a84c;
            text-shadow: 0 0 30px rgba(201, 168, 76, 0.3);
        }
        .stat-item .label {
            font-size: 18px;
            color: #d6cec0;
            margin-top: 8px;
        }
        /* 新闻列表 */
        .news-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .news-item {
            background: rgba(15, 26, 62, 0.8);
            border-left: 4px solid #c9a84c;
            padding: 20px 25px;
            border-radius: 0 12px 12px 0;
            transition: all 0.3s;
        }
        .news-item:hover {
            background: rgba(30, 58, 138, 0.7);
            transform: translateX(6px);
        }
        .news-item .date {
            font-size: 14px;
            color: #c9a84c;
            margin-bottom: 8px;
            display: inline-block;
            border: 1px solid #c9a84c44;
            padding: 2px 12px;
            border-radius: 20px;
        }
        .news-item h3 {
            font-size: 20px;
            color: #f5e6b8;
            margin-bottom: 10px;
        }
        .news-item p {
            color: #b8b0a0;
            font-size: 15px;
            line-height: 1.7;
        }
        /* FAQ */
        .faq-item {
            background: rgba(30, 58, 138, 0.4);
            border: 1px solid rgba(201, 168, 76, 0.25);
            border-radius: 14px;
            padding: 20px 25px;
            margin-bottom: 20px;
        }
        .faq-item h3 {
            color: #f5e6b8;
            font-size: 19px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .faq-item p {
            color: #d0c8b8;
            font-size: 15px;
            line-height: 1.8;
        }
        /* CTA */
        .cta-section {
            background: linear-gradient(135deg, #1e3a8a, #0f1a3e);
            border: 2px solid #c9a84c;
            border-radius: 24px;
            padding: 50px 30px;
            text-align: center;
            margin: 40px 0;
        }
        .cta-section h2 {
            font-size: 36px;
            color: #f5e6b8;
            margin-bottom: 20px;
        }
        .cta-section p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto 30px;
            color: #d6cec0;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #c9a84c, #e6c96e);
            color: #0f1a3e;
            padding: 14px 48px;
            font-size: 20px;
            font-weight: 700;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(201, 168, 76, 0.5);
        }
        /* 合作伙伴 */
        .partner-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 20px;
        }
        .partner-logos img {
            width: 100px;
            height: 70px;
            object-fit: contain;
            filter: brightness(0.8) sepia(0.6) hue-rotate(10deg);
            transition: all 0.3s;
        }
        .partner-logos img:hover {
            filter: brightness(1) sepia(0);
            transform: scale(1.08);
        }
        /* 页脚 */
        .footer {
            background: #0a1128;
            padding: 50px 0 30px;
            border-top: 2px solid #c9a84c;
            margin-top: 60px;
        }
        .footer .container {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 15px;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            margin: 15px 0;
        }
        .footer-links a {
            color: #b8b0a0;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: #c9a84c;
        }
        .footer-info {
            color: #8a8270;
            font-size: 13px;
            line-height: 2;
        }
        .footer-info a {
            color: #c9a84c;
            text-decoration: none;
        }
        .gold-border {
            border: 1px solid #c9a84c33;
        }
        @media (max-width: 768px) {
            .hero h1 { font-size: 32px; }
            .navbar .container { flex-direction: column; gap: 12px; }
            .nav-links { gap: 15px; justify-content: center; }
            .hero-img img { width: 100%; max-width: 320px; height: auto; }
        }