/* 招聘页面样式 */
.recruit-main {
    margin-top: 86px;
    position: relative;
    background-color: #fff;
}

/* Banner区域 */
.recruit-banner {
    background: url('../../images/recruit/banner-bg.png') no-repeat center center;
    background-size: cover;
    padding: 70px 0;
    text-align: left;
    position: relative;
}

.recruit-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.recruit-banner .container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.recruit-banner h1 {
    color: #000;
    font-size: 48px;
    font-weight: 400;
    margin-left: 180px;
}

.recruit-banner-image {
    max-height: 200px;
    margin-right: 60px;
}

/* 招聘流程区域 */
.recruit-process {
    padding: 60px 0;
    background-color: transparent;
}

.recruit-process h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 40px;
    color: #333;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
}

.step-icon {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    background: transparent;
}

.step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.step-arrow {
    position: absolute;
    right: -15px;
    top: 40px;
    color: #bbb;
    font-size: 24px;
    z-index: 1;
}

.step:last-child .step-arrow {
    display: none;
}

.step p {
    font-size: 16px;
    color: #333;
    text-align: center;
    margin-top: 10px;
}

/* 职位筛选区域 */
.job-filter {
    padding: 5px 0;
    background-color: #ffffff;
}

.job-filter .container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-filter h2 {
    font-size: 28px;
    font-weight: 500;
    color: #333;
    margin: 0;
}

.filter-options {
    display: flex;
    gap: 20px;
}

.filter-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-item span {
    font-size: 16px;
    color: #333;
}

.filter-item select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    min-width: 120px;
}

/* 职位列表区域 */
.job-list {
    padding: 20px 0 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.job-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.job-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.job-detail {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.job-description,
.job-requirements {
    margin-bottom: 20px;
}

.job-description h4,
.job-requirements h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.job-description ul,
.job-requirements ul {
    padding-left: 20px;
}

.job-description li,
.job-requirements li {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.5;
}

.job-apply {
    margin-top: 20px;
    text-align: right;
}

.btn-apply {
    display: inline-block;
    padding: 8px 20px;
    background-color: #1F79FF;
    color: #fff;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-apply:hover {
    background-color: #0062e6;
}

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

.job-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.job-tags {
    display: flex;
    gap: 10px;
}

.job-tags .tag {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    background-color: #e6f7ff;
    color: #1890ff;
}

.job-tags .location {
    background-color: #fff7e6;
    color: #fa8c16;
}

.job-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-meta {
    font-size: 14px;
    color: #666;
}

.job-date {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #999;
}

.job-date i {
    font-size: 12px;
}

/* 分页样式 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
    text-align: center;
}

.pagination a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    text-decoration: none;
    color: #666;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.pagination .page-num.active {
    background-color: #1F79FF;
    color: #fff;
}

.pagination .page-num:hover:not(.active) {
    background-color: #f0f0f0;
}

.pagination .page-prev,
.pagination .page-next {
    color: #666;
}

.pagination .page-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    color: #666;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .process-steps {
        flex-wrap: wrap;
    }
    
    .step {
        flex: 0 0 50%;
        margin-bottom: 30px;
    }
    
    .step-arrow {
        display: none;
    }
    
    .job-filter .container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .job-filter h2 {
        margin-bottom: 20px;
    }
    
    .filter-options {
        flex-direction: column;
        width: 100%;
    }
    
    .job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .job-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .recruit-banner h1 {
        margin-left: 20px;
    }
}

@media (max-width: 768px) {
    .recruit-banner h1 {
        font-size: 36px;
    }
    
    .recruit-process h2,
    .job-filter h2 {
        font-size: 24px;
    }
    
    .recruit-banner-image {
        max-height: 100px;
        margin-right: 20px;
    }
    
    .step {
        flex: 0 0 100%;
    }
}

/* 加载状态 */
.loading {
    text-align: center;
    padding: 30px;
    color: #666;
    font-size: 16px;
}

/* 错误信息 */
.error {
    text-align: center;
    padding: 30px;
    color: #ff4d4f;
    font-size: 16px;
}

/* 无数据提示 */
.no-data {
    text-align: center;
    padding: 50px 0;
    color: #999;
    font-size: 16px;
}

/* 职位详情内容样式 */
.job-description div,
.job-requirements div {
    margin-top: 10px;
    line-height: 1.6;
}

.job-description p,
.job-requirements p {
    margin-bottom: 8px;
}