* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
        }
        :root {
            --pri: #dc2626;
            --pri-dark: #7f1d1d;
            --gold: #fbbf24;
            --white: #ffffff;
            --light: #fdf2f2;
            --dark: #1a0a0a;
            --gray: #6b7280;
            --border: #e5e7eb;
            --shadow: 0 4px 24px rgba(220, 38, 38, 0.12);
        }
        body {
            line-height: 1.7;
            color: #222;
            background: #fff;
            overflow-x: hidden;
        }
        .navbar {
            background: linear-gradient(135deg, var(--pri-dark) 0%, var(--pri) 100%);
            padding: 0 32px;
            min-height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
            border-bottom: 2px solid var(--gold);
        }
        .nav-links {
            display: flex;
            gap: 8px;
            align-items: center;
            flex-wrap: wrap;
            justify-content: center;
        }
        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-size: 15px;
            font-weight: 600;
            padding: 10px 20px;
            border-radius: 6px;
            transition: all .3s ease;
            letter-spacing: .5px;
        }
        .nav-links a:hover {
            background: rgba(255, 255, 255, 0.18);
            color: var(--gold);
            transform: translateY(-1px);
        }
        .hero-section {
            background: linear-gradient(135deg, #7f1d1d 0%, #b91c1c 45%, #dc2626 100%);
            color: #fff;
            padding: 70px 32px 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: "";
            position: absolute;
            top: -60%;
            right: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(251, 191, 36, 0.25) 0%, transparent 70%);
            pointer-events: none;
        }
        .hero-container {
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        .hero-container h1 {
            font-size: 38px;
            font-weight: 800;
            line-height: 1.3;
            margin-bottom: 20px;
            text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
            letter-spacing: 1px;
        }
        .hero-container p {
            font-size: 16px;
            max-width: 900px;
            margin: 0 auto 28px;
            line-height: 1.8;
            opacity: 0.95;
        }
        .hero-img {
            margin-top: 20px;
            border-radius: 16px;
            max-width: 720px;
            width: 100%;
            border: 3px solid var(--gold);
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
        }
        .section {
            padding: 60px 32px;
        }
        .section-alt {
            background: var(--light);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .section-title {
            font-size: 30px;
            font-weight: 800;
            color: var(--pri-dark);
            text-align: center;
            margin-bottom: 14px;
            letter-spacing: 1px;
        }
        .section-title::after {
            content: "";
            display: block;
            width: 70px;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--pri));
            margin: 10px auto 0;
            border-radius: 4px;
        }
        .section-subtitle {
            text-align: center;
            color: var(--gray);
            font-size: 15px;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 24px;
            margin-top: 20px;
        }
        .advantage-card {
            background: linear-gradient(145deg, #fff 60%, #fef3c7);
            border-radius: 14px;
            border: 1px solid #e5e7eb;
            border-top: 4px solid var(--pri);
            padding: 32px 24px;
            text-align: center;
            transition: all .3s ease;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        }
        .advantage-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow);
            border-top-color: var(--gold);
        }
        .advantage-card .icon {
            font-size: 42px;
            margin-bottom: 14px;
        }
        .advantage-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--pri-dark);
            margin-bottom: 10px;
        }
        .advantage-card p {
            font-size: 14px;
            color: #555;
            line-height: 1.6;
        }
        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }
        .event-card {
            background: #fff;
            border-radius: 14px;
            border: 1px solid #e5e7eb;
            overflow: hidden;
            transition: all .3s;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }
        .event-card:hover {
            box-shadow: var(--shadow);
            transform: translateY(-4px);
        }
        .event-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            display: block;
        }
        .event-info {
            padding: 20px;
        }
        .event-info h3 {
            font-size: 18px;
            color: var(--pri-dark);
            margin-bottom: 8px;
        }
        .event-info p {
            font-size: 14px;
            color: #555;
        }
        .stats-section {
            background: linear-gradient(135deg, #7f1d1d, #b91c1c, #dc2626);
            padding: 60px 32px;
            color: #fff;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 30px;
            text-align: center;
            max-width: 1100px;
            margin: 0 auto;
        }
        .stat-item .num {
            font-size: 46px;
            font-weight: 800;
            color: var(--gold);
            line-height: 1.2;
        }
        .stat-item .label {
            font-size: 15px;
            opacity: 0.85;
            margin-top: 6px;
        }
        .story-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        .story-grid img {
            width: 100%;
            border-radius: 14px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            border: 2px solid var(--gold);
        }
        .story-content h3 {
            font-size: 22px;
            color: var(--pri-dark);
            margin-bottom: 14px;
        }
        .story-content p {
            font-size: 15px;
            color: #555;
            line-height: 1.8;
            margin-bottom: 12px;
        }
        .timeline-wrap {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            padding-left: 30px;
        }
        .timeline-wrap::before {
            content: "";
            position: absolute;
            left: 10px;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(to bottom, var(--gold), var(--pri));
        }
        .timeline-item {
            position: relative;
            margin-bottom: 32px;
            padding: 20px 24px;
            background: #fff;
            border-radius: 10px;
            border-left: 4px solid var(--pri);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
        }
        .timeline-item::before {
            content: "";
            position: absolute;
            left: -29px;
            top: 28px;
            width: 12px;
            height: 12px;
            background: var(--gold);
            border-radius: 50%;
            border: 3px solid var(--pri);
        }
        .timeline-item h4 {
            color: var(--pri-dark);
            font-size: 17px;
            margin-bottom: 6px;
        }
        .timeline-item p {
            font-size: 14px;
            color: #555;
        }
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }
        .testimonial-card {
            background: #fff;
            padding: 28px;
            border-radius: 14px;
            border: 1px solid #e5e7eb;
            border-bottom: 3px solid var(--pri);
            text-align: center;
            transition: all .3s;
        }
        .testimonial-card:hover {
            box-shadow: var(--shadow);
        }
        .testimonial-card .stars {
            color: var(--gold);
            font-size: 20px;
            margin-bottom: 12px;
        }
        .testimonial-card p {
            font-size: 14px;
            color: #555;
            font-style: italic;
            line-height: 1.7;
            margin-bottom: 14px;
        }
        .testimonial-card .user {
            font-weight: 700;
            color: var(--pri-dark);
        }
        .partners-flex {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            align-items: center;
        }
        .partner-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            padding: 20px 28px;
            background: #fff;
            border-radius: 12px;
            border: 1px solid #e5e7eb;
            transition: all .3s;
        }
        .partner-item:hover {
            box-shadow: var(--shadow);
        }
        .partner-item img {
            height: 50px;
            width: auto;
            border-radius: 8px;
        }
        .coverage-wrap {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            text-align: center;
        }
        .coverage-item {
            padding: 20px;
            background: #fff;
            border-radius: 12px;
            border: 1px solid #e5e7eb;
        }
        .coverage-item .icon {
            font-size: 36px;
        }
        .cta-section {
            background: linear-gradient(135deg, #7f1d1d, #dc2626);
            padding: 60px 32px;
            text-align: center;
            color: #fff;
        }
        .cta-section h2 {
            font-size: 28px;
            margin-bottom: 16px;
        }
        .cta-section p {
            font-size: 16px;
            margin-bottom: 24px;
            opacity: .9;
        }
        .cta-btns {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn {
            display: inline-block;
            padding: 12px 32px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 700;
            text-decoration: none;
            transition: all .3s;
            cursor: pointer;
            border: none;
        }
        .btn-gold {
            background: var(--gold);
            color: var(--pri-dark);
        }
        .btn-gold:hover {
            background: #f59e0b;
            transform: translateY(-2px);
        }
        .btn-outline {
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.7);
        }
        .btn-outline:hover {
            border-color: var(--gold);
            color: var(--gold);
            transform: translateY(-2px);
        }
        .deep-content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }
        .deep-item {
            background: #fff;
            padding: 28px;
            border-radius: 14px;
            border-left: 5px solid var(--pri);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        .deep-item h3 {
            font-size: 17px;
            color: var(--pri-dark);
            margin-bottom: 10px;
        }
        .deep-item p {
            font-size: 14px;
            color: #555;
            line-height: 1.7;
        }
        .news-section {
            background: var(--light);
        }
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 26px;
        }
        .news-card {
            background: #fff;
            border-radius: 14px;
            overflow: hidden;
            border: 1px solid #e5e7eb;
            transition: all .3s;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            display: flex;
            flex-direction: column;
        }
        .news-card:hover {
            box-shadow: var(--shadow);
            transform: translateY(-4px);
        }
        .news-card img {
            width: 100%;
            height: 170px;
            object-fit: cover;
        }
        .news-body {
            padding: 22px;
            flex: 1;
        }
        .news-body h3 {
            font-size: 17px;
            color: var(--pri-dark);
            margin-bottom: 8px;
            line-height: 1.4;
        }
        .news-body .post-date {
            display: inline-block;
            background: var(--light);
            color: var(--pri);
            font-size: 12px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 20px;
            margin-bottom: 10px;
        }
        .news-body p {
            font-size: 14px;
            color: #555;
            line-height: 1.7;
        }
        .faq-wrap {
            max-width: 900px;
            margin: 0 auto;
        }
        .faq-item {
            background: #fff;
            border-radius: 12px;
            border: 1px solid #e5e7eb;
            margin-bottom: 16px;
            overflow: hidden;
            transition: box-shadow .3s;
        }
        .faq-item:hover {
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        }
        .faq-item summary {
            padding: 20px 24px;
            font-size: 16px;
            font-weight: 700;
            color: var(--pri-dark);
            cursor: pointer;
            list-style: none;
            position: relative;
            background: linear-gradient(90deg, var(--light), #fff);
            border-bottom: 1px solid #f0f0f0;
        }
        .faq-item summary::-webkit-details-marker {
            display: none;
        }
        .faq-item summary::after {
            content: "＋";
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 20px;
            color: var(--pri);
            transition: transform .3s;
        }
        .faq-item[open] summary::after {
            transform: translateY(-50%) rotate(45deg);
        }
        .faq-item summary:hover {
            color: var(--pri);
        }
        .faq-answer {
            padding: 20px 24px;
            font-size: 14px;
            color: #555;
            line-height: 1.8;
        }
        .footer {
            background: linear-gradient(135deg, #1a0a0a, #7f1d1d);
            color: rgba(255, 255, 255, 0.85);
            padding: 48px 32px 24px;
            text-align: center;
        }
        .footer-info {
            max-width: 900px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin-bottom: 24px;
        }
        .footer-info div {
            text-align: center;
        }
        .footer-info .label {
            font-size: 13px;
            opacity: .7;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: block;
            margin-bottom: 4px;
        }
        .footer-info .value {
            font-size: 14px;
            font-weight: 500;
        }
        .footer-links {
            margin: 20px 0;
            display: flex;
            justify-content: center;
            gap: 20px;
            font-size: 14px;
        }
        .footer-links a {
            color: var(--gold);
            text-decoration: none;
            transition: opacity .3s;
        }
        .footer-links a:hover {
            opacity: .8;
        }
        .footer-copy {
            font-size: 14px;
            opacity: .7;
            margin-top: 10px;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            padding-top: 18px;
        }
        @media (max-width: 768px) {
            .hero-container h1 {
                font-size: 26px;
            }
            .navbar {
                padding: 0 12px;
            }
            .nav-links {
                gap: 4px;
            }
            .nav-links a {
                padding: 8px 10px;
                font-size: 13px;
            }
            .section {
                padding: 40px 16px;
            }
            .story-grid {
                grid-template-columns: 1fr;
            }
            .stats-grid {
                gap: 20px;
            }
            .stat-item .num {
                font-size: 32px;
            }
        }