
.gg56863 img {
    width: 290px;
    height: 160px;
}
input[type="checkbox"] {
    width: 18px;
    height: 18px;
    background-color: #fff;
    -webkit-appearance: none;
    border: 1px solid #c9c9c9;
    border-radius: 2px;
    outline: none;
}

input[type="checkbox"]:checked {
    background: url("https://img1.17img.cn/ui/simg/woyaoce/0720/yxz.png") no-repeat center;
    background-size: 100% 100%;
}

.disable {
    pointer-events: none;
}

.disBackColor {
    background: #9F9F9F !important;
}
.recommendation-panel {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 16px;
    margin-top: 16px;
    transition: all 0.3s ease;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.panel-title {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.close-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.close-button:hover {
    opacity: 1;
}

.tag-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.tag-button {
    padding: 6px 12px;
    background-color: #f7f7f7;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    color: #333;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tag-button:hover {
    background-color: #e9f5ff;
    border-color: #17C37B;
    color: #17C37B;
}

.tag-button:active {
    transform: scale(0.95);
}
/* 整体容器样式 */
.job-filter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 16px 0;
    padding: 0 8px;
}

/* 职位标签区域 */
.job-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

/* 单个职位标签 */
.job-tab {
    padding: 0 16px;
    height: 40px;
    line-height: 40px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    background-color: #f5f5f5;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
    border: 1px solid #d9d9d9;
}

.job-tab:hover {
    background-color: #e6f7ff;
    border-color: #17C37B;
    color: #17C37B;
}

.job-tab.active {
    background-color: #17C37B;
    border-color: #17C37B;
    color: white;
}

/* 添加按钮 */
.add-tab-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: #666;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid #d9d9d9; /* 新增边框 */
    box-sizing: border-box; /* 确保边框不影响整体尺寸 */
}

.add-tab-btn:hover {
    background-color: #e6f7ff;
    color: #17C37B;
}
/* 加号样式 */
.simple-plus {
    display: inline-block;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: inherit; /* 继承父元素颜色 */
    transition: transform 0.3s ease;
}

.add-tab-btn .icon {
    width: 16px;
    height: 16px;
}

