        :root {
            --primary: #a80000;
            --primary-light: #cc0000;
            --primary-dark: #7a0000;
            --primary-bg: #fff5f5;
            --gold: #c9a84c;
            --gold-light: #f5e6c8;
            --gold-dark: #b8942a;
            --dark: #1a1a2e;
            --gray: #6b7280;
            --light-gray: #f3f4f6;
            --white: #ffffff;
            --shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.10);
            --radius: 5px;
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            --container-padding: 40px;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Microsoft YaHei', 'Noto Sans SC', 'PingFang SC', sans-serif;
            background: #f8f9fb;
            color: #1a1a2e;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; display: block; }
        .container { max-width: 1400px; margin: 0 auto; padding: 0 var(--container-padding); }
        @media (max-width: 768px) { :root { --container-padding: 20px; } }
        @media (max-width: 576px) { :root { --container-padding: 16px; } }

        /* ===== 导航 ===== */
        .special-nav {
            background: rgba(255, 255, 255, 0.97);
            backdrop-filter: blur(20px);
            box-shadow: 0 1px 24px rgba(0, 0, 0, 0.04);
            position: sticky; top: 0; z-index: 100;
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        }
        .special-nav .container {
            display: flex; align-items: center; justify-content: space-between;
            height: 68px; gap: 16px;
        }
        .logo-brand { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
        .logo-brand .logo-badge {
            position: relative; width: 44px; height: 44px; border-radius: 10px;
            background: radial-gradient(circle at 40% 30%, #cc0000, #7a0000 80%);
            border: 2.5px solid var(--gold);
            box-shadow: 0 4px 16px rgba(168, 0, 0, 0.08);
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0; transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        .logo-brand .logo-badge i { font-size: 20px; color: #fff; transition: transform 0.4s ease; }
        .logo-brand .logo-badge::before {
            content: ''; position: absolute; top: -2px; left: -2px;
            width: 14px; height: 14px;
            border-left: 2px solid var(--gold); border-top: 2px solid var(--gold);
            border-radius: 4px 0 0 0; opacity: 0.12; transition: opacity 0.4s ease;
        }
        .logo-brand .logo-badge::after {
            content: ''; position: absolute; bottom: -2px; right: -2px;
            width: 14px; height: 14px;
            border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
            border-radius: 0 0 4px 0; opacity: 0.12; transition: opacity 0.4s ease;
        }
        .logo-brand:hover .logo-badge { transform: scale(1.04); box-shadow: 0 6px 24px rgba(168, 0, 0, 0.14); }
        .logo-brand:hover .logo-badge::before,
        .logo-brand:hover .logo-badge::after { opacity: 0.35; }
        .logo-brand:hover .logo-badge i { transform: rotate(-3deg) scale(1.02); }
        .logo-brand .title-group { display: flex; flex-direction: column; line-height: 1.1; }
        .logo-brand .title-group .line-top { display: flex; align-items: center; gap: 8px; }
        .logo-brand .title-group .line-top .name { font-size: 15px; font-weight: 500; color: #1a1a2e; letter-spacing: 2.5px; }
        .logo-brand .title-group .line-top .dot-divider { display: inline-block; width: 4px; height: 4px; background: var(--gold); border-radius: 50%; opacity: 0.2; }
        .logo-brand .title-group .line-top .badge {
            font-size: 9px; font-weight: 500; color: #9ca3af; letter-spacing: 1px;
            background: rgba(201, 168, 76, 0.06); padding: 0 10px; border-radius: 20px;
            border: 1px solid rgba(201, 168, 76, 0.06);
            display: inline-flex; align-items: center; gap: 4px;
        }
        .logo-brand .title-group .line-top .badge i { font-size: 8px; color: var(--gold); }
        .logo-brand .title-group .line-bottom { display: flex; align-items: baseline; gap: 6px; margin-top: -1px; }
        .logo-brand .title-group .line-bottom .master {
            font-size: 22px; font-weight: 900; color: var(--primary);
            letter-spacing: 3px; line-height: 1;
        }
        .logo-brand .title-group .line-bottom .master .gold-dot {
            display: inline-block; width: 5px; height: 5px; background: var(--gold);
            border-radius: 50%; margin: 0 6px 0 2px; vertical-align: middle; opacity: 0.2;
        }
        .logo-brand .title-group .line-bottom .en {
            font-size: 10px; font-weight: 300; color: #9ca3af;
            letter-spacing: 3px; text-transform: uppercase;
        }
        .special-nav .nav-links { display: flex; gap: 2px; list-style: none; font-size: 14px; font-weight: 500; align-items: center; flex-wrap: wrap; }
        .special-nav .nav-links > li > a {
            display: block; padding: 6px 16px; color: #334155; border-radius: 6px;
            transition: var(--transition); font-weight: 500; font-size: 14px; position: relative;
        }
        .special-nav .nav-links > li > a:hover,
        .special-nav .nav-links > li > a.active { background: var(--primary-bg); color: var(--primary); }
        .special-nav .nav-links > li > a.highlight-keyword { color: var(--primary); font-weight: 600; }
        .special-nav .nav-links > li > a.highlight-keyword:hover { background: var(--primary-bg); color: var(--primary-dark); }
        .special-nav .nav-links > li > a::after {
            content: ''; position: absolute; bottom: 2px; left: 50%;
            transform: translateX(-50%) scaleX(0); width: 60%; height: 2px;
            background: var(--primary); border-radius: 2px; transition: transform 0.3s ease;
        }
        .special-nav .nav-links > li > a:hover::after,
        .special-nav .nav-links > li > a.active::after { transform: translateX(-50%) scaleX(1); }
        .special-nav .nav-cta {
            background: var(--primary); color: #fff !important;
            padding: 6px 20px; border-radius: 5px; font-weight: 600;
            transition: var(--transition); box-shadow: 0 2px 12px rgba(168, 0, 0, 0.08);
        }
        .special-nav .nav-cta::after { display: none !important; }
        .special-nav .nav-cta:hover {
            background: var(--primary-dark) !important;
            transform: translateY(-2px); box-shadow: 0 6px 20px rgba(168, 0, 0, 0.20);
        }
        @media (max-width: 1024px) {
            .special-nav .container { height: auto; padding: 10px 20px; gap: 10px; flex-wrap: wrap; }
            .logo-brand .logo-badge { width: 38px; height: 38px; border-radius: 8px; border-width: 2px; }
            .logo-brand .logo-badge i { font-size: 17px; }
            .logo-brand .logo-badge::before, .logo-brand .logo-badge::after { width: 12px; height: 12px; border-width: 1.5px; }
            .logo-brand .title-group .line-top .name { font-size: 13px; }
            .logo-brand .title-group .line-top .badge { font-size: 8px; padding: 0 8px; }
            .logo-brand .title-group .line-bottom .master { font-size: 19px; }
            .logo-brand .title-group .line-bottom .en { font-size: 9px; }
            .special-nav .nav-links > li > a { padding: 4px 10px; font-size: 13px; }
        }
        @media (max-width: 768px) {
            .special-nav .container { padding: 8px 16px; gap: 6px; }
            .logo-brand { gap: 10px; }
            .logo-brand .logo-badge { width: 32px; height: 32px; border-radius: 6px; border-width: 2px; }
            .logo-brand .logo-badge i { font-size: 14px; }
            .logo-brand .logo-badge::before, .logo-brand .logo-badge::after { display: none; }
            .logo-brand .title-group .line-top .name { font-size: 11px; letter-spacing: 1.5px; }
            .logo-brand .title-group .line-top .dot-divider { width: 3px; height: 3px; }
            .logo-brand .title-group .line-top .badge { font-size: 7px; padding: 0 6px; }
            .logo-brand .title-group .line-bottom .master { font-size: 16px; letter-spacing: 2px; }
            .logo-brand .title-group .line-bottom .master .gold-dot { width: 4px; height: 4px; margin: 0 4px; }
            .logo-brand .title-group .line-bottom .en { font-size: 8px; letter-spacing: 1.5px; }
            .special-nav .nav-links > li > a { padding: 3px 8px; font-size: 12px; }
            .special-nav .nav-cta { padding: 4px 14px; font-size: 12px; }
            .special-nav .nav-links > li > a::after { display: none; }
        }
        @media (max-width: 576px) {
            .special-nav .container { padding: 6px 12px; gap: 4px; }
            .logo-brand { gap: 8px; }
            .logo-brand .logo-badge { width: 26px; height: 26px; border-radius: 5px; border-width: 1.5px; }
            .logo-brand .logo-badge i { font-size: 11px; }
            .logo-brand .title-group .line-top .name { font-size: 9px; letter-spacing: 1px; }
            .logo-brand .title-group .line-top .dot-divider { display: none; }
            .logo-brand .title-group .line-top .badge { display: none; }
            .logo-brand .title-group .line-bottom .master { font-size: 14px; letter-spacing: 1.5px; }
            .logo-brand .title-group .line-bottom .master .gold-dot { width: 3px; height: 3px; margin: 0 3px; }
            .logo-brand .title-group .line-bottom .en { font-size: 7px; letter-spacing: 1px; }
            .special-nav .nav-links > li > a { padding: 2px 6px; font-size: 10px; }
            .special-nav .nav-cta { padding: 3px 10px; font-size: 10px; }
        }

        /* ============================================================
             BANNER
             ============================================================ */
        .banner-wrapper {
            position: relative;
            width: 100%;
            overflow: hidden;
            background: #1a1a2e;
        }
        .banner-wrapper .swiper {
            width: 100%;
            height: 480px;
        }
        .banner-wrapper .swiper-slide {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        .banner-wrapper .swiper-slide .slide-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            z-index: 0;
        }
        .banner-wrapper .swiper-slide .slide-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(10, 10, 30, 0.75) 0%, rgba(168, 0, 0, 0.30) 100%);
            z-index: 1;
        }

        /* ===== slide 内容：左侧文字 + 右侧卡片，两端对齐 ===== */
        .banner-wrapper .swiper-slide .slide-content {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            width: 100%;
            padding: 0 40px;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }
        .banner-wrapper .swiper-slide .slide-content .slide-text {
            flex: 1 1 auto;
            min-width: 0;
            max-width: 620px;
        }

        .banner-wrapper .swiper-slide .slide-content .tag {
            display: inline-block;
            background: rgba(201, 168, 76, 0.15);
            border: 1px solid rgba(201, 168, 76, 0.20);
            color: #f5e6c8;
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 2px;
            padding: 4px 18px;
            border-radius: 5px;
            margin-bottom: 16px;
            text-transform: uppercase;
        }
        .banner-wrapper .swiper-slide .slide-content .tag i { margin-right: 6px; font-size: 11px; }
        .banner-wrapper .swiper-slide .slide-content h2 {
            font-size: 42px;
            font-weight: 900;
            line-height: 1.15;
            margin-bottom: 6px;
            letter-spacing: -0.5px;
            text-shadow: 0 2px 30px rgba(0, 0, 0, 0.10);
        }
        .banner-wrapper .swiper-slide .slide-content h2 .highlight { color: #f5e6c8; }
        .banner-wrapper .swiper-slide .slide-content .sub {
            font-size: 18px;
            font-weight: 300;
            opacity: 0.8;
            letter-spacing: 3px;
            margin-bottom: 14px;
        }
        .banner-wrapper .swiper-slide .slide-content .desc {
            font-size: 15px;
            opacity: 0.75;
            max-width: 460px;
            line-height: 1.8;
            margin-bottom: 24px;
        }
        .banner-wrapper .swiper-slide .slide-content .actions { display: flex; gap: 14px; flex-wrap: wrap; }
        .banner-wrapper .swiper-slide .slide-content .actions .btn-primary {
            background: #c9a84c; color: #0a2540;
            padding: 12px 34px; border-radius: 10px;
            font-weight: 700; font-size: 15px; border: none; cursor: pointer;
            transition: all 0.4s ease;
            display: inline-flex; align-items: center; gap: 8px;
            text-decoration: none;
        }
        .banner-wrapper .swiper-slide .slide-content .actions .btn-primary:hover {
            background: #d4b05a; transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(201, 168, 76, 0.30);
        }
        .banner-wrapper .swiper-slide .slide-content .actions .btn-outline {
            background: rgba(255, 255, 255, 0.06); color: #fff;
            padding: 12px 34px; border-radius: 10px;
            font-weight: 700; font-size: 15px;
            border: 1.5px solid rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(4px); cursor: pointer;
            transition: all 0.4s ease;
            display: inline-flex; align-items: center; gap: 8px;
            text-decoration: none;
        }
        .banner-wrapper .swiper-slide .slide-content .actions .btn-outline:hover {
            background: rgba(255, 255, 255, 0.10);
            border-color: rgba(255, 255, 255, 0.30);
            transform: translateY(-2px);
        }

        /* ===== 右侧项目信息卡片（每个 slide 内独立） ===== */
        .banner-wrapper .swiper-slide .slide-content .banner-side-card {
            flex: 0 0 340px;
            width: 340px;
            max-width: 40%;
        }
        .banner-wrapper .swiper-slide .slide-content .banner-side-card .card-glow {
            background: rgba(255, 255, 255, 0.10);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 16px;
            padding: 24px;
            color: #fff;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
        }
        .banner-wrapper .swiper-slide .slide-content .banner-side-card .uni-badge {
            display: flex; align-items: center; gap: 8px;
            font-size: 14px; font-weight: 600;
            margin-bottom: 14px; flex-wrap: wrap; line-height: 1.4;
        }
        .banner-wrapper .swiper-slide .slide-content .banner-side-card .divider {
            height: 1px; background: rgba(255, 255, 255, 0.15); margin: 12px 0;
        }
        .banner-wrapper .swiper-slide .slide-content .banner-side-card .info-line {
            display: flex; justify-content: space-between;
            font-size: 13px; margin-bottom: 10px;
            color: rgba(255, 255, 255, 0.80); gap: 12px;
        }
        .banner-wrapper .swiper-slide .slide-content .banner-side-card .info-line strong {
            color: #fff; font-weight: 600; text-align: right;
        }

        /* 分页器 */
        .banner-wrapper .swiper-pagination {
            bottom: 20px !important;
            display: flex; justify-content: center; gap: 8px; z-index: 10;
        }
        .banner-wrapper .swiper-pagination-bullet {
            background-color: rgba(255, 255, 255, 0.20);
            opacity: 1; width: 36px; height: 6px;
            border-radius: 4px; border: none;
            transition: all 0.4s ease; margin: 0 !important;
            cursor: pointer; padding: 10px 0;
            background-clip: content-box; box-sizing: content-box;
        }
        .banner-wrapper .swiper-pagination-bullet:hover { background-color: rgba(255, 255, 255, 0.35); }
        .banner-wrapper .swiper-pagination-bullet-active {
            background-color: #c9a84c; width: 52px;
            box-shadow: 0 0 20px rgba(201, 168, 76, 0.06);
        }
        .banner-wrapper .swiper-button-prev,
        .banner-wrapper .swiper-button-next {
            color: rgba(255, 255, 255, 0);
            transition: all 0.4s ease; z-index: 10;
            width: 52px; height: 52px;
            background: rgba(0, 0, 0, 0);
            border: 1px solid rgba(255, 255, 255, 0);
            border-radius: 8px;
            display: flex; align-items: center; justify-content: center;
            opacity: 0; pointer-events: none;
        }
        .banner-wrapper .swiper-button-prev::after,
        .banner-wrapper .swiper-button-next::after { font-size: 22px; font-weight: 300; }
        .banner-wrapper:hover .swiper-button-prev,
        .banner-wrapper:hover .swiper-button-next {
            color: rgba(255, 255, 255, 0.35);
            background: rgba(0, 0, 0, 0.25);
            border-color: rgba(255, 255, 255, 0.04);
            opacity: 1; pointer-events: auto;
        }
        .banner-wrapper .swiper-button-prev:hover,
        .banner-wrapper .swiper-button-next:hover {
            color: #ffffff; background: rgba(0, 0, 0, 0.55);
            border-color: rgba(255, 255, 255, 0.06);
        }

        @media (max-width: 992px) {
            .banner-wrapper .swiper-slide .slide-content .banner-side-card { display: none; }
            .banner-wrapper .swiper-slide .slide-content { justify-content: flex-start; }
        }
        @media (max-width: 768px) {
            .banner-wrapper .swiper { height: 420px; }
            .banner-wrapper .swiper-slide .slide-content { padding: 0 20px; }
            .banner-wrapper .swiper-slide .slide-content h2 { font-size: 28px; }
            .banner-wrapper .swiper-slide .slide-content .sub { font-size: 15px; letter-spacing: 2px; }
            .banner-wrapper .swiper-slide .slide-content .desc { font-size: 14px; max-width: 100%; }
            .banner-wrapper .swiper-slide .slide-content .actions .btn-primary,
            .banner-wrapper .swiper-slide .slide-content .actions .btn-outline { padding: 10px 22px; font-size: 14px; }
            .banner-wrapper .swiper-button-prev,
            .banner-wrapper .swiper-button-next { display: none !important; }
            .banner-wrapper .swiper-pagination-bullet { width: 28px; height: 5px; padding: 8px 0; }
            .banner-wrapper .swiper-pagination-bullet-active { width: 42px; }
        }
        @media (max-width: 480px) {
            .banner-wrapper .swiper { height: 380px; }
            .banner-wrapper .swiper-slide .slide-content h2 { font-size: 22px; }
            .banner-wrapper .swiper-slide .slide-content .sub { font-size: 13px; }
            .banner-wrapper .swiper-slide .slide-content .tag { font-size: 10px; padding: 2px 12px; }
            .banner-wrapper .swiper-pagination-bullet { width: 20px; height: 4px; padding: 6px 0; }
            .banner-wrapper .swiper-pagination-bullet-active { width: 32px; }
        }

        /* ============================================================
             栏目导航（原样）
             ============================================================ */
        .category-nav { padding: 50px 0 40px; background: #fff; border-bottom: 1px solid #f0f2f5; }
        .category-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
        .category-item {
            background: #f8fafc; border-radius: var(--radius);
            padding: 24px 16px 20px; text-align: center;
            transition: var(--transition); border: 1px solid #edf2f7; cursor: pointer;
        }
        .category-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: var(--primary); }
        .category-item .icon { font-size: 28px; color: var(--primary); margin-bottom: 8px; opacity: 0.6; transition: var(--transition); }
        .category-item:hover .icon { opacity: 1; }
        .category-item .name { font-size: 14px; font-weight: 600; color: #1a1a2e; }
        .category-item .count { font-size: 12px; color: var(--gray); margin-top: 2px; }
        @media (max-width: 992px) { .category-grid { grid-template-columns: repeat(3, 1fr); } }
        @media (max-width: 576px) {
            .category-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
            .category-item { padding: 16px 12px; }
        }

        /* ============================================================
             通用组件
             ============================================================ */
        .section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; flex-wrap: wrap; gap: 12px; }
        .section-header .title-group { display: flex; align-items: center; gap: 12px; }
        .section-header .title-group .badge { background: var(--primary); color: #fff; padding: 2px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; }
        .section-header h2 { font-size: 24px; font-weight: 700; color: #1a1a2e; }
        .section-header .more-link {
            font-size: 14px; color: var(--primary); font-weight: 500;
            transition: var(--transition); display: inline-flex; align-items: center; gap: 4px;
        }
        .section-header .more-link:hover { gap: 10px; opacity: 0.7; }

        /* 项目列表 */
        .programs-section { padding: 60px 0 50px; background: #f8f9fb; }
        .programs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
        .program-card {
            background: #fff; border-radius: var(--radius); overflow: hidden;
            transition: var(--transition); border: 1px solid #edf2f7;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
        }
        .program-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: var(--primary); }
        .program-card .thumb { width: 100%; height: 100px; overflow: hidden; background: #eef2f6; position: relative; }
        .program-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
        .program-card:hover .thumb img { transform: scale(1.05); }
        .program-card .thumb .tag {
            position: absolute; bottom: 8px; left: 8px;
            background: rgba(168, 0, 0, 0.85); color: #fff;
            padding: 1px 10px; border-radius: 20px;
            font-size: 10px; font-weight: 600;
            backdrop-filter: blur(4px); z-index: 2;
        }
        .program-card .thumb .date-tag {
            position: absolute; top: 8px; right: 8px;
            background: rgba(0, 0, 0, 0.5); backdrop-filter: blur(4px);
            color: #fff; padding: 1px 10px; border-radius: 20px;
            font-size: 10px; font-weight: 500; letter-spacing: 0.5px; z-index: 2;
        }
        .program-card .body { padding: 12px 14px 16px; }
        .program-card .body .title { font-size: 15px; font-weight: 700; color: #1a1a2e; margin-bottom: 4px; line-height: 1.3; }
        .program-card .body .title a { transition: var(--transition); }
        .program-card .body .title a:hover { color: var(--primary); }
        .program-card .body .desc {
            font-size: 13px; color: #475569; line-height: 1.5; margin-bottom: 8px;
            display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .program-card .body .meta {
            display: flex; flex-wrap: wrap; gap: 6px 12px;
            padding-top: 6px; border-top: 1px solid #f0f2f5;
            font-size: 12px; color: var(--gray);
        }
        .program-card .body .meta span { display: flex; align-items: center; gap: 4px; }
        .program-card .body .meta i { color: var(--primary); font-size: 12px; opacity: 0.6; }
        @media (max-width: 992px) { .programs-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 576px) { .programs-grid { grid-template-columns: 1fr; } }

        /* 为什么选择 */
        .why-creative {
            padding: 50px 0 56px; background: #ffffff;
            position: relative; overflow: hidden;
            border-top: 1px solid #f0f2f5; border-bottom: 1px solid #f0f2f5;
        }
        .why-creative::before {
            content: ''; position: absolute; top: -120px; right: -120px;
            width: 400px; height: 400px;
            background: radial-gradient(circle, rgba(168, 0, 0, 0.02) 0%, transparent 70%);
            border-radius: 50%; pointer-events: none;
        }
        .why-creative::after {
            content: ''; position: absolute; bottom: -100px; left: -100px;
            width: 300px; height: 300px;
            background: radial-gradient(circle, rgba(201, 168, 76, 0.03) 0%, transparent 70%);
            border-radius: 50%; pointer-events: none;
        }
        .why-creative .why-header { text-align: center; margin-bottom: 40px; position: relative; z-index: 1; }
        .why-creative .why-header h2 { font-size: 28px; font-weight: 900; color: #1a1a2e; letter-spacing: 0.5px; }
        .why-creative .why-header h2 span { color: #a80000; }
        .why-creative .why-header .sub-title { font-size: 15px; font-weight: 400; color: #6b7280; letter-spacing: 2px; margin-top: 6px; }
        .why-creative .why-header .divider {
            width: 48px; height: 3px;
            background: linear-gradient(90deg, #a80000, #c9a84c);
            margin: 14px auto 0; border-radius: 2px;
        }
        .why-grid-creative { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; z-index: 1; }
        .why-card {
            background: #fafbfc; border-radius: 5px; padding: 28px 20px 26px;
            border: 1px solid #edf2f7;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative; overflow: hidden; cursor: default;
            min-height: 180px; display: flex; flex-direction: column;
        }
        .why-card::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0;
            height: 4px; border-radius: 4px 4px 0 0; transition: all 0.5s ease;
        }
        .why-card:nth-child(1)::before { background: linear-gradient(90deg, #a80000, #cc3300); }
        .why-card:nth-child(2)::before { background: linear-gradient(90deg, #c9a84c, #e8d5a0); }
        .why-card:nth-child(3)::before { background: linear-gradient(90deg, #1a1a2e, #3d3d6e); }
        .why-card:nth-child(4)::before { background: linear-gradient(90deg, #1a5a3a, #3a8a5a); }
        .why-card .number-watermark {
            position: absolute; top: -6px; right: 12px;
            font-size: 64px; font-weight: 900; line-height: 1;
            pointer-events: none; user-select: none;
            transition: all 0.6s ease; font-family: 'Georgia', serif;
        }
        .why-card:nth-child(1) .number-watermark { color: rgba(168, 0, 0, 0.06); }
        .why-card:nth-child(2) .number-watermark { color: rgba(201, 168, 76, 0.06); }
        .why-card:nth-child(3) .number-watermark { color: rgba(26, 26, 46, 0.06); }
        .why-card:nth-child(4) .number-watermark { color: rgba(26, 90, 58, 0.06); }
        .why-card .icon-wrap {
            width: 50px; height: 50px; border-radius: 5px;
            display: flex; align-items: center; justify-content: center;
            font-size: 22px; margin-bottom: 14px; flex-shrink: 0;
            transition: all 0.4s ease;
        }
        .why-card:nth-child(1) .icon-wrap { background: rgba(168, 0, 0, 0.08); color: #a80000; }
        .why-card:nth-child(2) .icon-wrap { background: rgba(201, 168, 76, 0.10); color: #c9a84c; }
        .why-card:nth-child(3) .icon-wrap { background: rgba(26, 26, 46, 0.06); color: #1a1a2e; }
        .why-card:nth-child(4) .icon-wrap { background: rgba(26, 90, 58, 0.08); color: #1a5a3a; }
        .why-card h4 { font-size: 17px; font-weight: 700; color: #1a1a2e; margin-bottom: 5px; transition: color 0.3s ease; }
        .why-card p { font-size: 13px; color: #6b7280; line-height: 1.6; margin: 0; flex: 1; }
        .why-card .deco-dots {
            position: absolute; bottom: 14px; right: 18px;
            display: flex; gap: 4px; opacity: 0.2; transition: opacity 0.4s ease;
        }
        .why-card .deco-dots span { width: 5px; height: 5px; border-radius: 50%; background: #1a1a2e; }
        .why-card:nth-child(1) .deco-dots span { background: #a80000; }
        .why-card:nth-child(2) .deco-dots span { background: #c9a84c; }
        .why-card:nth-child(3) .deco-dots span { background: #1a1a2e; }
        .why-card:nth-child(4) .deco-dots span { background: #1a5a3a; }
        .why-card:hover { transform: translateY(-6px); border-color: transparent; box-shadow: 0 20px 48px rgba(0, 0, 0, 0.06); background: #ffffff; }
        .why-card:hover .number-watermark { transform: scale(1.05); opacity: 0.8; }
        .why-card:hover .icon-wrap { transform: scale(1.05) rotate(-2deg); }
        .why-card:hover h4 { color: #a80000; }
        .why-card:nth-child(2):hover h4 { color: #b8942a; }
        .why-card:nth-child(3):hover h4 { color: #2d2d5e; }
        .why-card:nth-child(4):hover h4 { color: #1a5a3a; }
        .why-card:hover .deco-dots { opacity: 0.5; }
        @media (max-width: 992px) {
            .why-creative { padding: 36px 0 40px; }
            .why-creative .why-header h2 { font-size: 26px; }
            .why-grid-creative { grid-template-columns: repeat(2, 1fr); gap: 16px; }
            .why-card { padding: 24px 20px 22px; min-height: 150px; }
        }
        @media (max-width: 768px) {
            .why-creative { padding: 28px 0 32px; }
            .why-creative .why-header h2 { font-size: 22px; }
            .why-grid-creative { grid-template-columns: 1fr 1fr; gap: 12px; }
            .why-card { padding: 18px 14px 16px; min-height: 130px; border-radius: 12px; }
            .why-card .number-watermark { font-size: 40px; top: 0px; right: 6px; }
            .why-card .icon-wrap { width: 38px; height: 38px; font-size: 16px; border-radius: 10px; margin-bottom: 8px; }
            .why-card h4 { font-size: 14px; margin-bottom: 3px; }
            .why-card p { font-size: 12px; line-height: 1.5; }
            .why-card .deco-dots { display: none; }
        }
        @media (max-width: 480px) {
            .why-grid-creative { grid-template-columns: 1fr; gap: 10px; }
            .why-card { min-height: 100px; padding: 14px 14px 12px; }
            .why-card .number-watermark { font-size: 34px; top: 2px; right: 6px; }
            .why-card .icon-wrap { width: 34px; height: 34px; font-size: 14px; margin-bottom: 6px; border-radius: 8px; }
            .why-card h4 { font-size: 14px; }
            .why-card p { font-size: 12px; }
            .why-creative .why-header h2 { font-size: 20px; }
            .why-creative { padding: 18px 0 22px; }
        }

        /* 招生简章 */
        .zsjz-section { padding: 60px 0 70px; background: #f8f9fb; border-top: 1px solid #edf2f7; }
        .zsjz-header-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; flex-wrap: wrap; gap: 12px; }
        .zsjz-header-row .title-group { display: flex; align-items: center; gap: 12px; }
        .zsjz-header-row .title-group .badge { background: var(--primary); color: #fff; padding: 2px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; }
        .zsjz-header-row .title-group h2 { font-size: 24px; font-weight: 700; color: #1a1a2e; }
        .zsjz-header-row .more-link {
            font-size: 14px; color: var(--primary); font-weight: 500;
            transition: var(--transition); display: inline-flex; align-items: center; gap: 4px;
        }
        .zsjz-header-row .more-link:hover { gap: 10px; opacity: 0.7; }
        .zsjz-desc { color: #6b7280; font-size: 15px; line-height: 1.8; margin-bottom: 24px; }
        .region-filter {
            display: flex; flex-wrap: wrap; gap: 8px;
            margin-bottom: 28px; padding-bottom: 16px;
            border-bottom: 1px solid #f0f2f5;
        }
        .region-filter .filter-label {
            font-size: 14px; font-weight: 600; color: #1a1a2e;
            margin-right: 8px; display: flex; align-items: center; gap: 4px;
        }
        .region-filter .filter-label i { color: var(--primary); }
        .region-filter .tag {
            display: inline-block; padding: 4px 16px; border-radius: 5px;
            font-size: 13px; font-weight: 500; color: #475569; background: #f0f2f5;
            transition: var(--transition); cursor: pointer;
            border: 1px solid transparent; user-select: none;
        }
        .region-filter .tag:hover { background: var(--primary-bg); color: var(--primary); }
        .region-filter .tag.active { background: var(--primary); color: #fff; border-color: var(--primary); }
        .zsjz-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
        .zsjz-card {
            background: #fff; border-radius: var(--radius); overflow: hidden;
            transition: var(--transition); border: 1px solid #edf2f7;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
            display: flex; flex-direction: column;
        }
        .zsjz-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: var(--primary); }
        .zsjz-card .zsjz-thumb { width: 100%; height: 100px; overflow: hidden; background: #eef2f6; position: relative; flex-shrink: 0; }
        .zsjz-card .zsjz-thumb img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
        .zsjz-card:hover .zsjz-thumb img { transform: scale(1.04); }
        .zsjz-card .zsjz-thumb .region-tag {
            position: absolute; bottom: 8px; left: 8px;
            background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(4px);
            color: #fff; padding: 1px 10px; border-radius: 20px;
            font-size: 10px; font-weight: 500; z-index: 2;
        }
        .zsjz-card .zsjz-thumb .date-tag {
            position: absolute; top: 8px; right: 8px;
            background: rgba(0, 0, 0, 0.5); backdrop-filter: blur(4px);
            color: #fff; padding: 1px 10px; border-radius: 20px;
            font-size: 10px; font-weight: 500; letter-spacing: 0.5px; z-index: 2;
        }
        .zsjz-card .zsjz-body { padding: 12px 16px 16px; flex: 1; display: flex; flex-direction: column; }
        .zsjz-card .zsjz-body h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; line-height: 1.3; color: #1a1a2e; }
        .zsjz-card .zsjz-body h3 a { transition: color 0.3s; }
        .zsjz-card .zsjz-body h3 a:hover { color: var(--primary); }
        .zsjz-card .zsjz-body p {
            font-size: 13px; color: #475569; line-height: 1.5; margin-bottom: 6px;
            display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
            overflow: hidden; flex: 1;
        }
        .zsjz-card .zsjz-body .card-meta {
            display: flex; flex-wrap: wrap; gap: 6px 12px;
            font-size: 12px; color: #6b7280;
            padding-top: 6px; border-top: 1px solid #f0f2f5;
        }
        .zsjz-card .zsjz-body .card-meta span { display: flex; align-items: center; gap: 4px; }
        .zsjz-card .zsjz-body .card-meta i { color: var(--primary); font-size: 12px; opacity: 0.6; }
        .zsjz-empty { grid-column: 1 / -1; text-align: center; padding: 40px 0; color: #6b7280; font-size: 15px; }
        .zsjz-pagination {
            display: flex; justify-content: center; gap: 8px;
            margin-top: 30px; padding-top: 16px;
            border-top: 1px solid #f0f2f5; flex-wrap: wrap;
        }
        .zsjz-pagination .page-btn {
            display: inline-flex; align-items: center; justify-content: center;
            min-width: 36px; height: 36px; padding: 0 12px;
            border-radius: 6px; background: #f0f2f5; color: #475569;
            font-size: 14px; font-weight: 500; cursor: pointer;
            transition: all 0.3s ease; border: 1px solid transparent;
            user-select: none;
        }
        .zsjz-pagination .page-btn:hover { background: #e8eaed; color: #1a1a2e; }
        .zsjz-pagination .page-btn.active { background: #a80000; color: #fff; border-color: #a80000; box-shadow: 0 2px 12px rgba(168, 0, 0, 0.15); }
        .zsjz-pagination .page-btn.active:hover { background: #7a0000; border-color: #7a0000; }
        @media (max-width: 992px) { .zsjz-list { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
        @media (max-width: 768px) {
            .zsjz-list { grid-template-columns: 1fr; gap: 14px; }
            .zsjz-card .zsjz-thumb { height: 100px; }
            .zsjz-card .zsjz-body { padding: 12px 14px 14px; }
            .zsjz-card .zsjz-body h3 { font-size: 15px; }
            .zsjz-header-row .title-group h2 { font-size: 22px; }
            .region-filter { gap: 6px; }
            .region-filter .tag { font-size: 12px; padding: 3px 12px; }
            .zsjz-pagination .page-btn { min-width: 32px; height: 32px; font-size: 13px; padding: 0 10px; }
        }
        @media (max-width: 480px) { .zsjz-list { grid-template-columns: 1fr; } }

        /* 申请流程 */
        .process-section {
            padding: 32px 0 28px; background: #ffffff;
            position: relative; overflow: hidden;
            border-top: 1px solid #f0f2f5;
        }
        .process-section .section-header {
            display: flex; align-items: baseline; justify-content: space-between;
            margin-bottom: 18px; flex-wrap: wrap; gap: 8px 16px;
        }
        .process-section .section-header .title-group { display: flex; align-items: baseline; gap: 10px; }
        .process-section .section-header h3 { font-size: 24px; font-weight: 700; color: #1a1a2e; }
        .process-section .section-header h3 span { color: #a80000; }
        .process-section .section-header .sub { font-size: 14px; color: #6b7280; letter-spacing: 0.5px; }
        .steps-row {
            display: flex; align-items: stretch; justify-content: space-between;
            position: relative; padding: 6px 0 2px;
        }
        .steps-row::before {
            content: ''; position: absolute; top: 20px; left: 40px; right: 40px;
            height: 2px;
            background: linear-gradient(90deg, #a80000 0%, #c9a84c 30%, #c9a84c 70%, #a80000 100%);
            opacity: 0.12; border-radius: 2px; z-index: 0;
        }
        .step-item {
            display: flex; flex-direction: column; align-items: center;
            flex: 1; position: relative; z-index: 1; min-width: 0; padding: 0 4px;
        }
        .step-item .step-dot {
            width: 80px; height: 36px; border-radius: 5px;
            background: #f0f2f5; border: 2px solid #d1d5db;
            display: flex; align-items: center; justify-content: center;
            font-size: 11px; font-weight: 600; letter-spacing: 0.8px;
            color: #9ca3af;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            flex-shrink: 0; margin-bottom: 8px; position: relative;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
            text-align: center; line-height: 1;
        }
        .step-item.done .step-dot {
            background: #a80000; color: #fff; border-color: #a80000;
            box-shadow: 0 4px 16px rgba(168, 0, 0, 0.15);
        }
        .step-item.done .step-dot::after {
            content: '\f00c'; font-family: 'Font Awesome 6 Free';
            font-weight: 900; font-size: 13px; margin-left: 6px; opacity: 0.7;
        }
        .step-item.active .step-dot {
            background: #a80000; color: #fff; border-color: #a80000;
            transform: scale(1.04); box-shadow: 0 6px 24px rgba(168, 0, 0, 0.25);
        }
        .step-item.active .step-dot::before {
            content: ''; position: absolute; inset: -4px; border-radius: 34px;
            border: 2px solid rgba(201, 168, 76, 0.25);
            animation: pulse-ring 2s ease-in-out infinite;
        }
        @keyframes pulse-ring {
            0% { transform: scale(1); opacity: 0.6; }
            50% { transform: scale(1.08); opacity: 0; }
            100% { transform: scale(1.08); opacity: 0; }
        }
        .step-item .step-info { text-align: center; width: 100%; }
        .step-item .step-info .title {
            font-size: 14px; font-weight: 600; color: #1a1a2e;
            white-space: nowrap; display: block;
        }
        .step-item .step-info .desc {
            font-size: 12px; color: #6b7280;
            white-space: nowrap; display: block; margin-top: 1px; opacity: 0.7;
        }
        .step-item:hover .step-dot { transform: scale(1.04); box-shadow: 0 6px 20px rgba(168, 0, 0, 0.10); }
        .step-item:hover .step-info .title { color: #a80000; }
        @media (max-width: 992px) {
            .process-section { padding: 24px 0 20px; }
            .process-section .section-header h3 { font-size: 22px; }
            .step-item .step-dot { width: 68px; height: 32px; font-size: 10px; margin-bottom: 6px; }
            .step-item .step-info .title { font-size: 13px; }
            .step-item .step-info .desc { font-size: 11px; }
            .steps-row::before { top: 17px; left: 24px; right: 24px; }
        }
        @media (max-width: 768px) {
            .process-section .section-header { flex-direction: column; align-items: flex-start; gap: 4px; margin-bottom: 14px; }
            .process-section .section-header .title-group { flex-wrap: wrap; }
            .process-section .section-header h3 { font-size: 20px; }
            .steps-row { flex-wrap: wrap; justify-content: center; gap: 10px 6px; }
            .steps-row::before { display: none; }
            .step-item { flex: 0 1 calc(33.33% - 6px); min-width: 80px; padding: 10px 6px 8px; background: #f8fafc; border-radius: 12px; border: 1px solid #edf2f7; transition: all 0.3s; }
            .step-item .step-dot { width: 56px; height: 28px; font-size: 9px; margin-bottom: 4px; border-radius: 20px; }
            .step-item .step-info .title { font-size: 12px; white-space: normal; }
            .step-item .step-info .desc { display: none; }
            .step-item.active .step-dot { transform: scale(1); }
            .step-item.active .step-dot::before { display: none; }
            .step-item.done .step-dot::after { font-size: 10px; }
        }
        @media (max-width: 480px) {
            .step-item { flex: 0 1 calc(50% - 4px); min-width: 70px; padding: 8px 6px 6px; }
            .step-item .step-dot { width: 48px; height: 24px; font-size: 8px; border-radius: 16px; }
            .step-item .step-info .title { font-size: 11px; }
            .process-section .section-header h3 { font-size: 18px; }
            .process-section { padding: 16px 0 14px; }
        }

        /* 最新资讯 */
        .news-section { padding: 60px 0 70px; background: #f8f9fb; }
        .news-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
        .news-card {
            background: #fff; border-radius: var(--radius); overflow: hidden;
            transition: var(--transition); border: 1px solid #edf2f7;
            display: flex; flex-direction: column;
        }
        .news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: var(--primary); }
        .news-card .news-thumb { width: 100%; height: 100px; overflow: hidden; background: #eef2f6; flex-shrink: 0; position: relative; }
        .news-card .news-thumb img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
        .news-card:hover .news-thumb img { transform: scale(1.04); }
        .news-card .news-thumb .date-tag {
            position: absolute; bottom: 8px; left: 8px;
            background: #a80000; color: #fff;
            padding: 2px 10px; border-radius: 20px;
            font-size: 10px; font-weight: 500; letter-spacing: 0.5px;
            z-index: 2; display: inline-flex; align-items: center; gap: 4px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
        }
        .news-card .news-thumb .date-tag i { font-size: 10px; }
        .news-card .news-body { padding: 14px 16px 16px; flex: 1; display: flex; flex-direction: column; }
        .news-card .news-body h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; line-height: 1.3; }
        .news-card .news-body h4 a { transition: var(--transition); }
        .news-card .news-body h4 a:hover { color: var(--primary); }
        .news-card .news-body .summary {
            font-size: 13px; color: #475569; line-height: 1.5;
            display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
            overflow: hidden; flex: 1; margin-bottom: 6px;
        }
        .news-card .news-body .meta {
            font-size: 11px; color: var(--gray);
            display: flex; gap: 12px; flex-wrap: wrap;
            padding-top: 6px; border-top: 1px solid #f0f2f5; margin-top: auto;
        }
        .news-card .news-body .meta span { display: flex; align-items: center; gap: 4px; }
        .news-card .news-body .meta i { color: var(--primary); font-size: 11px; opacity: 0.5; }
        @media (max-width: 992px) { .news-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
        @media (max-width: 768px) {
            .news-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
            .news-card .news-body { padding: 12px 14px 14px; }
            .news-card .news-body h4 { font-size: 14px; }
            .news-card .news-body .summary { font-size: 12px; }
        }
        @media (max-width: 480px) { .news-grid { grid-template-columns: 1fr; } }

        /* 常见问题 */
        .faq-section { padding: 60px 0 70px; background: #fff; }
        .faq-section .section-title { text-align: center; font-size: 28px; font-weight: 700; margin-bottom: 8px; color: #1a1a2e; }
        .faq-section .section-sub { text-align: center; color: var(--gray); font-size: 16px; margin-bottom: 40px; }
        .faq-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1400px; margin: 0 auto; }
        .faq-item {
            background: #f8fafc; border-radius: var(--radius);
            border: 1px solid #edf2f7; overflow: hidden;
            transition: var(--transition); cursor: pointer;
        }
        .faq-item:hover { border-color: rgba(168, 0, 0, 0.12); background: #fafafa; }
        .faq-item.open { border-color: var(--primary); box-shadow: 0 2px 16px rgba(168, 0, 0, 0.04); background: #fff; }
        .faq-item .faq-header {
            display: flex; align-items: center; gap: 8px;
            padding: 10px 12px; justify-content: space-between;
        }
        .faq-item .faq-header .q-icon {
            flex-shrink: 0; width: 22px; height: 22px;
            background: var(--primary-bg); border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            color: var(--primary); font-weight: 700; font-size: 10px;
            transition: var(--transition);
        }
        .faq-item.open .faq-header .q-icon { background: var(--primary); color: #fff; }
        .faq-item .faq-header .q-text {
            font-weight: 600; font-size: 13px; color: #1a1a2e;
            flex: 1; line-height: 1.3; max-height: 3.9em; overflow: hidden;
            display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
        }
        .faq-item .faq-header .q-arrow {
            color: var(--gray); font-size: 11px;
            transition: transform 0.4s ease; flex-shrink: 0; margin-left: 4px;
        }
        .faq-item.open .faq-header .q-arrow { transform: rotate(180deg); color: var(--primary); }
        .faq-item .faq-answer {
            max-height: 0; overflow: hidden;
            transition: max-height 0.45s ease, padding 0.35s ease;
            padding: 0 12px; color: #475569; font-size: 13px; line-height: 1.7;
        }
        .faq-item.open .faq-answer { max-height: 300px; padding: 0 12px 14px; }
        .faq-answer .more-link {
            color: var(--primary); font-weight: 600; font-size: 13px;
            margin-left: 4px; transition: var(--transition); display: inline-block;
        }
        .faq-answer .more-link:hover { opacity: 0.7; transform: translateX(4px); }
        @media (max-width: 992px) { .faq-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
        @media (max-width: 768px) {
            .faq-grid { grid-template-columns: 1fr; gap: 10px; }
            .faq-item .faq-header { padding: 10px 12px; }
            .faq-item .faq-header .q-text { font-size: 13px; }
            .faq-item .faq-answer { font-size: 13px; padding: 0 12px; }
            .faq-item.open .faq-answer { padding: 0 12px 12px; }
            .faq-item .faq-header .q-icon { width: 22px; height: 22px; font-size: 10px; }
        }

        /* 我们的服务 */
        .services-section {
            background: #f8f9fb; padding: 50px 0 56px;
            border-top: 1px solid #f0f2f5; border-bottom: 1px solid #f0f2f5;
        }
        .services-section .services-header {
            display: flex; align-items: baseline; justify-content: space-between;
            margin-bottom: 28px; flex-wrap: wrap; gap: 12px;
        }
        .services-section .services-header .title-group { display: flex; align-items: baseline; gap: 14px; }
        .services-section .services-header .title-group .label {
            font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
            color: #86868b; text-transform: uppercase;
        }
        .services-section .services-header .title-group .line { width: 1px; height: 22px; background: #d2d2d7; }
        .services-section .services-header .title-group h3 { font-size: 24px; font-weight: 600; color: #1a1a2e; letter-spacing: -0.01em; }
        .services-section .services-header .title-group h3 span { color: #a80000; }
        .services-section .services-header .sub-text { font-size: 14px; color: #86868b; font-weight: 400; letter-spacing: 0.01em; }
        .services-section .services-row {
            display: flex; flex-wrap: nowrap; gap: 16px;
            overflow-x: auto; padding: 4px 2px 8px;
        }
        .services-section .services-row::-webkit-scrollbar { display: none; }
        .services-section .services-row { -ms-overflow-style: none; scrollbar-width: none; }
        .services-section .service-item {
            flex: 1 1 0; min-width: 130px;
            background: #ffffff; border-radius: 16px;
            padding: 20px 14px 18px; text-align: center;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 1px solid rgba(0, 0, 0, 0.03); position: relative;
        }
        .services-section .service-item:hover {
            background: #ffffff; border-color: rgba(168, 0, 0, 0.04);
            transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
        }
        .services-section .service-item::before {
            content: ''; position: absolute; top: 0; left: 20px; right: 20px;
            height: 2px; background: linear-gradient(90deg, #a80000, #c9a84c);
            opacity: 0; transition: opacity 0.4s ease; border-radius: 0 0 2px 2px;
        }
        .services-section .service-item:hover::before { opacity: 1; }
        .services-section .service-item .icon-wrap {
            width: 44px; height: 44px; border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            font-size: 18px; margin: 0 auto 10px;
            background: rgba(168, 0, 0, 0.06); color: #a80000;
            transition: all 0.4s ease;
        }
        .services-section .service-item:hover .icon-wrap { background: #a80000; color: #fff; transform: scale(1.02); }
        .services-section .service-item h4 { font-size: 15px; font-weight: 600; color: #1a1a2e; margin-bottom: 4px; letter-spacing: -0.01em; }
        .services-section .service-item p { font-size: 12px; font-weight: 400; color: #86868b; line-height: 1.5; margin: 0; letter-spacing: 0.01em; }
        .services-section .service-item.highlight { border-color: rgba(168, 0, 0, 0.06); background: rgba(168, 0, 0, 0.015); }
        .services-section .service-item.highlight .icon-wrap { background: rgba(168, 0, 0, 0.08); }
        @media (max-width: 1024px) {
            .services-section { padding: 36px 0 40px; }
            .services-section .service-item { min-width: 110px; padding: 16px 10px 14px; }
            .services-section .service-item .icon-wrap { width: 38px; height: 38px; font-size: 16px; margin-bottom: 8px; }
            .services-section .service-item h4 { font-size: 14px; }
            .services-section .service-item p { font-size: 11px; }
        }
        @media (max-width: 768px) {
            .services-section { padding: 28px 0 32px; }
            .services-section .services-header { flex-direction: column; align-items: flex-start; gap: 4px; margin-bottom: 20px; }
            .services-section .services-header .title-group h3 { font-size: 20px; }
            .services-section .services-header .sub-text { font-size: 13px; }
            .services-section .services-row { flex-wrap: wrap; gap: 12px; }
            .services-section .service-item { flex: 1 1 calc(50% - 6px); min-width: 90px; padding: 14px 10px 12px; border-radius: 14px; }
            .services-section .service-item .icon-wrap { width: 34px; height: 34px; font-size: 14px; border-radius: 10px; margin-bottom: 6px; }
            .services-section .service-item h4 { font-size: 13px; }
            .services-section .service-item p { font-size: 11px; }
        }
        @media (max-width: 480px) {
            .services-section { padding: 20px 0 24px; }
            .services-section .services-header .title-group .label { font-size: 10px; }
            .services-section .services-header .title-group .line { height: 16px; }
            .services-section .services-header .title-group h3 { font-size: 18px; }
            .services-section .services-header .sub-text { font-size: 12px; }
            .services-section .service-item { flex: 1 1 calc(50% - 6px); min-width: 70px; padding: 12px 6px 10px; border-radius: 12px; }
            .services-section .service-item .icon-wrap { width: 28px; height: 28px; font-size: 12px; border-radius: 8px; margin-bottom: 4px; }
            .services-section .service-item h4 { font-size: 12px; }
            .services-section .service-item p { font-size: 10px; line-height: 1.3; }
        }

        /* ============================================================
             表单 — 两端对齐，等高排列
             ============================================================ */
        .form-section {
            padding: 50px 0 56px;
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
            color: #fff;
        }
        .form-section .container { max-width: 1400px; }
        .form-section h3 {
            font-size: 28px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 24px;
            color: #fff;
        }
        .form-inline {
            display: flex;
            flex-wrap: nowrap;
            align-items: stretch;
            gap: 12px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: var(--radius);
            padding: 12px;
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        .form-inline .field {
            flex: 1 1 0;
            min-width: 0;
            display: flex;
        }
        .form-inline .field input,
        .form-inline .field select {
            width: 100%;
            padding: 10px 14px;
            border-radius: 6px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            background: rgba(255, 255, 255, 0.92);
            font-size: 13px;
            color: #1a1a2e;
            transition: var(--transition);
            font-family: inherit;
            appearance: auto;
            outline: none;
            box-sizing: border-box;
        }
        .form-inline .field input::placeholder { color: #6b7280; opacity: 0.7; }
        .form-inline .field input:focus,
        .form-inline .field select:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
            background: #fff;
        }
        .form-inline .field select { cursor: pointer; padding-right: 24px; }
        .form-inline .submit-wrap {
            flex: 1 1 0;
            min-width: 0;
            display: flex;
        }
        .form-inline .submit-btn {
            background: var(--gold);
            color: #0a2540;
            padding: 10px 12px;
            border-radius: 6px;
            font-weight: 700;
            font-size: 14px;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 16px rgba(201, 168, 76, 0.25);
            white-space: nowrap;
            width: 100%;
            text-align: center;
            box-sizing: border-box;
        }
        .form-inline .submit-btn:hover {
            background: #d4b05a;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
        }
        @media (max-width: 992px) {
            .form-inline { flex-wrap: wrap; gap: 10px; padding: 12px 14px; }
            .form-inline .field { flex: 1 1 140px; min-width: 100px; }
            .form-inline .submit-wrap { flex: 1 1 140px; min-width: 100px; }
        }
        @media (max-width: 768px) {
            .form-section h3 { font-size: 22px; }
            .form-inline {
                flex-direction: column;
                align-items: stretch;
                gap: 10px;
                padding: 14px;
            }
            .form-inline .field { flex: 1 1 auto; min-width: 0; }
            .form-inline .submit-wrap { flex: 1 1 auto; min-width: 0; }
            .form-inline .submit-btn { width: 100%; padding: 12px 20px; font-size: 15px; }
        }
        @media (max-width: 480px) {
            .form-section { padding: 36px 0 40px; }
            .form-section h3 { font-size: 18px; }
        }

        /* 页脚 */
        .site-footer {
            background: #1a1a2e; color: rgba(255, 255, 255, 0.7);
            padding: 48px 0 28px; border-top: 3px solid var(--primary);
        }
        .footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1.2fr 1.2fr; gap: 40px; margin-bottom: 28px; }
        .footer-grid .col h4 {
            color: #fff; font-size: 16px; font-weight: 700;
            margin-bottom: 14px; position: relative; padding-bottom: 8px;
        }
        .footer-grid .col h4::after {
            content: ''; position: absolute; bottom: 0; left: 0;
            width: 28px; height: 2px; background: var(--primary);
        }
        .footer-grid .col p,
        .footer-grid .col li { font-size: 13px; line-height: 2; color: rgba(255, 255, 255, 0.55); }
        .footer-grid .col ul { list-style: none; }
        .footer-grid .col ul li a { color: rgba(255, 255, 255, 0.55); transition: var(--transition); }
        .footer-grid .col ul li a:hover { color: #fff; padding-left: 4px; }
        .footer-grid .col-contact ul li { display: flex; align-items: center; gap: 10px; color: rgba(255, 255, 255, 0.55); }
        .footer-grid .col-contact ul li i { width: 18px; color: var(--primary); font-size: 14px; text-align: center; }
        .footer-grid .col-qr { display: flex; flex-direction: column; align-items: center; text-align: center; }
        .footer-grid .col-qr h4 {
            color: #fff; font-size: 16px; font-weight: 700;
            margin-bottom: 12px; position: relative; padding-bottom: 8px;
            display: inline-block;
        }
        .footer-grid .col-qr h4::after {
            content: ''; position: absolute; bottom: 0; left: 50%;
            transform: translateX(-50%); width: 28px; height: 2px; background: var(--primary);
        }
        .qr-row { display: flex; gap: 20px; justify-content: center; align-items: flex-start; flex-wrap: wrap; }
        .qr-item { display: flex; flex-direction: column; align-items: center; gap: 5px; }
        .qr-item .qr-box {
            width: 84px; height: 84px; background: #ffffff;
            border-radius: var(--radius); padding: 4px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            display: flex; align-items: center; justify-content: center;
            overflow: hidden; transition: var(--transition);
        }
        .qr-item .qr-box:hover { border-color: var(--primary); box-shadow: 0 0 20px rgba(168, 0, 0, 0.15); }
        .qr-item .qr-box img { width: 100%; height: 100%; object-fit: contain; }
        .qr-item .qr-label { font-size: 12px; color: rgba(255, 255, 255, 0.5); font-weight: 400; letter-spacing: 0.5px; }
        .footer-grid .col .social-icons { display: flex; gap: 12px; margin-top: 10px; }
        .footer-grid .col .social-icons a {
            display: inline-flex; align-items: center; justify-content: center;
            width: 34px; height: 34px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%; color: #fff; font-size: 16px;
            transition: var(--transition);
        }
        .footer-grid .col .social-icons a:hover { background: var(--primary); transform: translateY(-2px); }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 18px; display: flex;
            justify-content: space-between; align-items: center;
            flex-wrap: wrap; gap: 10px;
            font-size: 13px; color: rgba(255, 255, 255, 0.35);
        }
        .footer-bottom a { color: rgba(255, 255, 255, 0.4); transition: var(--transition); }
        .footer-bottom a:hover { color: #fff; }
        .footer-bottom .links { display: flex; gap: 16px; }
        @media (max-width: 992px) {
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
            .footer-grid .col-qr { grid-column: span 1; text-align: center; }
        }
        @media (max-width: 768px) {
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
            .footer-grid .col-qr { grid-column: span 1; text-align: center; }
            .qr-item .qr-box { width: 68px; height: 68px; }
            .qr-row { gap: 14px; }
            .site-footer { padding: 32px 0 20px; }
        }
        @media (max-width: 576px) {
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
            .footer-grid .col-qr { grid-column: span 1; text-align: center; }
            .site-footer { padding: 28px 0 16px; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .footer-bottom .links { flex-wrap: wrap; justify-content: center; }
            .qr-item .qr-box { width: 60px; height: 60px; }
            .qr-row { gap: 12px; }
            .qr-item .qr-label { font-size: 10px; }
        }
        @media (max-width: 768px) { .section-header h2 { font-size: 22px; } }
        @media (max-width: 576px) { .container { padding: 0 16px; } }