.table_cell{position: relative;display: table-cell;max-width: 100%;}
.responsive-image {
  display: block;
  max-width: 100%;
  height: auto;}

.image-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;}

.hotspot {
  fill: transparent;
  stroke: transparent; 
  cursor: pointer;}

.hotspot:hover {}
.focus_js{color: #fff;
    width: 90%;
    padding-left: 10px;}
/* ===== 全局重置 ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;}

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", sans-serif;
            background: #f9f7f5;
            color: #1e1e1e;
            line-height: 1.6;
            min-height: 100vh;
            font-size: 1.05rem;}

        /* ===== 主色变量 ===== */
        :root {
            --primary: #830100;
            --primary-dark: #5f0100;
            --primary-light: #b44a3a;
            --accent: #ff7c00;
            --accent-light: #ffa64d;
            --primary-bg: #fdf1ef;
            --primary-border: #e6c8c4;
            --text-muted: #5a5a5a;
            --shadow-sm: 0 2px 12px rgba(131, 1, 0, 0.08);
            --nav-width: 90px;}

        /* ===== 右侧悬浮导航（不撑满，垂直居中） ===== */
        .side-nav {
            position: fixed;
            right: 10px;
            top: 55%;
            transform: translateY(-50%);
            width: var(--nav-width);
            max-height: calc(100vh - 40px);
            overflow-y: auto;
            background: var(--primary);
            color: #fff;
            border-radius: 20px;
            padding: 14px 6px 12px;
            box-shadow: 0 6px 24px rgba(131, 1, 0, 0.25);
            z-index: 1000;
            transition: transform 0.3s ease, right 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;}

        .side-nav .nav-logo {
            display: none;}

        .nav-list {
            display: flex;
            flex-direction: column;
            gap: 6px;
            width: 100%;
            padding: 0 2px;}

        .nav-item {
            display: block;
            padding: 10px 4px;
            text-align: center;
            font-size: 0.9rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            border-radius: 10px;
            transition: background 0.2s, color 0.2s, transform 0.1s;
            cursor: pointer;
            line-height: 1.3;
            word-break: break-all;
            border: none;
            background: transparent;
            width: 100%;}

        .nav-item:hover,
        .nav-item:focus {
            background: rgba(255, 255, 255, 0.20);
            color: #fff;}

        .nav-item.active {
            background: rgba(255, 255, 255, 0.25);
            color: #fff;
            font-weight: 700;
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.30);}

        .nav-item .nav-badge {
            display: block;
            font-size: 0.6rem;
            opacity: 0.85;
            margin-top: 3px;
            font-weight: 400;}

        .side-nav::-webkit-scrollbar {
            width: 3px;}
        .side-nav::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.3);
            border-radius: 10px;}
        .side-nav::-webkit-scrollbar-track {
            background: transparent;}

        /* ===== 主容器 ===== */
        .container {
            max-width: 1100px;
            margin: 0 auto;
            background: #ffffff;
            border-radius: 24px;
            box-shadow: var(--shadow-sm);
            padding: 28px 0px 44px;
            transition: all 0.2s;}

        /* ===== 头部 ===== */
        .page-header {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 0px;
            border-bottom: 0px solid var(--primary);
            padding-bottom: 0px;}

        .page-header h1 {
            font-size: 2rem;
            font-weight: 700;
            margin-left: 30px;
            color: var(--primary);
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;}

        .page-header h1 .header-icon {
            color: var(--primary);
            font-size: 2rem;}

        .page-header h1 small {
            font-size: 1rem;
            font-weight: 400;
            color: var(--text-muted);
            letter-spacing: 0;}

        .header-meta {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 14px;}

        .header-meta .sub {
            color: var(--text-muted);
            font-size: 1rem;
            background: var(--primary-bg);
            padding: 6px 20px;
            border-radius: 30px;
            border-left: 4px solid var(--primary);}
        .header-meta .sub i {
            margin-right: 6px;
            color: var(--primary);}

        /* ===== 搜索栏 ===== */
        .search-wrap {
            display: flex;
            gap: 12px;
            align-items: center;
            flex-wrap: wrap;
            background: var(--primary-bg);
            padding: 10px 20px 10px 24px;
            border-radius: 60px;
            border: 1px solid var(--primary-border);
            transition: box-shadow 0.2s, border-color 0.2s;
            width: 100%;
            max-width: 480px;}

        .search-wrap:focus-within {
            box-shadow: 0 0 0 3px rgba(131, 1, 0, 0.12);
            border-color: var(--primary);}

        .search-wrap input {
            flex: 1;
            min-width: 120px;
            border: none;
            background: transparent;
            font-size: 1.05rem;
            padding: 8px 4px;
            outline: none;
            color: var(--text-dark);}

        .search-wrap input::placeholder {
            color: #aaa;}

        .search-wrap button {
            background: var(--primary);
            color: #fff;
            border: none;
            padding: 10px 28px;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            white-space: nowrap;
            flex-shrink: 0;}

        .search-wrap button:hover {
            background: var(--primary-dark);}
        .search-wrap button:active {
            transform: scale(0.96);}
        .search-wrap button i {
            margin-right: 6px;}

        /* ===== 搜索反馈 ===== */
        .search-feedback {
            margin: 14px 0 18px;
            font-size: 1rem;
            color: var(--text-muted);
            min-height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;}

        .search-feedback i {
            margin-right: 4px;
            font-size: 1.1rem;}
        .search-feedback .fa-lightbulb {
            color: #f0c040;}
        .search-feedback .fa-check-circle {
            color: #28a745;}
        .search-feedback .fa-search {
            color: var(--primary);}

        .search-feedback strong {
            color: var(--primary);
            font-weight: 700;}

        .search-feedback .highlight-badge {
            background: #ffeb3b;
            color: #1e1e1e;
            padding: 0 14px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 700;
            display: inline-block;
            line-height: 1.8;}

        /* ===== 省份区块 ===== */
        .province-block {
            margin-top: 32px;
            scroll-margin-top: 20px;
            border-radius: 16px;
            background: #fefcfb;
            border: 1px solid #f0ecea;
            overflow: hidden;
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);}

        .province-block:first-of-type {
            margin-top: 8px;}

        /* ===== 省份标题（大胆美化） ===== */
        .province-title {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: #ffffff;
            padding: 20px 30px;
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
            gap: 18px;
            position: relative;
            border-bottom: 4px solid #ffd700;
            box-shadow: 0 4px 20px rgba(131, 1, 0, 0.3), inset 0 -2px 0 rgba(255, 255, 255, 0.2);
            text-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            transition: all 0.3s ease;}

        .province-title .title-icon {
            font-size: 2.2rem;
            line-height: 1;
            filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
            flex-shrink: 0;}

        .province-title .title-text {
            position: relative;
            z-index: 1;}

        .province-title .title-total {
            background: var(--accent);
            color: #fff;
            font-size: 1rem;
            font-weight: 700;
            padding: 6px 18px;
            border-radius: 40px;
            margin-left: auto;
            box-shadow: 0 2px 8px rgba(255, 124, 0, 0.4);
            letter-spacing: 0.5px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
            white-space: nowrap;
            flex-shrink: 0;}
        .province-title .title-total i {
            margin-right: 6px;
            font-size: 0.85rem;}

        /* 左侧鲜艳装饰条 (使用辅助色) */
        .province-title::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 10px;
            background: var(--accent);
            box-shadow: 0 0 20px var(--accent);
            border-radius: 0 4px 4px 0;}

        /* 右下角斜切装饰 */
        .province-title::after {
            content: "";
            position: absolute;
            right: 0;
            bottom: 0;
            width: 0;
            height: 0;
            border-left: 80px solid transparent;
            border-bottom: 80px solid rgba(255, 215, 0, 0.15);
            pointer-events: none;}

        /* ===== 响应式标题 ===== */
        @media (max-width: 820px) {
            .province-title {
                font-size: 1.4rem;
                padding: 16px 20px;
                gap: 12px;
                flex-wrap: wrap;}
            .province-title .title-icon {
                font-size: 1.8rem;}
            .province-title .title-total {
                font-size: 0.8rem;
                padding: 4px 14px;
                margin-left: 0;}
            .province-title::after {
                border-left-width: 50px;
                border-bottom-width: 50px;}
            .province-title::before {
                width: 6px;}
        }

        @media (max-width: 420px) {
            .province-title {
                font-size: 1.1rem;
                padding: 12px 14px;
                gap: 8px;}
            .province-title .title-icon {
                font-size: 1.4rem;}
            .province-title .title-total {
                font-size: 0.7rem;
                padding: 3px 10px;}
            .province-title::after {
                border-left-width: 30px;
                border-bottom-width: 30px;}
        }

        /* ===== 表格容器 ===== */
        .table-wrapper {
            padding: 10px 0px 16px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;}

        .table-wrapper+.table-wrapper {
            border-top: 2px dashed #e6ddd8;
            padding-top: 18px;}

        .table-wrapper .table-subtitle {
            font-size: 1rem;
            font-weight: 700;
            color: var(--primary-dark);
            padding: 8px 6px 10px;
            letter-spacing: 0.3px;
            display: flex;
            align-items: center;
            gap: 10px;}
        .table-wrapper .table-subtitle::before {
            content: "▸";
            color: var(--primary-light);}

        .table-wrapper table {
            width: 100%;
            border-collapse: collapse;
            font-size: 1rem;
            min-width: 420px;
            border-radius: 0px;
            overflow: hidden;
            box-shadow: 0 1px 6px rgba(0, 0, 0, 0.03);}

        /* ===== 表头 ===== */
        .table-wrapper thead th {
            background: var(--primary);
            color: #ffffff;
            padding: 14px 14px;
            text-align: center;
            font-weight: 700;
            letter-spacing: 0.3px;
            white-space: nowrap;
            border-right: 1px solid rgba(255, 255, 255, 0.12);
            font-size: 1rem;}
        .table-wrapper thead th:last-child {
            border-right: none;}

        /* ===== 表格行 ===== */
        .table-wrapper tbody td {
            padding: 12px 12px;
            text-align: center;
            border-bottom: 1px solid #f0ecea;
            vertical-align: middle;
            transition: background 0.12s ease;
            background-color: #ffffff;
            font-size: 0.95rem;}

        .table-wrapper tbody tr:hover td {
            background-color: #f5e6e2 !important;}
        .table-wrapper tbody tr:nth-child(even) td {
            background-color: #fcf8f6;}
        .table-wrapper tbody tr:nth-child(even):hover td {
            background-color: #8301002b !important;}

        /* ===== 汇总行 ===== */
        .total-row td {
            background: #f3efec !important;
            font-weight: 700;
            color: var(--primary-dark);
            border-top: 2px solid var(--primary-border);
            font-size: 0.95rem;}
        .total-row:hover td {
            background: #e8dfda !important;}

        /* ===== 专业名称链接 ===== */
        .major-link {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            border-bottom: 1px dashed transparent;
            transition: border-color 0.2s, color 0.2s;
            cursor: pointer;
            display: inline-block;
            position: relative;
            font-size: 1rem;}

        .major-link:hover {
            color: var(--primary-dark);
            border-bottom-color: var(--primary);}

        .major-link .link-icon {
            font-size: 0.6rem;
            margin-left: 4px;
            opacity: 0.4;
            transition: opacity 0.2s;
            display: inline-block;}
        .major-link:hover .link-icon {
            opacity: 1;}

        .major-link[title]:hover::before {
            content: attr(title);
            position: absolute;
            bottom: calc(100% + 10px);
            left: 50%;
            transform: translateX(-50%);
            background: #1e1e1e;
            color: #fff;
            padding: 6px 16px;
            border-radius: 8px;
            font-size: 0.8rem;
            font-weight: 400;
            white-space: nowrap;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
            z-index: 30;
            pointer-events: none;
            letter-spacing: 0.2px;}

        /* ===== 搜索高亮 ===== */
        .search-highlight {
            background-color: #ffeb3b;
            padding: 0 4px;
            border-radius: 3px;
            font-weight: 700;
            box-shadow: 0 0 0 1px rgba(255, 235, 59, 0.3);}

        /* ===== 响应式 ===== */
        @media (max-width: 820px) {
            body {
                padding: 16px 16px 30px 16px;
                font-size: 1rem;}

            .side-nav {
                transform: translateX(120%);
                right: 10px;
                top: 20px;
                width: 76px;
                border-radius: 16px;
                padding: 12px 4px;
                max-height: calc(100vh - 40px);
                transition: transform 0.3s ease;
                box-shadow: 2px 0 20px rgba(0, 0, 0, 0.25);}

            .side-nav.open {
                transform: translateX(0);}

            .nav-item {
                font-size: 0.8rem;
                padding: 8px 2px;}

            .nav-toggle {
                display: flex !important;
                position: fixed;
                right: 12px;
                bottom: 20px;
                z-index: 1100;
                background: var(--primary);
                color: #fff;
                border: none;
                border-radius: 50%;
                width: 56px;
                height: 56px;
                font-size: 1.6rem;
                align-items: center;
                justify-content: center;
                box-shadow: 0 4px 16px rgba(131, 1, 0, 0.35);
                cursor: pointer;
                transition: transform 0.2s;
                touch-action: manipulation;}
            .nav-toggle:active {
                transform: scale(0.92);}

            .container {
                padding: 20px 16px 32px;
                border-radius: 18px;}

            .page-header h1 {
                font-size: 1.6rem;}
            .header-meta {
                flex-direction: column;
                align-items: flex-start;}
            .search-wrap {
                max-width: 100%;
                padding: 8px 14px 8px 18px;}
            .search-wrap input {
                font-size: 0.95rem;
                padding: 6px 2px;}
            .search-wrap button {
                padding: 8px 18px;
                font-size: 0.9rem;}

            .table-wrapper table {
                font-size: 0.9rem;
                min-width: 340px;}
            .table-wrapper thead th,
            .table-wrapper tbody td {
                padding: 10px 8px;}
            .table-wrapper {
                padding: 6px 6px 12px;}
            .major-link {
                font-size: 0.9rem;}
            .search-feedback {
                font-size: 0.9rem;}
        }

        @media (max-width: 420px) {
            body {
                font-size: 0.95rem;}
            .table-wrapper table {
                font-size: 0.8rem;
                min-width: 280px;}
            .table-wrapper thead th,
            .table-wrapper tbody td {
                padding: 8px 6px;}
            .page-header h1 {
                font-size: 1.3rem;}
            .nav-item {
                font-size: 0.7rem;}
        }

        .nav-toggle {
            display: none;}

        .nav-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.30);
            z-index: 999;}
        .nav-overlay.active {
            display: block;}

        .footer-note {
            margin-top: 36px;
            text-align: center;
            font-size: 0.9rem;
            color: var(--text-muted);
            border-top: 1px solid #eee;
            padding-top: 20px;
            letter-spacing: 0.2px;}
        .footer-note i {
            margin-right: 4px;
            color: var(--accent);}
        .footer-note a {
            color: var(--primary);
            text-decoration: none;}
        .footer-note a:hover {
            text-decoration: underline;}

        html {
            scroll-behavior: smooth;}

        .text-left {
            text-align: left !important;}
        .fw-600 {
            font-weight: 600;}
footer .fl01 .center p {
    margin-top: 0;
    margin-bottom: 0rem;}
.w1320 {
    max-width: 1320px;
    margin: 0 auto;}
