.nav_container.header {
	position: absolute;
}

.content-title{
    width: 1200px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-family: AlibabaPuHuiTi_3_85_Bold;
    font-size: 34px;
    color: #252525;
    line-height: 48px;
    position: relative;
}
.title-icon{
    width: 42px;
    height: 32px;
    margin-right: 15px;
}
.title-large-img{
    width: 225px;
    height: 45px;
}
.title-img{
    width: 164px;
    height: 45px;
}
.title-line{
    width: 18px;
    height: 3px;
    background: #3985FA;
    border-radius: 1px;
    position: absolute;
    left: 206px;
    bottom: 16px;
}
.title-long-line{
    width: 984px;
    height: 1px;
    background: linear-gradient( 270deg, rgba(211,211,211,0) 0%, #D3D3D3 100%);
    position: absolute;
    left: 216px;
    top: 20px;
}
.content-text{
    width: 1200px;
    font-size: 22px;
    color: #333333;
    line-height: 32px;
    margin-top: 52px;
    margin-bottom: 40px;
}
.vert-line{
    width: 3px;
    height: 16px;
    background: #3274F8;
    border-radius: 1px;
    margin-right: 10px;
}
.content-title.second{
    font-family: AlibabaPuHuiTi_3_85_Bold;
    font-size: 32px;
    color: #333333;
    line-height: 45px;
}
.circle{
    width: 15px;
    height: 15px;
    border-radius: 15px;
    border: 2px solid #3274F8; 
    background: #3274F8;
    margin-left: 7px;
}
.cmpany-welfare{   
    margin-top: 40px;
    margin-bottom: 60px;
    width: 1200px;
    overflow: hidden;
}
.cmpany-welfare ul{
    list-style: none;
    display: flex;
    gap: 0;
    position: relative;
    width: 100%;
    height: 480px; /* 固定高度，与li高度一致 */
    padding: 0;
    margin: 0;
}
.cmpany-welfare ul li{
    position: absolute;
    top: 0;
    width: 300px;
    height: 480px;
    background: transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-sizing: border-box;
    z-index: 1;
}
/* 新增：用伪元素做背景色层（层级比图片低，比li本身高） */
.cmpany-welfare ul li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5); /* 默认背景色 */
    z-index: 1; 
    transition: all 0.3s ease;
}
/* 给每个li设置初始left值（第1个0，第2个300px，第3个600px，第4个900px...） */
.cmpany-welfare ul li:nth-child(1) { left: 0; }
.cmpany-welfare ul li:nth-child(2) { left: 300px; }
.cmpany-welfare ul li:nth-child(3) { left: 600px; }
.cmpany-welfare ul li:nth-child(4) { right: 0; }

.cmpany-welfare ul li:hover{
    width: 600px;
    height: 480px;
    /* background: rgba(47,119,250,0.76); */
    z-index: 100;  /* ✅ 提高层级，覆盖其他元素 */
    /* position: relative;     */
}
/* hover时修改伪元素背景色 */
.cmpany-welfare ul li:hover::before {
    background: rgba(47,119,250,0.76); /* hover背景色 */
}

.cmpany-welfare ul li:hover .welfare-img{
    display: none;
}
.cmpany-welfare ul li:hover .welfare-hover-img{
    display: block;
    z-index: -1;
}
.welfare-img,.welfare-hover-img{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}
.cmpany-welfare ul li:hover .welfare-img{
    display: none;
}
.cmpany-welfare ul li:hover .welfare-hover-img{
    display: block;
}
.cmpany-welfare ul li:hover .welfare-desc{ 
    display: block;
    transition: all 0.3s ease;
}
.cmpany-welfare ul li:hover .welfare-icon{
    margin-top: 0;
    transition: all 0.3s ease;
}
.cmpany-welfare ul li:hover .num-hover-img{
    display: block;
}
.cmpany-welfare ul li:hover .num-img{
    display: none;
}
.welfare-hover-img{
    display: none;
    /* 同步修改hover图片的层级 */
    z-index: -1;
}
.welfare-text{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
    color: #FFFFFF;
    line-height: 33px;
    padding-top: 57px;
    box-sizing: border-box;
    position: relative; /* 新增：建立层级上下文 */
    z-index: 2; /* 高于伪元素的z-index:1，确保文字在背景层上方 */
}
.welfare-line{
    width: 16px;
    height: 2px;
    background: #FFFFFF;
    border-radius: 1px;
    margin-top: 17px;
}
.welfare-desc{
    font-size: 20px;
    color: #FFFFFF;
    line-height: 30px;
    margin: 34px 50px 45px 50px;
    text-align: center;
    display: none;
    transition: all 0.3s ease;  
}
.welfare-icon{
    width: 64px;
    height: 64px;
    margin-top: 139px;
}
.num-img,.num-hover-img{
    width: 98px;
    height: 98px;
    margin-top: 36px;
}
.num-hover-img{
    display: none;
}
.employer-brand{
    width: 100%;
    height: auto;
    margin-top: 31px;
    margin-bottom: 207px;
    position: relative;
}
.brand-container{
    width: 916px;
    height: 528px;
    position: absolute;
    top: 97px;
    left: 50%;                    /* ✅ 定位到父容器中间 */
    transform: translateX(-50%);  /* ✅ 向左偏移自身宽度的 50% */
}
.brand-video{
    position: absolute !important;
    top: 38px;
    left: 117px;
}
 /* ===== 自定义播放按钮 ===== */
 .brand-container .video-js.brand-video .vjs-big-play-button {
    width: 100px !important;
    height: 100px !important;  
    background-color: transparent;
    border-radius: 50% !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    transition: all 0.3s ease;
}
.video-js .vjs-big-play-button{
    font-size: 0 !important;
}
/* 隐藏默认图标 */
.brand-container .video-js.brand-video .vjs-big-play-button .vjs-icon-placeholder {
    display: none !important;
}

