/* 职位详情页面样式 */

/* ========================================
   职位详情区域
   ======================================== */
.career-detail-section {
    position: relative;
    width: 100%;
    max-width: 1920px;
    background-color: #F9F9F9;
    padding: 112px 470px;
    box-sizing: border-box;
    margin-top: 164px;
    /* navbar height */
    min-height: calc(100vh - 164px - 486px);
    /* 确保最小高度，减去导航和页脚高度 */
}

/* 内容容器 */
.career-detail-content {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
}

/* 面包屑 */
.breadcrumb {
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: normal;
    color: #111111;
    opacity: 0.3;
    margin: 0 0 24px 0;
}

/* 详情包装器 */
.detail-wrapper {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

/* 职位标题区 */
.job-header-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.job-title-main {
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 40px;
    color: #111111;
    margin: 0;
}

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

.job-type {
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
    color: #111111;
    opacity: 0.6;
}

/* 职位详细信息区 */
.job-detail-info {
    display: flex;
    flex-direction: column;
    gap: 64px;
    width: 100%;
}

/* 职位各部分 */
.job-sections {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

/* 单个部分 */
.job-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.section-title {
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    color: #BEA66E;
    margin: 0;
}

.section-list {
    margin: 0;
    padding: 0;
    list-style: decimal;
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #111111;
    opacity: 0.8;
    width: 100%;
}

.section-list li {
    margin-left: 24px;
    padding-left: 0;
}

/* 其他信息 */
.job-other-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #111111;
}

.job-other-info p {
    margin: 0;
}

/* 返回按钮 */
.back-button {
    width: 100%;
    background-color: rgba(17, 17, 17, 0.06);
    border-radius: 4px;
    padding: 24px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #111111;
    text-align: center;
    transition: background-color 0.3s ease;
}

.back-button:hover {
    background-color: rgba(17, 17, 17, 0.12);
}

/* 页脚定位 */
.career-detail-footer {
    position: relative;
    top: auto;
    margin-top: 0;
}

/* 响应式设计 */
@media (max-width: 1440px) {
    .career-detail-section {
        padding: 112px 24.48%;
        /* 470px / 1920px */
    }
}

@media (max-width: 1024px) {
    .career-detail-section {
        padding: 80px 60px;
        margin-top: 120px;
        /* 调整较小的导航栏高度 */
    }

    .job-title-main {
        font-size: 28px;
        line-height: 36px;
    }
}

@media (max-width: 768px) {
    .career-detail-section {
        padding: 60px 20px;
        margin-top: 80px;
        /* 移动端导航栏高度 */
        min-height: auto;
    }

    .job-title-main {
        font-size: 24px;
        line-height: 32px;
    }

    .job-type {
        font-size: 16px;
    }





    .back-button {
        font-size: 14px;
        padding: 18px 10px;
    }
}