.list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 20px;
}
.list-item {
  width: 378px;
  background: #F7F8FA;
  display: flex;
  margin-bottom: 20px;
  padding: 16px;
  border-radius: 8px;
  transition: all 0.3s;
  cursor: pointer;
}
.list-item:hover {
  background: #fff;
  box-shadow: 0px 3px 12px 0px rgba(10, 29, 98, 0.05);
  transform: scale(1.04);
}
.list-item:hover .name {
  color: #3382F7;
}
.list-item a {
  flex-shrink: 0;
  overflow: hidden;
}
.list-item img {
  width: 100px;
  height: 100px;
  border-radius: 6px;
}
.list-item-right {
  margin-left: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.list-item-right .name {
  display: inherit;
  max-width: 216px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 15px;
  font-family: PingFang SC-Medium, PingFang SC;
  font-weight: 500;
  color: #333333;
}
.list-item-right .id {
  font-size: 12px;
  font-family: PingFang SC-Regular, PingFang SC;
  color: #666666;
  margin-top: 6px;
}
.list-item-right .cate {
  display: flex;
  align-items: center;
}
.list-item-right .cate:first-child {
  margin-bottom: 8px;
}
.list-item-right .cate-left {
  font-size: 12px;
  font-family: PingFang SC-Regular, PingFang SC;
  color: #999999;
}
.list-item-right .cate a:hover {
  color: #3382F7;
}
.list-item-right .cate-right {
  font-size: 12px;
  font-family: PingFang SC-Regular, PingFang SC;
  color: #666666;
  max-width: 156px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
