#list {
  width: 100%;
  min-height: calc(100vh - 467px);
}
#list .container {
  width: 1400px;
  margin: 0 auto;
  padding: 40px 0;
}

.news-list {
  padding: 20px 0;
}

.news-item {
  margin-bottom: 90px;
}

.news-title {
  font-size: 30px;
  font-weight: bold;
  color: #00a0e9;
  margin-bottom: 20px;
}

.news-divider {
  border: none;
  border-top: 2px solid var(--background-color);
  margin: 16px 0;
}

.news-summary {
  font-size: 20px;
  line-height: 1.6;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}