/* 加入我们页面样式 */
.join-us-content {
    padding: 100px 0;
    background-color: #ffffff;
}

.join-us-text {
    padding: 20px;
}

.slogan-primary {
    font-size: 36px;
    font-weight: 700;
    color: #162565;
    margin-bottom: 20px;
}

.slogan-secondary {
    font-size: 30px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}

.join-us-btn {
    background-color: #3F4B7E;
    border-color: #3F4B7E;
    padding: 10px 30px;
    font-size: 18px;
    border-radius: 5px;
}

.join-us-btn:hover {
    background-color: #304070;
    border-color: #304070;
}

.join-us-image {
    text-align: center;
}

.join-us-image img {
    max-width: 100%;
    border-radius: 10px;
}

/* 响应式调整 */
@media (max-width: 991px) {
    .join-us-content {
        padding: 60px 15px;
    }
    
    .join-us-text {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .slogan-primary {
        font-size: 30px;
    }
    
    .slogan-secondary {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .join-us-content {
        padding: 40px 15px;
    }
    
    .slogan-primary {
        font-size: 26px;
    }
    
    .slogan-secondary {
        font-size: 20px;
    }
}

/* 招聘信息表格样式 */
.recruitment-section {
    margin: 40px 0 80px;
}

.recruitment-title {
    color: #162565;
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

.recruitment-table-container {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.recruitment-header {
    background-color: #f5f5f5;
    padding: 15px 20px;
    font-size: 18px;
    color: #162565;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background-color 0.3s;
}

.recruitment-header:hover {
    background-color: #e9e9e9;
}

.recruitment-toggle-icon {
    margin-right: 15px;
    transition: transform 0.3s;
}

.recruitment-toggle-icon.active i {
    transform: rotate(180deg);
}

.recruitment-table {
    margin-bottom: 0;
}

.table-header {
    background-color: #598AD0;
    color: white;
}

.recruitment-table th {
    vertical-align: middle;
    text-align: center;
}

.recruitment-table td {
    vertical-align: middle;
    padding: 15px;
}

.requirement-cell {
    text-align: left;
}

.requirement-cell ol {
    padding-left: 20px;
    margin-bottom: 10px;
}

.requirement-cell li {
    margin-bottom: 5px;
}

.bonus-points {
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .recruitment-table {
        font-size: 14px;
    }
    
    .recruitment-table th,
    .recruitment-table td {
        padding: 10px 5px;
    }
    
    .requirement-cell ol {
        padding-left: 15px;
    }
}

/* 职位关键字样式 */
.job-keywords {
    background-color: #f9f9f9;
    padding: 15px 20px;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.job-keyword {
    padding: 6px 15px;
    background-color: #eee;
    color: #555;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.job-keyword:hover {
    background-color: #ddd;
}

.job-keyword.active {
    background-color: #598AD0;
    color: white;
}

/* 导航栏容器调整 */
.header-msc {
    padding-right: 0; /* 取消右侧内边距 */
}

/* 响应式调整 */
@media (max-width: 991px) {
    .language-switcher {
        margin: 10px 0;
        height: auto;
    }
    
    .lang-btn {
        width: 100%;
        height: 40px;
        background-color: #004BA1; /* 在移动视图中始终保持蓝色背景 */
    }
} 