.career-main-content {
    width: 100%;
    position: relative;
    background-color: #FCFBFB;
    margin-top: 0;
    padding-top: 0;
    box-sizing: border-box; /* Safari 兼容性 */
    -webkit-box-sizing: border-box; /* Safari 兼容性 */
}

/* Banner Section - 1920px × 620px, 位置: (0, 140) */
.career-banner {
    width: 100%;
    height: 620px;
    position: relative;
    margin: 0 auto;
    padding-top: 0;
    overflow: hidden;
    border-radius: 0 0 0 175px;
    box-sizing: border-box; /* Safari 兼容性 */
    -webkit-box-sizing: border-box; /* Safari 兼容性 */
}

/* Career Intro Section - 位置: (555, 940), 宽度: 810px */
.career-intro-section {
    width: 100%;
    padding: 0;
    margin-top: 180px;
    position: relative;
    box-sizing: border-box; /* Safari 兼容性 */
    -webkit-box-sizing: border-box; /* Safari 兼容性 */
}

.career-intro-section .container {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 220px; /* 默认值，Safari 兼容 */
    padding: 0 clamp(20px, 11.46vw, 220px); /* 现代浏览器使用 clamp */
    position: relative;
    display: -webkit-flex; /* Safari 兼容性 */
    display: flex;
    -webkit-flex-direction: column; /* Safari 兼容性 */
    flex-direction: column;
    -webkit-align-items: center; /* Safari 兼容性 */
    align-items: center;
    box-sizing: border-box; /* Safari 兼容性 */
    -webkit-box-sizing: border-box; /* Safari 兼容性 */
}

.career-intro-title {
    font-family: 'PingFang SC', sans-serif;
    font-weight: 600;
    font-size: 56px;
    line-height: 1.06em;
    color: #C69D7A;
    text-align: center;
    margin-bottom: 26px;
    height: 59px;
}

.career-intro-subtitle {
    font-family: 'PingFang SC', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4em;
    color: #384963;
    text-align: center;
    margin-bottom: 35px;
    height: 25px;
}

.career-intro-description {
    font-family: 'PingFang SC', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6em;
    letter-spacing: 0.04em;
    color: #384963;
    text-align: center;
    width: 810px; /* 默认值，Safari 兼容 */
    width: clamp(300px, calc(810px * 100vw / 1920px), 810px); /* 现代浏览器使用 clamp */
    min-height: 52px;
    box-sizing: border-box; /* Safari 兼容性 */
    -webkit-box-sizing: border-box; /* Safari 兼容性 */
}

/* Safari 兼容性：为不支持 clamp 的浏览器提供媒体查询 */
@supports not (width: clamp(1px, 1px, 1px)) {
    .career-intro-description {
        width: 810px;
    }
    
    @media screen and (max-width: 1200px) {
        .career-intro-description {
            width: 600px;
        }
    }
    
    @media screen and (max-width: 768px) {
        .career-intro-description {
            width: 300px;
        }
    }
}

/* Career Jobs Section - 位置: (220, 1320), 尺寸: 880px × 560px */
.career-jobs-section {
    width: 100%;
    min-height: 820px;
    position: relative;
    margin-top: 185px;
    overflow: visible;
    box-sizing: border-box; /* Safari 兼容性 */
    -webkit-box-sizing: border-box; /* Safari 兼容性 */
}

.career-jobs-section .container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    width: 100%;
    box-sizing: border-box; /* Safari 兼容性 */
    -webkit-box-sizing: border-box; /* Safari 兼容性 */
}

/* Blue Background Wrapper - 外层盒子，宽度100% */
.career-blue-bg-wrapper {
    width: 100%;
    position: absolute;
}

/* Blue Background - 位置: (220, 1320), 尺寸: 880px × 560px */
.career-blue-bg {
    position: relative;
    top: 0;
    height: 560px;
    width: 1920px;
    margin: 0 auto;
    padding: 0 220px;
    z-index: 1;
    overflow: hidden;
    border-radius: 0 120px 0 120px;
    box-sizing: border-box; /* Safari 兼容性 */
    -webkit-box-sizing: border-box; /* Safari 兼容性 */
}

.career-blue-bg img {
    width: 100%;
    height: 100%;
    -webkit-object-fit: cover; /* Safari 兼容性 */
    object-fit: cover;
    border-radius: 0 120px 0 120px;
    position: relative;
    z-index: 1;
}

