        /* ===== 基础重置 ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", Arial, sans-serif;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: #f4f6f9;
            color: #333;
            line-height: 1.6;
            padding: 0;
        }

        ul {
            list-style: none;
        }
        a {
            text-decoration: none;
            color: inherit;
        }

        /* ===== 全局容器 ===== */
        .container {
            width: 1200px;
            max-width: 100%;
            margin: 0 auto;
            position: relative;
            box-sizing: border-box;
        }

        /* ===== 顶部工具栏 ===== */
        .top-bar {
            background-color: #ffffff;
            color: #999;
            font-size: 12px;
            height: 60px;
            line-height: 60px;
            border-bottom: 1px solid #eee;
            box-sizing: border-box;
            position: relative;
            z-index: 200;
        }
        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
            box-sizing: border-box;
        }
        .top-bar a {
            margin-left: 15px;
        }
        .top-bar a:hover {
            color: #0083d0;
        }
        .top-bar .right-section {
            display: flex;
            align-items: center;
            gap: 10px;
            height: 100%;
        }
        .top-bar-left {
            display: flex;
            align-items: center;
            height: 100%;
        }

        /* ===== 顶部语言切换 ===== */
        .top-lang-wrapper {
            position: relative;
            display: inline-block;
            height: 100%;
            padding: 0 20px;
            cursor: pointer;
            line-height: 30px;
        }
        .top-lang-wrapper .lang-sub-menu {
            position: absolute;
            top: 50px;
            right: 0;
            left: auto;
            min-width: 100%;
            background: #FFFFFF;
            border-radius: 6px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            list-style: none;
            margin: 0;
            padding: 0;
            z-index: 999;
            visibility: hidden;
            opacity: 0;
            transform: translateY(8px);
            transition: all 0.25s ease;
        }
        .top-lang-wrapper:hover .lang-sub-menu {
            visibility: visible;
            opacity: 1;
            transform: translateY(0);
        }
        .top-lang-wrapper .lang-sub-menu::before {
            content: "";
            position: absolute;
            top: -8px;
            right: 22px;
            border-width: 0 6px 8px 6px;
            border-style: solid;
            border-color: transparent transparent #FFFFFF transparent;
            filter: drop-shadow(0 -2px 4px rgba(0, 0, 0, 0.05));
        }
        .top-lang-wrapper .lang-sub-menu li {
            text-align: center;
            border-bottom: 1px solid #eee;
        }
        .top-lang-wrapper .lang-sub-menu li:last-child {
            border-bottom: none;
        }
        .top-lang-wrapper .lang-sub-menu li a {
            display: block;
            padding: 12px 20px;
            color: #333333;
            font-size: 14px;
            text-decoration: none;
            border-radius: 0px;
            line-height: 1.5;
            transition: all 0.2s ease;
        }
        .top-lang-wrapper .lang-sub-menu li a:hover,
        .top-lang-wrapper .lang-sub-menu li.active a {
            color: #0083d0;
            background: #f5f5f5;
        }
