/* 加入我们 - 招聘岗位 */
.join-page .join-wrap {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    padding: 48px 24px 80px;
    box-sizing: border-box;
}

.job-card {
    margin-bottom: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid #eee;
}

.job-card:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.job-card__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 12px;
}

.job-card__title {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    color: #DA4200;
    line-height: 1.4;
}

.job-card__salary {
    margin: 0;
    flex-shrink: 0;
    font-size: 18px;
    font-weight: 600;
    color: #DA4200;
    white-space: nowrap;
}

.job-card__meta,
.job-card__tags {
    margin: 0 0 16px;
    font-size: 14px;
    color: #999;
    line-height: 1.6;
}

.job-card__tags {
    margin-bottom: 12px;
}

.job-card__section {
    margin-bottom: 24px;
}

.job-card__section:last-child {
    margin-bottom: 0;
}

.job-card__section-title {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    line-height: 1.5;
}

.job-card__list {
    margin: 0;
    padding-left: 0;
    list-style: none;
    counter-reset: job-num;
    font-size: 14px;
    color: #666;
    line-height: 26px;
}

.job-card__list > li {
    position: relative;
    margin-bottom: 4px;
    padding-left: 2em;
    counter-increment: job-num;
}

.job-card__list > li::before {
    content: counter(job-num) '、';
    position: absolute;
    left: 0;
    top: 0;
    color: #666;
}

.job-card__list > li:last-child {
    margin-bottom: 0;
}

.job-card__intro {
    margin: 0 0 12px;
    font-size: 14px;
    color: #666;
    line-height: 26px;
}

.job-card__intro:last-of-type {
    margin-bottom: 0;
}

.job-card__closing {
    margin-top: 20px;
}

.job-card__closing p {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 24px;
}

.job-card__closing p:last-child {
    margin-bottom: 0;
}

.job-card__sublist {
    margin: 8px 0 0;
    padding-left: 1.4em;
    list-style: disc;
}

.job-card__sublist li {
    margin-bottom: 4px;
    padding-left: 0;
    font-size: 14px;
    color: #666;
    line-height: 26px;
}

.job-card__sublist li::before {
    display: none;
}

.job-card__subsection {
    margin-top: 16px;
}

.job-card__subsection-title {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 700;
    color: #333;
}

.job-card__list--bullet {
    list-style: disc;
    padding-left: 1.4em;
}

@media (max-width: 768px) {
    .join-page .join-wrap {
        padding: 32px 16px 56px;
    }

    .job-card__head {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .job-card__salary {
        white-space: normal;
    }
}
