.lives-recommend .card-content {
  padding: 24px 0;
}
.lives-recommend .list .item-img {
  cursor: pointer;
  position: relative;
  margin-bottom: 6px;
}
.lives-recommend .list .item-img:last-child {
  margin: 0;
}
.lives-recommend .list .item-img:hover .img img {
  transform: scale(1.05);
}
.lives-recommend .list .item-img:hover .item-name {
  color: #1259F0;
}
.lives-recommend .list .item-img .img {
  width: 310px;
  height: 175px;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  font-size: 0;
}
.lives-recommend .list .item-img .img img {
  width: 100%;
  height: 100%;
}
.lives-recommend .list .item-img .item-name {
  display: block;
  background: url(/assets/images/common/icon-play.png) no-repeat left center;
  background-size: 14px;
  line-height: 18px;
  font-size: 14px;
  color: #39435A;
  padding-left: 22px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 8px;
}
.lives-recommend .list .item-img .item-info {
  margin-top: 8px;
  display: flex;
  gap: 16px;
}
.lives-recommend .list .item-img .item-info .info-item {
  background: no-repeat left 3px;
  background-size: 14px;
  line-height: 18px;
  font-size: 14px;
  color: #777E8E;
  padding-left: 18px;
}
.lives-recommend .list .item-img .item-info .info-item.view {
  background-image: url(/assets/images/common/icon-views.png);
}
.lives-recommend .list .item-img .item-info .info-item.time {
  background-image: url(/assets/images/common/icon-time.png);
}
.lives-recommend .list .item {
  line-height: 18px;
  font-size: 14px;
  color: #39435A;
  padding: 12px 0 12px 22px;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
}
.lives-recommend .list .item:hover {
  color: #1259F0;
}
.lives-recommend .list .item::before {
  content: '';
  width: 14px;
  height: 14px;
  background: url(/assets/images/common/icon-play.png) no-repeat center center;
  background-size: 14px;
  line-height: 18px;
  font-size: 10px;
  font-weight: bold;
  color: #777E8E;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  top: 15px;
  left: 0;
}
