/* 全局样式 - 适配目标站布局 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Microsoft YaHei', Arial, sans-serif;
}

body {
    background-color: #fff; /* 目标站背景改为纯白 */
    color: #333;
    line-height: 1.8;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: #0066cc; /* 目标站链接色调整 */
}

a:hover {
    color: #003399;
    text-decoration: underline;
}

/* 头部导航 - 完全匹配目标站样式 */
header {
    background-color: #0066cc; /* 目标站头部背景色 */
    padding: 10px 0;
    box-shadow: none; /* 去掉阴影，匹配目标站 */
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    font-size: 28px;
    font-weight: bold;
    color: #fff; /* 头部标题白色 */
}

.site-subtitle {
    font-size: 14px;
    color: #e6f0ff;
    margin-top: 5px;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: #fff; /* 导航文字白色 */
    position: relative;
    padding: 8px 10px;
    font-size: 16px;
}

nav ul li a::after {
    display: none; /* 去掉原下划线动画，匹配目标站 */
}

nav ul li a:hover,
nav ul li a.active {
    background-color: #003399;
    border-radius: 4px;
    text-decoration: none;
}

/* 主内容区 - 适配目标站间距 */
main {
    padding: 20px 0;
    min-height: calc(100vh - 160px);
}

.section-title {
    font-size: 22px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #0066cc; /* 标题下划线匹配目标站 */
    color: #003399;
}

/* Banner样式 - 匹配目标站 */
.banner {
    background: linear-gradient(to right, #0066cc, #0099ff); /* 目标站渐变 */
    border-radius: 0; /* 去掉圆角 */
    padding: 35px 0;
    margin-bottom: 25px;
    text-align: center;
    box-shadow: none;
    border: none;
}

.banner h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #fff;
}

.banner p {
    color: #e6f0ff;
    margin-bottom: 15px;
    font-size: 16px;
}

.banner .btn {
    padding: 10px 25px;
    background-color: #fff;
    color: #0066cc;
    font-weight: bold;
    border-radius: 25px; /* 圆角按钮匹配目标站 */
}

.banner .btn:hover {
    background-color: #f0f7ff;
    color: #003399;
}

/* 卡片样式 - 适配目标站 */
.card {
    background-color: #fff;
    border-radius: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid #e6e6e6;
}

.card:hover {
    transform: none; /* 去掉悬浮上移 */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.card-header {
    padding: 12px 15px;
    background-color: #f0f7ff;
    border-bottom: 1px solid #e6e6e6;
}

.card-body {
    padding: 15px;
}

.card-footer {
    padding: 12px 15px;
    background-color: #f0f7ff;
    border-top: 1px solid #e6e6e6;
}

/* 按钮样式 - 匹配目标站 */
.btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: #0066cc;
    color: white;
    border: none;
    border-radius: 0; /* 去掉圆角 */
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.btn:hover {
    background-color: #003399;
    color: white;
    text-decoration: none;
}

/* 分页 - 适配目标站 */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.pagination a {
    display: inline-block;
    padding: 6px 14px;
    margin: 0 3px;
    border: 1px solid #0066cc;
    background-color: #fff;
    color: #0066cc;
    border-radius: 0;
}

.pagination a.active {
    background-color: #0066cc;
    color: white;
    border-color: #0066cc;
}

.pagination a:hover:not(.active) {
    background-color: #f0f7ff;
}

/* 搜索框 - 匹配目标站 */
.search-form {
    margin-bottom: 20px;
    display: flex;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.search-form input[type="text"] {
    flex: 1;
    padding: 10px;
    border: 1px solid #0066cc;
    border-radius: 0;
}

.search-form button {
    padding: 10px 20px;
    background-color: #0066cc;
    color: white;
    border: none;
    border-radius: 0;
    cursor: pointer;
}

/* 分类筛选 - 适配目标站 */
.category-filter {
    margin-bottom: 25px;
    text-align: center;
}

.category-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.category-btn {
    padding: 8px 20px;
    background-color: #f0f7ff;
    color: #0066cc;
    border: 1px solid #0066cc;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    font-size: 14px;
    box-shadow: none;
}

.category-btn:hover, .category-btn.active {
    background-color: #0066cc;
    color: white;
}

/* 页脚 - 匹配目标站样式 */
footer {
    background-color: #0066cc;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

/* 职位列表 - 适配目标站 */
.job-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.job-card {
    background-color: #fff;
    border-radius: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #e6e6e6;
}

.job-card:hover {
    transform: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* 公司介绍页 - 适配目标站 */
.company-header {
    text-align: center;
    padding: 40px 0;
    background: linear-gradient(to right, #0066cc, #0099ff);
    color: white;
    margin-bottom: 25px;
    border-radius: 0;
}

.company-section h2 {
    font-size: 20px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #0066cc;
    color: #003399;
}

.benefit-item {
    background-color: #f0f7ff;
    padding: 12px 18px;
    border-radius: 0;
    border-left: 4px solid #0066cc;
    box-shadow: none;
}

/* 响应式设计 - 适配目标站 */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        margin-top: 10px;
        justify-content: center;
    }
    
    nav ul li {
        margin-left: 15px;
    }
    
    .job-grid {
        grid-template-columns: 1fr;
    }
    
    .related-jobs {
        grid-template-columns: 1fr;
    }
    
    .company-images {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

/* 其他通用样式保留 */
.table {
    width: 100%;
    border-collapse: collapse;
}

.table th, .table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e6e6e6;
}

.alert {
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 0;
}

.alert-info {
    background-color: #f0f7ff;
    color: #003399;
    border: 1px solid #0066cc;
}