/* 底部白色 */
.footer {
    background-color: #fff;
}

.title_join {
    margin: 0 auto;
    width: 100%;
    background-image: url("../../uploads/common/join/bg2.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.title_join h2,
.title_join h3 {
    font-size: 64px;
    font-weight: 700;
    margin: 0;
}

.title_join h3 {
    color: rgb(0, 0, 0) 
}

@media (max-width: 1068px) {
    .title_join {
        height: 400px;
    }
    .title_join h2,
    .title_join h3 {
        font-size: 48px;
    }
}
@media (max-width: 734px) {
    .title_join {
        height: 300px;
    }
    .title_join h2,
    .title_join h3 {
        font-size: 40px;
    }
}

/*-------------------------------------- 岗位 --------------------------------------*/
/* 岗位名称 */
.job_1 {
    width: 90%;
}

.job_name {
    margin-top: 100px;
}

.job_name h3,
.job_name span {
    display: inline-block;
}
.job_name h2 {
    font-size: 36px;
    font-weight: 700;
}

.job_name h3 {
    margin-top: 10px;
    font-size: 24px;
    font-weight: 500;
}

.job_name span {
    color: #999;
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 30px;
}

/* 岗位职责 */
.job_duty {
    width: 90%;
    margin-top: 40px;
}

.job_duty h2 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 20px;
    border-left: 5px solid #4285F4;
    padding-left: 10px;
}

.job_duty p {
    margin-top: 5px;
    font-size: 15px;
    font-weight: 400;
    color: #555;
}

.job_1 hr {
    width: 100%;
    margin-top: 50px;
    margin-bottom: 50px;
    background-color: #e7e7e7;
    border: none;
    height: 1px;
}

.job_1 h4 {
margin-bottom: 75px;
}


@media (max-width: 1068px) {
    .job_1 h2 {
        font-size: 32px;
    }

    .job_duty {
        margin-top: 20px;
    }

    .job_duty h2 {
        font-size: 21px;
    }
}

@media (max-width: 734px) {
    .job_1 h2 {
        font-size: 28px;
    }
    .job_duty {
        margin-top: 20px;
    }

    .job_duty h2 {
        font-size: 21px;
    }

}

/* 投递按钮 */
.submit_btn {
    width: 90%;
    margin-bottom: 200px;
}

@media (max-width: 1068px) {
    .submit_btn {
        margin-bottom: 100px;
    }
}

@media (max-width: 734px) {
    .submit_btn {
        margin-bottom: 50px;
    }
}   

/* 投递按钮样式 */
.submit-resume-btn {
    background-color: #000;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-resume-btn:hover {
    background-color: #4285F4;
}

/* 修改简历投递弹窗相关样式 */
.resume-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.resume-modal.active {
    opacity: 1;
}

.resume-modal-content {
    background-color: #fff;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    transition: all 0.3s ease;
}

.resume-modal-content h5 {
    margin-top: 0;
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.resume-modal-content p {
    font-size: 20px;
    color: #666;
    margin-bottom: 0;
    line-height: 1.5;
}

/* 添加响应式布局 */
@media (max-width: 1068px) {
    .resume-modal-content {
        padding: 30px;
        max-width: 450px;
    }
    
    .resume-modal-content h5 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .resume-modal-content p {
        font-size: 18px;
    }
}

@media (max-width: 734px) {
    .resume-modal-content {
        padding: 25px;
        max-width: 320px;
    }
    
    .resume-modal-content h5 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .resume-modal-content p {
        font-size: 16px;
    }
    
    .resume-close {
        right: 15px;
        top: 10px;
        font-size: 24px;
    }
}

.resume-blur-background {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.resume-blur-background.active {
    display: block;
    opacity: 1;
}

.resume-close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.resume-close:hover {
    color: #333;
}