.banner-container {
  display: flex;
  min-width: 1200px;
  background: url("../img/news-banner.png") no-repeat;
  background-size: 100% 100%;
}
.banner-container .banner-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 100px auto;
}
.banner-container .banner-wrapper h4,
.banner-container .banner-wrapper p {
  color: #fff;
  text-align: center;
}
.banner-container .banner-wrapper h4 {
  margin-bottom: 30px;
  font-size: 48px;
}
.banner-container .banner-wrapper p {
  font-size: 24px;
}

.news-container {
  margin-top: 50px;
  min-width: 1200px;
}

.news-list li {
  position: relative;
  padding: 0 70px 42px;
  margin-bottom: 42px;
  transition: all 0.3s;
}
.news-list li h5 {
  margin-bottom: 10px;
  font-size: 22px;
}
.news-list li .news-time {
  margin-bottom: 18px;
}
.news-list li .news-content {
  margin-bottom: 32px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news-list li .read-btn {
  float: right;
}
.news-list li:hover {
  transform: scale(1.05);
  transition: all 0.3s;
}
.news-list li:hover .read-btn {
  color: #0b7be0;
}

.more-btn {
  cursor: pointer;
  width: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
  margin: 0 auto 50px;
  color: #0b7be0;
  border: 1px solid #0b7be0;
  border-radius: 17px;
  transition: all 0.3s;
}
.more-btn:hover {
  color: #fff;
  background: #0b7be0;
  transition: all 0.3s;
}

.further {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 50px;
  font-size: 32rpx;
}