/* 加入我们页面样式 */
.joinus-banner {
    position: relative;
    width: 100%;
    height: 450px;
    background-image: url('../images/joinus-bg.png');
    background-size: cover;
    background-position: center;
    margin-top: 56px;
    display: flex;
    align-items: center;
}

.joinus-banner-title {
    color: white;
    font-weight: 500;
    font-size: 36px;
    margin-left: 283px;
}

.joinus-tabs {
    background-color: white;
    border-bottom: 1px solid #e1e5eb;
}

.joinus-tabs .nav-link {
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    line-height: 22px;
    text-align: center;
    font-style: normal;
    padding: 1rem 2rem;
    border: none;
    border-bottom: 3px solid transparent;
}

.joinus-tabs .nav-link.active {
    border-bottom: 2px solid #0052d9;
    background-color: transparent;
}

.job-list {
    /* padding: 1rem 0; */
    background-color: #f5f7fa;
}

.job-list-title {
    font-style: normal;
    font-size: 28px;
    font-weight: 600;
    margin: 2rem 0rem;
    color: #333333;
}

.job-item {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.job-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.job-content {
    flex: 1;
    cursor: pointer;
    transition: all 0.2s ease;
}

.job-content:hover {
    opacity: 0.9;
}

.job-title {
    font-style: normal;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: #333;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1rem;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 16px;
    color: #666666;
}

.job-tags span {
    display: inline-block;
}

.job-description {
    margin-bottom: 1rem;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 13px;
    color: #999999;
    line-height: 1.8;
}

.job-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    margin-left: 20px;
    z-index: 2;
    position: relative;
}

.apply-btn {
    background-color: #0052d9;
    color: white;
    border: none;
    padding: 0.5rem 0;
    border-radius: 4px;
    font-weight: 500;
    width: 100px;
    text-align: center;
    cursor: pointer;
}

.share-btn {
    background-color: white;
    color: #333;
    border: 1px solid #e1e5eb;
    padding: 0.5rem 0;
    border-radius: 4px;
    font-weight: 500;
    width: 100px;
    text-align: center;
    margin-left: 0;
    cursor: pointer;
}

/* 校园招聘部分样式 */
.campus-content {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.campus-intro h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.campus-intro h4 {
    font-size: 20px;
    font-weight: 500;
    color: #333;
    margin: 1.5rem 0 1rem;
}

.campus-intro p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1rem;
}

.campus-intro ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.campus-intro ul li {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0.5rem;
}

.recruitment-process {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 1.5rem 0;
}

.process-step {
    display: flex;
    align-items: flex-start;
    width: calc(20% - 16px);
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -15px;
    width: 10px;
    height: 2px;
    background-color: #e0e0e0;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #0052d9;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 10px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h5 {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
}

.step-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* 分享模态框样式 */
.share-options {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.share-option:hover {
    color: #0052d9;
}

.share-option i {
    font-size: 28px;
    margin-bottom: 8px;
}

/* 无职位提示 */
.no-jobs {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.no-jobs p {
    font-size: 16px;
    color: #666;
}

/* 移动端适配 */
@media (max-width: 1200px) {
    .job-list-title {
        margin: 1.8rem 0rem;
        font-size: 26px;
    }
}

@media (max-width: 992px) {
    .joinus-banner {
        height: 350px;
        margin-top: 60px;
    }
    
    .joinus-banner-title {
        margin-left: 50px;
        font-size: 30px;
    }
    
    .joinus-tabs .nav-link {
        padding: 0.75rem 1.5rem;
        font-size: 14px;
    }
    
    .job-list-title {
        margin: 1.5rem 0rem;
        font-size: 24px;
    }
    
    .job-item {
        flex-direction: column;
        padding: 1.5rem;
    }
    
    .job-title {
        font-size: 20px;
    }
    
    .job-tags {
        font-size: 14px;
    }
    
    .job-buttons {
        flex-direction: row;
        justify-content: center;
        margin-left: 0;
        margin-top: 15px;
        gap: 15px;
    }
    
    .process-step {
        width: calc(33.33% - 14px);
        margin-bottom: 15px;
    }
    
    .process-step:nth-child(3)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .joinus-banner {
        height: 250px;
    }
    
    .joinus-banner-title {
        margin-left: 30px;
        font-size: 26px;
    }
    
    .joinus-tabs .nav-link {
        padding: 0.5rem 1rem;
        font-size: 13px;
    }
    
    .job-list-title {
        margin: 1.2rem 0rem;
        font-size: 22px;
    }
    
    .job-item {
        padding: 1.25rem;
    }
    
    .job-title {
        font-size: 18px;
    }
    
    .job-tags {
        font-size: 12px;
    }
    
    .job-description {
        font-size: 12px;
    }
    
    .job-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }
    
    .apply-btn, .share-btn {
        width: 90px;
    }
    
    .process-step {
        width: calc(50% - 10px);
    }
    
    .process-step:nth-child(2)::after {
        display: none;
    }
    
    .process-step:nth-child(4)::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .joinus-banner {
        height: 200px;
    }
    
    .joinus-banner-title {
        margin-left: 20px;
        font-size: 22px;
    }
    
    .joinus-tabs .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 12px;
    }
    
    .job-list-title {
        margin: 1rem 0;
        font-size: 20px;
    }
    
    .job-item {
        padding: 1rem;
    }
    
    .job-title {
        font-size: 16px;
        margin-bottom: 0.5rem;
    }
    
    .job-tags {
        font-size: 11px;
        gap: 4px;
    }
    
    .job-description {
        font-size: 11px;
        line-height: 1.6;
    }
    
    .job-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 8px;
        margin-top: 12px;
    }
    
    .apply-btn, .share-btn {
        width: 80px;
        font-size: 12px;
        padding: 0.4rem 0;
        border-radius: 3px;
    }
    
    .process-step {
        width: 100%;
    }
    
    .process-step::after {
        display: none;
    }
    
    .share-options {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .share-option {
        width: 40%;
    }
}
