.player {
  display: block;
  position: relative;
  * {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .fix-bottom {
    position: fixed;
    bottom: 0
  }
}
.cursor-none * {
  cursor: none;
}
.player__video-wrap {
  position: relative;
  z-index: 66;
  width: 100%;
  // height: 440px;
}
.player__video {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 10;
  box-sizing: border-box;
  padding: 2px 7px;
  background: #000;
  cursor: pointer;
  video {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0 auto;
  }
}
.player__video-control {
  position: absolute;
  bottom: 0;
  // background-color: #fff;
  z-index: 68;
  width: 100%;
  height: 0.746rem;
  zoom: 1;
  display: flex;
  > div {
    vertical-align: top;
    display: inline-block;
    height: 0.746rem;
    line-height: 0.746rem;
  }
  .van-dropdown-menu{
    width: .6rem;
    font-size: 0.26rem;
    color: #fff;
  }
  .van-dropdown-item--up{
    position: absolute;
    bottom: 0.764rem!important;
  }
  .van-dropdown-item__option{
    height: 0.52rem;
  }
  .player__video-multiple{
    cursor: pointer;
    display: flex;
    align-items: center;
    margin: 0 8px;
  }
}
.video-speed{
  font-size: 0.32rem;
  width: 0.8rem;
}
.player__video-btn {
  cursor: pointer;
  text-align: center;
  width: 0.8rem;
  color: #fff;
}
.play__video-playicon{
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 999;
  transform: translate(-50%, -50%);
}

.player__video-btn-start {
  width: .8rem;
  font-size: .48rem;
  color: #fff;
}
.player__video-progress {
  padding: 0 3px;
  width: calc(100% - 3.8rem);/*483px;*/
  height: 0.746rem;
  line-height: 0.746rem;
}
.player__video-progress-bar {
  height: 0.746rem;
}
.player__video-progress-buffer {
  width: 100%;
  height: 0.08rem;
  position: absolute;
  border-radius: 4px;
  overflow: hidden;
  top: 0;
  left: 0;
}
.player__video-progress-buffer__range {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #8adced;
}
.player__video-time {
  width: 2.24rem;
  color: #fff;
  font-size: 0.26rem;
  position: relative;
  margin-left: 0.426rem;
}
.player__video-volume {
  position: relative;
  &:hover .player__video-volumebar-wrap {
    display: block;
  }
}
.player__video-btn-fullScreen{
  color: #fff;
  font-size: 0.48rem;
}
.player__video-volumebar-wrap {
  display: none;
  position: absolute;
  cursor: default;
  top: -101px;
  left: -.5px;
  width: 1.6rem;
  height: 100px;
  background-color: #fff;
  border-radius: 4px 4px 0 0;
  border: 1px solid #e2e2e2;
}
.player__video-volume-num {
  color: #99a2aa;
  width: 100%;
  text-align: center;
  font-size: 0.32rem;
  height: 0.746rem;
  line-height: 0.746rem;
  margin-bottom: 2px;
}
.player__video-volumebar {
  width: 1.6rem;
  margin: 0 auto;
  height: 1.6rem !important;
}
.pui-slider {
  width: 100%;
  clear: both;
  position: relative;
}
.pui-slider-vertical {
  width: 1.6rem;
  height: 100%;
  .pui-slider__tracker-wrp {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    .pui-slider__tracker {
      width: 0.08rem;
      height: 100%;
      bottom: 0;
      left: 50%;
      top: auto;
      margin-left: -3px;
      .pui-slider__handle {
        left: -4px;
        top: auto;
        bottom: 7px;
        margin-left: 0;
        z-index: 1;
      }
      .pui-slider__progress {
        height: auto;
        width: 100%;
        position: absolute;
        bottom: 0;
      }
    }
  }
}
.pui-slider__tracker-wrp {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.pui-slider__tracker {
  position: absolute;
  width: 100%;
  height: 0.08rem;
  left: 0;
  border-radius: 4px;
  top: 50%;
  margin-top: -3px;
  background-color: #e5e9ef;
}
.pui-slider__handle {
  position: absolute;
  top: -4px;
  height: 14px;
  width: 14px;
  border-radius: 7px;
  cursor: pointer;
  z-index: 1;
  left: 7px;
  box-shadow: 0 0 3px #017cc3;
  background-color: #fff;
  -webkit-transition: box-shadow .3s;
  -moz-transition: box-shadow .3s;
  -ms-transition: box-shadow .3s;
  -o-transition: box-shadow .3s;
  transition: box-shadow .3s;
}
.pui-slider__progress {
  height: 100%;
  border-radius: 4px;
  background-color: #7d8fff;
  position: relative;
}