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

.page-header {
display: none;
}

/* 项目筛选 */
.project-filters {
display: flex;
justify-content: center;
gap: 15px;
margin-bottom: 40px;
flex-wrap: wrap;
}

.filter-btn {
padding: 10px 25px;
border: 2px solid #1A3A5C;
border-radius: 25px;
background: transparent;
color: #1A3A5C;
font-size: 14px;
cursor: pointer;
transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
background: #1A3A5C;
color: white;
}

/* 项目统计 */
.project-stats {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
margin-bottom: 50px;
}

.stat-card {
background: #F5F7FA;
padding: 25px;
border-radius: 8px;
text-align: center;
}

.stat-number {
font-size: 36px;
font-weight: bold;
color: #1A3A5C;
}

.stat-label {
color: #666;
margin-top: 5px;
}

/* 项目列表 */
.project-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 30px;
}

.project-card {
background: #fff;
border: 1px solid #E0E0E0;
border-radius: 8px;
overflow: hidden;
transition: all 0.3s;
}

.project-card:hover {
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
transform: translateY(-5px);
}

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

.project-info {
padding: 25px;
}

.project-category {
display: inline-block;
padding: 5px 12px;
background: #C9A959;
color: white;
font-size: 12px;
border-radius: 15px;
margin-bottom: 10px;
}

.project-info h3 {
color: #1A3A5C;
font-size: 18px;
margin-bottom: 10px;
}

.project-info p {
color: #666;
font-size: 14px;
margin-bottom: 15px;
line-height: 1.6;
}

.project-meta {
display: flex;
justify-content: space-between;
font-size: 13px;
color: #999;
margin-bottom: 15px;
}

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

.btn-detail: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;
}
}