/* 自定义播放图标 - 使用背景图片 */
.brand-container .video-js.brand-video .vjs-big-play-button:before {
    content: '' !important;
    display: block;
    width: 100px;
    height: 100px;
    background-image: url('https://update.9618968.com/etc-common/2026-03-17/20260317175300049.png') !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

/* 播放时隐藏大播放按钮 */
.brand-container .video-js.brand-video.vjs-playing .vjs-big-play-button {
    display: none !important;
}

/* 暂停时显示播放按钮 */
.brand-container .video-js.brand-video.vjs-paused .vjs-big-play-button {
    display: block !important;
}
.brand-border-img{
    width: 100%;
    height: 100%;
}
.job-container{
    width: 1200px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px 24px;
    margin-top: 40px;
}
.job-item{
    width: 382px;
    height: 270px;
    background: #FFFFFF;
    border: 1px solid #EFEFEF;
    position: relative;
    cursor: pointer;
}
.job-item:hover .job-content{ 
    z-index: 2;
    width: 100%;
    height: 160px;
    background: linear-gradient( 123deg, #1277FF 0%, #3677F9 99.96%);
    transform:translateY(-70px);
    transition: all 0.3s ease;
}
.job-item:hover .new-icon{
    display: none;
}
.job-item:hover .new-hover-icon{
    display: block;
}
.job-item:hover .job-title span:first-child{ 
    color: #FFFFFF;
}
.job-item:hover .job-title span:last-child{ 
    color: #FFFFFF;
}
.job-item:hover .job-text{ 
    color: #FFFFFF;
}
.job-item:hover .job-require{
    color: #FFFFFF;
}
.job-item:hover .job-welfare span{ 
    background: #FFFFFF;
    color: #3881F6;
}
.job-item:hover .job-botm{
    display:flex !important;
    visibility:visible;
    /* transform:translateY(0); */
    transition: all 0.3s ease;
}
.new-icon, .new-hover-icon{
    position: absolute;
    top: 0;
    right: 0;
    width: 52px;
    height: 28px;
}
.new-hover-icon{
    display: none;
}
.job-img{
    width: 382px;
    height: 180px;
    display: block;
    z-index: -1;
}
.job-content{
    height: 160px;
    padding: 17px 24px 0 24px;
    box-sizing: border-box;
    margin: 0;
}
.job-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.job-title{
    font-weight: bold;
    font-size: 22px;
    color: #333333;
    line-height: 30px;
}
/* .job-title span:last-child{
    font-weight: bold;
    font-size: 18px;
    color: #EC830F;
    line-height: 25px;
} */
.job-text{
    font-size: 14px;
    color: #666666;
    line-height: 16px;
    margin-top: 8px;
}
.job-welfare{
    display: flex;
    gap: 5px;
    margin-top: 8px;
}
.job-welfare span{
    background: rgba(255, 226, 193, 153);
    padding: 4px 10px;
    font-size: 12px;
    color: #EC830F;
    line-height: 17px;
}
.job-require{
    font-size: 14px;
    color: #999999;
    line-height: 20px;
    margin-top: 17px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.job-botm{
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 20px;
    visibility:hidden; /* 隐藏元素 */
    margin-top: 30px;
}
.job-item-icon{
    width: 40px;
    height: 40px;
}
.job-botm-line{
    width: 300px;
    height: 1px;
    background: linear-gradient( 315deg, rgba(255,255,255,0) 0%, #FFFFFF 100%);

}
.page-container{
    margin-top: 24px;
    width: 100%;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    font-size: 20px;
    color: #999999;
    line-height: 28px;
}
.page-container.show{
    opacity: 1;
}
.page-container img{
    width: 10px;
    height: 18px;
}
.page-prev,.page-next{
    width: 66px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cur-page{
    font-size: 32px;
    color: #333333;
    line-height: 45px; 
}
#mask{
	width:100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 999;
	background: rgba(0,0,0,0.4);
    display: none;
}
.job-detail-container{
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    width: 1000px;
    height: 600px;
    overflow-y: auto;
    box-sizing: border-box;
    padding: 40px;
    position: fixed;
    z-index: 9999;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
}
.job-detail-container.show,#mask.show,.close-icon.show{
    display: block;
}
.close-icon{
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    display: none;
}
.job-detail-container h4,.job-detail-container h5{
    color: #333333;
    font-weight: bold;
}
.job-detail-container h4{
    font-size: 24px;
}
.job-detail-container h5{
    font-size: 16px;
    margin-top: 30px;
    margin-bottom: 10px;
}
.job-detail-container p{
    color: #666666;
}
.job-send{
    width: 100%;
    height: 40px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}
.job-send h5{
    margin: 0;
}
.job-send span{
    color: #EC830F;
}