.article-list-container {
  width: 100%;
  height: auto;
  background-color: #fff;
  display: block;
  font-size: 0;
}
.article-list-container .article-link {
  display: inline-block;
  font-size: 16px;
  margin-right: 21px;
  margin-bottom: 20px;
}
.article-list-container .article-link .article-item {
  width: 356px;
  height: 359px;
  overflow: hidden;
}
.article-list-container .article-link .article-item .article-img {
  width: 356px;
  height: 273px;
}
.article-list-container .article-link .article-item .article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-list-container .article-link .article-item .article-title {
  width: 100%;
  margin: 20px 0;
  white-space: nowrap;
  /* 禁止换行 */
  overflow: hidden;
  /* 隐藏溢出内容 */
  text-overflow: ellipsis;
  /* 溢出部分显示省略号 */
}
.article-list-container .article-link .article-item .article-date {
  width: 100%;
  color: #929292;
}
.article-list-container .article-link:nth-child(3n) {
  font-size: 16px;
  display: inline-block;
  margin-right: 0;
  margin-bottom: 20px;
}
.article-list-container .article-link:nth-child(3n) .article-item {
  width: 356px;
  height: 359px;
  overflow: hidden;
}
.article-list-container .article-link:nth-child(3n) .article-item .article-img {
  width: 356px;
  height: 273px;
}
.article-list-container .article-link:nth-child(3n) .article-item .article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-list-container .article-link:nth-child(3n) .article-item .article-title {
  width: 100%;
  margin: 20px 0;
  white-space: nowrap;
  /* 禁止换行 */
  overflow: hidden;
  /* 隐藏溢出内容 */
  text-overflow: ellipsis;
  /* 溢出部分显示省略号 */
}
.article-list-container .article-link:nth-child(3n) .article-item .article-date {
  width: 100%;
  color: #929292;
}