/* 默认隐藏 H5 图片和大屏图片 */
.career-blue-bg .join-bg-h5,
.career-blue-bg .career-mask-bg-big {
    display: none;
}

/* 超过2200px：显示大屏图，隐藏默认PC图 */
@media screen and (min-width: 2201px) {
    .career-blue-bg .career-mask-bg-big {
        display: block;
    }
    .career-blue-bg .career-mask-bg-pc {
        display: none;
    }
}

/* Career Jobs Title - 位置: (320, 1411), 相对于 career-blue-bg 内部定位 */
.career-jobs-title {
    position: absolute;
    top: 91px; /* 默认值，Safari 兼容 */
    left: 320px; /* 默认值，Safari 兼容 */
    font-family: 'PingFang SC', sans-serif;
    font-weight: 600;
    font-size: 56px;
    line-height: 1.06em;
    color: #FCFBFB;
    z-index: 2;
    white-space: nowrap;
    height: 59px;
}

/* Safari 兼容性：为不支持 clamp 的浏览器提供媒体查询 */
@supports not (top: clamp(1px, 1px, 1px)) {
    .career-jobs-title {
        top: 91px;
        left: 100px;
    }
    
    @media screen and (max-width: 1200px) {
        .career-jobs-title {
            top: 60px;
            left: 50px;
        }
    }
    
    @media screen and (max-width: 768px) {
        .career-jobs-title {
            top: 45px;
            left: 20px;
        }
    }
}

/* Career Jobs Grid */
.career-jobs-grid {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0;
    display: -webkit-flex; /* Safari 兼容性 */
    display: flex;
    gap: 70px; /* 默认值，Safari 兼容 */
    gap: clamp(20px, calc(70px * 100vw / 1920px), 70px); /* 现代浏览器使用 clamp */
    padding-left: 600px; /* 默认值，Safari 兼容 */
    padding-left: clamp(20px, calc(600px * 100vw / 1920px), 600px); /* 现代浏览器使用 clamp */
    padding-top: 180px;
    z-index: 2;
    box-sizing: border-box; /* Safari 兼容性 */
    -webkit-box-sizing: border-box; /* Safari 兼容性 */
}

/* Safari 兼容性：为不支持 clamp 的浏览器提供媒体查询 */
@supports not (gap: clamp(1px, 1px, 1px)) {
    .career-jobs-grid {
        gap: 70px;
        padding-left: 600px;
    }
    
    @media screen and (max-width: 1200px) {
        .career-jobs-grid {
            gap: 40px;
            padding-left: 400px;
        }
    }
    
    @media screen and (max-width: 768px) {
        .career-jobs-grid {
            gap: 20px;
            padding-left: 20px;
        }
    }
}

/* Safari 兼容性：为不支持 gap 的浏览器添加 margin */
@supports not (gap: 1px) {
    .career-jobs-grid > *:not(:last-child) {
        margin-right: 70px; /* 默认值 */
        margin-right: clamp(20px, calc(70px * 100vw / 1920px), 70px);
    }
}

/* Career Job Card Base Styles */
.career-job-card {
    position: relative;
    width: 320px; /* 默认值，Safari 兼容 */
    width: clamp(250px, calc(320px * 100vw / 1920px), 320px); /* 现代浏览器使用 clamp */
    display: -webkit-flex; /* Safari 兼容性 */
    display: flex;
    -webkit-flex-direction: column; /* Safari 兼容性 */
    flex-direction: column;
    height: 100%;
    box-sizing: border-box; /* Safari 兼容性 */
    -webkit-box-sizing: border-box; /* Safari 兼容性 */
}

/* Safari 兼容性：为不支持 clamp 的浏览器提供媒体查询 */
@supports not (width: clamp(1px, 1px, 1px)) {
    .career-job-card {
        width: 320px;
    }
    
    @media screen and (max-width: 1200px) {
        .career-job-card {
            width: 280px;
        }
    }
    
    @media screen and (max-width: 768px) {
        .career-job-card {
            width: 250px;
        }
    }
}