/* 语言图标 */
        .lang-icon {
            display: inline-block;
            width: 14px;
            height: 14px;
            margin-right: 5px;
            vertical-align: middle;
            fill: none;
            stroke: currentColor;
        }


        /* ===== 主导航栏 ===== */
        .main-nav {
            background-color: #0083d0;
            height: 60px;
            position: relative;
            z-index: 100;
            box-sizing: border-box;
        }
        .main-nav .container {
            display: flex;
            height: 100%;
            align-items: center;
            justify-content: space-between;
            box-sizing: border-box;
        }

        .logo {
            font-size: 24px;
            color: white;
            font-weight: bold;
            display: flex;
            align-items: center;
        }
        .logo img {
            height: 50px;
            padding-top: 5px;
        }

        .nav-menu {
            display: flex;
            height: 100%;
        }
        .nav-item {
            position: relative;
            height: 100%;
            display: flex;
            align-items: center;
            padding: 0 20px;
            color: white;
            font-size: 15px;
            transition: background 0.3s;
            cursor: pointer;
        }
        .nav-item.lang-item {
            display: none; /* PC 隐藏移动端底部语言切换 */
        }
        .h5-lang-switch {
            display: none; /* PC 隐藏H5首页行内语言切换 */
        }
        .nav-item:hover {
            background-color: #006fb1;
            color: #fff;
        }
        /* 当前栏目选中激活状态（与hover效果一致） */
        .nav-item.active {
            background-color: #006fb1;
            color: #fff;
        }
        .nav-item>a {
            display: block;
            height: 100%;
            line-height: 60px;
            color: #fff;
        }
        .nav-item:hover>a {
            color: #fff;
        }
        .nav-item.active>a {
            color: #fff;
        }
        /* sub-toggle PC端完全隐藏（hover展开子菜单） */
        .nav-item .sub-toggle {
            display: none;
        }

        /* 二级下拉菜单 */
        .sub-menu {
            display: none;
            position: absolute;
            top: 60px;
            left: 0;
            min-width: 225px;
            background-color: #fff;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        .sub-menu li {
            border-bottom: 1px solid #eee;
        }
        .sub-menu li a {
            display: block;
            padding: 12px 20px;
            color: #333;
            font-size: 14px;
            transition: 0.2s;
        }
        .sub-menu li a:hover {
            background-color: #f0f8ff;
            color: #1a56db;
            padding-left: 25px;
        }
        .nav-item:hover .sub-menu {
            display: block;
        }

        .search-area {
            display: flex;
            align-items: center;
        }

        /* 移动端站点标题（PC隐藏） */
        .site-title-mobile {
            display: none;
        }

        /* ===== 汉堡按钮（默认隐藏） ===== */
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 28px;
            height: 22px;
            cursor: pointer;
            padding: 4px 0;
            z-index: 101;
        }
        .hamburger span {
            display: block;
            height: 3px;
            background: #fff;
            border-radius: 2px;
            transition: all 0.3s ease;
            transform-origin: center;
        }
        .hamburger.active span:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }
        .hamburger.active span:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
        }

        /* ===== Banner ===== */
        .hero-section {
            height: 450px;
            position: relative;
            margin-bottom: 30px;
            overflow: hidden;
        }
        .hero-slider-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }
        .hero-track {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.6s ease-in-out;
        }
        .hero-slide {
            flex: 0 0 100%;
            height: 100%;
            position: relative;
        }
        .hero-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .hero-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            background: rgba(0, 0, 0, 0.3);
            color: #fff;
            border: none;
            padding: 12px 18px;
            font-size: 24px;
            cursor: pointer;
            border-radius: 4px;
            transition: background 0.3s;
            /* ★ 修复：优化触摸响应 */
            touch-action: manipulation;
        }
        .hero-nav:hover {
            background: rgba(0, 0, 0, 0.6);
        }
        .hero-nav.prev {
            left: 30px;
        }
        .hero-nav.next {
            right: 30px;
        }
        .hero-section .container {
            height: 100%;
            z-index: 5;
        }

        /* ===== 内容板块 ===== */
        .section-container {
            background: #fff;
            margin-bottom: 30px;
            padding: 20px 30px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        }
        .section-header {
            display: flex;
            justify-content: space-between;
            border-bottom: 1px solid #eee;
            padding-bottom: 15px;
            margin-bottom: 20px;
            align-items: center;
        }
        .section-header h3 {
            font-size: 18px;
            color: #333;
        }
        .section-header .links a {
            margin-left: 15px;
            font-size: 12px;
            color: #0083d0;
        }
        .section-header .left-group {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        /* ===== 新闻与资讯 ===== */
        .news-content {
            display: flex;
            gap: 30px;
        }
        .news-left {
            flex: 1;
            position: relative;
            height: 260px;
            overflow: hidden;
            border-radius: 4px;
        }
        .news-left img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .news-left .text-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.6);
            color: #fff;
            padding: 10px;
            pointer-events: none;
        }
        .news-left .carousel-track {
            display: flex;
            width: 300%;
            height: 100%;
            transition: transform 0.6s ease-in-out;
        }
        .news-left .carousel-slide {
            flex: 1;
            height: 100%;
            position: relative;
        }
        .news-left .carousel-slide a {
            display: block;
            height: 100%;
        }
        .news-left .carousel-indicators {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
        }
        .news-left .carousel-indicators .dot {
            width: 8px;
            height: 8px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            cursor: pointer;
            transition: background 0.3s;
        }
        .news-left .carousel-indicators .dot.active {
            background: #fff;
        }
        .news-left .carousel-indicators .dot:hover {
            background: rgba(255, 255, 255, 0.9);
        }

        .news-right {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .news-item {
            display: flex;
            gap: 15px;
            border-bottom: 1px solid #f0f0f0;
            padding-bottom: 10px;
        }
        .news-item img {
            width: 100px;
            height: 70px;
            object-fit: cover;
        }
        .news-item h4 {
            font-size: 14px;
            margin-bottom: 5px;
            color: #333;
        }
        .news-item p {
            font-size: 12px;
            color: #888;
        }
        .tag {
            display: inline-block;
            background: #0083d0;
            color: #fff;
            font-size: 12px;
            padding: 2px 6px;
            margin-right: 5px;
            border-radius: 2px;
        }

        /* ===== 赛事与活动 Tab ===== */
        .tab-nav {
            display: flex;
            gap: 8px;
        }
        .tab-nav a {
            font-size: 14px;
            color: #666;
            padding: 4px 14px;
            border-radius: 10px;
            cursor: pointer;
            text-decoration: none;
            border: 1px solid transparent;
            transition: all 0.3s;
        }
        .tab-nav a.active {
            color: #fff;
            background: #0083d0;
            border-color: #0083d0;
        }
        .tab-nav a:hover:not(.active) {
            background: #f0f8ff;
            color: #0083d0;
            border-color: #0083d0;
        }
        .tab-pane {
            display: none;
        }
        .tab-pane.active {
            display: block;
        }

        .event-list {
            display: flex;
            gap: 20px;
        }
        .event-item {
            flex: 1;
            position: relative;
        }
        .event-item img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }
        .event-item .title {
            position: absolute;
            bottom: 5px;
            left: 0;
            right: 0;
            color: #fff;
            font-size: 16px;
            font-weight: bold;
            background: rgba(0, 0, 0, 0.6);
            padding: 6px 12px;
        }

        /* ===== 酒店推介 ===== */
        .hotel-list {
            display: flex;
            gap: 20px;
        }
        .hotel-item {
            flex: 1;
            position: relative;
            height: 180px;
            overflow: hidden;
            border-radius: 4px;
        }
        .hotel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 1s;
        }
        .hotel-item:hover img {
            transform: scale(1.1);
        }
        .hotel-title {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background: rgba(0, 0, 0, 0.4);
            color: #fff;
            transition: 0.3s;
        }
        .hotel-title h3 {
            
            font-size: 24px;
           
        }
        .hotel-title h3 a {
            color: #fff;
        }
        .hotel-title p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 16px;
        }
        
         @media (max-width: 768px) {
            .section-container .hotel-list .hotel-item .hotel-title h3 {
                font-size: 22px;
            }

            .section-container .hotel-list .hotel-item img {
                height: 160px;
                object-fit: cover;
            }
        }

        /* ===== 度假地产 ===== */
        .estate-list {
            display: flex;
            gap: 15px;
        }
        .estate-item {
            flex: 1;
            border: 1px solid #eee;
            padding: 10px;
            border-radius: 4px;
        }
        .estate-item img {
            width: 100%;
            height: 150px;
            object-fit: cover;
            border-radius: 4px;
        }
        .estate-item h4 {
            margin: 10px 0 5px;
            font-size: 14px;
        }
        .estate-item p {
            font-size: 12px;
            color: #888;
            line-height: 1.6;
        }

        /* ===== 合作伙伴 ===== */
        .partners1 {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 20px 0;
        }
        .partners1 img {
            height: 40px;
            opacity: 0.7;
            filter: grayscale(100%);
            transition: 0.3s;
        }
        .partners1 img:hover {
            opacity: 1;
            filter: grayscale(0%);
        }

        /* ============================================================
           页脚样式（自适应列数）
           ============================================================ */
        footer {
            background: #1f2937;
            color: #aaa;
            padding: 40px 0 20px;
            margin-top: 40px;
            font-size: 14px;
            box-sizing: border-box;
            clear: both;
        }

        footer .container {
            box-sizing: border-box;
        }

        footer .container:last-of-type {
            border-bottom: none;
            padding-top: 20px;
        }

        /* ===== 底部两栏布局：左侧1/3企业介绍 + 右侧2/3栏目导航 ===== */
        footer .footer-main {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #444;
            box-sizing: border-box;
        }
        .footer-about {
            flex: 1 1 320px;
            max-width: 35%;
            min-width: 280px;
            padding-right: 10px;
            box-sizing: border-box;
        }
        .footer-about h4 {
            color: #fff;
            font-size: 18px;
            margin-bottom: 15px;
        }
        .footer-about p {
            line-height: 1.8;
            margin-bottom: 10px;
            color: #aaa;
        }
        .footer-about .footer-icp {
            font-size: 12px;
            color: #888;
        }
        .footer-qrcodes {
            flex: 1 1 60%;
            max-width: calc(65% - 30px);
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 24px;
            flex-wrap: wrap;
            box-sizing: border-box;
        }
        .qrcode-item {
            text-align: center;
            flex-shrink: 0;
        }
        .qrcode-item img {
            width: 120px;
            height: 120px;
            display: block;
            margin: 0 auto 10px;
            border: 2px solid #444;
            border-radius: 6px;
            background: #fff;
            padding: 5px;
            object-fit: contain;
            box-sizing: border-box;
        }
        .qrcode-item img[src=""],
        .qrcode-item img:not([src]) {
            background: #e0e0e0;
            border: 2px dashed #999;
        }
        .qrcode-item p {
            color: #aaa;
            font-size: 13px;
            margin: 0;
        }
        .copyright {
            text-align: center;
            font-size: 12px;
            padding-top: 16px;
            box-sizing: border-box;
        }

        /* ============================================================
               ★★★ 响应式样式 ★★★
               ============================================================ */

        @media screen and (max-width: 1200px) {
            .container {
                width: 96%;
                max-width: 1200px;
                padding-left: 15px;
                padding-right: 15px;
            }
            .top-bar .container {
                padding-left: 15px;
                padding-right: 15px;
            }
            .main-nav .container {
                padding-left: 15px;
                padding-right: 15px;
            }
        }

        @media screen and (max-width: 992px) {
            .hero-section {
                height: 320px;
            }
            .hero-nav {
                padding: 8px 12px;
                font-size: 18px;
            }
            .hero-nav.prev {
                left: 15px;
            }
            .hero-nav.next {
                right: 15px;
            }
            .news-left {
                height: 220px;
            }
            .hotel-item {
                height: 150px;
            }
            .hotel-title h3 {
                font-size: 18px;
            }
            .estate-item img {
                height: 120px;
            }
            .event-item img {
                height: 170px;
            }
        }

        @media screen and (max-width: 768px) {
            /* ===== 顶部工具栏（移动端） ===== */
            .top-bar {
                height: 56px;
                line-height: 56px;
                padding: 0;
                box-sizing: border-box;
            }
            .top-bar .container {
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
                flex-wrap: nowrap;
                gap: 0;
                position: relative;
                padding-left: 10px;
                padding-right: 10px;
                height: 100%;
                box-sizing: border-box;
            }
            .top-bar .right-section {
                display: none;
            }
            .top-bar .logo img {
                height: 36px;
                padding-top: 0;
                display: block;
            }

            /* 移动端站点标题：绝对居中（Logo左自适应、汉堡右自适应） */
            .site-title-mobile {
                display: block;
                position: absolute;
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%);
                font-size: 16px;
                font-weight: bold;
                color: #000;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                max-width: 50vw;
                text-align: center;
                pointer-events: none;
                z-index: 1;
                line-height: 1.2;
            }

            /* 汉堡按钮（顶栏右侧） */
            .top-bar .hamburger {
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                width: 28px;
                height: 22px;
                cursor: pointer;
                padding: 4px 0;
                z-index: 101;
                flex-shrink: 0;
            }
            .top-bar .hamburger span {
                display: block;
                height: 3px;
                background: #0083d0 !important;
                border-radius: 2px;
                transition: all 0.3s ease;
                transform-origin: center;
            }
            .top-bar .hamburger.active span:nth-child(1) {
                transform: translateY(9px) rotate(45deg);
            }
            .top-bar .hamburger.active span:nth-child(2) {
                opacity: 0;
                transform: scaleX(0);
            }
            .top-bar .hamburger.active span:nth-child(3) {
                transform: translateY(-9px) rotate(-45deg);
            }
            .top-bar-left {
                display: flex;
                align-items: center;
                flex-shrink: 0;
                height: 100%;
            }

            /* ===== 主导航（移动端2px分隔线） ===== */
            .main-nav {
                height: 3px;
                box-sizing: border-box;
            }
            .main-nav .container {
                position: relative;
                padding-left: 0;
                padding-right: 0;
                overflow: visible;
                height: 100%;
                box-sizing: border-box;
            }
            .nav-menu {
                position: absolute;
                top: 2px;
                left: 50%;
                right: auto;
                transform: translateX(-50%);
                width: 100vw;
                flex-direction: column;
                background: #0083d0;
                height: auto;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease;
                box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
                z-index: 999;
                padding: 0;
            }
            .nav-menu.open {
                max-height: 80vh;
                overflow-y: auto;
                padding: 0;
            }
            .nav-item {
                height: auto;
                padding: 0;
                flex-direction: column;
                align-items: stretch;
                border-bottom: 1px solid rgba(255, 255, 255, 0.12);
                min-height: 48px;
            }
            .nav-item>a {
                line-height: 48px;
                padding: 0 15px;
                display: block;
                height: auto;
                font-size: 15px;
                font-weight: 500;
            }
            .nav-item:hover {
                background: transparent;
            }
            .sub-menu {
                display: none;
                position: static;
                min-width: auto;
                box-shadow: none;
                background: rgba(0, 0, 0, 0.15);
                border-radius: 0;
                padding-top: 0;
                border-top: 1px solid rgba(255,255,255,0.15);
            }
            .sub-menu li {
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            }
            .sub-menu li a {
                padding: 12px 20px 12px 25px;
                color: #FFFFFF;
                font-size: 14px;
            }
            .sub-menu li a:hover,
            .sub-menu li a:active,
            .sub-menu li a:focus {
                background: transparent;
                padding-left: 25px;
                color: #FFFFFF;
            }
            .nav-item:hover .sub-menu {
                display: none;
            }
            .nav-item.open .sub-menu {
                display: block !important;
            }
            /* 修复：子菜单展开时自适应高度，避免与下一级重叠 */
            .nav-item.open {
                height: auto;
                min-height: auto;
            }
            .nav-item.open .sub-menu {
                flex: 0 0 auto;
                width: 100%;
            }
            /* 有子菜单项：a标签flex布局，sub-toggle显示在右侧 */
            .nav-item.has-child > a {
                display: flex;
                align-items: center;
                justify-content: space-between;
                width: 100%;
            }
            .nav-item.has-child > a .sub-toggle {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                width: 48px;
                height: 48px;
                cursor: pointer;
                flex-shrink: 0;
                position: relative;
            }
            .nav-item.has-child > a .sub-toggle::after {
                content: "▾";
                font-size: 22px;
                color: rgba(255,255,255,0.9);
                transition: transform 0.3s;
                line-height: 1;
            }
            .nav-item.open > a .sub-toggle::after {
                transform: rotate(180deg);
            }
            /* H5首页行：flex水平布局，左侧首页链接+右侧语言切换 */
            .nav-home-row {
                flex-direction: row !important;
                align-items: center;
                justify-content: space-between;
            }
            .nav-home-row > a {
                flex: 1;
            }
            .nav-home-row .sub-menu {
                position: static;
            }
            .h5-lang-switch {
                display: block;
                position: relative;
                flex-shrink: 0;
                padding: 0 15px;
                line-height: 48px;
            }
            .h5-lang-switch .h5-lang-current {
                color: rgba(255,255,255,0.9);
                font-size: 14px;
                text-decoration: none;
                white-space: nowrap;
            }
            .h5-lang-switch .lang-sub-menu {
                display: none;
                position: absolute;
                top: 48px;
                right: 0;
                left: auto;
                min-width: 120px;
                background: #FFFFFF;
                border-radius: 6px;
                box-shadow: 0 4px 12px rgba(0,0,0,0.15);
                list-style: none;
                margin: 0;
                padding: 0;
                z-index: 999;
            }
            .h5-lang-switch .lang-sub-menu li {
                border-bottom: 1px solid #eee;
            }
            .h5-lang-switch .lang-sub-menu li:last-child {
                border-bottom: none;
            }
            .h5-lang-switch .lang-sub-menu li a {
                color: #333333;
                padding: 12px 20px;
                font-size: 14px;
                display: block;
                text-decoration: none;
                text-align: center;
                line-height: 1.5;
            }
            .h5-lang-switch .lang-sub-menu li a:hover,
            .h5-lang-switch .lang-sub-menu li.active a {
                color: #0083d0;
                background: #f5f5f5;
            }
            .search-area {
                display: none;
            }

            /* Banner */
            .hero-section {
                height: 200px;
                margin-bottom: 20px;
            }
            .hero-nav {
                display: none;  /* H5隐藏上下箭头，使用滑动切换 */
            }

            /* 板块容器（缩小H5间距，页边距≤10px） */
            .container {
                width: 100%;
                padding-left: 10px;
                padding-right: 10px;
            }
            .section-container {
                padding: 10px 0;
                margin-bottom: 10px;
            }
            .section-header {
                flex-wrap: wrap;
                gap: 8px;
                padding-bottom: 10px;
                margin-bottom: 14px;
            }
            .section-header h3 {
                font-size: 16px;
            }
            .section-header .links a {
                font-size: 12px;
                margin-left: 10px;
            }
            .section-header .left-group {
                flex-wrap: wrap;
                gap: 8px;
            }
            .tab-nav a {
                font-size: 13px;
                padding: 2px 12px;
            }

            /* 新闻与资讯 */
            .news-content {
                flex-direction: column;
                gap: 18px;
            }
            .news-left {
                height: 200px;
                width: 100%;
            }
            .news-right {
                width: 100%;
                gap: 12px;
            }
            .news-item {
                padding-bottom: 8px;
            }
            .news-item img {
                width: 80px;
                height: 60px;
            }
            .news-item h4 {
                font-size: 13px;
            }

            /* 赛事与活动 */
            .event-list {
                flex-direction: column;
                gap: 16px;
            }
            .event-item img {
                height: 160px;
            }
            .event-item .title {
                font-size: 14px;
                bottom: 5px;
                left: 0;
                right: 0;
            }

            /* 酒店推介 */
            .hotel-list {
                flex-direction: column;
                gap: 14px;
            }
            .hotel-item {
                height: 140px;
            }
            .hotel-title h3 {
                font-size: 18px;
            }
            .hotel-title p {
                font-size: 12px;
            }

            /* 度假地产 */
            .estate-list {
                flex-direction: column;
                gap: 14px;
            }
            .estate-item {
                display: flex;
                gap: 14px;
                align-items: center;
                padding: 12px;
            }
            .estate-item img {
                width: 100px;
                height: 80px;
                flex-shrink: 0;
            }
            .estate-item h4 {
                margin: 0 0 4px 0;
                font-size: 14px;
            }
            .estate-item p {
                font-size: 12px;
                margin: 0;
            }

            /* 合作伙伴 */
            .partners1 {
                justify-content: center;
                gap: 16px;
                padding: 10px 0;
            }
            .partners1 img {
                height: 30px;
            }

            /* 页脚 */
            footer {
                padding: 30px 0 16px;
                margin-top: 30px;
            }
            footer .container:first-of-type {
                padding-bottom: 16px;
                border-bottom: 1px solid #444;
            }
            footer .container:last-of-type {
                padding-top: 16px;
                border-bottom: none;
            }
            footer .footer-main {
                flex-direction: column;
                gap: 24px;
            }
            .footer-about {
                flex: 1 1 100%;
                max-width: 100%;
                min-width: 0;
                padding-right: 0;
            }
            .footer-qrcodes {
                flex: 1 1 100%;
                max-width: 100%;
                justify-content: center;
                gap: 20px;
            }
            .qrcode-item {
                flex-shrink: 0;
            }
            .qrcode-item img {
                width: 100px;
                height: 100px;
            }
            .qrcode-item p {
                font-size: 12px;
            }
            .copyright {
                font-size: 11px;
                padding-top: 14px;
            }
        }

        @media screen and (max-width: 480px) {
            .top-bar .logo img {
                height: 30px;
            }
            .top-bar .right-section {
                font-size: 11px;
                gap: 4px 8px;
            }
            .top-bar a {
                margin-left: 6px;
            }
            .hero-section {
                height: 160px;
            }
            .hero-nav {
                padding: 4px 8px;
                font-size: 12px;
            }
            .section-container {
                padding: 12px 12px;
            }
            .news-left {
                height: 160px;
            }
            .news-item img {
                width: 70px;
                height: 50px;
            }
            .news-item h4 {
                font-size: 12px;
            }
            .event-item img {
                height: 130px;
            }
            .event-item .title {
                font-size: 12px;
                bottom: 5px;
                left: 0;
                right: 0;
            }
            .hotel-item {
                height: 120px;
            }
            .hotel-title h3 {
                font-size: 16px;
            }
            .estate-item {
                flex-wrap: wrap;
                gap: 10px;
            }
            .estate-item img {
                width: 100%;
                height: 100px;
            }
            .tab-nav a {
                font-size: 12px;
                padding: 2px 10px;
            }
            .section-header h3 {
                font-size: 15px;
            }
        }

        body.menu-open {
            overflow: hidden;
        }


