.video-list {
  padding: 0.3rem;
}
.video-list .video-item {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: 0.3rem;
  width: 100%;
}
.video-list .video-item:first-child {
  margin-top: 0;
}
.video-list .video-item .video-img {
  flex: 1;
  position: relative;
  width: auto;
  padding-top: 56%;
  height: 1.6rem;
  overflow: hidden;
  background-color: #f5f6f9;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border: 0.01rem solid rgba(0, 0, 0, 0.05);
}
.video-list .video-item .video-img .tips {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1rem;
  height: 1rem;
  margin-left: -0.5rem;
  margin-top: -0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  color: var(--theme-color);
  background-color: #fff;
  border-radius: 100%;
  z-index: 1;
}
.video-list .video-item .video-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-list .video-item .video-img .desc {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0.8rem;
  line-height: 0.8rem;
  padding: 0 0.2rem;
  font-size: 0.28rem;
  color: #fff;
  background-color: #00000080;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}<!--ºÄÊ±1752951760.0313Ãë-->