.list-content{
  padding: 100px 0 0 0;
  border-radius: 0;
  border: 0;
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

#list001{
  flex-grow: 1;
}

.list-content__sidebar{
  width: 360px;
  flex-shrink: 0;
}

.article-item{
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.article-item__img{
  width: 210px;
  height: 160px;
  flex-shrink: 0;
}

.article-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-item__content{
  flex-grow: 1;
}

.article-item__title{
  font-size: 20px;
  font-weight: 500;
  color: #333;
  margin-bottom: 18px;
}

.article-item__description{
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
}

.article-item__tagsview{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.article-item__tagsview__tagItem span{
  display: block;
  width: 80px;
  height: 28px;
  border-radius: 4px;
  text-align: center;
  line-height: 28px;
  font-size: 12px;
  background: #E8E8E8;
  color:#666;
}

.banner{
  min-width: 1440px;
  height: 550px;
}

.banner img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}