.breadcrumb a:hover {
color: #C9A959;
}

.page-header {
display: none;
}

/* 新闻分类 */
.news-tabs {
display: flex;
justify-content: center;
gap: 15px;
margin-bottom: 40px;
flex-wrap: wrap;
}

.news-tab {
padding: 10px 25px;
border: 2px solid #1A3A5C;
border-radius: 25px;
text-decoration: none;
color: #1A3A5C;
font-weight: 500;
transition: all 0.3s;
}

.news-tab:hover,
.news-tab.active {
background: #1A3A5C;
color: white;
}

/* 新闻列表 */
.news-list {
display: grid;
gap: 30px;
}

.news-item {
display: grid;
grid-template-columns: 280px 1fr;
gap: 30px;
background: #fff;
border: 1px solid #E0E0E0;
border-radius: 8px;
overflow: hidden;
transition: all 0.3s;
}

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

.news-image {
background: linear-gradient(135deg, #1A3A5C 0%, #2C5F8D 100%);
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 60px;
    width: 280px;
    height: 246px;
    overflow: hidden;
}

.news-content {
padding: 25px;
}

.news-meta {
display: flex;
gap: 20px;
margin-bottom: 15px;
font-size: 14px;
}

.news-date {
color: #999;
}

.news-category {
color: #C9A959;
font-weight: 500;
}

.news-content h3 {
color: #1A3A5C;
font-size: 20px;
margin-bottom: 15px;
}

.news-content p {
color: #666;
margin-bottom: 15px;
line-height: 1.8;
}

.btn-read {
display: inline-block;
padding: 8px 20px;
background: #1A3A5C;
color: white;
text-decoration: none;
border-radius: 5px;
font-size: 14px;
transition: background 0.3s;
}

.btn-read:hover {
background: #2C5F8D;
}

/* 分页 */
.pagination {
display: flex;
justify-content: center;
gap: 10px;
margin-top: 50px;
}

.pagination a {
padding: 10px 15px;
border: 1px solid #E0E0E0;
border-radius: 5px;
text-decoration: none;
color: #333;
transition: all 0.3s;
}

.pagination a:hover,
.pagination a.active {
background: #1A3A5C;
color: white;
border-color: #1A3A5C;
}

@media (max-width: 768px) {

.banner {
height: 200px;
}

.news-item {
grid-template-columns: 1fr;
}

.news-image {
height: 200px;
}
}
