* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft Yahei", sans-serif;
        }
        body, html {
            width: 100%;
            height: 100%;
            overflow: hidden;
            background: #f5f5f5;
        }
        .container {
            display: flex;
            width: 100%;
            height: 100%;
            min-width: 1200px;
            position: relative;
        }

        /* 加载遮罩 */
        .loading-mask {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.9);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            flex-direction: column;
        }
        .loading-mask.hidden {
            display: none;
        }
        .spinner {
            width: 50px;
            height: 50px;
            border: 3px solid #f3f3f3;
            border-top: 3px solid #2BB781;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-bottom: 15px;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        .error-message {
            color: #2bb781;
            padding: 20px;
            text-align: center;
            background: #f3fffa;
            border-radius: 8px;
            max-width: 400px;
        }
        .retry-btn {
            background: #2BB781;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 4px;
            cursor: pointer;
            margin-top: 10px;
            font-size: 14px;
        }
        .retry-btn:hover {
            opacity: 0.8
        }

        /* 左侧省市区树样式 */
        .left-menu {
            width: 220px;
            background: #fff;
            border-right: 1px solid #e0e0e0;
            padding: 15px;
            overflow-y: auto;
            box-shadow: 2px 0 5px rgba(0,0,0,0.05);
        }
        .left-menu h3 {
            font-size: 16px;
            margin-bottom: 15px;
            color: #333;
            padding-bottom: 10px;
            border-bottom: 2px solid #2BB781;
        }
        
        /* 中间招聘会列表样式 */
        .middle-list {
            width: 320px;
            border-right: 1px solid #e0e0e0;
            display: flex;
            flex-direction: column;
            background: #fff;
        }
        .search-bar {
            padding: 15px;
            border-bottom: 1px solid #e0e0e0;
            background: #fff;
            display: flex;
            gap: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        .search-bar input {
            flex: 1;
            height: 38px;
            padding: 0 15px;
            border: 1px solid #e0e0e0;
            border-radius: 6px;
            font-size: 14px;
            transition: all 0.3s;
        }
        .search-bar input:focus {
            outline: none;
            border-color: #2BB781;
            box-shadow: 0 0 0 3px rgba(0, 193, 200,0.1);
        }
        .search-bar button {
            width: 70px;
            height: 38px;
            background: #2BB781;
            color: #fff;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s;
            font-weight: 500;
        }
        .search-bar button:hover {
            background: #199f6b;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0, 193, 200,0.3);
        }
        .search-bar button:active {
            transform: translateY(0);
        }
        .job-list {
            flex: 1;
            overflow-y: auto;
            padding: 15px;
            background: #fff;
        }
        .job-item {
            padding: 15px;
            border: 1px solid #f0f0f0;
            margin-bottom: 10px;
            border-radius: 8px;
            background: #fff;
            transition: all 0.3s;
            cursor: pointer;
            position: relative;
        }
        .job-item:hover {
            box-shadow: 0 4px 15px rgba(0, 193, 200, 0.15);
            border-color: #2BB781;
            transform: translateY(-2px);
        }
        .job-item.active {
            border-color: #2BB781;
            background: linear-gradient(135deg, rgba(0, 193, 200, 0.05), rgba(0, 193, 200, 0.02));
            box-shadow: 0 4px 15px rgba(0, 193, 200, 0.1);
        }
        .tag-container {
            position: absolute;
            top: -5px;
            right: 5px;
            display: flex;
            gap: 5px;
            z-index: 1;
        }
        .job-tag {
            color: white;
            padding: 2px 8px;
            border-radius: 0 6px;
            font-size: 11px;
            font-weight: bold;
            user-select: none; /* 禁止选中 */
            white-space: nowrap; /* 防止标签文字换行 */
        }

        /* 各标签配色 */
        .tag-top {
            background: linear-gradient(45deg, #F44336, #FF5722);
        }
        .tag-hot {
            background: linear-gradient(45deg, #FF9800, #FFC107);
        }
        .tag-recommend {
            background: linear-gradient(45deg, #4CAF50, #8BC34A);
        }
        .job-item h4 {
            font-size: 15px;
            color: #333;
            margin-bottom: 8px;
            line-height: 1.4;
        }
        .job-item p {
            font-size: 13px;
            color: #666;
            margin-bottom: 10px;
            line-height: 1.4;
        }
        .job-item .bt{
            margin-top: 5px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .job-item .salary {
            color: #E91E63;
            font-size: 14px;
            font-weight: bold;
            display: inline-block;
            line-height: 25px;
        }
        .view-btn {
            float: right;
            background: #2BB781;
            color: #fff;
            border: none;
            padding: 6px 15px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 13px;
            transition: all 0.3s;
        }
        .view-btn:hover {
            background: #008451;
            transform: translateY(-1px);
            box-shadow: 0 4px 8px rgba(0, 193, 200, 0.3);
        }
        .view-btn:active {
            transform: translateY(0);
        }
        /* 加载提示样式 */
        .loading {
            text-align: center;
            padding: 20px;
            color: #666;
            font-size: 14px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }
        .loading:before {
            content: '';
            width: 30px;
            height: 30px;
            border: 2px solid #f3f3f3;
            border-top: 2px solid #2BB781;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        .no-data-wrap {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 40px 10px;
            color: #ccc;
            font-size: 14px;
        }
        .no-data-icon {
            width: 60px;
            height: 60px;
            fill: #ccc !important;
            margin-bottom: 12px;
        }
        .no-more {
            text-align: center;
            padding: 20px;
            color: #999;
            font-size: 13px;
            border-top: 1px solid #f0f0f0;
            margin-top: 10px;
        }

        /* 右侧地图容器 */
        .right-map {
            flex: 1;
            position: relative;
            background: #f0f2f5;
        }
        #mapContainer {
            width: 100%;
            height: 100%;
            z-index: 1;
            touch-action: none;
        }

        /* 地图占位符（API未加载时显示） */
        .map-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            font-size: 18px;
            text-align: center;
            padding: 20px;
            flex-direction: column;
            gap: 15px;
        }
        .map-placeholder.hidden {
            display: none;
        }
        
        /* 地图控件样式 */
        .map-controls {
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .map-btn {
            width: 40px;
            height: 40px;
            background: white;
            border: 1px solid #ddd;
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: #555;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }
        .map-btn:hover {
            background: #2BB781;
            color: white;
            border-color: #2BB781;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255,87,34,0.3);
        }
        .map-btn:active {
            transform: translateY(0);
        }
        .map-btn.active {
            background: #2BB781;
            color: white;
            border-color: #2BB781;
        }
        
        /* 地图图例 */
        .map-legend {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: white;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
            z-index: 1000;
            font-size: 12px;
            min-width: 180px;
        }
        .legend-title {
            font-weight: bold;
            margin-bottom: 10px;
            color: #333;
            font-size: 13px;
        }
        .legend-item {
            display: flex;
            align-items: center;
            margin: 8px 0;
        }
        .legend-color {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            margin-right: 10px;
        }
        
        /* 招聘会详情面板 */
        .detail-panel {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            padding: 20px;
            box-shadow: 0 -3px 15px rgba(0,0,0,0.1);
            transform: translateY(100%);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1001;
            height: 90vh;
            overflow-y: hidden; /* 改为hidden，整个面板不滚动 */
            border-radius: 12px 12px 0 0;
            display: flex;
            flex-direction: column;
        }
        .detail-panel.show {
            transform: translateY(0);
        }

        /* 标题区域 - 固定高度 */
        .detail-title {
            font-size: 18px;
            color: #333;
            margin-bottom: 15px;
            padding-right: 30px;
            font-weight: 600;
            flex-shrink: 0; /* 防止标题被压缩 */
        }

        /* 内容容器 - 使用flex布局 */
        #detailContent {
            flex: 1; /* 占据剩余空间 */
            overflow: hidden; /* 隐藏溢出 */
            display: flex;
            flex-direction: column;
        }

        /* 详情信息区域 - 使用flex布局 */
        .detail-info {
            flex: 1; /* 占据剩余空间 */
            display: flex;
            flex-direction: column;
            overflow: hidden; /* 隐藏溢出 */
            min-height: 0; /* 重要：允许在flex容器中收缩 */
        }

        /* 基本信息项目区域 - 不滚动 */
        .detail-info-item {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            flex-shrink: 0; /* 不压缩 */
            margin-bottom: 20px;
        }

        /* 详情项目 */
        .detail-item {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
        }
        .detail-item strong {
            color: #2bb781;
            display: block;
            margin-bottom: 8px;
            font-size: 15px;
        }

        /* 描述内容区域 - 可以滚动 */
        .detail-content {
            flex: 1; /* 占据剩余空间 */
            display: flex;
            flex-direction: column;
            overflow: hidden; /* 隐藏溢出 */
            min-height: 0; /* 重要：允许在flex容器中收缩 */
        }
        .detail-content strong {
            color: #2bb781;
            display: block;
            margin-bottom: 8px;
            font-size: 15px;
            flex-shrink: 0; /* 标题不压缩 */
        }

        /* 描述滚动区域 - 只有这里可以滚动 */
        .description-scroll {
            flex: 1; /* 占据剩余空间 */
            overflow-y: auto; /* 垂直滚动 */
            border: 1px solid #eee;
            padding: 15px;
            border-radius: 8px;
            margin-top: 5px;
            background: #f9f9f9;
            line-height: 1.6;
            font-size: 14px;
        }
        .detail-close {
            position: absolute;
            right: 20px;
            top: 20px;
            cursor: pointer;
            font-size: 24px;
            color: #999;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s;
        }
        .detail-close:hover {
            background: #f5f5f5;
            color: #2BB781;
        }
        
        .pageInsideHeads {
    position: relative;
    width: 100%;
    height: 50px;
    min-width: 1200px;
    background: linear-gradient(135deg, #2BB781 0%, #1a9f6b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(43, 183, 129, 0.2);
    z-index: 1000;
}

.InsideHeadData {
    position: relative;
    width: 100%;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo样式 */
.InsideHeadLogo {
    display: flex;
    align-items: center;
    margin-right: 30px;
    flex-shrink: 0;
}

.InsideHeadLogo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}

.InsideHeadLogo a:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.logo-img {
    height: 52px;
    margin-right: 10px;
    border-radius: 4px;
    padding: 4px;
}

.logo-text {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* 导航菜单样式 */
.InsideHeadNavs {
    position: relative;
    height: 100%;
    flex: 1;
    display: flex;
    align-items: center;
}

.InsideHeadNavs .InsideHeadNavs_box {
    display: flex;
    align-items: center;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.InsideHeadNavs .InsideHeadNavs_box li {
    position: relative;
    height: 100%;
    margin-right: 25px;
}

.InsideHeadNavs .InsideHeadNavs_box li:last-child {
    margin-right: 0;
}

.InsideHeadNavs .InsideHeadNavs_box li a {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 0 5px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.InsideHeadNavs .InsideHeadNavs_box li a:hover {
    color: #fff;
    transform: translateY(-1px);
}

.InsideHeadNavs .InsideHeadNavs_box li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.InsideHeadNavs .InsideHeadNavs_box li a:hover::after {
    width: 100%;
}

/* 当前页面高亮 */
.InsideHeadNavs .InsideHeadNavs_box li.active a {
    color: #fff;
    font-weight: 600;
}

.InsideHeadNavs .InsideHeadNavs_box li.active a::after {
    width: 100%;
}

/* 右侧功能区样式 */
.InsideHeadLinks {
    display: flex;
    align-items: center;
    margin-left: auto;
    flex-shrink: 0;
}

/* 未登录状态 */
.unlogin-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.InsideHeadLinks_a {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    gap: 5px;
}

.InsideHeadLinks_a:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.InsideHeadLinks_a i {
    font-size: 14px;
}

/* 登录按钮样式 */
.login-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(245, 124, 0, 0.3);
    transition: all 0.3s ease;
}

.login-btn:hover {
    color: #fff;
    background: linear-gradient(135deg, #F57C00 0%, #EF6C00 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 124, 0, 0.4);
}

.mobile-nav-menu{display: none;}
/* 移动端菜单按钮样式 */
.mobile-menu-btn {
    display: none; /* 默认隐藏，移动端显示 */
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    padding: 0;
    margin-left: 15px;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.menu-line {
    width: 22px;
    height: 2px;
    background: white;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .menu-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* 移动端菜单遮罩 */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* 移动端菜单容器 */
.mobile-nav-menu {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background: white;
    z-index: 9999;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.2);
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.mobile-nav-menu.open {
    left: 0;
}

/* 移动端菜单头部 */
.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 15px;
    background: linear-gradient(135deg, #2BB781 0%, #1a9f6b 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-nav-logo .logo-img {
    height: 32px;
    border-radius: 4px;
}

.mobile-nav-logo .logo-text {
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.mobile-nav-close {
    background: none;
    border: none;
    color: #000000;
    font-size: 28px;
    width: 30px;
    height: 30px;
    display: flex;
    position: absolute;
    right: 10px;
    top: 5px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s ease;
}

.mobile-nav-close:hover {
    transform: scale(1.1);
}

/* 移动端菜单内容 */
.mobile-nav-content {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 20px;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.mobile-nav-section {
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-section:last-child {
    border-bottom: none;
}

.mobile-nav-title {
    padding: 0 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #999;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-item {
    margin: 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-item.active .mobile-nav-link {
    background: rgba(43, 183, 129, 0.1);
    border-left-color: #2BB781;
    color: #2BB781;
    padding-left: 25px;
}

.mobile-nav-link i {
    margin-right: 12px;
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.login-link {
    background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
    color: white !important;
    margin: 10px 15px;
    border-radius: 6px;
    border-left: none !important;
}

.login-link:hover {
    background: linear-gradient(135deg, #F57C00 0%, #EF6C00 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 124, 0, 0.3);
}

/* 移动端菜单底部 */
.mobile-nav-footer {
    margin-top: auto;
    padding: 20px 20px 0 20px;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

.mobile-nav-contact {
    margin-bottom: 15px;
}

.mobile-nav-contact p {
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
    line-height: 1.4;
    text-align: center;
}

.mobile-nav-copyright {
    font-size: 12px;
    color: #999;
    text-align: center;
}

/* 响应式显示 */
@media screen and (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .InsideHeadNavs {
        display: none;
    }
    
    .unlogin-links {
        display: none;
    }
    
    .InsideHeadLinks {
        margin-left: auto;
        display: flex;
        align-items: center;
    }
}

@media screen and (min-width: 769px) {
    .mobile-nav-menu,
    .mobile-nav-overlay {
        display: none !important;
    }
}
/* 移动端响应式样式 */
@media screen and (max-width: 768px) {
    /* 全局调整 */
    body, html {
        height: 100vh;
        min-height: 100vh;
    }
    
    .container {
        flex-direction: column;
        min-width: unset;
        height: auto;
        padding: 0;
    }
    
    /* 加载遮罩调整 */
    .loading-mask {
        position: fixed;
    }
    
    /* 左侧地区树 - 移动端变为顶部筛选栏 */
    .left-menu {
        width: 100%;
        height: auto;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        padding: 12px 15px;
        overflow: visible;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    
    .left-menu h3 {
        font-size: 15px;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .left-menu h3::after {
        content: '▼';
        font-size: 12px;
        color: #666;
        transition: transform 0.3s;
    }
    
    .left-menu.collapsed h3::after {
        transform: rotate(-90deg);
    }
    
    .region-tree {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .left-menu.expanded .region-tree {
        max-height: 300px;
        overflow-y: auto;
    }
    
    /* 中间列表 - 全宽显示 */
    .middle-list {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        flex: none;
        height: 40vh;
    }
    
    .search-bar {
        padding: 12px;
        gap: 8px;
    }
    
    .search-bar input {
        height: 36px;
        font-size: 14px;
    }
    
    .search-bar button {
        width: 60px;
        height: 36px;
        font-size: 14px;
    }
    
    .job-list {
        padding: 12px;
    }
    
    .job-item {
        padding: 12px;
        margin-bottom: 8px;
    }
    
    .job-item h4 {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .job-item p {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .job-item .bt {
        margin-top: 5px;
    }
    
    .view-btn {
        padding: 5px 12px;
        font-size: 12px;
    }
    
    /* 右侧地图 - 全宽显示，高度可调整 */
    .right-map {
        width: 100%;
        flex: none;
        height: 50vh;
        position: relative;
    }
    
    #mapContainer {
        height: 100%;
    }
    
    .map-placeholder {
        font-size: 16px;
        padding: 15px;
    }
    
    /* 地图控件 - 移动端调整位置和大小 */
    .map-controls {
        top: 10px;
        right: 10px;
        gap: 5px;
    }
    
    .map-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    /* 地图图例 - 移动端简化 */
    .map-legend {
        bottom: 10px;
        left: 10px;
        padding: 10px;
        font-size: 11px;
        min-width: 150px;
    }
    
    /* 详情面板 - 移动端全屏显示 */
    .detail-panel {
        height: 90vh;
        border-radius: 12px 12px 0 0;
        padding: 15px;
    }
    
    .detail-title {
        font-size: 16px;
        margin-bottom: 12px;
        padding-right: 25px;
    }
    
    .detail-info-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .detail-item {
        font-size: 13px;
    }
    
    .detail-content strong {
        font-size: 15px;
    }
    
    .description-scroll {
        font-size: 13px;
        padding: 12px;
    }
    
    .detail-close {
        right: 15px;
        top: 15px;
        font-size: 20px;
    }
    
    /* 头部导航调整 */
    .pageInsideHeads {
        min-width: unset;
        height: 44px;
    }
    
    .InsideHeadData {
        padding: 0 10px;
    }
    
    .InsideHeadLogo {
        margin-right: 15px;
    }
    
    .logo-img {
        height: 36px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    /* 导航菜单 - 移动端改为汉堡菜单 */
    .InsideHeadNavs {
        display: none; /* 默认隐藏，通过JS控制显示 */
    }
    
    .mobile-nav-toggle {
        display: block;
        width: 30px;
        height: 30px;
        background: none;
        border: none;
        color: white;
        font-size: 20px;
        cursor: pointer;
        margin-left: 10px;
    }
    
    /* 移动端导航弹出菜单 */
    .mobile-nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        z-index: 9999;
        display: none;
    }
    
    .mobile-nav-menu.open {
        display: block;
    }
    
    .mobile-nav-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .mobile-nav-menu li {
        border-bottom: 1px solid #f0f0f0;
    }
    
    .mobile-nav-menu a {
        display: block;
        padding: 15px;
        color: #333;
        text-decoration: none;
        font-size: 14px;
        transition: background 0.3s;
    }
    
    .mobile-nav-menu a:hover,
    .mobile-nav-menu li.active a {
        background: rgba(43, 183, 129, 0.1);
        color: #2BB781;
    }
    .login-link-2{
        color: #2BB781!important;
    }
    /* 右侧功能链接调整 */
    .InsideHeadLinks {
        margin-left: auto;
    }
    
    .InsideHeadLinks_a {
        padding: 5px 8px;
        font-size: 12px;
        gap: 3px;
    }
    
    .login-btn {
        padding: 6px 12px;
        font-size: 12px;
        gap: 4px;
    }
    
    /* 移动端底部操作栏 */
    .mobile-bottom-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 50px;
        background: white;
        border-top: 1px solid #e0e0e0;
        display: flex;
        justify-content: space-around;
        align-items: center;
        z-index: 1000;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    }
    
    .bottom-bar-btn {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #666;
        text-decoration: none;
        font-size: 11px;
        gap: 4px;
        padding: 5px;
        flex: 1;
    }
    
    .bottom-bar-btn i {
        font-size: 18px;
    }
    
    .bottom-bar-btn.active {
        color: #2BB781;
    }
    
    .detail-item strong {
        color: #2bb781;
        display: inline-block;
        margin-bottom: 8px;
        font-size: 15px;
        width: 70px;
    }
    .detail-info-item{
        margin-bottom: 10px;
    }
}

/* 平板设备调整 */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .container {
        min-width: unset;
    }
    
    .left-menu {
        width: 180px;
    }
    
    .middle-list {
        width: 280px;
    }
    
    .job-item h4 {
        font-size: 14px;
    }
    
    .detail-info-item {
        grid-template-columns: 1fr;
    }
}
/* ================= 移动端信息面板 ================= */
#mobile-info-panel {
    position: fixed;
    left: 0;
    right: 0;
    bottom: -100%;
    z-index: 9999;
    background: transparent;
    transition: bottom 0.25s ease;
    pointer-events: none;
}

#mobile-info-panel.show {
    bottom: 0;
    pointer-events: auto;
}

#mobile-info-panel .panel-inner {
    background: #fff;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    max-height: 60vh;
    overflow: hidden;
}

#mobile-info-panel .panel-header {
    position: relative;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#mobile-info-panel .panel-drag {
    width: 36px;
    height: 4px;
    background: #ddd;
    border-radius: 2px;
}

#mobile-info-panel .panel-close {
    position: absolute;
    right: 12px;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

#mobile-info-panel .panel-body {
    padding: 12px 16px 20px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.info-content h3 {
    margin: 0 0 6px;
    font-size: 16px;
}

.info-content p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

