* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: linear-gradient(135deg, #fff7ed 0%, #fef3c7 50%, #ffedd5 100%);
            color: #3a2a1a;
            line-height: 1.6;
            min-height: 100vh;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* 导航 */
        .navbar {
            background: linear-gradient(90deg, #4a2c0a, #f97316);
            padding: 12px 0;
            box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .nav-links {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #fff;
            text-decoration: none;
            padding: 8px 18px;
            border-radius: 30px;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(4px);
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s;
            border: 1px solid rgba(255,255,255,0.2);
        }
        .nav-links a:hover {
            background: #fff;
            color: #4a2c0a;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        }
        /* 通用卡片 */
        .card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(16px);
            border-radius: 28px;
            padding: 32px 28px;
            box-shadow: 0 12px 40px rgba(249, 115, 22, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.6);
            margin-bottom: 32px;
            transition: transform 0.3s;
        }
        .card:hover {
            transform: translateY(-4px);
        }
        .card h2, .card h3 {
            color: #4a2c0a;
            margin-bottom: 18px;
            font-weight: 700;
        }
        .card h2 {
            font-size: 1.8rem;
            position: relative;
            padding-left: 18px;
            border-left: 5px solid #f97316;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
        }
        .text-center { text-align: center; }
        .mt-20 { margin-top: 20px; }
        .mb-20 { margin-bottom: 20px; }
        /* H1 */
        .hero-section {
            padding: 48px 0 32px;
            text-align: center;
            background: radial-gradient(circle at 30% 30%, rgba(249,115,22,0.10), transparent 60%);
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #4a2c0a, #f97316);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }
        .hero-desc {
            font-size: 1.2rem;
            color: #5a3a1a;
            max-width: 800px;
            margin: 0 auto 12px;
            font-weight: 500;
        }
        /* 按钮 */
        .btn {
            display: inline-block;
            padding: 14px 36px;
            border-radius: 50px;
            background: linear-gradient(135deg, #f97316, #ea580c);
            color: #fff;
            font-weight: 700;
            font-size: 1.05rem;
            text-decoration: none;
            box-shadow: 0 8px 24px rgba(249,115,22,0.35);
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(249,115,22,0.5);
        }
        /* 图片圆润 */
        .featured-img {
            width: 100%;
            border-radius: 20px;
            object-fit: cover;
            height: 200px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.08);
        }
        .img-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 16px;
            margin: 20px 0;
        }
        .img-gallery img {
            width: 100%;
            height: 160px;
            object-fit: cover;
            border-radius: 18px;
            transition: transform 0.4s;
        }
        .img-gallery img:hover {
            transform: scale(1.03);
        }
        /* 新闻 */
        .news-item {
            background: rgba(255,255,255,0.5);
            backdrop-filter: blur(6px);
            border-radius: 18px;
            padding: 20px;
            margin-bottom: 16px;
            border-left: 4px solid #f97316;
            transition: 0.3s;
        }
        .news-item:hover {
            background: rgba(255,255,255,0.8);
            box-shadow: 0 6px 18px rgba(249,115,22,0.1);
        }
        .news-date {
            color: #f97316;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 6px;
        }
        .news-item h3 {
            margin-bottom: 8px;
            color: #4a2c0a;
        }
        /* FAQ */
        .faq-item {
            padding: 18px 0;
            border-bottom: 1px solid rgba(74,44,10,0.1);
        }
        .faq-item:last-child { border-bottom: none; }
        .faq-question {
            font-weight: 700;
            font-size: 1.15rem;
            color: #4a2c0a;
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .faq-answer {
            color: #4a4a3a;
            padding-left: 28px;
        }
        /* 页脚 */
        .footer {
            background: #2a1a0a;
            color: #e5d5c5;
            padding: 40px 0 24px;
            margin-top: 48px;
            border-radius: 40px 40px 0 0;
        }
        .footer a {
            color: #fbbf24;
            text-decoration: none;
        }
        .footer a:hover {
            text-decoration: underline;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px 20px;
            margin: 16px 0;
        }
        .footer-info {
            text-align: center;
            font-size: 0.9rem;
            opacity: 0.85;
            line-height: 1.9;
        }
        .footer-info p { margin: 4px 0; }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding-top: 20px;
            margin-top: 20px;
            text-align: center;
            font-size: 0.85rem;
        }
        /* 响应式 */
        @media (max-width: 640px) {
            h1 { font-size: 2rem; }
            .navbar .container { flex-direction: column; gap: 10px; }
            .nav-links { justify-content: center; }
            .card { padding: 20px 16px; }
        }
        /* 装饰 */
        .badge {
            display: inline-block;
            background: #f97316;
            color: #fff;
            padding: 4px 14px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .stat-number {
            font-size: 2.4rem;
            font-weight: 800;
            color: #f97316;
            line-height: 1;
        }
        .stat-label {
            font-size: 0.95rem;
            color: #5a4a3a;
        }
        .flex-center {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        .gap-8 { gap: 8px; }
        .gap-4 { gap: 4px; }