/* 新闻样式 */
.news-page {
  min-height: 70vh
}

.news-toolbar-section {
  background: #e6e6e6;
  border-bottom: 1px solid #d8d8d8
}

.news-toolbar {
  display: flex;
  align-items: center;
  justify-content: stretch;
  padding: 18px 0
}

.category-tabs {
  display: flex;
  gap: 0;
  background: #e1e1e1;
  padding: 0;
  border: 1px solid #cfcfcf;
  width: 100%
}

.tab {
  border: 0;
  background: #e1e1e1;
  color: #333;
  padding: 16px 24px;
  font-size: 20px;
  cursor: pointer;
  transition: .2s;
  text-align: center;
}

.tab.is-active {
  background: #c8c8c8;
  color: #000;
  font-weight: 700;
  box-shadow: none
}

.news-list-section {
  padding: 26px 0 60px
}

.news-list {
  background: #fff;
  border-radius: 4px
}

.news-item {
  display: flex;
  gap: 18px;
  padding: 18px 22px;
  border-bottom: 1px solid #f0f0f0;
  align-items: center
}

.news-item:last-child {
  border-bottom: none
}

.news-date {
  width: 70px;
  text-align: center;
  color: #7f7f7f;
  border-right: 1px solid #ededed;
  padding-right: 18px
}

.news-day {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #6d6d6d;
  line-height: 1
}

.news-month {
  display: block;
  font-size: 12px;
  margin-top: 6px;
  color: #9a9a9a
}

.news-link {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  color: #333;
  padding-left: 2px
}

.news-title {
  font-size: 18px;
  color: #000;
  line-height: 1.7
}

.news-title:hover {
  color: #1a3a6c
}

.empty-state {
  padding: 40px 20px;
  text-align: center;
  background: #fff;
  border: 1px dashed #e2e2e2;
  border-radius: 4px;
  color: #888
}
/* 分页整体 */
.pagination {
    margin: 48px 0 0;
    display: flex;
    justify-content: center;
}

/* 分页容器 */
.pagination > div,
[id^="pagination_"] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* 页码、按钮基础样式 */
[id^="pagination_"] a,
[id^="pagination_"] span {
    min-width: 34px;
    height: 34px;
    box-sizing: border-box;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: #fff;
    color: #8c8c8c;
    font-size: 14px;
    line-height: 34px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: all .2s ease;
}

/* 普通页码悬停 */
[id^="pagination_"] a:hover {
    border-color: #1a3a6c;
    color: #1a3a6c;
}

/* 当前页 */
[id^="pagination_"] .active {
    background: #1a3a6c;
    border-color: #1a3a6c;
    color: #fff;
    font-weight: 600;
}

/* 不可点击按钮 */
[id^="pagination_"] .locked {
    color: #bfbfbf;
    background: #fafafa;
    border-color: #e5e7eb;
    cursor: not-allowed;
}

/* 省略号 */
[id^="pagination_"] span:not(.active):not(.locked) {
    min-width: auto;
    width: auto;
    height: 56px;
    line-height: 56px;
    padding: 0 8px;
    border: none;
    background: transparent;
    color: #999;
}