/* ========== 二级栏目网页css ========== */

        .liebiao {
            max-width: 1200px;
            margin: 0 auto;
            background-color: #fff;
            padding: 30px;
            border-radius: 4px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        /* ========== 顶部标题与分割线 ========== */
        .page-header {
            font-size: 16px;
            color: #0066cc;
            font-weight: bold;
            padding-bottom: 15px;          /* 给标题下方留出空间 */
            border-bottom: 1px solid #e0e0e0; /* 灰色分割线 */
            margin-bottom: 25px;
        }

        /* ========== 点击切换导航Tab ========== */
        .nav-tabs {
            display: flex;
            gap: 10px;                     /* 标签之间的间距 */
            margin-bottom: 30px;
            /* 针对超过6个标签时的手机端横向滑动优化 */
            overflow-x: auto;
            white-space: nowrap;           /* 容器内元素不换行 */
            padding-bottom: 5px;           /* 留出滚动条的空间 */
            -webkit-overflow-scrolling: touch; /* 提升苹果设备滑动流畅度 */
        }
        .nav-tabs::-webkit-scrollbar {
            height: 4px;                   /* 设置滚动条高度 */
        }
        .nav-tabs::-webkit-scrollbar-thumb {
            background: #ccc;
            border-radius: 4px;
        }
        
        .nav-tabs .tab {
            padding: 10px 30px;
            text-decoration: none;
            border-radius: 6px;            /* 圆角 */
            background-color: #f1f3f5;     /* 默认背景色 */
            color: #555;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;     /* 平滑过渡 */
            user-select: none;             /* 防止点击时选中文字 */
            
            /* 核心修改：强制文字显示在同一行 */
            white-space: nowrap;           
            flex-shrink: 0;                /* 防止标签被挤压变形 */
        }
        .nav-tabs .tab:hover {
            background-color: #e9ecef;     /* 悬浮时颜色加深 */
        }
        .nav-tabs .tab.active {
            background-color: #0066cc;     /* 激活状态蓝底白字 */
            color: #fff;
            box-shadow: 0 2px 6px rgba(0, 102, 204, 0.3); /* 增加轻微阴影 */
        }

        /* ========== 内容区块控制 ========== */
        .tab-content {
            animation: fadeInUp 0.4s ease forwards; /* 内容切换时的渐入动画 */
        }
        .tab-content.active {
            display: block;                /* 激活的内容区块显示 */
        }

        /* 内容渐入动画 */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ========== 详情内容样式 ========== */
        .section {
            margin-bottom: 10px;
            
        }
        .section-title {
            font-size: 18px;
            color: #222;
            margin-bottom: 15px;
            font-weight: bold;
        }
        .section-desc {
            font-size: 14px;
            color: #555;
            margin-bottom: 10px;
            text-align: justify;
        }

        /* ========== 图片网格布局 ========== */
        .img-grid {
            display: grid;
            gap: 15px;
        }
        .img-grid-2 {
            grid-template-columns: repeat(2, 1fr);
        }
        .img-grid-4 {
            grid-template-columns: repeat(2, 1fr);
        }
        .img-grid img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            border-radius: 2px;
        }
        /* 设置图片统一比例，让布局更整齐 */
        .img-grid-2 img {
            aspect-ratio: 16 / 10;
        }
        .img-grid-4 img {
            aspect-ratio: 16 / 10;
        }
        .full-width-img {
            width: 100%;
            height: auto;
            display: block;
            margin-top: 20px;
            border-radius: 2px;
        }

        /* ========== 移动端(H5)适配 ========== */
        @media (max-width: 768px) {

            .leibiao {
                padding: 15px;
            }
            /* 手机端标签居中且保持不折行 */
            .nav-tabs .tab {
                padding: 10px 16px; /* 移动端适当减少内边距 */
                font-size: 14px;
            }
            .img-grid-2, .img-grid-4 {
                grid-template-columns: 1fr; /* 手机端图片变为单列布局 */
            }
            .section-desc {
                font-size: 15px;
            }
        }

