.videoList {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-row-gap: 12px;
  grid-column-gap: 15px;
  margin-bottom: 16px;
  padding: 0 12px;
  box-sizing: border-box;
}
.videoCoverBox {
  /* width: 168px; */
  width: 100%;
  /* height: 94px; */
  aspect-ratio: 168 / 94;
  border-radius: 6px;
  position: relative;
  padding-bottom: 4px;
}
.videoCover {
  width: 100%;
  height: 100%;
  border-radius: 6px;
}
.videoData {
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  padding: 0 2px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.playCount {
  display: flex;
  align-items: center;
  height: 14px;
  border-radius: 3px;
  background: rgba(2, 2, 2, 0.30);
  padding-right: 4px;
  box-sizing: border-box;
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.playCount .playIcon {
  width: 12px;
  height: 12px;
}
.palyTime {
  font-size: 9px;
  height: 14px;
  padding: 0 6px;
  box-sizing: border-box;
  border-radius: 3px;
  background: rgba(2, 2, 2, 0.30);
  display: flex;
  align-items: center;
  justify-content: center;
}
.videoTitle {
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
}
.tagList {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 6px;
  margin-top: 4px;
}
.tagItem {
  font-size: 11px;
  height: 16px;
  padding: 0 6px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background: #FF53FD;
  flex-shrink: 0;
}


@media screen and (min-width: 768px) {
  .videoList {
    grid-template-columns: 1fr 1fr 1fr;
    grid-row-gap: 36px;
    grid-column-gap: 30px;
    margin-bottom:30px;
    padding: 0;
  }
  .videoCoverBox {
    /* height: 168px; */
    margin-bottom: 8px;
    aspect-ratio: 300 / 168;
  }
  .videoData {
    padding: 0 10px;
    bottom: 10px;
  }
  .playCount {
    height: 25px;
    padding: 0 7px 0 0;
    font-size: 15px;
  }
  .playCount .playIcon {
    width: 20px;
    height: 20px;
  }
  .palyTime {
    font-size: 15px;
    height: 25px;
    padding: 0 10px;
  }
  .videoTitle {
    font-size: 20px;
    line-height: 32px;
    font-weight: 400;
  }
  .tagList {
    margin-top: 8px;
    gap: 10px;
    margin-top: 8px;
  }
  .tagItem {
    height: 28px;
    padding: 0 10px;
    font-size: 18px;
  }
}