* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', 'Roboto', system-ui, sans-serif;
            background: linear-gradient(135deg, #3e2723 0%, #d7ccc8 100%);
            color: #2c1e16;
            line-height: 1.7;
            min-height: 100vh;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 20px 30px;
        }
        /* 导航 */
        .navbar {
            background: rgba(62, 39, 35, 0.92);
            backdrop-filter: blur(12px);
            padding: 14px 30px;
            border-radius: 60px;
            margin-bottom: 40px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.3);
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
        }
        .nav-links {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .nav-links a {
            color: #f5ebe0;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 6px 12px;
            border-radius: 30px;
            transition: all 0.2s;
            letter-spacing: 0.5px;
        }
        .nav-links a:hover {
            background: rgba(215, 199, 200, 0.25);
            color: #fff;
            transform: scale(1.04);
        }
        /* H1 */
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #faf0e6;
            text-shadow: 0 4px 12px rgba(0,0,0,0.5);
            margin-bottom: 25px;
            text-align: center;
            letter-spacing: 1.5px;
        }
        /* 通用标题 */
        h2 {
            font-size: 2rem;
            margin-bottom: 30px;
            color: #3e2723;
            border-left: 8px solid #8d6e63;
            padding-left: 20px;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        h3 {
            font-size: 1.3rem;
            color: #4e342e;
            margin-bottom: 12px;
        }
        /* 卡片区块 */
        .card-section {
            background: rgba(255, 248, 240, 0.85);
            backdrop-filter: blur(4px);
            border-radius: 40px;
            padding: 40px 45px;
            margin-bottom: 50px;
            box-shadow: 0 12px 40px rgba(0,0,0,0.12);
            border: 1px solid rgba(255,255,240,0.4);
            transition: all 0.2s;
        }
        .grid-2, .grid-3, .grid-4 {
            display: grid;
            gap: 28px;
        }
        .grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
        .grid-3 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
        .grid-4 { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
        .card {
            background: #fefcf7;
            border-radius: 28px;
            padding: 24px 20px;
            box-shadow: 0 6px 20px rgba(62, 39, 35, 0.08);
            transition: transform 0.2s, box-shadow 0.2s;
            border: 1px solid rgba(215, 199, 200, 0.3);
        }
        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 32px rgba(62, 39, 35, 0.15);
        }
        .card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 20px;
            margin-bottom: 15px;
            background: #d7ccc8;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #5d4037;
            line-height: 1.2;
        }
        .stat-label {
            color: #6d4c41;
            font-weight: 500;
        }
        /* 新闻卡片 */
        .news-item {
            background: #faf5ee;
            border-radius: 28px;
            padding: 22px;
            margin-bottom: 20px;
            border-left: 6px solid #8d6e63;
        }
        .news-date {
            display: inline-block;
            background: #5d4037;
            color: #f5ebe0;
            padding: 2px 16px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 10px;
        }
        .news-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #3e2723;
            margin-bottom: 6px;
        }
        .news-summary {
            color: #4e3b31;
        }
        /* FAQ */
        .faq-item {
            background: #fcf6ef;
            border-radius: 30px;
            padding: 22px 28px;
            margin-bottom: 18px;
            box-shadow: 0 2px 12px rgba(62,39,35,0.05);
        }
        .faq-q {
            font-weight: 700;
            font-size: 1.2rem;
            color: #3e2723;
            margin-bottom: 8px;
            display: flex;
            gap: 10px;
            align-items: center;
        }
        .faq-a {
            color: #4e3b31;
            padding-left: 30px;
        }
        /* 页脚 */
        .footer {
            background: rgba(62, 39, 35, 0.9);
            backdrop-filter: blur(6px);
            padding: 40px 30px 25px;
            border-radius: 60px 60px 0 0;
            color: #f5ebe0;
            margin-top: 40px;
        }
        .footer a {
            color: #eae0d5;
            text-decoration: none;
            margin: 0 8px;
            transition: color 0.2s;
        }
        .footer a:hover { color: #fff; }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px 20px;
            margin-bottom: 20px;
        }
        .footer-info {
            text-align: center;
            font-size: 0.9rem;
            opacity: 0.9;
        }
        .footer-info p { margin: 6px 0; }
        /* 响应式 */
        @media (max-width: 768px) {
            .container { padding: 12px 16px; }
            h1 { font-size: 2rem; }
            .card-section { padding: 24px 18px; }
            .navbar { padding: 12px 16px; }
            .nav-links { gap: 14px; }
            .nav-links a { font-size: 0.95rem; }
        }
        /* CTA */
        .cta-box {
            background: linear-gradient(145deg, #5d4037, #3e2723);
            color: #f5ebe0;
            padding: 40px 30px;
            border-radius: 50px;
            text-align: center;
        }
        .cta-box a {
            display: inline-block;
            background: #d7ccc8;
            color: #3e2723;
            font-weight: 700;
            padding: 14px 44px;
            border-radius: 60px;
            text-decoration: none;
            font-size: 1.2rem;
            margin-top: 16px;
            transition: 0.2s;
            box-shadow: 0 4px 14px rgba(0,0,0,0.3);
        }
        .cta-box a:hover { background: #f5ebe0; transform: scale(1.04); }
        hr { border: none; border-top: 2px dashed #a1887f; margin: 24px 0; }