/* 基础样式 */
body {
    background: #fff;
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}
.careers-main{
    padding-top: 85px;
}
/* 顶部宣传区域 */
.careers-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.careers-hero-content {
    width: 100%;
    height: 100%;
    position: relative;
}

.careers-hero-left {
    flex: 1;
    padding-right: 60px;
}

.careers-hero-title {
    font-size: 48px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.careers-hero-subtitle {
    font-size: 24px;
    color: #34495e;
    margin-bottom: 40px;
    font-weight: 300;
}

.careers-hero-btn {
    background: #3498db;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.careers-hero-btn:hover {
    background: #2980b9;
}

.careers-hero-right {
    width: 100%;
    height: 100%;
}

.careers-hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 职位详情区域 */
.careers-job-detail {
    max-width: 1200px;
    margin: 60px auto;
    display: flex;
    gap: 0;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

/* 左侧标签栏 */
.careers-job-sidebar {
    width: 200px;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
}

.job-tab {
    padding: 20px 24px;
    background: #e9ecef;
    color: #495057;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: 1px solid #dee2e6;
}

.job-tab.active {
    background: #072A5A;
    color: white;
}

.job-tab:hover:not(.active) {
    background: #dee2e6;
}

/* 右侧内容区域 */
.careers-job-content {
    flex: 1;
    padding: 40px;
}

/* 职位头部信息 */
.job-header {
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.job-title {
    font-size: 28px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 15px;
}

.job-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-meta-label {
    color: #6c757d;
    font-weight: 500;
}

.job-meta-value {
    color: #495057;
    font-weight: 600;
}

.job-location {
    display: flex;
    gap: 30px;
    margin-top: 15px;
}

.job-location-label {
    color: #6c757d;
    font-weight: 500;
}

.job-location-value {
    color: #495057;
    font-weight: 600;
}

/* 职位描述 */
.job-description {
    margin-bottom: 40px;
}

.job-description h3 {
    font-size: 18px;
    font-weight: bold;
    color: #2c3e50;
    margin: 25px 0 15px 0;
}

.job-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 8px;
    padding-left: 0;
}

/* 联系信息 */
.job-contact {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-label {
    font-weight: 600;
    color: #495057;
}

.contact-email {
    color: #072A5A;
    text-decoration: none;
    font-weight: 500;
}

.contact-email:hover {
    text-decoration: underline;
}

.return-link {
    color: #6c757d;
    text-decoration: none;
    margin-left: auto;
}

.return-link:hover {
    color: #072A5A;
    text-decoration: underline;
}


/* ========== 移动端样式 ========== */
@media (max-width: 576px) {
    .careers-main {
        padding-top: 70px;
    }
    .careers-hero {
    position: relative;min-height: unset;}
    .careers-job-detail {margin:20px auto;flex-direction: column;background:unset;box-shadow:unset;        align-items: center;}
    .careers-job-sidebar {flex-wrap: nowrap;    flex-direction: row;       width: auto;background:unset;     align-items: center;}
    .job-tab {
    padding: 8px 25px;
    background: #e9ecef;
    color: #495057;
    font-size: 16px;}
    .careers-job-content {
        flex: 1;
        padding: 20px;
    }
    .job-title {
        font-size: 24px;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 10px;
    }
    .job-meta {
    display: flex;
    flex-wrap: wrap;margin-bottom: 5px;
    gap: 10px 50px;}
    .job-meta-item {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
    }
    .job-location {
        display: flex;
        gap: 10px 50px;
        margin-top: 0;margin-bottom: 5px;font-size: 14px;
    }
    .job-header {
        border-bottom: 2px solid #e9ecef;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    
}