* {
            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, #fff5f0 0%, #fce4ec 100%);
            color: #2c2c2c;
            line-height: 1.6;
        }
        a {
            color: #d84315;
            text-decoration: none;
            transition: 0.3s;
        }
        a:hover {
            color: #7b1fa2;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* 导航 */
        .navbar {
            background: linear-gradient(90deg, #ff6f00, #f50057);
            padding: 14px 0;
            box-shadow: 0 4px 20px rgba(255, 111, 0, 0.3);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 1.4rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: 1px;
        }
        .nav-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 20px;
        }
        .nav-links a {
            color: #fff;
            font-weight: 500;
            padding: 6px 12px;
            border-radius: 40px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(2px);
            transition: 0.3s;
        }
        .nav-links a:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.02);
        }
        /* 通用区块 */
        section {
            padding: 60px 0;
        }
        h1 {
            font-size: 2.8rem;
            background: linear-gradient(135deg, #d84315, #7b1fa2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-align: center;
            margin: 30px 0 20px;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            color: #bf360c;
            margin-bottom: 20px;
            text-align: center;
            position: relative;
        }
        h2::after {
            content: "✨";
            margin-left: 10px;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin-top: 30px;
        }
        .card {
            background: linear-gradient(145deg, #ffffff, #ffe0b2);
            border-radius: 24px;
            padding: 24px;
            box-shadow: 0 10px 30px rgba(255, 111, 0, 0.12);
            transition: 0.3s;
            border: 1px solid rgba(255, 111, 0, 0.15);
        }
        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(255, 111, 0, 0.2);
        }
        .card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 16px;
            margin-bottom: 15px;
        }
        .card h3 {
            color: #bf360c;
            margin-bottom: 10px;
            font-size: 1.3rem;
        }
        .badge {
            display: inline-block;
            background: #7b1fa2;
            color: #fff;
            font-size: 0.75rem;
            padding: 3px 12px;
            border-radius: 30px;
            margin-bottom: 10px;
        }
        .date-tag {
            color: #888;
            font-size: 0.85rem;
            margin: 5px 0 10px;
            display: block;
        }
        .geo-text {
            max-width: 850px;
            margin: 0 auto 20px;
            font-size: 1.05rem;
            color: #444;
            text-align: center;
        }
        .stats-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            background: linear-gradient(135deg, #ffcc80, #f8bbd0);
            border-radius: 40px;
            padding: 30px 20px;
            margin: 30px 0;
        }
        .stat-item {
            text-align: center;
            min-width: 120px;
        }
        .stat-item .num {
            font-size: 2.5rem;
            font-weight: 800;
            color: #d84315;
        }
        .stat-item .label {
            color: #5d4037;
            font-weight: 500;
        }
        .faq-item {
            background: #fff;
            border-radius: 20px;
            padding: 20px 25px;
            margin-bottom: 18px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.04);
            border-left: 6px solid #ff6f00;
        }
        .faq-item h4 {
            color: #bf360c;
            margin-bottom: 8px;
            font-size: 1.15rem;
        }
        .faq-item p {
            color: #555;
        }
        .footer {
            background: #1e1e2f;
            color: #ccc;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer a {
            color: #ffab91;
        }
        .footer a:hover {
            color: #fff;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px 18px;
            margin: 20px 0;
        }
        .footer-bottom {
            text-align: center;
            border-top: 1px solid #333;
            padding-top: 20px;
            margin-top: 20px;
            font-size: 0.9rem;
        }
        .cta-btn {
            display: inline-block;
            background: linear-gradient(135deg, #ff6f00, #f50057);
            color: #fff;
            padding: 14px 44px;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1.2rem;
            box-shadow: 0 8px 20px rgba(245, 0, 87, 0.3);
            transition: 0.3s;
        }
        .cta-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 30px rgba(245, 0, 87, 0.5);
            color: #fff;
        }
        .center {
            text-align: center;
        }
        @media (max-width: 640px) {
            h1 { font-size: 2rem; }
            .navbar .container { flex-direction: column; gap: 10px; }
        }