.jq-job-search-box {
  width: 780px;
  margin: 20px auto;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.jq-search-channels {
  margin-bottom: 10px;
  font-size: 14px;
}
.jq-search-channels label {
  margin-right: 15px;
  cursor: pointer;
}
.jq-search-input-group {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.jq-search-keyword {
  flex: 1;
  padding: 8px 12px;
  border: none;
  outline: none;
  font-size: 14px;
}
.jq-search-type-selector {
  position: relative;
  padding: 8px 12px;
  border-right: 1px solid #ccc;
  cursor: pointer;
  background: #f5f5f5;
  font-size: 14px;
  white-space: nowrap;
  width: 100px;
}
.jq-search-type-panel, .jq-period-options-panel, .jq-sort-options-panel ,.jq-jobtype-options-panel  {
  position: absolute;
  top: 100%;
  left: -1px;
  background: #fff;
  border: 1px solid #00c2b3;
  border-top: none;
  z-index: 1001;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* 全兼职选项面板样式 */
.jq-jobtype-options-panel {
  width: 180px;
  border-top: none;
  display: none;
}
.jq-search-type-panel {
  width: 101px;
}
.jq-period-options-panel{
  width: 120px;
}
.jq-sort-options-panel {
 width: 120px;
}

.jq-sort-option-item, .jq-search-type-item, .jq-period-option-item, .jq-jobtype-option-item {
  padding: 6px 12px;
  cursor: pointer;
  font-size: 12px;
}
.jq-sort-option-item:hover, .jq-search-type-item:hover, .jq-period-option-item:hover, .jq-jobtype-option-item:hover {
  background: #f0f0f0;
}
.jq-search-btn {
  padding: 10px 24px;
  border: none;
  background: #00c2b3;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 8px;
  min-width: 40px;
  border-radius: 0 6px 6px 0;
}
.jq-search-btn:hover {
  background: #00a99a;
  font-weight: 700;
}

/* 筛选条件选择器样式 */
.jq-filter-selectors {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 5px 0px;
  border-radius: 4px;
}

.jq-filter-item {
  display: flex;
  align-items: center;
  padding: 4px 5px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 178px;
}

.jq-filter-item:hover {
  border-color: #00c2b3;
  box-shadow: 0 2px 8px rgba(0, 194, 179, 0.15);
}

.jq-filter-label {
  color: #666;
  font-size: 14px;
  padding: 0px 4px 0 0;
  margin-right: 4px;
  font-weight: 500;
  border-right: 1px dashed #e0e0e0;
  display: inline-block;
  vertical-align: middle;
}

.jq-filter-value {
  display: inline-block;
  vertical-align: middle;
}

.jq-search-type-selector .filter-arrow,
.jq-filter-arrow {
  color: #999;
  font-size: 14px;
  margin-left: 4px;
  transition: transform 0.3s ease;
}

.jq-search-type-selector:hover .filter-arrow,
.jq-filter-item:hover .jq-filter-arrow {
  color: #00c2b3;
}
.jq-search-type-selector svg {
  vertical-align: middle;
  margin-bottom: 0px;
}

/* 时间和排序筛选项靠右显示 */
.jq-filter-item-period {
  margin-left: auto;
}
.jq-filter-item-sort {
  margin-left: 4px; /* 与时间筛选器保持间距 */
}

/* 搜索框中的职能领域特殊样式 */
.jq-filter-item-function {
  min-width: auto;
  max-width: 120px;
  border-left: 1px solid #ccc;
  border-top: none;
  border-bottom: none;
  border-right: none;
  border-radius: 0;
  padding: 8px 10px;
  background: #fff;
}

/* 排序和时间范围样式 */
.jq-filter-item-sort, .jq-filter-item-period {
  position: relative;
  width: 120px; /* 设置固定宽度 */
  min-width: 120px;
}

/* 确保所有筛选条件的值显示区域都有一致的省略显示行为 */
.jq-filter-item .jq-filter-value {
  white-space: nowrap !important; /* 确保文本不换行 - 使用!important确保省略功能正常工作 */
  overflow: hidden !important; /* 确保内容溢出时隐藏 - 使用!important确保省略功能正常工作 */
  text-overflow: clip !important; /* 确保内容溢出时显示省略号 - 使用!important确保省略功能正常工作 */
  font-size: 13px;
 
  flex: 1; /* 允许元素在可用空间内伸缩 */
  min-width: 0; /* 允许元素收缩以适应容器 */
  box-sizing: border-box; /* 确保宽度包含边框和内边距 */
}

/* 为不同筛选条件设置具体的最大宽度 */
.jq-filter-item-industry .jq-filter-value ,
.jq-filter-item-place .jq-filter-value,
.jq-filter-item-jobtype .jq-filter-value{
  max-width: 98px; 
  text-overflow: ellipsis;
  overflow: hidden;
}

.jq-filter-item-sort .jq-filter-value,
.jq-filter-item-period .jq-filter-value {
  max-width: 70px; /* 排序和时间筛选的最大宽度 */
}

/* 确保所有筛选条件的标签和箭头不收缩 */
.jq-filter-item .jq-filter-label,
.jq-filter-item .jq-filter-arrow {
  flex-shrink: 0; /* 防止标签和箭头收缩 */
  margin: 0 1px; /* 确保一致的间距 */
}

/* 确保行业领域和全兼职的箭头位置正确 */
.jq-filter-item-industry .jq-filter-arrow,
.jq-filter-item-jobtype .jq-filter-arrow {
  margin-left: auto; /* 将箭头推到右侧 */
}

/* 确保行业领域、工作地点和全兼职的容器样式一致 */
.jq-filter-item-place,
.jq-filter-item-jobtype,
.jq-filter-item-industry {
  width: 178px; /* 明确设置固定宽度 */
  max-width: 178px; /* 确保不会被撑开 */
  height: 36px; /* 明确设置固定高度，确保切换显示时高度一致 */
  overflow: hidden; /* 确保内容不会溢出容器 */
  display: flex; /* 使用flex布局 */
  align-items: center; /* 垂直居中 */
  justify-content: flex-start; /* 使用默认的flex-start对齐 */
  box-sizing: border-box; /* 确保宽度包含边框和内边距 */
  position: relative; /* 设置相对定位 */
}


/* 搜索框中的职能领域特殊样式 */
.jq-filter-item-function:hover {
  border-color: #ccc;
  box-shadow: none;
  background: #f9f9f9;
}

.jq-filter-item-function .jq-filter-value {
  max-width: 60px;
  font-size: 12px;
}

.jq-filter-item-function .jq-filter-arrow {
  margin-left: 2px;
}

/* 职能选择器主容器 */
.function-selector-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

/* 职能选择器主体 */
.function-selector {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 580px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}

/* 头部：搜索框和选中职能显示区 */
.function-selector-header {
    padding: 10px 15px;
    border-bottom: 1px solid #e5e5e5;
    background-color: #f9f9f9;
    border-radius: 8px 8px 0 0;
}

/* 搜索框区域 */
.function-selector-header .search-area {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.function-selector-header .search-input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.function-selector-header .search-input:focus {
    border-color: #1890ff;
}

.function-selector-header .search-icon {
    margin-left: -30px;
    color: #999;
    font-size: 14px;
}

/* 搜索结果下拉框 */
.function-selector-header .search-results {
    display: none;
    position: absolute;
    top: 45px;
    left: 15px;
    right: 15px;
    max-height: 200px;
    overflow-y: auto;
    background-color: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.function-selector-header .search-results.show {
    display: block;
}

.function-selector-header .search-result-item {
    padding: 8px 12px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.function-selector-header .search-result-item:hover {
    background-color: #e6f7ff;
}

.function-selector-header .search-result-item .result-name {
    font-size: 13px;
    color: #333;
}

.function-selector-header .search-result-item .result-category {
    font-size: 11px;
    color: #999;
    margin-top: 2px;
}

.function-selector-header .title {
    font-size: 13px;
    color: #666;
    margin-bottom: 0;
}

.function-selector-header .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 28px;
}

.function-selector-header .selected-functions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    flex: 1;
    align-items: center;
}

.function-selector-header .hint-message {
    font-size: 12px;
    color: #ff4d4f;
    margin-left: 10px;
    white-space: nowrap;
}

.function-selector-header .function-tag {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    background-color: #1890ff;
    color: #fff;
    border-radius: 3px;
    font-size: 12px;
}

.function-selector-header .function-tag .remove {
    margin-left: 6px;
    cursor: pointer;
    font-weight: bold;
    opacity: 0.8;
}

.function-selector-header .function-tag .remove:hover {
    opacity: 1;
}

.function-selector-header .hint {
    font-size: 11px;
    color: #999;
    margin-left: 8px;
}

/* 主体：左右分栏 */
.function-selector-body {
    flex: 1;
    display: flex;
    overflow: hidden;
}

/* 左侧导航栏 */
.function-selector-nav {
    width: 175px;
    background-color: #f5f5f5;
    border-right: 1px solid #e5e5e5;
    overflow-y: auto;
    padding: 8px 0;
}

/* 一级分类层 */
.function-selector-nav .type-layer {
    padding: 6px 4px 6px 10px;
    cursor: pointer;
    font-size: 13px;
    color: #333;
    border-left: 3px solid transparent;
    transition: all 0.2s;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 32px;
    box-sizing: border-box;
}

.function-selector-nav .type-layer::after {
    content: '>';
    color: #999;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
}

.function-selector-nav .type-layer:hover {
    background-color: #e6f7ff;
    border-left-color: #1890ff;
}

.function-selector-nav .type-layer:hover::after {
    color: #1890ff;
}

.function-selector-nav .type-layer.active {
    background-color: #e6f7ff;
    border-left-color: #1890ff;
    color: #1890ff;
    font-weight: bold;
}

.function-selector-nav .type-layer.active::after {
    color: #1890ff;
}

/* 右侧职能列表 */
.function-selector-list {
    flex: 1;
    padding: 8px 8px;
    overflow-y: auto;
}

/* 职能列表标题 */
.function-selector-list .list-title {
    font-size: 15px;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
}

/* 面包屑导航 */
.function-selector-list .breadcrumb {
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
    padding: 4px 8px;
    background-color: #f9f9f9;
    border-radius: 3px;
}

.function-selector-list .breadcrumb span {
    cursor: pointer;
    transition: color 0.2s;
}

.function-selector-list .breadcrumb span:hover {
    color: #1890ff;
}

.function-selector-list .breadcrumb .separator {
    margin: 0 4px;
    color: #ccc;
    cursor: default;
}

.function-selector-list .breadcrumb .current {
    color: #333;
    cursor: default;
    font-weight: bold;
}

/* 职能项 */
.function-selector-list .function-item {
    display: inline-block;
    padding: 4px 10px;
    margin: 3px 5px 3px 0;
    background-color: #f5f5f5;
    color: #333;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
    position: relative;
    vertical-align: top;
}

/* 二级职能项特殊样式 */
.function-selector-list .function-item.level2 {
    background-color: #fff;
    color: #1890ff;
    font-weight: bold;
    border: 1px solid #1890ff;
    margin-top: 4px;
    margin-bottom: 4px;
}

.function-selector-list .function-item.level2:hover {
    background-color: #1890ff;
    color: #fff;
}

.function-selector-list .function-item.level2.selected {
    background-color: #1890ff;
    color: #fff;
}

.function-selector-list .function-item:hover {
    background-color: #1890ff;
    color: #fff;
}

.function-selector-list .function-item.selected {
    background-color: #1890ff;
    color: #fff;
}

/* 底部：操作按钮 */
.function-selector-footer {
    padding: 7px 15px;
    border-top: 1px solid #e5e5e5;
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 0 0 8px 8px;
}

.function-selector-footer .btn {
    padding: 6px 20px;
    border-radius: 3px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.function-selector-footer .btn-cancel {
    background-color: #f5f5f5;
    color: #666;
    border: 1px solid #d9d9d9;
    margin-right: 8px;
}

.function-selector-footer .btn-cancel:hover {
    background-color: #e6e6e6;
}

.function-selector-footer .btn-confirm {
    background-color: #1890ff;
    color: #fff;
    border: none;
}

.function-selector-footer .btn-confirm:hover {
    background-color: #40a9ff;
}

/* 滚动条样式 */
.function-selector-nav::-webkit-scrollbar,
.function-selector-list::-webkit-scrollbar,
.function-selector-header .search-results::-webkit-scrollbar {
    width: 6px;
}

.function-selector-nav::-webkit-scrollbar-thumb,
.function-selector-list::-webkit-scrollbar-thumb,
.function-selector-header .search-results::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 3px;
}

.function-selector-nav::-webkit-scrollbar-thumb:hover,
.function-selector-list::-webkit-scrollbar-thumb:hover,
.function-selector-header .search-results::-webkit-scrollbar-thumb:hover {
    background-color: #999;
}

/* 城市选择器主容器 */
.city-selector-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

/* 城市选择器主体 */
.city-selector {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 520px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}

/* 头部：选中城市显示区 */
.city-selector-header {
    padding: 10px 15px;
    border-bottom: 1px solid #e5e5e5;
    background-color: #f9f9f9;
    border-radius: 8px 8px 0 0;
}

.city-selector-header .title {
    font-size: 13px;
    color: #666;
    margin-bottom: 4px;
}

.city-selector-header .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 28px;
}

.city-selector-header .selected-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    flex: 1;
}

.city-selector-header .hint-message {
    font-size: 12px;
    color: #ff4d4f;
    margin-left: 10px;
    white-space: nowrap;
}

.city-selector-header .city-tag {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    background-color: #1890ff;
    color: #fff;
    border-radius: 3px;
    font-size: 12px;
}

.city-selector-header .city-tag .remove {
    margin-left: 6px;
    cursor: pointer;
    font-weight: bold;
    opacity: 0.8;
}

.city-selector-header .city-tag .remove:hover {
    opacity: 1;
}

.city-selector-header .hint {
    font-size: 11px;
    color: #999;
    margin-left: 8px;
}

/* 主体：左右分栏 */
.city-selector-body {
    flex: 1;
    display: flex;
    overflow: hidden;
}

/* 左侧导航栏 */
.city-selector-nav {
    width: 140px;
    background-color: #f5f5f5;
    border-right: 1px solid #e5e5e5;
    overflow-y: auto;
    padding: 8px 0;
}

/* 城市选择器导航层通用样式 */
.city-selector-nav .hot-cities-layer,
.city-selector-nav .province-layer,
.city-selector-nav .overseas-layer,
.city-selector-nav .pinyin-group {
    padding: 7px 12px;
    cursor: pointer;
    color: #333;
    border-left: 3px solid transparent;
    transition: all 0.2s;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    text-align: left;
}

/* 城市选择器导航层箭头通用样式 */
.city-selector-nav .hot-cities-layer::after,
.city-selector-nav .province-layer::after,
.city-selector-nav .overseas-layer::after,
.city-selector-nav .pinyin-group::after {
    content: '>';
    color: #999;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
}

/* 热门城市层 */
.city-selector-nav .hot-cities-layer {
    font-size: 14px;
    height: 40px;
    align-items: left;
}

.city-selector-nav .hot-cities-layer::after {
    font-size: 14px;
}

.city-selector-nav .hot-cities-layer:hover,
.city-selector-nav .province-layer:hover,
.city-selector-nav .overseas-layer:hover,
.city-selector-nav .pinyin-group:hover {
    background-color: #e6f7ff;
    border-left-color: #1890ff;
    font-weight: bold;
}

.city-selector-nav .hot-cities-layer:hover::after,
.city-selector-nav .province-layer:hover::after,
.city-selector-nav .overseas-layer:hover::after,
.city-selector-nav .pinyin-group:hover::after {
    color: #1890ff;
}

.city-selector-nav .hot-cities-layer.active,
.city-selector-nav .province-layer.active,
.city-selector-nav .overseas-layer.active,
.city-selector-nav .pinyin-group.active {
    background-color: #e6f7ff;
    border-left-color: #1890ff;
    color: #1890ff;
    font-weight: bold;
}

.city-selector-nav .hot-cities-layer.active::after,
.city-selector-nav .province-layer.active::after,
.city-selector-nav .overseas-layer.active::after,
.city-selector-nav .pinyin-group.active::after {
    color: #1890ff;
}

/* 省份层 */
.city-selector-nav .province-layer {
    font-size: 13px;
    height: 33px;
}

/* 海外层 */
.city-selector-nav .overseas-layer {
    font-size: 14px;
    height: 33px;
}

/* 拼音分组层 */
.city-selector-nav .pinyin-group {
    font-size: 13px;
    height: 33px;
    letter-spacing: 5px;
}

/* 右侧城市列表 */
.city-selector-list {
    flex: 1;
    padding: 8px 8px;
    overflow-y: auto;
}

/* 城市列表标题 */
.city-selector-list .list-title {
    font-size: 15px;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
}

/* 城市项 */
.city-selector-list .city-item {
    display: inline-block;
    padding: 4px 10px;
    margin: 3px 5px 3px 0;
    background-color: #f5f5f5;
    color: #333;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
    position: relative;
    vertical-align: top;
}

/* 海外国家项特殊样式 */
.city-selector-list .city-item.country {
    background-color: #fff;
    color: #1890ff;
    font-weight: bold;
    border: 1px solid #1890ff;
    margin-top: 2px;
    margin-bottom: 2px;
}

.city-selector-list .city-item.country:hover {
    background-color: #1890ff;
    color: #fff;
}

.city-selector-list .city-item.country.selected {
    background-color: #1890ff;
    color: #fff;
}

/* 拼音角标 */
.city-selector-list .city-item.pinyin-badge {
    clear: both;
    min-width: 30px;
    text-align: center;
    background-color: #fff;
    color: #1890ff;
    font-size: 14px;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 3px;
    border: 1px solid #1890ff;
    line-height: 1.5;
    display: inline-block;
}

.city-selector-list .city-item:hover {
    background-color: #1890ff;
    color: #fff;
}

.city-selector-list .city-item.pinyin-badge:hover {
    background-color: #40a9ff;
    color: #fff;
}

.city-selector-list .city-item.selected {
    background-color: #1890ff;
    color: #fff;
}

.city-selector-list .city-item.pinyin-badge.selected {
    background-color: #40a9ff;
    color: #fff;
}

/* 底部：操作按钮 */
.city-selector-footer {
    padding: 7px 15px;
    border-top: 1px solid #e5e5e5;
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 0 0 8px 8px;
}

.city-selector-footer .btn {
    padding: 6px 20px;
    border-radius: 3px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.city-selector-footer .btn-cancel {
    background-color: #f5f5f5;
    color: #666;
    border: 1px solid #d9d9d9;
    margin-right: 8px;
}

.city-selector-footer .btn-cancel:hover {
    background-color: #e6e6e6;
}

.city-selector-footer .btn-confirm {
    background-color: #1890ff;
    color: #fff;
    border: none;
}

.city-selector-footer .btn-confirm:hover {
    background-color: #40a9ff;
}

/* 滚动条样式 */
.city-selector-nav::-webkit-scrollbar,
.city-selector-list::-webkit-scrollbar {
    width: 6px;
}

.city-selector-nav::-webkit-scrollbar-thumb,
.city-selector-list::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 3px;
}

.city-selector-nav::-webkit-scrollbar-thumb:hover,
.city-selector-list::-webkit-scrollbar-thumb:hover {
    background-color: #999;
}

/* 行业选择器主容器 */
.industry-selector-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

/* 行业选择器主体 */
.industry-selector {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 550px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}

/* 头部：选中行业显示区 */
.industry-selector-header {
    padding: 15px 20px;
    border-bottom: 1px solid #e5e5e5;
    background-color: #f9f9f9;
    border-radius: 8px 8px 0 0;
}

.industry-selector-header .title {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.industry-selector-header .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 32px;
}

.industry-selector-header .selected-industries {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
}

.industry-selector-header .hint-message {
    font-size: 12px;
    color: #ff4d4f;
    margin-left: 10px;
    white-space: nowrap;
}

.industry-selector-header .industry-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background-color: #52c41a;
    color: #fff;
    border-radius: 4px;
    font-size: 13px;
}

.industry-selector-header .industry-tag .remove {
    margin-left: 8px;
    cursor: pointer;
    font-weight: bold;
    opacity: 0.8;
}

.industry-selector-header .industry-tag .remove:hover {
    opacity: 1;
}

.industry-selector-header .hint {
    font-size: 12px;
    color: #999;
    margin-left: 10px;
}

/* 主体：左右分栏 */
.industry-selector-body {
    flex: 1;
    display: flex;
    overflow: hidden;
}

/* 右侧行业列表 */
.industry-selector-list {
    flex: 1;
    padding: 15px 20px;
    overflow-y: auto;
}

/* 行业列表标题 */
.industry-selector-list .list-title {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

/* 行业项 */
.industry-selector-list .industry-item {
    display: inline-block;
    padding: 6px 16px;
    margin: 5px 8px 5px 0;
    background-color: #f5f5f5;
    color: #333;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}

.industry-selector-list .industry-item:hover {
    background-color: #52c41a;
    color: #fff;
}

.industry-selector-list .industry-item.selected {
    background-color: #52c41a;
    color: #fff;
}

/* 底部：操作按钮 */
.industry-selector-footer {
    padding: 15px 20px;
    border-top: 1px solid #e5e5e5;
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 0 0 8px 8px;
}

.industry-selector-footer .btn {
    padding: 8px 24px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.industry-selector-footer .btn-cancel {
    background-color: #f5f5f5;
    color: #666;
    border: 1px solid #d9d9d9;
    margin-right: 10px;
}

.industry-selector-footer .btn-cancel:hover {
    background-color: #e6e6e6;
}

.industry-selector-footer .btn-confirm {
    background-color: #52c41a;
    color: #fff;
    border: none;
}

.industry-selector-footer .btn-confirm:hover {
    background-color: #73d13d;
}

/* 滚动条样式 */
.industry-selector-list::-webkit-scrollbar {
    width: 6px;
}

.industry-selector-list::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 3px;
}

.industry-selector-list::-webkit-scrollbar-thumb:hover {
    background-color: #999;
}

/* 热门推荐样式 */
.jq-hot-recommend {
  margin-top: 5px;
  padding: 5px 2px 0 2px;
  background-color: #f9f9f9;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1;
}

.jq-hot-recommend strong {
  display: inline-block;
  padding: 4px 10px 4px 0;
  margin: 0 0 6px 6px;
  font-size: 13px;
  font-weight: bold;
  vertical-align: top;
}

.jq-hot-recommend a {
  display: inline-block;
  padding: 4px 8px;    
  margin: 0 4px 6px 0;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  color: #333;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
  width: 90px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
}

.jq-hot-recommend a:hover {
  background-color: #00c2b3;
  color: #fff;
  border-color: #00c2b3;
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 194, 179, 0.2);
}

.jq-hot-recommend a:active {
  transform: translateY(0);
}

/* 移动端城市选择器适配 */
@media (max-width: 768px) {
  .city-selector {
    width: 95%;
    height: 80vh;
    max-height: 500px;
  }
  
  .city-selector-nav {
    width: 100px;
  }
  
  .city-selector-nav .hot-cities-layer,
  .city-selector-nav .province-layer,
  .city-selector-nav .overseas-layer,
  .city-selector-nav .pinyin-group {
    padding: 7px 8px;
    font-size: 12px;
  }
  
  .city-selector-list {
    padding: 6px 6px;
  }
  
  .city-selector-list .city-item {
    padding: 3px 8px;
    font-size: 13px;
  }
  
  .city-selector-header {
    padding: 8px 10px;
  }
  
  .city-selector-footer {
    padding: 7px 10px;
  }
  
  /* 移动端行业选择器适配 */
  .industry-selector {
    width: 95%;
    height: 80vh;
    max-height: 550px;
  }
  
  .industry-selector-nav {
    width: 100px;
  }
  
  .industry-selector-list {
    padding: 6px 6px;
  }
  
  .industry-selector-list .industry-item {
    padding: 3px 8px;
    font-size: 13px;
  }
  
  .industry-selector-header {
    padding: 10px 12px;
  }
  
  .industry-selector-footer {
    padding: 7px 10px;
  }
  
  /* 移动端职能选择器适配 */
  .function-selector {
    width: 95%;
    height: 80vh;
    max-height: 580px;
  }
  
  .function-selector-nav {
    width: 100px;
  }
  
  .function-selector-nav .type-layer {
    padding: 7px 8px;
    font-size: 12px;
  }
  
  .function-selector-list {
    padding: 6px 6px;
  }
  
  .function-selector-list .function-item {
    padding: 3px 8px;
    font-size: 13px;
  }
  
  .function-selector-header {
    padding: 10px 12px;
  }
  
  .function-selector-footer {
    padding: 7px 10px;
  }
}



/* 小屏幕适配 */
@media (max-width: 1024px) {
  .jq-job-search-box {
    width: 100%;
    margin: 20px auto;
    padding: 0 20px;
    box-sizing: border-box;
  }
  
  .jq-search-input-group {
    flex-wrap: wrap;
    width: 100%;
  }
  
  .jq-search-keyword {
    flex: 1;
    min-width: 100px;
    flex-shrink: 1;
  }
  .jq-filter-item-function {
    max-width: 80px;
  }
  
  .jq-filter-selectors {
    flex-wrap: wrap;
    width: 100%;
  }
  
  .jq-filter-item {
    min-width: 150px;
    flex-shrink: 1;
  }
}
/* 移动端适配 */
@media (max-width: 768px) {
  .jq-job-search-box {
    width: 100%;
    margin: 10px 0;
    padding: 0 10px;
    box-sizing: border-box;
  }
  
  .jq-search-channels {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
  }
  
  .jq-search-channels label {
    margin-right: 0;
    flex: 1;
    min-width: 0;
  }
  .jq-search-type-panel {
    width: 81px;
  }
  .jq-jobtype-options-panel {
    width: 95px;
  }
  .jq-period-options-panel, .jq-sort-options-panel {
    width: 95px;
  }

  .jq-search-input-group {
    flex-wrap: wrap;
    width: 100%;
  }
  
  .jq-search-keyword {
    flex: 1;
    min-width: 0;
    padding: 8px 8px;
    font-size: 14px;
    flex-shrink: 1;
  }
  
  .jq-search-type-selector {
    width: 80px;
    padding: 8px 8px;
    flex-shrink: 0;
  }
  
  .jq-search-btn {
    padding: 8px 8px;
    font-size: 14px;
    min-width: 40px;
    flex-shrink: 0;
  }
  
  .jq-filter-selectors {
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
  }
  
  .jq-filter-item {
    min-width: auto;
    flex: 1;
    min-width: 0;
    flex-shrink: 1;
    min-height: 36px;
    padding: 4px 5px;
    box-sizing: border-box;
  }
  
  .jq-filter-item-period,
  .jq-filter-item-sort {
    min-height: 36px;
    width: 120px;
    min-width: 0;
    padding: 4px 5px;
    box-sizing: border-box;
    flex: 1;
    flex-shrink: 1;
  }
}


