* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: linear-gradient(135deg, #fdf6f0 0%, #fce9e0 100%);
            color: #2d2b3a;
            line-height: 1.6;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* 导航 */
        .navbar {
            background: linear-gradient(135deg, #ff7e5f, #feb47b, #c471ed);
            padding: 15px 0;
            box-shadow: 0 4px 20px rgba(255, 126, 95, 0.3);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .nav-links {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 18px;
            border-radius: 30px;
            background: rgba(255,255,255,0.15);
            transition: all 0.3s ease;
            font-size: 15px;
        }
        .nav-links a:hover {
            background: rgba(255,255,255,0.35);
            transform: translateY(-2px);
        }
        /* H1 */
        .hero-section {
            background: linear-gradient(135deg, #ff7e5f 0%, #feb47b 50%, #c471ed 100%);
            padding: 60px 0 40px;
            text-align: center;
            color: #fff;
            border-radius: 0 0 60px 60px;
            margin-bottom: 30px;
        }
        .hero-section h1 {
            font-size: 2.6rem;
            font-weight: 800;
            text-shadow: 0 4px 15px rgba(0,0,0,0.2);
            letter-spacing: 1px;
        }
        .hero-section p {
            font-size: 1.1rem;
            max-width: 800px;
            margin: 20px auto 0;
            opacity: 0.9;
        }
        /* 通用卡片 */
        .card {
            background: linear-gradient(145deg, #fff9f5, #fff1e8);
            border-radius: 28px;
            padding: 30px;
            box-shadow: 0 12px 35px rgba(255, 126, 95, 0.12);
            margin-bottom: 30px;
            border: 1px solid rgba(255, 126, 95, 0.1);
            transition: transform 0.2s ease;
        }
        .card:hover {
            transform: translateY(-4px);
        }
        .section-title {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(135deg, #ff7e5f, #c471ed);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 25px;
            display: inline-block;
        }
        .grid-2, .grid-3, .grid-4 {
            display: grid;
            gap: 25px;
        }
        .grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
        .grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
        .grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
        img {
            max-width: 100%;
            border-radius: 20px;
            display: block;
            height: auto;
            object-fit: cover;
        }
        .image-gallery {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
        }
        .image-gallery img {
            width: 220px;
            height: 150px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.08);
        }
        /* 新闻卡片 */
        .news-item {
            background: #fff;
            padding: 20px;
            border-radius: 20px;
            border-left: 6px solid #ff7e5f;
            box-shadow: 0 4px 12px rgba(255,126,95,0.08);
            margin-bottom: 18px;
        }
        .news-item h3 {
            font-size: 1.2rem;
            margin-bottom: 6px;
        }
        .news-date {
            font-size: 0.85rem;
            color: #c471ed;
            font-weight: 600;
            margin-bottom: 8px;
        }
        .news-item p {
            color: #444;
        }
        /* FAQ */
        .faq-item {
            padding: 18px 0;
            border-bottom: 1px solid rgba(196, 113, 237, 0.15);
        }
        .faq-item:last-child { border-bottom: none; }
        .faq-question {
            font-weight: 700;
            font-size: 1.1rem;
            color: #2d2b3a;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .faq-question::before {
            content: "⚡";
            color: #ff7e5f;
        }
        .faq-answer {
            margin-top: 10px;
            padding-left: 28px;
            color: #3a3a4a;
        }
        /* 页脚 */
        footer {
            background: #2d2b3a;
            color: #e0dce6;
            padding: 40px 0 20px;
            border-radius: 50px 50px 0 0;
            margin-top: 40px;
        }
        footer a {
            color: #feb47b;
            text-decoration: none;
        }
        footer a:hover { color: #fff; }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px 25px;
            margin-bottom: 20px;
        }
        .footer-info {
            text-align: center;
            font-size: 0.9rem;
            line-height: 2;
        }
        .footer-info p { margin: 5px 0; }
        .friend-links {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            margin-top: 20px;
            text-align: center;
            font-size: 0.9rem;
        }
        /* CTA 按钮 */
        .btn-cta {
            display: inline-block;
            background: linear-gradient(135deg, #ff7e5f, #c471ed);
            color: #fff;
            padding: 14px 40px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            box-shadow: 0 8px 25px rgba(255,126,95,0.4);
            transition: all 0.3s;
        }
        .btn-cta:hover {
            transform: scale(1.04);
            box-shadow: 0 12px 35px rgba(255,126,95,0.55);
        }
        .text-center { text-align: center; }
        .mt-20 { margin-top: 20px; }
        .mb-20 { margin-bottom: 20px; }
        .badge {
            background: linear-gradient(135deg, #ff7e5f, #c471ed);
            color: #fff;
            padding: 4px 14px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            display: inline-block;
        }
        @media (max-width: 768px) {
            .navbar .container { flex-direction: column; gap: 10px; }
            .hero-section h1 { font-size: 1.8rem; }
            .image-gallery img { width: 100%; height: auto; }
        }