.list {
  padding-top: 20px;
}
.list-item {
  display: flex;
  margin-bottom: 26px;
}
.list-item a {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  margin-right: 17px;
  flex-shrink: 0;
}
.list-item a .tag {
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 1;
  padding: 3px 10px;
  background: #00000080;
  border-radius: 2px 2px 2px 2px;
  font-size: 12px;
  font-family: PingFang SC-Regular, PingFang SC;
  color: #FFFFFF;
}
.list-item a img {
  width: 179px;
  height: 101px;
  border-radius: 6px;
  transition: all 0.3s;
}
.list-item a img:hover {
  transform: scale(1.2);
}
.list-item-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 5px 0 2px;
}
.list-item-right .name {
  display: block;
  font-size: 16px;
  font-family: PingFang SC-Medium, PingFang SC;
  font-weight: 500;
  color: #333333;
  max-width: 400px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.list-item-right .name:hover {
  color: #3382F7;
}
.list-item-right .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 0;
  align-items: center;
  margin-top: 10px;
}
.list-item-right .tags-item {
  background: #E4EDFA;
  border-radius: 2px 2px 2px 2px;
  padding: 1px 7px 1px 8px;
  font-size: 12px;
  font-family: PingFang SC-Regular, PingFang SC;
  color: #666666;
  margin-right: 4px;
}
.list-item-right-bottom {
  display: flex;
  justify-content: space-between;
}
.list-item-right-bottom-left {
  display: flex;
  align-items: center;
}
.list-item-right-bottom-left img {
  width: 14px;
  height: 14px;
  margin-right: 5px;
}
.list-item-right-bottom-left p {
  font-size: 12px;
  font-family: PingFang SC-Regular, PingFang SC;
  color: #666666;
}
.list-item-right-bottom-right {
  display: flex;
  align-items: center;
}
.list-item-right-bottom-right .views,
.list-item-right-bottom-right .time {
  font-size: 12px;
  font-family: PingFang SC-Regular, PingFang SC;
  color: #999999;
}
.list-item-right-bottom-right .time {
  margin-left: 18px;
}
