.news .news-class {
  padding: 10.6667vw 4vw 8vw;
}

.news .news-class > ul {
  display: flex;
  align-items: center;
}

.news .news-class > ul > li + li {
  margin-left: 3.3333vw;
  display: flex;
  align-items: center;
}

.news .news-class > ul > li + li::before {
  content: "";
  width: 2px;
  height: 4vw;
  margin-right: 3.3333vw;
  display: block;
  background-color: #777777;
}

.news .news-class > ul > li > a {
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 4.2667vw;
  color: rgba(39, 40, 40, 0.6);
}

.news .news-class > ul > li.active > a {
  color: rgba(39, 40, 40, 1);
}

.news .list {
  padding: 0 4vw var(--footer-height) 4vw;
  display: flex;
  flex-direction: column;
  gap: 5.3333vw;
}

.news .list .item {
  position: relative;
}

.news .list .item .img {
  width: 100%;
  height: 61.3333vw;
  overflow: hidden;
}

.news .list .item .img > img {
  width: inherit;
  height: inherit;
  aspect-ratio: 690px / 460px;
  object-fit: cover;
}

.news .list .item .info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 16vw;
  padding: 2vw 2.6667vw;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  background-color: rgba(39, 40, 40, 0.8);
}

.news .list .item .info .name {
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 4vw;
  color: #ffffff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news .list .item .info .pubdate {
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 2.9333vw;
  color: #ffffff;
}

.pager {
  padding: 8vw 4vw;
}

.pager ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.6667vw;
}

.pager ul li {
  min-width: 8vw;
  height: 6vw;
  padding: 0 3.2vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f6f6f6;
}

.pager ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 3.2vw;
  color: #272828;
}

.pager ul li.prev {
  margin-right: 2.6667vw;
  background: #3271e2;
}

.pager ul li.prev a::after {
  content: "";
  width: 2.1333vw;
  height: 4vw;
  background-image: url(/img/icon-prev.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.pager ul li.next {
  margin-left: 2.6667vw;
  background: #3271e2;
}


.pager ul li.next a::after {
  content: "";
  width: 2.1333vw;
  height: 4vw;
  background-image: url(/img/icon-next.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
