        .page {
            background: #ffffff;
            font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            color: #13294b;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }

        .page,
        .page * {
            box-sizing: border-box;
        }

        .main-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2.5rem 1.5rem 2rem;
        }

        /* 深蓝装饰 */
        .accent-line {
            height: 4px;
            width: 70px;
            background: #0a2f5e;
            margin: 0 auto 1.2rem;
            border-radius: 4px;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 650;
            letter-spacing: -0.02em;
            color: #0a2f5e;
            margin: 0 0 0.5rem 0;
        }

        .section-sub {
            font-size: 1.1rem;
            color: #3a5478;
            margin-bottom: 2.5rem;
        }

        /* ----- 头部 (无图标) ----- */
        .hero {
            text-align: center;
            margin-bottom: 3.5rem;
        }

        .hero-title {
            font-size: 2.8rem;
            font-weight: 700;
            letter-spacing: -0.03em;
            color: #0a2f5e;
            margin: 0 0 0.5rem;
            line-height: 1.2;
        }

        .hero-sub {
            font-size: 1.2rem;
            color: #2c405c;
            margin: 0.25rem 0;
        }

        /* ----- 赞助卡片：长方形 + 3px圆角 ----- */
        .donate-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .donate-card {
            background: #ffffff;
            width: 300px;
            padding: 1.6rem 1.5rem 1.8rem;
            border-radius: 3px;
            border: 1px solid #d7e2f0;
            box-shadow: 0 10px 20px -8px rgba(10, 47, 94, 0.06);
            transition: box-shadow 0.2s ease, border-color 0.2s;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .donate-card:hover {
            box-shadow: 0 16px 28px -10px rgba(10, 47, 94, 0.12);
            border-color: #b0c8e2;
        }

        .donate-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: #0a2f5e;
            opacity: 0.9;
        }

        .card-icon {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            color: #0a2f5e;
        }

        .wechat .card-icon {
            color: #1fad3a;
        }

        .alipay .card-icon {
            color: #1772f0;
        }

        .card-title {
            font-size: 1.7rem;
            font-weight: 650;
            color: #0a2f5e;
            margin: 0 0 1.2rem 0;
            letter-spacing: -0.3px;
        }

        .qr-box {
            width: 160px;
            height: 160px;
            margin: 0 auto 1.2rem;
            background: #fff;
            border-radius: 3px;
            padding: 6px;
            border: 1px solid #d7e2f0;
            box-shadow: 0 4px 10px rgba(0,0,0,0.02);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .qr-box img {
            width: 144px;
            height: 144px;
            object-fit: contain;
            border-radius: 2px;
        }

        .card-note {
            background: #f2f7ff;
            border-radius: 3px;
            padding: 0.8rem 0.8rem;
            font-size: 0.88rem;
            color: #1e3b63;
            border: 1px solid #d2e1f5;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        .card-note i {
            color: #0a2f5e;
        }

        /* ----- 感谢名单 ----- */
        .thanks-panel {
            background: #ffffff;
            border-radius: 3px;
            border: 1px solid #e5eef8;
            box-shadow: 0 12px 28px -10px rgba(10, 47, 94, 0.04);
            padding: 1.8rem 1.5rem 1.2rem;
            margin-bottom: 2.8rem;
        }

        .thanks-header-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1.8rem;
        }

        .thanks-title-large {
            font-size: 1.9rem;
            font-weight: 700;
            color: #0a2f5e;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .thanks-badge {
            background: #e2ebf6;
            color: #0a2f5e;
            font-size: 0.8rem;
            font-weight: 600;
            padding: 0.25rem 1rem;
            border-radius: 3px;
            border: 1px solid #bdd2ec;
        }

        .table-responsive {
            overflow-x: auto;
            margin: 0 -0.2rem;
            border-radius: 3px;
        }

        .thanks-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 550px;
            font-size: 1rem;
        }

        .thanks-table th {
            background: #0a2f5e;
            color: white;
            font-weight: 600;
            padding: 1rem 1.2rem;
            text-align: center;
            font-size: 1rem;
            letter-spacing: 0.3px;
            white-space: nowrap;
        }

        .thanks-table td {
            padding: 1rem 1rem;
            text-align: center;
            border-bottom: 1px solid #e1eaf3;
            color: #1e3a5f;
            font-weight: 500;
        }

        .thanks-table tbody tr:hover {
            background: #f7faff;
        }

        .thanks-table .footer-cell {
            background: #f2f8ff;
            color: #0a2f5e;
            font-weight: 600;
            border-bottom: none;
            padding: 1.2rem;
        }

        .table-link {
            color: #0a2f5e;
            text-decoration: none;
            font-weight: 600;
            border-bottom: 1px dashed #809ab3;
        }

        .table-link:hover {
            border-bottom-style: solid;
        }

        .footnote-line {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            margin-top: 1.5rem;
            color: #385e7e;
            font-size: 0.9rem;
        }

        .reminder {
            background: #eef3fa;
            padding: 0.4rem 1.2rem;
            border-radius: 3px;
            color: #0a2f5e;
            font-weight: 500;
        }

        /* ----- 底部 ----- */
        .footer-section {
            text-align: center;
            margin-top: 3.5rem;
            padding-top: 2rem;
            border-top: 1px solid #d7e3f0;
        }

        .gratitude {
            font-size: 2rem;
            font-weight: 700;
            color: #0a2f5e;
            margin-bottom: 0.5rem;
        }

        .contact-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem 2rem;
            margin: 2rem 0 1.5rem;
        }

        .contact-pill {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: white;
            padding: 0.6rem 1.6rem;
            border-radius: 3px;
            border: 1px solid #b7cee7;
            color: #0a2f5e;
            text-decoration: none;
            font-weight: 500;
            transition: background 0.2s, color 0.2s, border 0.2s;
            box-shadow: 0 2px 6px rgba(10,47,94,0.02);
        }

        .contact-pill i {
            font-size: 1.2rem;
            color: #0a2f5e;
        }

        .contact-pill:hover {
            background: #0a2f5e;
            color: white;
            border-color: #0a2f5e;
        }

        .contact-pill:hover i {
            color: white;
        }

        .copyrighta {
            color: #55718f;
            font-size: 0.9rem;
            margin-top: 2.2rem;
        }

        .legal-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.8rem 1.5rem;
            margin-top: 0.8rem;
        }

        .legal-links a {
            color: #1d3a5c;
            text-decoration: none;
            border-bottom: 1px dotted #90a9c2;
            font-size: 0.9rem;
        }

        .legal-links a:hover {
            border-bottom-style: solid;
            color: #0a2f5e;
        }

        /* 响应式 */
        @media (max-width: 650px) {
            .main-container {
                padding: 1.8rem 1.2rem;
            }
            .hero-title {
                font-size: 2.2rem;
            }
            .donate-card {
                width: 100%;
                max-width: 320px;
            }
            .thanks-panel {
                padding: 1.2rem 1rem;
            }
            .thanks-title-large {
                font-size: 1.6rem;
            }
            .gratitude {
                font-size: 1.6rem;
            }
        }

        @media (max-width: 480px) {
            .thanks-header-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.8rem;
            }
        }