/* Career 模块背景及内边距 */
#career {
    background: #f9f9f9;
    padding: 80px 0;
    position: relative;
}
#career {
    padding-top: 140px;
}


/* 标题部分 */
#career .section-header {
    margin-bottom: 40px;
}
#career .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}
#career .section-header p {
    font-size: 18px;
    color: #777;
}

/* Tab 导航 */
#career .nav-tabs {
    border: none;
    margin-bottom: 30px;
}
#career .nav-tabs .nav-link {
    background: #fff;
    border: none;
    color: #333;
    font-weight: 600;
    padding: 12px 20px;
    margin: 0 5px;
    border-radius: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: background 0.3s, color 0.3s;
}
#career .nav-tabs .nav-link:hover {
    background: #007bff;
    color: #fff;
}
#career .nav-tabs .nav-link.active {
    background: #007bff;
    color: #fff;
}

/* Tab 内容 */
#career .tab-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}
#career .tab-content h4 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}
#career .tab-content h5 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
}
#career .tab-content ul {
    list-style: disc;
    margin-left: 20px;
}
#career .tab-content ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}
