        /* ============ 全局重置与容器 ============ */
		.page-wrapper {
		  margin: 0;
		  padding: 0;
		  font-family: "PingFang SC", "Noto Sans SC", "Microsoft YaHei", "Helvetica Neue", system-ui, -apple-system, sans-serif;
		  background-color: #f5f5f0;
		  background-repeat: repeat-y;
		  background-size: 100% auto;
		  background-position: left top;
		  color: #3a3632;
		  line-height: 1.7;
		  -webkit-font-smoothing: antialiased;
		  -moz-osx-font-smoothing: grayscale;
		  overflow-x: hidden;
		}
		
        .page-wrapper a {
            text-decoration: none;
            color: inherit;
        }
        .page-wrapper img {
            display: block;
            max-width: 100%;
        }
        .page-wrapper h1,
        .page-wrapper h2,
        .page-wrapper h3,
        .page-wrapper h4,
        .page-wrapper p {
            margin: 0;
            padding: 0;
        }

        :root {
            --nav-height: 56px;
            --color-red-bright: #b71c1c;
            --color-gold: #8b6914;
            --color-gold-light: #a67c1e;
            --color-bg-card: rgba(255, 255, 255, 0.92);
            --color-bg-card-alt: rgba(252, 250, 248, 0.95);
            --color-border: #d5cfc8;
            --color-text-dim: #6b6560;
            --radius-sm: 4px;
            --radius-md: 8px;
            --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.10);
        }

        /* ============ 顶部导航 ============ */
        .max.nav {
            background: #fafaf8;
            border-bottom: 1px solid #d8d2cb;
            position: relative;
            z-index: 110;
        }
        .max.nav .box {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 22px;
        }
        .max.nav ul {
            list-style: none;
            margin: 0;
            padding: 10px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            flex-wrap: wrap;
            position: relative;
            min-height: 50px;
            padding-left: 140px;
        }
        .max.nav img.clock {
            position: absolute;
            left: 22px;
            top: 50%;
            transform: translateY(-50%);
            width: 120px;
            padding: 0;
            height: auto;
            z-index: 1;
        }
        .max.nav .nLi {
            display: inline-block;
            position: relative;
        }
        .max.nav .nLi>a {
            display: block;
            padding: 10px 14px;
            color: #4a4540;
            font-size: 0.88rem;
            font-weight: 600;
            letter-spacing: 0.03em;
            text-decoration: none;
            transition: color 0.2s;
            white-space: nowrap;
        }
        .max.nav .nLi:hover>a,
        .max.nav .nLi.active>a {
            color: #8b6914;
        }
        .max.nav .sub {
            opacity: 0;
            visibility: hidden;
            transform: translateX(-50%) translateY(-8px);
            transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
            position: absolute;
            top: 100%;
            left: 50%;
            background: #fefdfc;
            border: 1px solid #d5cfc8;
            border-radius: 4px;
            padding: 8px 0;
            min-width: 140px;
            z-index: 120;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.10);
        }
        .max.nav .nLi:hover .sub:not(:empty) {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }
        .max.nav .sub a {
            display: block;
            padding: 6px 16px;
            color: #4a4540;
            font-size: 0.82rem;
            text-align: center;
            transition: background 0.2s, color 0.2s;
        }
        .max.nav .sub a:hover {
            background: rgba(180, 35, 25, 0.10);
            color: #8b6914;
        }
        @media (max-width: 1500px) {
            img.clock {
                display: none;
            }
            .max.nav ul {
                padding-left: 0;
            }
        }
        @media (max-width: 768px) {
            .max.nav ul {
                justify-content: flex-start;
                gap: 4px;
                padding: 8px 0;
                min-height: auto;
                padding-left: 0;
            }
            .max.nav .nLi {
                width: calc(25% - 8px);
                text-align: center;
            }
            .max.nav .nLi>a {
                padding: 8px 4px;
                font-size: 0.75rem;
                white-space: normal;
                word-break: keep-all;
            }
            .max.nav .sub {
                opacity: 0 !important;
                visibility: hidden !important;
                transform: translateX(-50%) translateY(-8px) !important;
                transition: none !important;
            }
        }

        /* ============ Hero 区域 ============ */
        .hero-section {
            position: relative;
            width: 100%;
            height: 92vh;
            min-height: 560px;
            max-height: 900px;
            overflow: hidden;
            background-color: #3a3530;
        }
        .hero-bg-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
            z-index: 0;
        }
        .hero-bg-overlay {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 2;
            background: radial-gradient(ellipse at 50% 30%, rgba(160, 30, 20, 0) 0%, transparent 62%),
                radial-gradient(ellipse at 28% 55%, rgba(140, 60, 30, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 72% 50%, rgba(140, 80, 25, 0.12) 0%, transparent 48%);
        }
        @keyframes scanline-drift {
            0% {
                background-position: 0 0;
            }
            100% {
                background-position: 0 40px;
            }
        }
        .hero-canvas {
            position: absolute;
            inset: 0;
            z-index: 1;
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 5;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
            padding: 20px 28px;
            text-align: center;
        }
        .hero-title-main {
            font-size: clamp(2.2rem, 5vw, 3.4rem);
            font-weight: 900;
            letter-spacing: 0.05em;
            color: #ffffff;
            text-shadow: 0 0 60px rgba(180, 35, 20, 0.8), 0 2px 12px rgba(0, 0, 0, 0.8);
            margin-bottom: 8px;
            text-transform: uppercase;
        }
        .hero-title-sub {
            font-size: clamp(1rem, 2.5vw, 1.4rem);
            font-weight: 500;
            letter-spacing: 0.15em;
            color: #ffdd99;
            text-shadow: 0 0 28px rgba(160, 110, 35, 0.8), 0 1px 6px rgba(0, 0, 0, 0.7);
            margin-bottom: 48px;
            text-transform: uppercase;
        }
        .hero-status-row {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .hero-status-item {
            text-align: center;
        }
        .hero-status-label {
            font-size: 0.82rem;
            letter-spacing: 0.08em;
            color: #dddddd;
            text-transform: uppercase;
            margin-bottom: 2px;
        }
        .hero-status-value {
            font-size: 1.15rem;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: 0.04em;
            text-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
        }
        .hero-status-divider {
            width: 1px;
            height: 36px;
            background: rgba(255, 255, 255, 0.4);
            flex-shrink: 0;
        }

        /* ============ 内部导航 ============ */
        .nav-bar {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.88);
            backdrop-filter: blur(18px) saturate(130%);
            -webkit-backdrop-filter: blur(18px) saturate(130%);
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
            transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
        }
        .nav-bar.is-scrolled {
            background: rgba(255, 255, 255, 0.97);
            border-bottom-color: rgba(180, 35, 25, 0.35);
            box-shadow: 0 2px 24px rgba(0, 0, 0, 0.10);
        }
        .nav-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 22px;
            gap: 16px;
            flex-wrap: wrap;
        }
        .nav-left {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }
        .nav-logo {
            width: 100px;
            height: auto;
            border-radius: var(--radius-sm);
            filter: drop-shadow(0 0 6px rgba(180, 35, 25, 0.35));
        }
        .nav-left-text {
            display: flex;
            flex-direction: column;
            gap: 1px;
        }
        .nav-status-title {
            font-size: 0.8rem;
            font-weight: 700;
            color: #2a2520;
            letter-spacing: 0.04em;
            white-space: nowrap;
        }
        .nav-status-time {
            font-size: 0.7rem;
            color: #8b6914;
            letter-spacing: 0.05em;
            white-space: nowrap;
        }
        .nav-center {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .nav-item {
            display: inline-block;
            padding: 7px 15px;
            border-radius: 20px;
            font-size: 0.88rem;
            font-weight: 600;
            letter-spacing: 0.03em;
            color: #5a5550;
            transition: color 0.2s ease, background 0.2s ease;
            white-space: nowrap;
        }
        .nav-item:hover {
            color: #2a2520;
            background: rgba(0, 0, 0, 0.04);
        }
        .nav-item.active {
            color: #6b4e10;
            background: rgba(180, 35, 25, 0.12);
            box-shadow: inset 0 0 0 1px rgba(180, 35, 25, 0.35);
        }
        #zbf,#sjap,#ssxx,#sstc,#ssgz,#fz {
            scroll-margin-top: 80px;
        }
        /* ============ 主内容区 ============ */
        .manual-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 48px 28px 60px;
        }
        .manual-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
            gap: 24px;
        }
        .card {
            background: var(--color-bg-card);
            backdrop-filter: blur(10px);
            border: 1px solid #d5cfc8;
            border-radius: var(--radius-md);
            padding: 28px 28px;
            box-shadow: var(--shadow-card);
            transition: border-color 0.25s, box-shadow 0.25s;
            position: relative;
            overflow: hidden;
        }
        .card::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 60px;
            height: 60px;
            background-image: radial-gradient(circle, rgba(160, 110, 35, 0.18) 1px, transparent 1px);
            background-size: 8px 8px;
            opacity: 0.3;
            pointer-events: none;
            z-index: 0;
        }
        .card:hover {
            border-color: rgba(180, 35, 25, 0.45);
            box-shadow: 0 8px 28px rgba(180, 35, 25, 0.15);
        }

        .card-title {
            font-size: 1.25rem;
            font-weight: 800;
            color: #2a2520;
            margin-bottom: 40px;
            display: flex;
            align-items: center;
            gap: 12px;
            letter-spacing: 0.04em;
            border-left: none;
            box-shadow: none;
            position: relative;
            padding-left: 0;
            z-index: 1;
        }

        .card-title::before {
            content: '';
            display: block;
            width: 4px;
            height: 1.5em;
            background-color: #b71c1c;
            border-radius: 2px;
            flex-shrink: 0;
        }

        .card-title span {
            font-size: 0.7rem;
            color: #8b6914;
            letter-spacing: 0.1em;
            font-weight: 500;
        }
        .card p,
        .card li {
            font-size: 0.95rem;
            color: #4a4540;
            margin-bottom: 8px;
            position: relative;
            z-index: 1;
        }
        .card p strong,
        .card li strong {
            color: #1a1816;
        }
        .col-span-full {
            grid-column: 1 / -1;
        }
        .col-span-2 {
            grid-column: span 2;
        }

        .match-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.88rem;
            letter-spacing: 0.03em;
            background: var(--color-bg-card-alt);
            border-radius: var(--radius-md);
            overflow: hidden;
            position: relative;
            z-index: 1;
        }
        .match-table thead th {
            background: #fef5f5;
            color: #6b4e10;
            padding: 12px 12px;
            text-align: center;
            font-weight: 700;
            text-transform: uppercase;
            border-bottom: 2px solid #b71c1c;
        }
        .match-table tbody td {
            padding: 10px 12px;
            text-align: center;
            border-bottom: 1px solid #e5e0da;
            color: #3a3632;
        }
        .match-table tbody tr:last-child td {
            border-bottom: none;
        }
        .match-table tbody tr:not(.map-category):nth-child(even) td {
            background-color: #f7faff;
        }
        .match-table tbody tr.map-category td {
            background: #fff3e0 !important;
            color: #6b4e10 !important;
            font-weight: 700 !important;
            font-size: 0.8rem !important;
        }
        .match-table tbody tr:not(.map-category):hover td {
            background-color: rgba(102, 126, 234, 0.08) !important;
        }

        .map-category td {
          background: #fff3e0;
          color: #6b4e10;
          font-weight: 700;
          font-size: 0.8rem;
        }

        .footnote {
            text-align: center;
            padding: 36px 20px;
            color: #6b6560;
            font-size: 0.8rem;
            letter-spacing: 0.05em;
            margin-top: 36px;
            border-top: 1px solid #d5cfc8;
        }
		
		table th,
		table td {
		  font-weight: bold;
		}

        table tr {
          transition: background-color 0.2s ease;
        }
        
        table tr:hover {
          background-color: rgba(102, 126, 234, 0.08);
        }
		
        /* ============ 页脚 ============ */
        .site-footer {
            background: rgba(250, 248, 245, 0.95);
            border-top: 1px solid #d5cfc8;
            padding: 32px 22px 24px;
            text-align: center;
            backdrop-filter: blur(10px);
        }
        .footer-policy-section {
            max-width: 1400px;
            margin: 0 auto 24px;
        }
        .footer-policy-title {
            font-size: 0.95rem;
            font-weight: 700;
            color: #6b4e10;
            margin-bottom: 16px;
            letter-spacing: 0.06em;
        }
        .footer-policy-list {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px 28px;
        }
        .footer-policy-link {
            color: #5a5550;
            font-size: 0.82rem;
            transition: color 0.2s;
        }
        .footer-policy-link:hover {
            color: #6b4e10;
        }
        .footer-policy-icon {
            color: #b71c1c;
            margin-right: 4px;
        }
        .mobile-footer {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 20px;
            border-top: 1px solid rgba(0, 0, 0, 0.06);
        }
        .copyright-text {
            font-size: 0.75rem;
            color: #6b6560;
            margin-bottom: 8px;
        }
        .beian-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 10px 16px;
            font-size: 0.72rem;
            color: #6b6560;
        }
        .icp-link,
        .gongan-link {
            color: #6b6560;
            transition: color 0.2s;
        }
        .icp-link:hover,
        .gongan-link:hover {
            color: #6b4e10;
        }
        .gongan {
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .beian-icon {
            width: 14px;
            height: 14px;
        }

        /* ============ 响应式 ============ */
        @media (max-width: 1024px) {
            .manual-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .hero-section {
                height: 80vh;
                min-height: 450px;
                max-height: 600px;
            }
            .hero-title-main {
                font-size: 1.8rem;
            }
            .hero-title-sub {
                font-size: 0.9rem;
                margin-bottom: 32px;
            }
            .hero-status-row {
                gap: 12px;
            }
            .hero-status-divider {
                height: 24px;
            }
            .manual-grid {
                grid-template-columns: 1fr;
            }
            .col-span-2 {
                grid-column: span 1;
            }
            .nav-content {
                padding: 8px 12px;
                gap: 8px;
            }
            .nav-logo {
                width: 70px;
            }
            .nav-item {
                padding: 5px 10px;
                font-size: 0.76rem;
            }
            .card {
                padding: 20px 18px;
            }
            .card-title {
                font-size: 1.1rem;
                margin-bottom: 32px;
            }
            .site-footer {
                padding: 24px 14px 18px;
            }
            .footer-policy-list {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
            .card {
                overflow-x: visible;
            }
            .match-table {
                display: block;
                width: 100%;
                overflow-x: auto;
                white-space: nowrap;
                -webkit-overflow-scrolling: touch;
                border-radius: 0;
                background: var(--color-bg-card-alt);
            }
            .match-table thead,.match-table tbody {
                display: table;
                width: 100%;
                table-layout: auto;
            }
            .match-table th,.match-table td {
                padding: 4px 6px;
                font-size: 0.7rem;
                white-space: nowrap;
            }
            .match-table .map-category td {
                white-space: nowrap;
            }
            #zbf,#sjap,#ssxx,#sstc,#ssgz,#fz {
                scroll-margin-top: 120px;
            }
        }
        @media (max-width: 480px) {
            .hero-title-main {
                font-size: 1.5rem;
            }
            .hero-status-row {
                flex-direction: column;
                gap: 8px;
            }
            .hero-status-divider {
                width: 40px;
                height: 1px;
            }
            .manual-wrapper {
                padding: 32px 14px 40px;
            }
            #zbf,#sjap,#ssxx,#sstc,#ssgz,#fz {
                scroll-margin-top: 120px;
            }
        }