.recruitment-section {
    padding: 75px 0 140px;
    background-color: RGBA(248, 249, 251, 1);
}

.recruitment-container {
    padding: 63px 0;
    background: #FFFFFF;
    box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.04);
    border-radius: 20px;
    /* width: 1000px;
    margin: 30px auto;
    border: 1px solid #e0e0e0; */
    overflow: hidden;
}

.tabContainer {
    width: 1200px;
    max-width: 94%;
    margin: 0 auto;
}

/* 通用网格布局配置 */
.table-header,
.job-summary {
    display: grid;
    /* 定义列宽：职位宽一些，其他相对固定 */
    grid-template-columns: 2.5fr 1.5fr 1fr 1fr 1.5fr 0.5fr;
    align-items: center;
    padding: 0 20px;
}

/* 表头样式 */
.table-header {
    background-color: rgba(177, 177, 177, 1);
    color: #fff;
    height: 50px;
    font-weight: normal;
}

.header-cell {
    text-align: center;
}

.header-cell.col-position {
    text-align: left;
    padding-left: 20px;
}

/* 列表项样式 */
.job-item {
    border-bottom: 1px solid #fff;
    /* 分隔线 */
}

.job-item:not(:last-child) {
    margin-bottom: 3px;
}

.job-item .job-summary {
    background-color: rgba(242, 242, 242, 1);
    /* background-color: #ffffff; */
}

/* 职位摘要行（点击区域）样式 */
.job-summary {
    height: 50px;
    cursor: pointer;
    transition: background-color 0.2s;
    color: rgba(102, 102, 102, 1);
}

.job-summary:hover {
    /* background-color: #e9e9e9; */
}

.cell {
    text-align: center;
}

.cell.col-position {
    text-align: left;
    padding-left: 20px;
    font-weight: 500;
}

/* 图标样式 */
.col-icon {
    font-size: 20px;
    color: #999;
    font-weight: 300;
}

.icon-plus::before {
    content: "+";
}

.icon-minus::before {
    content: "—";
}

.job-item.active .job-summary {
    background-color: rgba(53, 144, 107, 1);
    /* 绿色背景 */
    color: #fff;
}

.job-item.active {
    /* margin-bottom: 0; */
}

.job-item.active .col-icon {
    color: #fff;
}

/* 详情内容区域样式 */
.job-details {
    display: none;
    /* 默认隐藏 */
    background-color: #fff;
    padding: 30px 50px;
    border: 1px solid rgba(53, 144, 107, 1);
    border-top: none;
    line-height: 1.8;
}

.detail-content {
    font-weight: 400;
    font-size: 14px;
    color: #666666;
    line-height: 32px;
}

.detail-title {
    font-weight: 400;
    margin-bottom: 5px;
    /* color: #333; */
}

.detail-email {
    margin-top: 20px;
    color: rgba(53, 144, 107, 1);
}

.email-link {
    color: #339966;
    text-decoration: none;
}

.recruitment-section .pagination {
    margin-top: 56px;
}

@media (max-width:1199px) {
    .recruitment-section {
        padding-bottom: 80px;
    }

    .recruitment-section .pagination {
        margin-top: 50px;
    }

    .recruitment-container {
        padding: 50px 0;
    }
}

@media (max-width:1024px) {
    .recruitment-section {
        padding: 70px 0;
    }

    .recruitment-section .pagination {
        margin-top: 50px;
    }

    .recruitment-container {
        padding: 40px 0;
    }

    .recruitment-container .table {
        font-size: 14px;
    }

    .recruitment-container .table {
        min-width: 700px;
        max-width: initial;
    }

    .tabContainer {
        overflow: auto;
    }

    .tabContainer::-webkit-scrollbar {
        width: 0px;
        height: 5px;
    }

    .cell,
    .header-cell {
        flex-shrink: 0;
    }
    .job-details{
        padding: 30px;
    }
}

@media (max-width: 768px) {

    .cell.col-position,
    .header-cell.col-position {
        padding-left: 0;
    }

    .recruitment-section {
        padding: 60px 0;
    }

    .recruitment-section .pagination {
        margin-top: 35px;
    }

    .recruitment-container {
        padding: 30px 0;
    }
}

@media (max-width: 500px) {
    .recruitment-section {
        padding: 50px 0;
    }

    .recruitment-section .pagination {
        margin-top: 30px;
    }

    .recruitment-container {
        padding: 25px 0;
    }
}