        :root {
            --primary: #a80000;
            --primary-dark: #7a0000;
            --primary-bg: #fff5f5;
            --gold: #c9a84c;
            --gray: #6b7280;
            --border: #e5e7eb;
            --radius: 8px;
            --shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
            --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.10);
            --nav-height: 68px;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Microsoft YaHei', 'PingFang SC', 'Noto Sans SC', sans-serif;
            background: #f7f8fa;
            color: #1a1a2e;
            line-height: 1.6;
        }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; display: block; }
        .container { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

        /* ===== 导航 ===== */
        .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: fixed; top: 0; left: 0; right: 0;
            z-index: 100;
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
            transition: transform 0.4s ease, opacity 0.3s ease;
            height: var(--nav-height);
        }
        .special-nav.hidden { transform: translateY(-100%); opacity: 0; }
        .special-nav .container {
            display: flex; align-items: center; justify-content: space-between;
            height: var(--nav-height); gap: 16px;
        }
		        /* ===== 导航下划线（鼠标悬停 + 当前页） ===== */
        .special-nav .nav-links > li > a::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 2px;
            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-links > li > a:hover,
        .special-nav .nav-links > li > a.active {
            background: var(--primary-bg);
            color: var(--primary);
        }

        /* 移动端不要下划线 */
        @media (max-width: 768px) {
            .special-nav .nav-links > li > a::after {
                display: none;
            }
        }
        .logo-brand { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
        .logo-brand .logo-badge {
            width: 44px; height: 44px; border-radius: 10px;
            background: radial-gradient(circle at 40% 30%, #cc0000, #7a0000 80%);
            border: 2.5px solid var(--gold);
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
        }
        .logo-brand .logo-badge i { font-size: 20px; color: #fff; }
        .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 .badge {
            font-size: 9px; font-weight: 500; color: #9ca3af;
            padding: 0 10px; border-radius: 20px;
            border: 1px solid rgba(201, 168, 76, 0.06);
        }
        .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 .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: all 0.3s ease;
            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-cta {
            background: var(--primary); color: #fff !important;
            padding: 6px 20px !important; border-radius: 30px;
            font-weight: 600; transition: all 0.3s ease;
        }
        .special-nav .nav-cta:hover {
            background: var(--primary-dark) !important; transform: translateY(-2px);
        }
        @media (max-width: 768px) {
            .special-nav .container { height: auto; padding: 10px 20px; flex-wrap: wrap; }
            .logo-brand .logo-badge { width: 38px; height: 38px; }
            .logo-brand .logo-badge i { font-size: 17px; }
            .logo-brand .title-group .line-bottom .master { font-size: 19px; }
            .special-nav .nav-links > li > a { padding: 4px 10px; font-size: 13px; }
            :root { --nav-height: auto; }
        }

        /* ===== BANNER ===== */
        .page-header {
            padding: 28px 0 20px;
            background: linear-gradient(135deg, #1a1a2e 0%, var(--primary-dark) 100%);
            color: #fff; margin-top: var(--nav-height);
        }
        .page-header .container {
            display: flex; align-items: center; justify-content: space-between;
            flex-wrap: wrap; gap: 12px;
        }
        .page-header .left h1 { font-size: 26px; font-weight: 900; letter-spacing: 1px; }
        .page-header .left h1 i { color: var(--gold); margin-right: 8px; }
        .page-header .left .sub { font-size: 14px; opacity: 0.8; font-weight: 300; }
        .page-header .right { display: flex; gap: 20px; flex-wrap: wrap; }
        .page-header .right .stat {
            text-align: center; background: rgba(255,255,255,0.06);
            padding: 6px 16px; border-radius: var(--radius);
            border: 1px solid rgba(255,255,255,0.06);
        }
        .page-header .right .stat .num {
            font-size: 20px; font-weight: 900; color: var(--gold);
        }
        .page-header .right .stat .label { font-size: 11px; opacity: 0.7; }
        @media (max-width: 768px) {
            .page-header { padding: 20px 0 16px; margin-top: 0; }
            .page-header .left h1 { font-size: 20px; }
            .page-header .right .stat { padding: 4px 12px; }
            .page-header .right .stat .num { font-size: 16px; }
            .special-nav { position: relative; }
            .page-header { margin-top: 0; }
        }

        /* ===== 筛选栏 ===== */
        .filter-section {
            background: #fff; border-bottom: 1px solid var(--border);
            padding: 20px 0; position: sticky; top: 0; z-index: 99;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
        }
        .filter-section .container {
            display: flex; flex-direction: column; gap: 6px;
        }
        .filter-group {
            display: flex; align-items: center; flex-wrap: wrap;
            gap: 3px 8px; width: 100%;
        }
        .filter-group .label {
            font-size: 12px; font-weight: 600; color: var(--gray);
            width: 72px; flex-shrink: 0;
        }
        .filter-group .label i {
            color: var(--primary); margin-right: 3px; width: 14px;
        }
        .filter-group .tag {
            padding: 2px 12px; border-radius: 5px;
            font-size: 12px; font-weight: 500;
            color: #475569; background: #f0f2f5;
            transition: all 0.2s ease; cursor: pointer;
            border: 1px solid transparent;
            user-select: none; white-space: nowrap;
            flex-shrink: 0;
        }
        .filter-group .tag:hover {
            background: var(--primary-bg); color: var(--primary);
        }
        .filter-group .tag.active {
            background: var(--primary); color: #fff;
            border-color: var(--primary);
        }
        .filter-group .tag.tag-hidden { display: none; }
        .filter-group .tag-more {
            padding: 2px 14px; border-radius: 5px;
            font-size: 12px; font-weight: 500;
            color: #fff; background: var(--primary);
            border: 1px solid var(--primary);
            cursor: pointer; transition: all 0.2s ease;
            user-select: none;
            display: inline-flex; align-items: center; gap: 4px;
            white-space: nowrap; flex-shrink: 0;
        }
        .filter-group .tag-more:hover {
            background: var(--primary-dark); border-color: var(--primary-dark);
        }
        .filter-group .tag-more::after {
            content: '\f078';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900; font-size: 8px;
            opacity: 0.85;
        }
        .filter-group.expanded .tag-more::after {
            content: '\f077';
        }
        .filter-group.expanded .tag-more {
            background: #6b7280; border-color: #6b7280;
        }
        .filter-group.expanded .tag-more:hover {
            background: #4b5563; border-color: #4b5563;
        }

        .filter-search {
            display: flex; align-items: center; gap: 4px;
        }
        .filter-search .search-icon { color: var(--gray); font-size: 13px; min-width: 14px; }
        .filter-search input {
            padding: 4px 12px; border: 1px solid var(--border);
            border-radius: 30px; font-size: 12px; outline: none;
            width: 200px; transition: all 0.2s ease; background: #fafbfc;
        }
        .filter-search input:focus {
            border-color: var(--primary); background: #fff;
            box-shadow: 0 0 0 3px rgba(168, 0, 0, 0.06);
        }
        @media (max-width: 768px) {
            .filter-section { padding: 8px 0; }
            .filter-section .container { gap: 4px; }
            .filter-group .label { width: 64px; font-size: 11px; }
            .filter-group .tag { font-size: 11px; padding: 2px 8px; }
            .filter-group .tag-more { font-size: 11px; padding: 2px 10px; }
            .filter-search input { width: 100%; }
        }

        /* ===== 列表区域 ===== */
        .list-section { padding: 20px 0 20px; }
        .list-header {
            display: flex; align-items: center; justify-content: space-between;
            margin-bottom: 14px; flex-wrap: wrap; gap: 6px;
        }
        .list-header .info { font-size: 13px; color: var(--gray); }
        .list-header .info strong { color: var(--primary); font-weight: 700; }

        .zsjz-list {
            display: grid; grid-template-columns: repeat(4, 1fr);
            gap: 16px; padding: 0; margin: 0 0 20px 0; list-style: none;
        }
        .zsjz-card {
            background: #fff; border-radius: var(--radius); overflow: hidden;
            transition: all 0.25s ease; border: 1px solid var(--border);
            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: 90px; overflow: hidden;
            background: #eef2f6; position: relative; flex-shrink: 0;
        }
        .zsjz-card .zsjz-thumb img {
            width: 100%; height: 100%; object-fit: cover;
            transition: transform 0.3s ease;
        }
        .zsjz-card:hover .zsjz-thumb img { transform: scale(1.04); }

        .zsjz-card .zsjz-thumb .region-tags {
            position: absolute;
            bottom: 6px;
            left: 6px;
            display: flex;
            flex-wrap: wrap;
            gap: 3px;
            max-width: calc(100% - 60px);
            z-index: 2;
        }
        .zsjz-card .zsjz-thumb .region-tags .region-tag {
            background: rgba(0, 0, 0, 0.65);
            backdrop-filter: blur(4px);
            color: #fff;
            padding: 1px 8px;
            border-radius: 20px;
            font-size: 9px;
            font-weight: 500;
            line-height: 1.4;
            white-space: nowrap;
        }

        .zsjz-card .zsjz-thumb .date-tag {
            position: absolute; top: 6px; right: 6px;
            background: rgba(0, 0, 0, 0.5); backdrop-filter: blur(4px);
            color: #fff; padding: 1px 8px; border-radius: 20px;
            font-size: 9px; font-weight: 500; letter-spacing: 0.5px; z-index: 2;
        }
        .zsjz-card .zsjz-body {
            padding: 10px 14px 14px; flex: 1;
            display: flex; flex-direction: column;
        }
        .zsjz-card .zsjz-body h3 {
            font-size: 14px; font-weight: 700; margin-bottom: 3px;
            line-height: 1.3; color: #1a1a2e;
        }
        .zsjz-card .zsjz-body h3 a { transition: color 0.2s; }
        .zsjz-card .zsjz-body h3 a:hover { color: var(--primary); }
        .zsjz-card .zsjz-body p {
            font-size: 12px; 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: 4px 10px;
            font-size: 11px; color: #6b7280;
            padding-top: 5px; border-top: 1px solid #f0f2f5;
        }
        .zsjz-card .zsjz-body .card-meta span {
            display: flex; align-items: center; gap: 3px;
        }
        .zsjz-card .zsjz-body .card-meta i {
            color: var(--primary); font-size: 11px;
            opacity: 0.6; width: 14px; text-align: center;
        }

        .zsjz-empty {
            grid-column: 1 / -1; text-align: center;
            padding: 30px 0; color: var(--gray); font-size: 14px;
        }
        .zsjz-empty i {
            font-size: 24px; color: #d1d5db;
            display: block; margin-bottom: 6px;
        }

        /* ===== 分页 ===== */
        .zsjz-pagination {
            display: flex; justify-content: center;
            margin-top: 20px; padding-top: 14px;
            border-top: 1px solid var(--border);
        }
        .zsjz-pagination ul.pagination {
            display: flex; gap: 5px; flex-wrap: wrap;
            margin: 0; padding: 0; list-style: none;
        }
        .zsjz-pagination ul.pagination li { display: inline-block; }
        .zsjz-pagination ul.pagination li a,
        .zsjz-pagination ul.pagination li span {
            display: inline-flex; align-items: center; justify-content: center;
            min-width: 32px; height: 32px; padding: 0 10px;
            border-radius: 6px; background: #f0f2f5; color: #475569;
            font-size: 13px; font-weight: 500;
            border: 1px solid transparent;
            transition: all 0.2s ease; text-decoration: none; cursor: pointer;
        }
        .zsjz-pagination ul.pagination li a:hover {
            background: #e8eaed; color: #1a1a2e;
        }
        .zsjz-pagination ul.pagination li.active a,
        .zsjz-pagination ul.pagination li.active span {
            background: var(--primary); color: #fff;
            border-color: var(--primary);
        }
        .zsjz-pagination ul.pagination li.disabled a,
        .zsjz-pagination ul.pagination li.disabled span {
            opacity: 0.4; cursor: not-allowed; pointer-events: none;
        }

        /* ===== 响应式 ===== */
        @media (max-width: 992px) {
            .zsjz-list { grid-template-columns: repeat(2, 1fr); gap: 14px; }
        }
        @media (max-width: 768px) {
            .zsjz-list { grid-template-columns: 1fr; gap: 12px; }
            .zsjz-card .zsjz-thumb { height: 100px; }
            .zsjz-card .zsjz-body { padding: 10px 14px 12px; }
            .zsjz-card .zsjz-body h3 { font-size: 14px; }
        }
        @media (max-width: 480px) {
            .zsjz-list { grid-template-columns: 1fr; }
        }

        /* ============================================================
             表单
             ============================================================ */
        .form-section {
            padding: 50px 0 56px;
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
            color: #fff;
        }
        .form-section .container { max-width: 1200px; }
        .form-section h3 {
            font-size: 28px; font-weight: 700;
            text-align: center; margin-bottom: 20px; color: #fff;
        }
        .form-inline {
            display: flex; flex-wrap: nowrap; align-items: center;
            gap: 10px; background: rgba(255, 255, 255, 0.06);
            border-radius: var(--radius); padding: 8px 12px;
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            justify-content: space-between;
        }
        .form-inline .field { flex: 1 1 0; min-width: 0; }
        .form-inline .field input,
        .form-inline .field select {
            width: 100%; padding: 8px 12px; 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;
        }
        .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; }
        .form-inline .submit-btn {
            background: var(--gold); color: #0a2540;
            padding: 8px 12px; border-radius: 50px;
            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;
        }
        .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: 8px; padding: 12px 14px; }
            .form-inline .field { flex: 1 1 120px; min-width: 100px; }
            .form-inline .submit-wrap { flex: 1 1 120px; min-width: 100px; }
            .form-inline .submit-btn { padding: 8px 16px; }
        }
        @media (max-width: 768px) {
            .form-section h3 { font-size: 22px; }
            .form-inline { flex-direction: column; align-items: stretch; gap: 8px; 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: 10px 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: 30px 0 20px; border-top: 3px solid var(--primary);
        }
        .footer-grid {
            display: grid; grid-template-columns: 2.2fr 1fr 1.2fr 1.2fr;
            gap: 28px; margin-bottom: 20px;
        }
        .footer-grid .col h4 {
            color: #fff; font-size: 14px; font-weight: 700;
            margin-bottom: 8px; padding-bottom: 4px;
            border-bottom: 2px solid var(--primary); display: inline-block;
        }
        .footer-grid .col p,
        .footer-grid .col li {
            font-size: 12px; line-height: 1.8;
            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: all 0.2s ease;
        }
        .footer-grid .col ul li a:hover { color: #fff; padding-left: 4px; }
        .footer-grid .col-contact ul li {
            display: flex; align-items: center; gap: 8px;
        }
        .footer-grid .col-contact ul li i {
            width: 16px; color: var(--primary);
            font-size: 12px; text-align: center;
        }
        .footer-grid .col-qr {
            display: flex; flex-direction: column;
            align-items: center; text-align: center;
        }
        .qr-row { display: flex; gap: 14px; justify-content: center; }
        .qr-item .qr-box {
            width: 64px; height: 64px; background: #fff;
            border-radius: var(--radius); padding: 4px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            display: flex; align-items: center; justify-content: center;
            overflow: hidden;
        }
        .qr-item .qr-box img { width: 100%; height: 100%; object-fit: contain; }
        .qr-item .qr-label { font-size: 10px; color: rgba(255, 255, 255, 0.5); }
        .footer-grid .col .social-icons { display: flex; gap: 8px; margin-top: 6px; }
        .footer-grid .col .social-icons a {
            display: inline-flex; align-items: center; justify-content: center;
            width: 28px; height: 28px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%; color: #fff; font-size: 13px;
            transition: all 0.2s ease;
        }
        .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: 14px; display: flex;
            justify-content: space-between; align-items: center;
            flex-wrap: wrap; gap: 6px;
            font-size: 11px; color: rgba(255, 255, 255, 0.35);
        }
        .footer-bottom a {
            color: rgba(255, 255, 255, 0.4); transition: all 0.2s ease;
        }
        .footer-bottom a:hover { color: #fff; }
        .footer-bottom .links { display: flex; gap: 12px; }
        @media (max-width: 992px) {
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
        }
        @media (max-width: 768px) {
            .footer-grid { grid-template-columns: 1fr; gap: 16px; }
            .qr-item .qr-box { width: 56px; height: 56px; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .footer-bottom .links { flex-wrap: wrap; justify-content: center; }
        } */