/* ======================================
   招聘页面样式
   ====================================== */

/* 横幅 */
.page-banner {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    padding: 20px 0;
}
.page-banner .back-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}
.page-banner .back-link:hover { color: #fff; }

/* 简介区 */
.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}
.section-intro h2 {
    font-size: 28px;
    color: #1e3c72;
    margin-bottom: 16px;
}
.section-intro p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.8;
}

/* 福利卡片 */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}
.benefit-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.benefit-card .icon { font-size: 42px; margin-bottom: 16px; }
.benefit-card h3 { font-size: 17px; color: #1f2937; margin-bottom: 10px; }
.benefit-card p { font-size: 14px; color: #6b7280; line-height: 1.6; }

/* 标题 */
.section-title {
    text-align: center;
    font-size: 25px;
    font-weight: 600;
    color: #222;
    margin-bottom: 40px;
}

/* 职位列表 */
.job-list { max-width: 800px; margin: 0 auto; }
.job-card {
    display: block;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    margin-bottom: 20px;
}
.job-card:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 16px rgba(37,99,235,0.08);
    transform: translateY(-2px);
}
.job-card-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.job-info h3 {
    font-size: 20px;
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 12px;
}
.job-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
}
.meta-item {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}
.btn-detail {
    display: inline-block;
    padding: 8px 20px;
    background: #2563eb;
    color: #fff;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
}
.btn-detail:hover { background: #1d4ed8; }

/* 职位详情页 */
.job-detail-section { padding: 40px 0; }
.job-detail-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.job-detail-header { margin-bottom: 32px; padding-bottom: 24px; border-bottom: 2px solid #f0f0f0; }
.job-detail-header h1 { font-size: 28px; color: #1e3c72; margin-bottom: 16px; }
.job-meta { display: flex; gap: 20px; flex-wrap: wrap; }
.job-meta span { font-size: 15px; color: #6b7280; }
.job-meta .salary {
    font-size: 22px;
    font-weight: 700;
    color: #2563eb;
}

.job-section { margin-bottom: 28px; }
.job-section h2 {
    font-size: 19px;
    color: #1e3c72;
    margin-bottom: 14px;
    padding-left: 14px;
    border-left: 4px solid #2563eb;
}
.job-section ol, .job-section ul {
    padding-left: 24px;
    font-size: 15px;
    color: #374151;
    line-height: 1.8;
}
.job-section ol li, .job-section ul li { margin-bottom: 6px; }
.job-section p { font-size: 15px; color: #374151; line-height: 1.8; }
.job-section ul { list-style: disc; }

/* 投递框 */
.apply-box {
    margin-top: 36px;
    padding: 32px;
    background: linear-gradient(135deg, #f0f4ff, #e8f0fe);
    border-radius: 12px;
    text-align: center;
}
.apply-box h3 { font-size: 20px; color: #1e3c72; margin-bottom: 8px; }
.apply-box p { font-size: 14px; color: #6b7280; margin-bottom: 16px; }
.apply-info { margin-bottom: 20px; }
.apply-info p { font-size: 15px; color: #374151; margin-bottom: 6px; }
.apply-info p strong { color: #1e3c72; }

/* CTA 区 */
.contact-section {
    background: #f8fafc;
    padding: 60px 0;
}
.contact-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.contact-cta h2 { font-size: 26px; color: #1e3c72; margin-bottom: 12px; }
.contact-cta p { font-size: 15px; color: #6b7280; margin-bottom: 16px; line-height: 1.7; }
.contact-info { margin-bottom: 24px; }
.contact-info p { font-size: 14px; margin-bottom: 4px; }

/* 响应式 */
@media (max-width: 768px) {
    .benefits-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .benefit-card { padding: 24px 16px; }
    .job-detail-card { padding: 24px; }
    .job-card-main { flex-direction: column; align-items: flex-start; }
    .job-meta { gap: 12px; }
    .job-detail-header h1 { font-size: 24px; }
}

@media (max-width: 480px) {
    .benefits-grid { grid-template-columns: 1fr; }
    .job-meta { flex-direction: column; gap: 6px; }
}