.career-job-image {
    width: 100%;
    height: 450px; /* 默认值，Safari 兼容 */
    height: clamp(350px, calc(450px * 100vw / 1920px), 450px); /* 现代浏览器使用 clamp */
    min-height: 211px;
    overflow: hidden;
    position: relative;
    box-sizing: border-box; /* Safari 兼容性 */
    -webkit-box-sizing: border-box; /* Safari 兼容性 */
}

/* Safari 兼容性：为不支持 clamp 的浏览器提供媒体查询 */
@supports not (height: clamp(1px, 1px, 1px)) {
    .career-job-image {
        height: 450px;
    }
    
    @media screen and (max-width: 1200px) {
        .career-job-image {
            height: 400px;
        }
    }
    
    @media screen and (max-width: 768px) {
        .career-job-image {
            height: 350px;
        }
    }
}

.career-job-image img {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    -webkit-object-fit: cover; /* Safari 兼容性 */
    object-fit: cover;
    
    z-index: 1;
}

/* 默认隐藏 H5 图片 */
.career-job-image .career-job-1-h5,
.career-job-image .career-job-2-h5,
.career-job-image .career-job-3-h5 {
    display: none;
}

.career-job-content {
    padding: 0 20px; /* 默认值，Safari 兼容 */
    padding: 0 clamp(10px, calc(20px * 100vw / 1920px), 20px); /* 现代浏览器使用 clamp */
    padding-bottom: 100px; /* 默认值，Safari 兼容 */
    padding-bottom: clamp(80px, calc(100px * 100vw / 1920px), 100px); /* 现代浏览器使用 clamp */
    margin-top: 50px; /* 默认值，Safari 兼容 */
    margin-top: clamp(30px, calc(50px * 100vw / 1920px), 50px); /* 现代浏览器使用 clamp */
    display: -webkit-flex; /* Safari 兼容性 */
    display: flex;
    -webkit-flex-direction: column; /* Safari 兼容性 */
    flex-direction: column;
    gap: 16px;
    flex: 1;
    position: relative;
    box-sizing: border-box; /* Safari 兼容性 */
    -webkit-box-sizing: border-box; /* Safari 兼容性 */
}

/* Safari 兼容性：为不支持 gap 的浏览器添加 margin */
@supports not (gap: 16px) {
    .career-job-content > *:not(:last-child) {
        margin-bottom: 16px;
    }
}

.career-job-title {
    font-family: 'PingFang SC', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4em;
    color: #B29786;
    text-align: left;
    margin-bottom: 0;
    width: 100%;
}

.career-job-description {
    font-family: 'PingFang SC', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8em;
    letter-spacing: 0.04em;
    color: #384963;
    text-align: left;
    margin-top: 0;
    width: 100%;
}


.career-job-button {
    /* Safari 兼容性：重置浏览器默认样式 */
    -webkit-appearance: none;
    appearance: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    
    position: absolute;
    bottom: 0;
    display: -webkit-flex; /* Safari 兼容性 */
    display: flex;
    -webkit-align-items: center; /* Safari 兼容性 */
    align-items: center;
    -webkit-justify-content: center; /* Safari 兼容性 */
    justify-content: center;
    gap: 20px;
    padding: 18px 28px;
    margin: 0;
    border: 1px solid rgba(198, 157, 122, 0.5);
    border-radius: 60px;
    background: transparent;
    background-color: transparent; /* Safari 兼容性 */
    color: #4F5D6C;
    font-family: 'PingFang SC', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5em;
    letter-spacing: 0.05em;
    cursor: pointer;
    white-space: nowrap;
    outline: none; /* 移除 Safari 默认焦点样式 */
    box-shadow: none; /* 移除可能的默认阴影 */
    -webkit-tap-highlight-color: transparent; /* 移除移动端点击高亮 */
    box-sizing: border-box; /* Safari 兼容性 */
    -webkit-box-sizing: border-box; /* Safari 兼容性 */
}

/* Safari 兼容性：为不支持 gap 的浏览器添加 margin */
@supports not (gap: 20px) {
    .career-job-button > *:not(:last-child) {
        margin-right: 20px;
    }
}

.career-job-button svg {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
}

.career-job-button svg path {
    stroke: #FCFBFB;
}
.section-title-large{
    &.career-intro-title{
        font-size: 56px;
    }
    &.benefits-title{
        font-size: 56px;
    }
}

