/* 新闻样式 */
.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 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 28px
}

.pagination div * {
    border: 1px solid #d8d8d8;
    background: #fff;
    color: #666;
    width: 34px;
    height: 34px;
    border-radius: 3px;
    cursor: pointer;
    display: flex;
    gap: 8px
}

.pagination div .active{
    background: #1a3a6c;
    color: #fff;
    border-color: #1a3a6c
}

.pagination div * [disabled] {
    opacity: .4;
    cursor: not-allowed
}