.page-container {
  min-width: 1600px;
  color: #333;
}

.page-container .banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 110px;
  height: 420px;
  background: url("/static/images/banner_news.png") no-repeat center/cover;
  color: #fff;
}

.page-container .banner .title {
  font-size: 44px;
  font-weight: 600;
}

.page-container .banner .subtitle {
  margin-top: 18px;
  font-size: 24px;
  font-weight: 600;
}

.page-container .news-wrapper {
  padding: 0 0 40px;
  background: #F8F8F8;
}

.page-container .news-wrapper .title {
  font-size: 30px;
  font-weight: 600;
  text-align: center;
}

.page-container .news-wrapper .list {
  margin: 40px auto 0;
  width: 1200px;
}

.page-container .news-wrapper .list .item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
}

.page-container .news-wrapper .list .item + .item {
  margin-top: 20px;
}

.page-container .news-wrapper .list .item > img {
  flex-shrink: 0;
  width: 240px;
  height: 135px;
  border-radius: 4px;
  object-fit: cover;
}

.page-container .news-wrapper .list .item .info {
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}

.page-container .news-wrapper .list .item .info .news-title {
  font-size: 20px;
}

.page-container .news-wrapper .list .item .info .summary {
  margin-top: 10px;
  color: #666;
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
}

.page-container .news-wrapper .list .item .info .time {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 14px;
  line-height: 1;
}

.page-container .news-wrapper .list .item .info .time > img {
  width: 14px;
  height: 14px;
}

.page-container .news-wrapper .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 40px 0 0;
}

.page-container .news-wrapper .pagination .prev, .page-container .news-wrapper .pagination .next {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  border: 1px solid #ddd;
  cursor: pointer;
}

.page-container .news-wrapper .pagination .prev.disabled, .page-container .news-wrapper .pagination .next.disabled {
  background: #EBEBEB;
}

.page-container .news-wrapper .pagination .prev img, .page-container .news-wrapper .pagination .next img {
  width: 80%;
  height: 80%;
}

.page-container .news-wrapper .pagination .prev img {
  transform: rotate(0.25turn);
}

.page-container .news-wrapper .pagination .next img {
  transform: rotate(-0.25turn);
}

.page-container .news-wrapper .pagination .page {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.page-container .news-wrapper .pagination .page > div {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  border: 1px solid #ddd;
}

.page-container .news-wrapper .pagination .page > div.active {
  background: #005AE7;
  border: 0;
  color: #fff;
}

@media (max-width: 1200px) {
  .page-container {
    min-width: unset;
  }
  .page-container .banner .title {
    font-size: 22px;
  }
  .page-container .banner .subtitle {
    font-size: 12px;
  }
  .page-container .news-wrapper {
    padding: 30px 20px;
    width: auto;
  }
  .page-container .news-wrapper .title {
    font-size: 20px;
  }
  .page-container .news-wrapper .list {
    margin-top: 20px;
    width: auto;
  }
  .page-container .news-wrapper .list .item {
    flex-direction: column;
  }
  .page-container .news-wrapper .list .item > img {
    width: 100%;
    aspect-ratio: 1.77;
  }
  .page-container .news-wrapper .list .item .info {
    line-height: 1.4;
  }
  .page-container .news-wrapper .list .item .info .summary {
    margin-top: 10px;
  }
  .page-container .news-wrapper .list .item .info .time {
    margin-top: 10px;
  }
}