/* Benefits Section - 福利待遇模块 */
.career-benefits-section {
    width: 100%;
    padding: 0 0 150px;
    margin-top: 100px;
    position: relative;
    box-sizing: border-box; /* Safari 兼容性 */
    -webkit-box-sizing: border-box; /* Safari 兼容性 */
}

.career-benefits-section .container {
    margin: 0 auto;
    padding: 0 220px; /* 默认值，Safari 兼容 */
    padding: 0 clamp(20px, 11.46vw, 220px); /* 现代浏览器使用 clamp */
    position: relative;
    display: -webkit-flex; /* Safari 兼容性 */
    display: flex;
    -webkit-flex-direction: column; /* Safari 兼容性 */
    flex-direction: column;
    -webkit-align-items: center; /* Safari 兼容性 */
    align-items: center;
    box-sizing: border-box; /* Safari 兼容性 */
    -webkit-box-sizing: border-box; /* Safari 兼容性 */
}

.benefits-title {
    font-family: 'PingFang SC', sans-serif;
    font-weight: 600;
    font-size: 56px;
    line-height: 1.06em;
    color: #C69D7A;
    text-align: center;
    margin-bottom: 26px;
    height: 59px;
}

.benefits-subtitle {
    font-family: 'PingFang SC', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4em;
    color: #384963;
    text-align: center;
    margin-bottom: 60px; /* 默认值，Safari 兼容 */
    margin-bottom: clamp(40px, calc(60px * 100vw / 1920px), 60px); /* 现代浏览器使用 clamp */
    height: 25px;
}

.benefits-grid {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    display: -webkit-flex; /* Safari 兼容性 */
    display: flex;
    flex-wrap: nowrap; /* 允许换行 */
    justify-content: space-between; /* 左对齐 */
    box-sizing: border-box; /* Safari 兼容性 */
    -webkit-box-sizing: border-box; /* Safari 兼容性 */
}    

.benefit-item {
    display: -webkit-flex; /* Safari 兼容性 */
    display: flex;
    -webkit-flex-direction: column; /* Safari 兼容性 */
    flex-direction: column;
    -webkit-align-items: flex-start; /* Safari 兼容性 */
    align-items: flex-start;
    gap: 0;
    width: 260px; /* 默认值，Safari 兼容 */
    flex-shrink: 0; /* 防止收缩 */
    box-sizing: border-box; /* Safari 兼容性 */
    -webkit-box-sizing: border-box; /* Safari 兼容性 */
}

.benefit-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    display: -webkit-flex; /* Safari 兼容性 */
    display: flex;
    -webkit-align-items: center; /* Safari 兼容性 */
    align-items: center;
    -webkit-justify-content: center; /* Safari 兼容性 */
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon img {
    width: 42px;
    height: 42px;
    -webkit-object-fit: contain; /* Safari 兼容性 */
    object-fit: contain;
    
}

.benefit-content {
    display: -webkit-flex; /* Safari 兼容性 */
    display: flex;
    -webkit-flex-direction: column; /* Safari 兼容性 */
    flex-direction: column;
    gap: 0;
    width: 100%;
    box-sizing: border-box; /* Safari 兼容性 */
    -webkit-box-sizing: border-box; /* Safari 兼容性 */
}

.benefit-title {
    font-family: 'PingFang SC', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4em;
    color: #B29786;
    text-align: left;
    margin-bottom: 16px;
    width: 100%;
    height: 25px;
}

.benefit-desc {
    font-family: 'PingFang SC', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6em;
    letter-spacing: 0.04em;
    color: #384963;
    text-align: left;
    margin-top: 0;
    width: 100%;
}

.benefit-desc ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 8px 0;
}

.benefit-desc li {
    margin-bottom: 4px;
}

/* 响应式适配 - 1440px以内 */
@media screen and (max-width: 1440px) {
    .career-job-button {
        padding: 10px 40px;
        white-space: nowrap;
    }
    .career-benefits-section .container{
        padding: 0 100px;
    }
    .benefit-item {
        width: 220px;
    }
}

/* ============================================
   移动端适配 - 将所有绝对定位改为相对定位
   ============================================ */
