

/*controls进度条一直显示*/
.controlsAlwaysShowalways {
  width: 100%;
  height: 100%;

  .video-js.vjs-big-play-centered .vjs-control-bar {
    opacity: 1;
  }
}

.controlsAlwaysShowhover {
  width: 100%;
  height: 100%;

  .video-js.vjs-big-play-centered .vjs-control-bar {
    opacity: 0;
  }
}

.controlsAlwaysShowhover:hover {
  .video-js.vjs-big-play-centered .vjs-control-bar {
    opacity: 1;
  }
}

.vjs-picture-in-picture-control {
  display: none;
}

.video-js {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: transparent;
}

.tempCanvas {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.vjs-remaining-time-display {
  pointer-events: none;
}
