.hotZCTag-card .title-name {
  display: flex;
  align-items: center;
}
.hotZCTag-card .title-name .icon {
  width: 20px;
  height: 20px;
  background: url(/assets/images/cards/icon-hot.png) no-repeat left center;
  background-size: 20px;
  margin-right: 3px;
}
.hotZCTag-card .hot-tags {
  padding: 23px 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hotZCTag-card .hot-tags .tag-item {
  width: 142px;
  background: #F5F6FF;
  padding: 16px 20px;
  border: 1px solid #DFE7FF;
  border-radius: 8px;
  cursor: pointer;
}
.hotZCTag-card .hot-tags .tag-item:hover {
  border-color: #4261FF;
}
.hotZCTag-card .hot-tags .tag-item:hover .tag-name {
  color: #4261FF;
}
.hotZCTag-card .hot-tags .tag-item:hover .count {
  color: #4261FF;
}
.hotZCTag-card .hot-tags .tag-item .tag-name {
  display: block;
  background: url(/assets/images/cards/icon-tag.png) no-repeat left center;
  background-size: 18px;
  line-height: 18px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  padding-left: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hotZCTag-card .hot-tags .tag-item .count {
  line-height: 14px;
  font-size: 12px;
  color: #666;
  margin-top: 10px;
}
