/* 视频容器样式 */
.video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

/* 视频播放器样式 */
.video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.close-video-btn {
  height: 40px;
  width: 40px;
  padding: 2px;
  margin-right: 12px;
  position: absolute;
  right: 20px;
  top: 20px;
  color: #fff;
  cursor: pointer;
  z-index: 9999;
}
