*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: #f4f6f9;
}
.zwxxList{
    width: 100%;
    min-height: calc(100vh - 276px);
    background-color: #f4f6f9;
}
.zw_search{
    width: 100%;
    min-height: 100px;
    background-color: #fff;
}
.zw_search_box{
    width: 1200px;
    margin: 0 auto;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    padding: 10px 0px;
}

/* 搜索输入框容器 - 用边框包裹 */
.search_input {
    width: 100%;
    max-width: 1200px;
    height: 50px;
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: visible;
    background-color: #fff;
    position: relative;
}

/* 输入框样式 - 去掉默认样式 */
.search_input_input {
    flex: 1;
    height: 100%;
    border: none;
    outline: none;
    padding: 0 20px;
    font-size: 14px;
    color: #333;
    background-color: transparent;
}

.search_input_input::placeholder {
    color: #999;
}

/* 下拉框容器 */
.search_input_select {
    display: flex;
    align-items: center;
    height: 100%;
    border-left: 1px solid #e0e0e0;
}

/* 单个下拉框项 */
.search_input_select_item {
    min-width: 160px;
    display: flex;
    justify-content: center;
    position: relative;
    height: 100%;
    padding: 0 30px 0 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    border-right: 1px solid #e0e0e0;
    background-color: transparent;
    transition: background-color 0.3s;
}

.search_input_select_item:last-child {
    border-right: none;
}

.search_input_select_item:hover {
    background-color: #f5f5f5;
}

.search_input_select_item_text {
    font-size: 14px;
    color: #333;
    margin-right: 8px;
}

/* 下拉箭头图标 */
.search_input_select_item_icon {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #999;
    display: inline-block;
    transition: transform 0.3s;
}

.search_input_select_item:hover .search_input_select_item_icon {
    border-top-color: #666;
}

/* 下拉框激活状态 */
.search_input_select_item.active {
    background-color: #f5f5f5;
}

.search_input_select_item.active .search_input_select_item_icon {
    border-top-color: #666;
    transform: rotate(180deg);
}

/* 下拉内容 - 默认隐藏 */
.search_input_select_item_content {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    margin-top: 1px;
}

/* 激活状态下显示下拉内容 */
.search_input_select_item.active .search_input_select_item_content {
    display: block;
}

.search_input_select_item_content_item {
    padding: 10px 0;
}

