.page-wrap {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    align-items: flex-start;
}
.page-left {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.page-right {
    width: 300px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    position: sticky;
    top: 100px;
}
.breadcrumb {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}
.breadcrumb a {
    color: #666;
}
.breadcrumb a:hover {
    color: var(--primary);
}

.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.news-list li {
    padding: 16px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.news-list li a {
    font-size: 18px;
    color: #333;
}
.news-list li a:hover {
    color: var(--primary);
}
.news-list li .time {
    font-size: 13px;
    color: #999;
}

.page-banner {
    height: 280px;
    background: linear-gradient(rgba(0, 82, 212, 0.35), rgba(0, 82, 212, 0.35)), url(../uploads/3.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}
.banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}
.banner-title {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
/* 科普列表分页样式 */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0 20px;
  gap: 8px;
}

.pagination a,
.pagination span {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid #eee;
  border-radius: 4px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
}

.pagination a:hover {
  background-color: #f5f5f5;
  border-color: #ddd;
}
/* 匹配你html的 current 类名，当前页高亮生效 */
.pagination .current {
  background-color: #007bff;
  color: #fff;
  border-color: #007bff;
}

.pagination .page-prev,
.pagination .page-next {
  padding: 8px 12px;
}