.recruitment-section {
    position: relative;
}


/* --- 左侧内容区 --- */

.recruitment-header {
    display: flex;
    align-items: center;
}

.recruitment-header img {
    margin-right: 20px;
}

.recruitment-title {
    font-size: 36px;
    font-weight: bold;
    color: #000;
    letter-spacing: 1px;
    margin: 70px 0;
}

.recruitment-text {
    background: #f8fbff;
    padding: 50px 0;
}

.recruitment-text .txt {
    width: 60%;
}


/* 正文段落 */

.recruitment-text p {
    font-size: 16px;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
    line-height: 40px;
}


/* --- 右侧图片区 --- */

.recruitment-image-wrapper {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 45%;
    /* 限制最大宽度 */
}

.recruitment-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.why-lujing-container {
    padding: 80px 0;
}


/* --- 标题区域 --- */

.why-lujing-header {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
}

.why-lujing-header img {
    margin-right: 20px;
}

.why-lujing-title {
    font-size: 36px;
    font-weight: bold;
    color: #000;
    letter-spacing: 1px;
}

.why-lujing-grid {
    display: flex;
    gap: 60px;
    justify-content: space-between;
}


/* --- 单个卡片样式 --- */

.why-lujing-card {
    position: relative;
    flex: 1;
    height: 567px;
    /* 固定高度，保持整齐 */
    border-radius: 8px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}


/* 鼠标悬停轻微放大效果 */

.why-lujing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}


/* --- 图片底部的渐变遮罩 --- 
   作用：让白色文字在复杂的图片背景上也能看清 
*/

.why-lujing-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    padding: 30px 35px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-sizing: border-box;
}


/* --- 卡片文字内容 --- */

.why-lujing-card-title {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 12px;
}

.why-lujing-card-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 30px;
    text-align: justify;
}

.recruitment-jobs-section {
    width: 100%;
    min-height: 900px;
    /* 设定最小高度 */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* 背景图：请替换为您真实的登山者图片路径 */
    background-image: url('../images/zxns/zxns_20.jpg');
    background-size: cover;
    background-position: center;
}

.recruitment-jobs-header {
    flex: 1;
    color: #333;
}

.recruitment-jobs-title {
    font-size: 36px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
}


/* 喇叭图标样式 */

.recruitment-icon-svg {
    width: 32px;
    height: 32px;
    fill: #2c6eb5;
    /* 蓝色图标 */
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.8));
}


/* --- 右侧列表卡片 --- */

.recruitment-jobs-card {
    flex: 1;
    /* 固定宽度或比例 */
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
}

.recruitment-jobs-list {
    list-style: none;
}

.recruitment-jobs-item {
    padding: 20px 0;
    border-bottom: 1px dashed #e0e0e0;
    /* 虚线分割 */
    font-size: 22px;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.recruitment-jobs-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recruitment-jobs-item:first-child {
    padding-top: 0;
}


/* 悬停效果 */

.recruitment-jobs-item:hover {
    color: #2c6eb5;
    padding-left: 10px;
    /* 轻微位移 */
}

.recruitment-card {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    /* 确保图片圆角不溢出 */
    min-height: 710px;
    /* 设定最小高度 */
}


/* --- 左侧文字区 --- */

.recruitment-text-col {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    background: #fff;
    width: 50%;
    min-height: 710px;
}

.benefit-item {
    margin-bottom: 35px;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-name {
    font-size: 22px;
    font-weight: bold;
    color: #1265cc;
    /* 主题蓝 */
    margin-bottom: 10px;
}

.benefit-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}


/* --- 右侧图片区 --- */

.recruitment-img-col {
    width: 50%;
    position: absolute;
    right: 0;
    bottom: 0;
}

.recruitment-img-col img {
    width: 100%;
    object-fit: cover;
    /* 保持比例填充 */
    display: block;
    min-height: 710px;
}

.recruitment-benefits-section {
    background: #f8fbff;
    position: relative;
}

.join-us-section {
    padding: 80px 0;
}


/* --- 头部区域 --- */

.join-us-header {
    margin-bottom: 20px;
}

.join-us-title-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 22px;
}

.join-us-title-wrapper img {
    margin-right: 10px;
}

.join-us-main-title {
    font-size: 36px;
    font-weight: bold;
    color: #000;
    letter-spacing: 1px;
}

.join-us-intro-text {
    font-size: 18px;
    color: #333;
    margin-bottom: 40px;
}


/* --- 卡片网格区域 --- */

.join-us-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}

.join-us-card {
    flex: 1;
    background-color: #f7f9fc;
    /* 极淡的背景色 */
    padding: 40px 20px;
    text-align: center;
    border-radius: 4px;
    /* 轻微圆角 */
    transition: transform 0.3s ease;
}

.join-us-card:hover {
    transform: translateY(-5px);
    /* 悬停微动效 */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.join-us-card-title {
    font-size: 22px;
    font-weight: bold;
    color: #000;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}


/* 标题下方的蓝色短横线 */

.join-us-card-title::after {
    content: "";
    display: block;
    width: 50px;
    height: 5px;
    background-color: #1265cc;
    margin: 8px auto 0;
    border-radius: 2px;
}

.join-us-card-content {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}


/* --- 底部提示文字 --- */

.join-us-footer-note {
    font-size: 18px;
    padding-top: 40px;
}

.xinchou .glass-card {
    width: 48%;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.85);
    /* 半透明白 */
    backdrop-filter: blur(12px);
    /* 模糊背景 */
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.6);
}


/* --- 标题区域 --- */

.xinchou .section-title {
    font-size: 36px;
    color: #000;
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 48%;
}

.xinchou .section-title img {
    margin-right: 15px;
}


/* --- 左侧：福利列表 --- */

.xinchou .benefit-item {
    margin-bottom: 15px;
    border-bottom: 1px dashed #dcdcdc;
    /* 虚线分割 */
    padding-bottom: 15px;
}

.xinchou .benefit-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.xinchou .benefit-title {
    color: #1265cc;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 8px;
}

.xinchou .benefit-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}


/* --- 右侧：岗位列表 --- */

.xinchou .job-list {
    display: flex;
    flex-direction: column;
}

.xinchou .job-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px dashed #dcdcdc;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.xinchou .job-item:last-child {
    border-bottom: none;
}

.xinchou .job-info {
    flex: 1;
}

.xinchou .job-name {
    color: #1265cc;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 8px;
}

.xinchou .job-tag {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.xinchou .job-count {
    color: #1a73e8;
    font-weight: bold;
    font-size: 22px;
    white-space: nowrap;
    margin-left: 20px;
}

.xinchou {
    background: url(../images/zxns/zxns_20.jpg) no-repeat center;
    padding: 60px 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .why-lujing-grid {
        gap: 20px;
    }
}