.video-detail {
  width: 100%;
  height: 576px;
  display: flex;
  justify-content: start;
}

.video-play {
  width: 860px;
  background-color: #333;
  box-sizing: border-box;
  padding: 34px;
}

.video-play > video {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.video-list {
  width: 376px;
  background-color: #535353;
  box-sizing: border-box;
  padding: 32px 16px;
}

.video-list .list-wrap {
  overflow: auto;
  width: 100%;
  height: 100%;
}

.list-wrap .item {
  width: 100%;
  height: 105px;
  display: flex;
  justify-content: start;
  margin-bottom: 32px;
  cursor: pointer;
}

.list-wrap .item .item-img {
  width: 170px;
}

.list-wrap .item .item-img img {
  width: 100%;
}

.list-wrap .item .item-info {
  width: 150px;
  text-align: center;
}

.list-wrap .item .current-video {
  background-color: #b50005;
}

.list-wrap .item .info-name {
  font-size: 18px;
  color: #fefeff;
  padding: 28px 0 18px 0;
  width: 70%;
  margin: 0 auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.list-wrap .item .info-clicked {
  font-size: 12px;
  color: #c8c2c6;
}

/* 设置滚动条样式 */
::-webkit-scrollbar {
  width: 8px;
}

/* 滚动槽 */
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset006pxrgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: inset006pxrgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb:window-inactive {
  background: #333;
}
