/* 新闻列表页样式 */
.news-banner {
  height: 300px;
  background: #2E3192;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 2rem;
}

.news-banner h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.news-filter {
  margin-bottom: 2rem;
  display: flex;
  gap: 1rem;
}

.filter-btn {
  padding: 0.5rem 1.5rem;
  border: 1px solid #2E3192;
  border-radius: 4px;
  background: transparent;
  color: #2E3192;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
  background: #2E3192;
  color: #fff;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.page-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #2E3192;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2E3192;
  text-decoration: none;
  transition: all 0.3s;
}

.page-btn.active,
.page-btn:hover {
  background: #2E3192;
  color: #fff;
} 