/* 批量操作区域 */
.batch-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* 全选复选框 */
.select-all {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox-input {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    appearance: none;
    border: 1px solid #d9d9d9;
    border-radius: 2px;
    outline: none;
    transition: all 0.2s;
    position: relative;
}

.checkbox-input:checked {
    background-color: #17C37B;
    border-color: #17C37B;
}

.checkbox-input:checked::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 6px;
    width: 4px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label {
    font-size: 14px;
    color: #666;
    cursor: pointer;
    user-select: none;
    transition: color 0.2s;
}

.checkbox-input:hover + .checkbox-label,
.checkbox-label:hover {
    color: #17C37B;
}

/* 批量投递按钮 */
.batch-delivery-btn {
    padding: 0 16px;
    height: 36px;
    line-height: 36px;
    border-radius: 18px;
    font-size: 14px;
    font-weight: 500;
    color: white;
    background-color: #17C37B;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
}

.batch-delivery-btn:hover {
    background-color: #14a866;
    box-shadow: 0 2px 8px rgba(23, 195, 123, 0.3);
}

.batch-delivery-btn:active {
    transform: translateY(1px);
}
/* 职位卡片容器 */
.job-card {
    position: relative;
    display: flex;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 20px;
    margin-top: 16px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.job-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* 复选框 */
.job-checkbox {
    width: 18px;
    height: 18px;
    margin-right: 16px;
    margin-top: 10px;
    cursor: pointer;
    appearance: none;
    border: 1px solid #d9d9d9;
    border-radius: 2px;
    outline: none;
    transition: all 0.2s;
    position: relative;
    flex-shrink: 0;
}

.job-checkbox:checked {
    background-color: #17C37B;
    border-color: #17C37B;
}

.job-checkbox:checked::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 6px;
    width: 4px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* 职位信息 */
.job-info {
    flex: 1;
    padding-right: 20px;
    min-width: 0;
}

.job-title {
    margin: 0 0 12px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.job-title a {
    color: inherit;
    text-decoration: none;
}

.job-title a:hover {
    color: #17C37B;
}

.urgent-tag {
    display: inline-block;
    width: 20px;
    height: 16px;
    background: #FF4040;
    color: white;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    border-radius: 2px;
    margin-right: 8px;
    vertical-align: middle;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.job-salary {
    font-size: 16px;
    font-weight: 600;
    color: #FF6B00;
    margin: 0;
}

.job-details {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #999;
    margin: 0;
}

.separator {
    margin: 0 8px;
    color: #e8e8e8;
}

/* 公司信息 */
.company-info {
    display: flex;
    align-items: flex-start;
    width: 430px;
}

.company-details {
    flex: 1;
    min-width: 0;
}

.company-name {
    margin: 0 0 12px 0;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.company-meta {
    font-size: 14px;
    color: #999;
}

.company-benefits {
    margin-top: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 300px;
}

.company-logo {
    width: 80px;
    height: 50px;
    margin-left: 20px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.company-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 操作按钮 */
.job-actions {
    display: none;
    flex-direction: column;
    align-items: flex-end;
    margin-left: 20px;
}

.collection-action {
    display: flex;
    align-items: center;
    color: #999;
    cursor: pointer;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.collection-action:hover {
    color: #FF6B00;
}

.collection-icon {
    width: 16px;
    height: 16px;
    margin-right: 4px;
}

.apply-button {
    padding: 0 16px;
    height: 30px;
    line-height: 30px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 500;
    color: white;
    background-color: #17C37B;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.apply-button:hover {
    background-color: #14a866;
    box-shadow: 0 2px 8px rgba(23, 195, 123, 0.3);
}

/* 悬停显示操作按钮 */
.job-card:hover .job-actions {
    display: flex;
}

.job-card:hover .company-logo {
    display: none;
}
/* 推荐职位标题容器 */
.recommendation-header {
    margin:15px 0 15px;
    text-align: center;
    position: relative;
}

/* 标题整体样式 */
.recommendation-title {
    display: inline-block;
    position: relative;
    padding: 0 30px;
    font-size: 14px;
    font-weight: 600;
    color: #17C37B;
    background: linear-gradient(to right, rgba(23,195,123,0.1), rgba(23,195,123,0.3), rgba(23,195,123,0.1));
    padding: 5px 40px;
    border-radius: 30px;
    box-shadow: 0 2px 8px rgba(23,195,123,0.15);
}

/* 星星图标样式 */
.star-icon {
    color: #FFD700;
    font-size: 20px;
    margin: 0 10px;
    position: relative;
    top: 1px;
    text-shadow: 0 0 3px rgba(255,215,0,0.5);
}

/* 标题文字样式 */
.title-text {
    letter-spacing: 1px;
}

/* 悬停效果 */
.recommendation-title:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(23,195,123,0.2);
    transition: all 0.3s ease;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .recommendation-title {
        font-size: 16px;
        padding: 8px 30px;
    }
    .star-icon {
        font-size: 16px;
        margin: 0 6px;
    }
}



/*以下是筛选项样式*/


/* 筛选容器 */
.filter-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    position: relative;
    padding: 0 22px;
}

/* 筛选项 */
.filter-item {
    position: relative;
    min-width: 120px;
}

/* 筛选触发器 */
.filter-trigger {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    height: 36px;
    box-sizing: border-box;
}

.filter-trigger:hover {
    border-color: #17C37B;
}

/* 筛选标签 */
.filter-label {
    font-size: 14px;
    color: #999;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.filter-label.active {
    color: #17C37B;
    font-weight: 500;
}

/* 筛选图标 */
.filter-icon {
    width: 14px;
    height: 14px;
    margin-left: 8px;
    color: #999;
    transition: transform 0.3s;
}

.filter-trigger:hover .filter-icon {
    color: #17C37B;
}

/* 下拉菜单 */
.filter-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 100;
    display: none;
    width: 180px;
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    margin-top: 4px;
}

.filter-item:hover .filter-dropdown,
.filter-dropdown:hover {
    display: block;
}

/* 下拉选项 */
.dropdown-options {
    max-height: 280px;
    overflow-y: auto;
    padding: 8px 0;
}

.dropdown-options::-webkit-scrollbar {
    width: 6px;
}
.dropdown-options::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}
.dropdown-options::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

/* 单个选项 */
.dropdown-option {
    display: block;
    width: 100%;
    padding: 10px 16px;
    text-align: left;
    background: none;
    border: none;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.dropdown-option:hover {
    background-color: #f5f5f5;
}

.dropdown-option.active {
    color: #17C37B;
    font-weight: 500;
    background-color: #e6f7ff;
}

.dropdown-option.active::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #17C37B;
}

/* 清空按钮 */
.filter-clear {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    color: #999;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-clear:hover {
    color: #FF4D4F;
}

.clear-icon {
    width: 16px;
    height: 16px;
    margin-right: 6px;
    color: inherit;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .filter-container {
        gap: 8px;
    }
    .filter-item {
        min-width: 100px;
    }
    .filter-trigger {
        padding: 6px 12px;
        height: 32px;
    }
    .filter-dropdown {
        width: 160px;
    }
    .dropdown-option {
        padding: 8px 12px;
        font-size: 13px;
    }
}

/*以下是城市下来交互样式*/

/* 城市选择器容器 */
.city-selector {
    position: relative;
    display: inline-block;
    margin-left: 20px;
    font-size: 14px;
    line-height: 20px;
    color: #666;
    margin-right: 40px;
}

/* 触发器样式 */
.city-trigger {
    display: inline-block;
    cursor: pointer;
}

.city-display {
    color: #666;
    transition: color 0.2s;
}

.city-trigger:hover .city-display {
    color: #17C37B;
}

/* 图标样式 */
.city-icon {
    width: 14px;
    height: 14px;
    margin-left: 4px;
    color: #999;
    vertical-align: middle;
    transition: transform 0.2s;
}

.city-trigger:hover .city-icon {
    color: #17C37B;
}

/* 下拉面板容器 */
#area {
    position: absolute;
    top: 100%;
    display: flex;
    margin-top: 0px;
    z-index: 100;
}

/* 省份/城市列表面板 */
.city-dropdown-panel {
    width: 115px;
    height: 319px;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.province-list {
    margin-right: 1px; /* 分隔线效果 */
}

/* 滚动容器 */
.city-scroll-container {
    height: 100%;
    overflow-y: scroll;
    padding-right: 4px;
}

.city-scroll-container::-webkit-scrollbar {
    width: 6px;
}
.city-scroll-container::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.city-scroll-container::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

/* 选项样式 */
.city-option {
    display: block;
    width: 100%;
    padding: 10px 12px;
    color: #333;
    font-size: 14px;
    line-height: 20px;
    text-decoration: none;
    transition: all 0.2s;
}

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

.city-option.active,
.city-option.color6 {
    color: #17C37B;
    font-weight: 500;
    background-color: #e6f7ff;
}
.color10{
    color: #17C37B;
}
.color999{
    color: #999;
}


/*个人中心-求职意向*/
.job-preferences {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    padding: 20px 0;
    margin-top: 10px;
}

.preferences-title {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    padding: 20px 0 10px 20px;
    margin: 0;
}

.preference-item {
    padding: 10px 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s;
}

.preference-item:last-child {
    border-bottom: none;
}

.preference-item:hover {
    background-color: #f9f9f9;
}

.preference-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.preference-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.position {
    font-size: 14px;
    color: #333;
    font-weight: normal;
}

.arrow-icon {
    width: 16px;
    height: 16px;
    color: #999;
}

.preference-details {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
}

.salary {
    color: #ff6a00;
    font-weight: normal;
    min-width: 80px;
}

.job-type, .location {
    color: #999;
}