@media screen and (max-width: 768px) {
    /* career-main-content 内部所有使用绝对定位的元素改为相对定位 */
    .career-main-content section > * {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none;
    }
    
    /* 保持某些元素的特殊定位（不在main-content内） */
    #header-container {
        position: relative;
    }
    
    /* 移动端导航弹窗必须保持 fixed 定位 */
    .mobile-nav-overlay {
        position: fixed !important;
    }
    
    /* 移动端多语言弹窗打开时，header-container 变为 fixed */
    #header-container.lang-dropdown-open {
        position: fixed;
    }
    
    #footer-container {
        position: absolute;
    }
    
    .mobile-nav-footer {
        position: absolute;
    }
    
    /* 容器元素保持相对定位 */
    .container,
    .career-main-content {
        position: relative;
    }
    
    .career-main-content .career-banner {
        height: auto;
    }
    
    .career-main-content .career-intro-section {
        margin-top: 80px;
    }
    .career-intro-section p.career-intro-description{
        padding: 0 62px;
    }
    /* 为各个section内部元素添加间距占位 */
    .career-main-content > section > * {
        margin-bottom: calc(20px * 100vw / 390px);
    }
    
    .career-main-content > section > *:last-child {
        margin-bottom: 0;
    }
    
    .career-main-content {
        min-height: auto;
        padding-bottom: 180px;
    }
    
    /* 移动端显示 H5 图片，隐藏 PC 图片 */
    .career-blue-bg .career-mask-bg-pc,
    .career-blue-bg .career-mask-bg-big {
        display: none;
    }
    .career-blue-bg .join-bg-h5 {
        display: block;
    }
    
    .career-job-image .career-job-1-pc,
    .career-job-image .career-job-2-pc,
    .career-job-image .career-job-3-pc {
        display: none;
    }
    .career-job-image .career-job-1-h5,
    .career-job-image .career-job-2-h5,
    .career-job-image .career-job-3-h5 {
        display: block;
    }
    .career-jobs-section{
        min-height: auto;
        margin-top: 80px;
        padding: 0 30px;
        
        .career-blue-bg-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: auto;
            z-index: 1;
        }
        
        .career-blue-bg{
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            padding: 0;
            border-radius: 0;
            height: auto;
            img{
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 0;
            }
            .career-jobs-title{
                font-size: 44px;
                top: 60px;
                left: 30px;
            }
        }
        .career-jobs-grid{
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 60px;
            position: relative;
            top: auto;
            left: auto;
            padding: 0;
            width: 100%;

        }
        .career-job-card{
            width: 340px;
            height: auto;
            .career-job-image{
                min-height: auto;
                height: auto;
                overflow: visible;
                img{
                    position: relative;
                    top: auto;
                    right: auto;
                    left: -10px;
                    width: 340px;
                    height: 450px;
                    object-fit: cover;
                    z-index: 1;
                }
            }
            .career-job-content{
                padding: 0;
                margin-top: 50px;
                gap: 0;
                .career-job-title{
                   line-height: 1.4;
                   margin-bottom: 10px;
                }
                .career-job-description{
                    line-height: 1.6;
                }
                .btn-secondary{
                    position: relative;
                    left: 30px;
                    transform: none;
                    bottom: 0;
                    top: auto;
                    height: 54px;
                    padding: 14px 18px;
                    gap: 10px;
                    font-size: 14px;
                    width: fit-content;
                    margin-top: 30px;
                        >svg {
                            width: 26px;
                            height: 26px;
                        }
                }
            }
        }
        .container{
            top: 120px;
        }
    }
    .career-benefits-section{
        padding: 0 30px;
        margin-top: 200px;
        .benefits-grid{
            display: flex;
            flex-direction: column;
            gap: 0;
            margin-top: 15px;
            align-items: center;
        }
        .benefit-item{
            position: relative;
            width: 330px;
            height: auto;
            margin-bottom: 40px;
            &:last-child{
                margin-bottom: 0;
            }
            .benefit-icon{
                position: absolute;
                top: -10px;
                right: 0;
                width: 42px;
                height: 42px;
                margin-bottom: 0;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            .benefit-title{
                font-size: 16px;
            }
            .benefit-desc{
                padding: 0;
                line-height: 2;
            }
            .benefit-desc ul {
                list-style-type: disc;
                padding-left: 20px;
                margin: 8px 0;
            }
            .benefit-desc li {
                margin-bottom: 4px;
            }
        }
    }
    
}