.search_input_select_item_content_item_link {
    display: block;
    padding: 8px 20px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.search_input_select_item_content_item_link:hover {
    background-color: #f5f5f5;
    color: var(--primary-color);
}

/* 搜索按钮 - 使用主色 */
.search_input_button {
    height: 100%;
    padding: 0 40px;
    border: none;
    outline: none;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.search_input_button:hover {
    opacity: 0.9;
}

.search_input_button:active {
    opacity: 0.8;
}

.search_input_button.is-loading {
    opacity: 0.85;
    cursor: not-allowed;
    pointer-events: none;
}

.search_input_button.is-loading::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 8px;
    vertical-align: middle;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: zwxxSearchSpin 0.8s linear infinite;
}

@keyframes zwxxSearchSpin {
    to {
        transform: rotate(360deg);
    }
}

/* 城市筛选区域 */
.zw_city {
    width: 100%;
    max-width: 1200px;
}

.zw_address_item {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.zw_address_item_text {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    white-space: nowrap;
    line-height: 32px;
}

.zw_address_item_content {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex: 1;
}

.zw_address_item_content_item {
    padding: 6px 16px;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    background-color: #fff;
    transition: all 0.3s;
    cursor: pointer;
}

.zw_address_item_content_item:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.zw_address_item_content_item.active {
    color: var(--primary-color);
}

/* 区域筛选区域 */
.zw_area {
    width: 100%;
    max-width: 1200px;
}

/* 城市选择弹窗 */
.city-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.city-modal.show {
    display: block;
}

.city-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.city-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    max-width: 90%;
    max-height: 75vh;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.city-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.city-modal-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
    font-weight: 500;
}

.city-modal-close {
    font-size: 24px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.city-modal-close:hover {
    color: #333;
}

.city-modal-search {
    padding: 15px 20px;
    border-bottom: 1px solid #e0e0e0;
}

.city-search-input {
    width: 100%;
    height: 40px;
    padding: 0 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.city-search-input:focus {
    border-color: var(--primary-color);
}

.city-modal-body {
    display: flex;
    flex: 1;
    overflow: hidden;
    min-height: 400px;
}

.city-modal-left {
    width: 30%;
    border-right: 1px solid #e0e0e0;
    overflow-y: auto;
}

.city-modal-right {
    width: 70%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.city-modal-right-title {
    padding: 15px 20px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
    background-color: #f8f9fa;
    min-height: 50px;
    display: none;
    align-items: center;
}

.city-list {
    padding: 10px 0;
}

.city-list-item {
    padding: 12px 20px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    border-left: 3px solid transparent;
}

.city-list-item:hover {
    background-color: #f5f5f5;
}

.city-list-item.active {
    background-color: #f0f7ff;
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    font-weight: 500;
}

.area-list {
    padding: 10px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    overflow-y: auto;
}

.area-list-empty {
    width: 100%;
    padding: 40px 20px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

.area-list-item {
    display: inline-block;
    padding: 12px 20px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.area-list-item:hover {
    background-color: #f5f5f5;
    color: var(--primary-color);
}

.area-list-item.active {
    background-color: #f0f7ff;
    color: var(--primary-color);
    font-weight: 500;
}

.city-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 15px 20px;
    border-top: 1px solid #e0e0e0;
}

.city-modal-btn {
    padding: 8px 24px;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.city-modal-btn-cancel {
    background-color: #f5f5f5;
    color: #666;
}

.city-modal-btn-cancel:hover {
    background-color: #e0e0e0;
}

.city-modal-btn-confirm {
    background-color: var(--primary-color);
    color: #fff;
}

.city-modal-btn-confirm:hover {
    opacity: 0.9;
}

/* 筛选条件选择区域 */
.zw_select_box {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.zw_select_box_left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 36px;
    flex: 1;
}

/* 下拉框样式 */
.zw_select_dropdown {
    position: relative;
    display: inline-block;
}

.zw_select_dropdown_trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px 8px 0px;
    font-size: 14px;
    color: #666;
    background-color: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.zw_select_dropdown_trigger:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.zw_select_dropdown.active .zw_select_dropdown_trigger {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.zw_select_dropdown.active .zw_select_dropdown_icon {
    border-top-color: var(--primary-color);
    transform: rotate(180deg);
}

.zw_select_dropdown_text {
    font-size: 14px;
    color: inherit;
}

.zw_select_dropdown_label {
    display: none;
}

.zw_select_dropdown_icon {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #999;
    display: inline-block;
    transition: transform 0.3s;
}

.zw_select_dropdown_trigger:hover .zw_select_dropdown_icon {
    border-top-color: var(--primary-color);
}

/* 下拉内容 */
.zw_select_dropdown_content {
    position: absolute;
    top: 100%;
    left: -16px;
    min-width: 100%;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1000;
    margin-top: 4px;
    max-height: 300px;
    overflow-y: auto;
}

.zw_select_dropdown.active .zw_select_dropdown_content {
    display: block;
}

.zw_select_dropdown_item {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    white-space: nowrap;
}

.zw_select_dropdown_item:hover {
    background-color: #f5f5f5;
    color: var(--primary-color);
}

.zw_select_dropdown_item.selected {
    color: var(--primary-color);
    font-weight: 500;
}

.zw_select_dropdown_item:first-child {
    border-radius: 4px 4px 0 0;
}

.zw_select_dropdown_item:last-child {
    border-radius: 0 0 4px 4px;
}

/* 清空筛选按钮区域 */
.clear_select_box {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.clear_select_box_button {
    padding: 8px 20px;
    font-size: 14px;
    color: #666;
    background-color: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    border: none;
    /* padding-right: 0px; */
}

.clear_select_box_button:hover {
    color: var(--primary-color);
}
.zw_sx_box{
    width: 100%;
    height: 48px;
    margin-bottom: 15px;
}
.zw_sx_item_box{
    width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: #fff;
    border-bottom: solid 3px var(--primary-color);
    margin-top: 15px;
}
.zw_sx_item{
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s;
    box-sizing: border-box;
    padding: 12px 20px;
}
.zw_sx_item.active{
    background: var(--primary-color);
    color: #fff;
}
.zw_list_box{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 200px;
}

.zw_list_loading,
.zw_list_empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    padding: 40px 20px;
    background: #fff;
    border-radius: 10px;
    color: #999;
    font-size: 14px;
}

.zw_list_loading_spinner {
    width: 32px;
    height: 32px;
    margin-bottom: 12px;
    border: 3px solid rgba(0, 0, 0, 0.08);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: zwxxSearchSpin 0.8s linear infinite;
}

.zw_list_loading_text {
    color: #666;
    line-height: 22px;
}
.zw_list_item{
    width: 100%;
    min-height: 120px;
    background: #fff;
    padding: 15px;
    box-sizing: border-box;
    border-radius: 10px;
    margin-bottom: 15px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 24px;
}

/* 职位信息、公司信息、操作按钮横向布局 */
.item_zwxx,
.item_gsxx,
.item_czan{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.item_zwxx{
    flex: 1.6;
}

.item_gsxx{
    flex: 1.2;
}

.item_czan{
    flex: 0 0 120px;
    align-items: flex-end;
    justify-content: center;
}

/* 职位名称与薪资 */
.item_zwxx .zwmc{

    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 8px;
}

.item_zwxx .zwmc p:first-child{
    font-size: 16px;
    font-weight: 600;
    color: #000;
    line-height: 24px;
}

.item_zwxx .zwmc p:last-child{
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 24px;
    margin-left: 12px;
}

/* 职位标签 */
.item_zwxx .tag{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}

.item_zwxx .tag span{
    padding: 4px 10px;
    font-size: 12px;
    color: #666;
    background: #f5f6fa;
    border-radius: 12px;
}

/* 其他信息（地点、年限、学历） */
.item_zwxx .other{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    color: #777;
}

.item_zwxx .other .address{
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.item_zwxx .other .address img{
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.item_zwxx .other .address p{
    margin: 0;
}

/* 公司信息区 */
.item_gsxx .gsmc{
    display: flex;
    align-items: center;
    gap: 10px;
}

.item_gsxx .gsmc img{
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: #f5f5f5;
    object-fit: cover;
}

.item_gsxx .gsmc p{
    width: 360px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.item_gsxx .gsmc .rzqk{
    padding: 2px 8px;
    font-size: 12px;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 12px;
}

.item_gsxx .gstag{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
    color: #777;
}
.gstag span{
    padding: 4px 10px;
    font-size: 12px;
    color: #666;
    background: #f5f6fa;
    border-radius: 12px;
}

/* 立即投递按钮使用主色 */
.item_czan button{
    padding: 8px 20px;
    font-size: 14px;
    color: #fff;
    background-color: var(--primary-color);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.1s ease;
}

.item_czan button:hover{
    opacity: 0.9;
}

.item_czan button:active{
    transform: scale(0.97);
}
.fbsj{
    font-size: 14px;
    color: #777;
}

/* 自定义分页 */
.zw_pagination{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    gap: 6px;
    font-size: 14px;
    background: #fff;
    padding: 24px 0px;
}

.zw_pagination a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    color: #666;
    background-color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.zw_pagination a:hover{
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.zw_pagination .zw_page_num.active{
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.zw_pagination .zw_page_btn.disabled{
    cursor: not-allowed;
    color: #bbb;
    border-color: #eee;
    background-color: #f8f8f8;
}