/* 页面标题样式 */
.page-title {
    background: var(--light-gray);
    padding: 40px 0;
    margin-bottom: 60px;
    position: relative;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-primary);
}

.page-title h1 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 36px;
    text-align: center;
    margin: 0;
    letter-spacing: 2px;
    font-weight: 800;
}

/* 招聘信息区域 */
.recruitment-section {
    padding: 60px 0;
}

/* 招聘理念 */
.recruitment-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.recruitment-intro h2 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 20px;
}

.recruitment-intro p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

/* 职位列表 */
.job-list {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.job-item {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.job-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(6, 182, 212, 0.2);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.job-header h3 {
    color: var(--text-color);
    font-size: 22px;
}

.job-tag {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    font-weight: 600;
}

.job-tag.urgent {
    background: rgba(255, 59, 48, 0.1);
    color: #ff3b30;
}

.job-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
}

.info-item i {
    color: var(--primary-color);
    font-size: 16px;
}

.job-desc {
    margin-bottom: 25px;
}

.job-desc h4 {
    color: var(--text-color);
    font-size: 18px;
    margin: 20px 0 10px;
}

.job-desc ul {
    list-style: none;
    padding-left: 20px;
}

.job-desc ul li {
    position: relative;
    margin-bottom: 8px;
    color: #666;
    padding-left: 15px;
}

.job-desc ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--gradient-primary);
    border-radius: 50%;
}

.apply-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    filter: brightness(1.1);
}

/* 福利待遇 */
.benefits-section {
    margin-top: 80px;
    text-align: center;
}

.benefits-section h2 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(6, 182, 212, 0.2);
}

.benefit-item i {
    font-size: 36px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    display: inline-block;
}

.benefit-item h3 {
    color: var(--text-color);
    font-size: 20px;
    margin-bottom: 10px;
}

.benefit-item p {
    color: #666;
    font-size: 15px;
}

/* 响应式调整 */
@media screen and (max-width: 768px) {
    .job-info {
        grid-template-columns: 1fr 1fr;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 576px) {
    .job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .job-info {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}