.article-banner .pc-img {
  height: 480px;
}

.article-filter-bar {
  background: #f3f5f7;
  border-bottom: 1px solid #e5e8ec;
  border-top: 1px solid #e5e8ec;
}

.article-filter-inner {
  align-items: center;
  display: flex;
  gap: 32px;
  justify-content: space-between;
  min-height: 72px;
}

.article-category-tabs {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.article-category-tab {
  align-items: center;
  background: #fff;
  border: 1px solid #d9dee5;
  color: #2c3035;
  display: inline-flex;
  font-size: 16px;
  height: 42px;
  justify-content: center;
  min-width: 116px;
  padding: 0 22px;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.article-category-tab:hover,
.article-category-tab.cur {
  background: #01468b;
  border-color: #01468b;
  color: #fff;
}

.article-breadcrumb {
  color: #707780;
  flex: 0 0 auto;
  font-size: 14px;
  line-height: 1.6;
}

.article-breadcrumb a {
  color: #4f5964;
}

.article-breadcrumb span {
  margin-left: 8px;
}

.article-list-page {
  padding: 72px 0 0;
}

.article-list-heading {
  align-items: end;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 30px;
}

.article-list-heading p {
  color: #01468b;
  font-family: Arial, "Microsoft Yahei", sans-serif;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1;
  margin: 0 0 12px;
}

.article-list-heading h1 {
  color: #202428;
  font-size: 38px;
  font-weight: 500;
  line-height: 1.25;
  margin: 0;
}

.article-news-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.article-news-card {
  background: #fff;
  border: 1px solid #e2e6eb;
  color: #252a30;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.article-news-card:hover {
  border-color: #01468b;
  box-shadow: 0 16px 36px rgba(1, 70, 139, .12);
  transform: translateY(-4px);
}

.article-card-media {
  aspect-ratio: 16 / 10;
  background: #f4f6f8;
  border-bottom: 1px solid #edf0f3;
  overflow: hidden;
}

.article-card-media img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
  width: 100%;
}

.article-news-card:hover .article-card-media img {
  transform: scale(1.04);
}

.article-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 22px 24px;
}

.article-card-body h2 {
  color: #202428;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
  margin: 0 0 12px;
}

.article-card-body p {
  color: #69717a;
  flex: 1 1 auto;
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

.article-empty-state {
  background: #f7f9fb;
  border: 1px solid #e3e8ee;
  display: block;
  margin-top: 0;
  padding: 58px 24px;
  text-align: center;
}

.article-news-grid:has(.article-news-card) + .article-empty-state {
  display: none;
}

.article-empty-state h2 {
  color: #202428;
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 12px;
}

.article-empty-state p {
  color: #707780;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.article-pages {
  line-height: 36px;
  margin-top: 46px;
  padding: 0 0 46px;
  text-align: center;
}

.article-pages .pagination {
  display: inline-flex;
  vertical-align: top;
}

.article-pages ul.pagination {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.article-pages ul.pagination a,
.article-pages ul.pagination li {
  float: none;
}

.article-pages .pagination a,
.article-pages .pagination ul li span {
  height: 36px;
  line-height: 34px;
  margin: 0;
  width: 36px;
}

@media (max-width: 1200px) {
  .article-filter-inner {
    min-height: 68px;
  }

  .article-news-grid {
    gap: 24px;
  }
}

@media (max-width: 900px) {
  .article-filter-inner,
  .article-list-heading {
    align-items: flex-start;
    display: block;
  }

  .article-category-tabs {
    padding: 18px 0 10px;
  }

  .article-breadcrumb {
    padding-bottom: 18px;
  }

  .article-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .article-banner .pc-img {
    height: 58vw;
  }

  .article-list-page {
    padding: 10vw 0 0;
  }

  .article-list-heading {
    margin-bottom: 6vw;
  }

  .article-list-heading h1 {
    font-size: 28px;
  }

  .article-category-tabs {
    gap: 10px;
  }

  .article-category-tab {
    flex: 1 1 calc(50% - 10px);
    min-width: 0;
  }

  .article-news-grid {
    gap: 20px;
    grid-template-columns: 1fr;
  }

  .article-card-body {
    padding: 20px;
  }
}