/* =================================================================
 *   list.html & show.html 模板样式
 *   栅格布局 / 侧边栏 / 列表内容 / 文章详情 / 标签分享 / 翻页
 * ================================================================= */

/* ---------- 栅格布局 ---------- */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
.col-lg-12, .col-md-12 { flex: 0 0 100%; max-width: 100%; padding: 0 15px; }
.col-xl-3, .col-lg-4  { flex: 0 0 25%;     max-width: 25%;     padding: 0 15px; }
.col-xl-9, .col-lg-8  { flex: 0 0 75%;     max-width: 75%;     padding: 0 15px; }

/* ---------- 通用工具类 ---------- */
.d-flex                { display: flex; }
.align-items-center    { align-items: center; }
.justify-content-between { justify-content: space-between; }
.float-right           { float: right; }
.list-unstyled         { list-style: none; padding: 0; margin: 0; }
.gap-40                { height: 40px; clear: both; }
.mt-4                  { margin-top: 1.5rem; }

/* ---------- 主体容器 ---------- */
.main-container {
    padding: 40px 0;
    background: #f4f6f9;
}

/* ---------- 侧边栏 ---------- */
.sidebar {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
}
.widget {
    padding: 20px;
    border-bottom: 1px solid #eee;
}
.widget:last-child { border-bottom: none; }
.widget-title {
    font-size: 18px;
    color: #222;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0083d0;
}
.widget-title .float-right { font-size: 12px; margin-top: 2px; }
.widget-title .float-right a { color: #0083d0; }

/* 栏目导航菜单 */
.service-menu { list-style: none; padding: 0; margin: 0; }
.service-menu li { border-bottom: 1px dashed #eee; }
.service-menu li:last-child { border-bottom: none; }
.service-menu li a {
    display: block;
    padding: 10px 15px;
    color: #555;
    font-size: 14px;
    transition: all 0.2s;
}
.service-menu li a:hover,
.service-menu li.active a {
    color: #0083d0;
    background: #f0f8ff;
    padding-left: 20px;
}

/* 热门新闻 */
.recent-posts .list-unstyled li { padding: 10px 0; border-bottom: 1px dashed #eee; }
.recent-posts .list-unstyled li:last-child { border-bottom: none; }
.posts-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    overflow: hidden;
    border-radius: 3px;
    margin-right: 12px;
}
.posts-thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-info { flex: 1; min-width: 0; }
.post-info .entry-title { font-size: 13px; line-height: 1.4; margin: 0; }
.post-info .entry-title a { color: #333; }
.post-info .entry-title a:hover { color: #0083d0; }

/* 标签云 */
.widget-tags .list-unstyled { display: flex; flex-wrap: wrap; gap: 8px; }
.widget-tags .list-unstyled li a {
    display: inline-block;
    padding: 4px 12px;
    background: #f0f8ff;
    color: #0083d0;
    border-radius: 3px;
    font-size: 12px;
    transition: all 0.2s;
}
.widget-tags .list-unstyled li a:hover { background: #0083d0; color: #fff; }

/* ---------- 列表内容区 ---------- */
.content-inner-page {
    background: #fff;
    border-radius: 4px;
    padding: 25px;
}
.blog-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}
.blog-item:first-child { padding-top: 0; }
.blog-item:last-child  { border-bottom: none; }

/* 首条大图 */
.large-blog { flex-direction: column; }
.large-blog .bi-pic { width: 100%; height: 280px; }
.large-blog .bi-pic img {
    width: 100%; height: 100%; object-fit: cover; border-radius: 4px;
}
/* 常规列表 */
.blog-item:not(.large-blog) .bi-pic {
    flex-shrink: 0;
    width: 220px;
    height: 150px;
    overflow: hidden;
    border-radius: 4px;
}
.blog-item:not(.large-blog) .bi-pic img {
    width: 100%; height: 100%; object-fit: cover;
}
.bi-text { flex: 1; min-width: 0; }
.bi-text h4 { font-size: 18px; margin: 0 0 10px; line-height: 1.4; }
.bi-text h4 a { color: #222; }
.bi-text h4 a:hover { color: #0083d0; }
.bi-text ul {
    list-style: none; padding: 0; margin: 0 0 10px;
    display: flex; flex-wrap: wrap; gap: 15px;
    font-size: 12px; color: #999;
}
.bi-text ul li span i { margin-right: 4px; color: #0083d0; }
.bi-text .desc {
    font-size: 14px; color: #666; line-height: 1.6; margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.read-more {
    display: inline-block;
    padding: 6px 18px;
    background: #0083d0;
    color: #fff;
    border-radius: 3px;
    font-size: 13px;
    transition: all 0.2s;
}
.read-more:hover { background: #006bb3; color: #fff; }
.read-more span { margin-left: 4px; }

/* ---------- 文章详情区 ---------- */
.post-content {
    background: #fff;
    border-radius: 4px;
    padding: 30px;
}
.entry-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.entry-header .entry-title {
    font-size: 24px;
    color: #222;
    margin: 0 0 12px;
    line-height: 1.3;
}
.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: #999;
}
.post-meta span i { margin-right: 4px; color: #0083d0; }
.post-meta a { color: #0083d0; }
.entry-content {
    font-size: 15px;
    color: #333;
    line-height: 1.8;
}
.entry-content img { max-width: 100%; height: auto; }

/* ---------- 标签与分享 ---------- */
.tags-area {
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.post-tags a {
    display: inline-block;
    padding: 4px 12px;
    margin-right: 6px;
    margin-bottom: 4px;
    background: #f0f8ff;
    color: #0083d0;
    border-radius: 3px;
    font-size: 12px;
    transition: all 0.2s;
}
.post-tags a:hover { background: #0083d0; color: #fff; }
.post-social-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}
.social-icons-head { font-size: 13px; color: #666; margin-right: 4px; }
.post-social-icons li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #666;
    font-size: 14px;
    transition: all 0.2s;
}
.post-social-icons li a:hover { background: #0083d0; color: #fff; }

/* ---------- 上一篇 / 下一篇 ---------- */
.bc-related-post {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    gap: 20px;
}
.previous-post,
.next-post {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: #f4f6f9;
    color: #555;
    border-radius: 3px;
    font-size: 14px;
    transition: all 0.2s;
    max-width: 48%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.previous-post:hover,
.next-post:hover { background: #0083d0; color: #fff; }
.previous-post i,
.next-post i { font-size: 16px; }

/* ---------- 分页容器 ---------- */
.content-inner-page .row .col-md-12 { text-align: center; }

/* ---------- 移动端适配 ---------- */
@media (max-width: 768px) {
    .col-xl-3, .col-lg-4,
    .col-xl-9, .col-lg-8 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .blog-item { flex-direction: column; }
    .blog-item:not(.large-blog) .bi-pic { width: 100%; height: 200px; }
    .large-blog .bi-pic { height: 200px; }
    .bc-related-post { flex-direction: column; }
    .previous-post, .next-post { max-width: 100%; }
    .post-content { padding: 20px; }
    .entry-header .entry-title { font-size: 20px; }
    .sidebar { margin-bottom: 20px; }
}

/* ============================================================
   人才招聘栏目专用样式（show_job.html）
   ============================================================ */

/* 招聘详情容器 */
.job-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 招聘详情主区域 */
.job-detail-main {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 40px;
}

/* 职位头部信息区 */
.job-header {
    padding-bottom: 24px;
    margin-bottom: 30px;
    border-bottom: 2px solid #0083d0;
}
.job-header .entry-title {
    font-size: 26px;
    font-weight: 700;
    color: #222;
    margin: 0 0 16px;
    line-height: 1.4;
}
.job-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    font-size: 14px;
    color: #555;
}
.job-info-list li {
    padding: 0 14px;
    border-right: 1px solid #e0e0e0;
    line-height: 1.2;
}
.job-info-list li:first-child {
    padding-left: 0;
}
.job-info-list li:last-child {
    border-right: none;
}
.job-info-list li span:first-child {
    color: #999;
    margin-right: 6px;
}
.job-info-list li span:last-child {
    color: #333;
    font-weight: 500;
}

/* 职位详情正文区 */
.job-content {
    font-size: 15px;
    color: #333;
    line-height: 1.9;
}
.job-content .entry-content {
    font-size: 15px;
    color: #333;
    line-height: 1.9;
}
.job-content .entry-content img {
    max-width: 100%;
    height: auto;
}

/* 职位详情小标题模块 */
.job-section {
    margin: 30px 0;
}
.job-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #0083d0;
    padding-left: 12px;
    border-left: 4px solid #0083d0;
    margin-bottom: 16px;
    line-height: 1.4;
}
.job-section-content {
    font-size: 15px;
    color: #444;
    line-height: 1.9;
    padding: 0 4px;
}

/* 投递按钮 */
.btn-apply {
    display: inline-block;
    padding: 14px 48px;
    background: #0083d0;
    color: #fff !important;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0,131,208,0.25);
}
.btn-apply:hover,
.btn-apply:focus {
    background: #006aa8;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(0,131,208,0.4);
    transform: translateY(-1px);
}
.btn-apply:active {
    transform: translateY(0);
}

/* 投递按钮居中容器 */
.job-apply {
    text-align: center;
    margin: 40px 0 20px;
}

/* 投递表单区域 */
.job-apply-form {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 30px;
    margin-top: 20px;
    border: 1px solid #eee;
}
.job-apply-form .form-group {
    margin-bottom: 18px;
}
.job-apply-form label {
    display: block;
    font-size: 14px;
    color: #333;
    font-weight: 500;
    margin-bottom: 6px;
}
.job-apply-form .form-control {
    width: 100%;
    padding: 10px 14px;
    font-size: 14px;
    color: #333;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.job-apply-form .form-control:focus {
    outline: none;
    border-color: #0083d0;
    box-shadow: 0 0 0 2px rgba(0,131,208,0.1);
}
.job-apply-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}
.job-apply-form .blank {
    width: 100%;
    padding: 14px;
    background: #0083d0;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.25s;
}
.job-apply-form .blank:hover {
    background: #006aa8;
}

/* 上一篇/下一篇在招聘详情页的样式 */
.job-detail .bc-related-post {
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid #eee;
}

/* ============================================================
   招聘详情页 H5 响应式适配
   ============================================================ */
@media (max-width: 768px) {
    .job-detail-main {
        padding: 20px 16px;
        border-radius: 4px;
    }
    .job-header {
        padding-bottom: 18px;
        margin-bottom: 20px;
    }
    .job-header .entry-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    .job-info-list {
        flex-direction: column;
        gap: 8px;
    }
    .job-info-list li {
        padding: 0;
        border-right: none;
        line-height: 1.6;
    }
    .job-section-title {
        font-size: 16px;
    }
    .job-content,
    .job-content .entry-content,
    .job-section-content {
        font-size: 14px;
        line-height: 1.8;
    }
    .btn-apply {
        display: block;
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
    }
    .job-apply {
        margin: 30px 0 16px;
    }
    .job-apply-form {
        padding: 18px 14px;
    }
    .job-apply-form .row {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .job-apply-form .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }
}

/* ============================================================
   招聘列表页专用样式（list_job.html）
   ============================================================ */

/* 招聘列表容器 */
.job-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 招聘列表项 */
.job-list .job-item {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    padding: 24px 28px !important;
    margin-bottom: 20px !important;
    transition: all 0.25s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.job-list .job-item:hover {
    border-color: #0083d0;
    box-shadow: 0 4px 16px rgba(0,131,208,0.12);
    transform: translateY(-2px);
}

/* 职位标题行 */
.job-list .job-item h5 {
    font-size: 18px !important;
    font-weight: 600;
    margin-bottom: 14px !important;
    line-height: 1.4;
}
.job-list .job-item h5 a {
    color: #222;
    text-decoration: none;
    transition: color 0.2s;
}
.job-list .job-item h5 a:hover {
    color: #0083d0;
}

/* 薪资标签 */
.job-list .job-item .job-salary {
    display: inline-block;
    margin-left: 10px;
    padding: 2px 10px;
    background: #fff3e0;
    color: #e65100;
    font-size: 13px;
    font-weight: 500;
    border-radius: 3px;
    vertical-align: middle;
}

/* 职位信息行（地点/性质/学历等） */
.job-list .job-item .job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}
.job-list .job-item .job-meta span {
    padding: 0 12px;
    border-right: 1px solid #e0e0e0;
    white-space: nowrap;
}
.job-list .job-item .job-meta span:first-child {
    padding-left: 0;
}
.job-list .job-item .job-meta span:last-child {
    border-right: none;
}
.job-list .job-item .job-meta i {
    margin-right: 4px;
    color: #0083d0;
}

/* 右侧操作区 */
.job-list .job-item .job-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
}
.job-list .job-item .job-action .btn-apply-list {
    display: inline-block;
    padding: 8px 24px;
    background: #0083d0;
    color: #fff !important;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    text-decoration: none !important;
    transition: all 0.25s ease;
    margin-bottom: 10px;
}
.job-list .job-item .job-action .btn-apply-list:hover {
    background: #006aa8;
    box-shadow: 0 2px 8px rgba(0,131,208,0.3);
}
.job-list .job-item .job-action .job-date {
    font-size: 12px;
    color: #999;
}
.job-list .job-item .job-action .job-date i {
    margin-right: 4px;
}

/* 招聘筛选/排序区域 */
.job-list .filter {
    background: #fff;
    border-radius: 6px;
    padding: 16px 20px;
    margin-bottom: 20px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.job-list .filter .option {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}
.job-list .filter .option:last-child {
    border-bottom: none;
}
.job-list .filter .option-title {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    margin-bottom: 8px;
}
.job-list .filter ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.job-list .filter ul li a {
    display: inline-block;
    padding: 4px 14px;
    font-size: 13px;
    color: #666;
    background: #f5f7fa;
    border-radius: 3px;
    text-decoration: none;
    transition: all 0.2s;
}
.job-list .filter ul li a:hover,
.job-list .filter ul li a.active {
    background: #0083d0;
    color: #fff;
}

/* 分页样式 */
.job-list .pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    margin: 30px 0 10px;
    padding: 0;
    list-style: none;
}
.job-list .pagination li a,
.job-list .pagination li span {
    display: inline-block;
    padding: 8px 14px;
    min-width: 38px;
    text-align: center;
    background: #fff;
    color: #555;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
}
.job-list .pagination li a:hover {
    color: #0083d0;
    border-color: #0083d0;
}
.job-list .pagination li.active span,
.job-list .pagination li.active a {
    background: #0083d0;
    color: #fff;
    border-color: #0083d0;
}

/* ============================================================
   招聘列表页 H5 响应式适配
   ============================================================ */
@media (max-width: 768px) {
    .job-list {
        padding: 0 10px;
    }
    .job-list .job-item {
        padding: 18px 16px !important;
        margin-bottom: 14px !important;
    }
    .job-list .job-item h5 {
        font-size: 16px !important;
        margin-bottom: 12px !important;
    }
    .job-list .job-item .job-salary {
        display: block;
        margin-left: 0;
        margin-top: 6px;
        width: fit-content;
    }
    .job-list .job-item .job-meta {
        flex-direction: column;
        gap: 6px;
    }
    .job-list .job-item .job-meta span {
        padding: 0;
        border-right: none;
    }
    .job-list .job-item .job-action {
        align-items: stretch;
        margin-top: 14px;
    }
    .job-list .job-item .job-action .btn-apply-list {
        display: block;
        width: 100%;
        text-align: center;
        padding: 10px 20px;
    }
    .job-list .filter {
        padding: 12px 14px;
    }
    .job-list .filter ul li a {
        padding: 3px 10px;
        font-size: 12px;
    }
}
