.player {
  width: 680px;
  display: block;
  * {
    -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: relative;
  background-color: #fff;
  z-index: 68;
  width: 100%;
  height: 28px;
  border-bottom: 1px solid #e2e2e2;
  border-top: 1px solid #e2e2e2;
  zoom: 1;
  > div {
    vertical-align: top;
    display: inline-block;
    height: 28px;
    line-height: 28px;
  }
}
.player__video-btn {
  cursor: pointer;
  text-align: center;
  width: 30px;
  color: #99a2aa;
  &:hover {
    background-color: #f4f5f7;
    color: #6d757a;
  }
}
.player__video-btn-start {
  width: 40px;
}
.player__video-progress {
  padding: 0 3px;
  width: calc(100% - 197px);/*483px;*/
  height: 28px;
  line-height: 28px;
}
.player__video-progress-bar {
  height: 28px;
}
.player__video-progress-buffer {
  width: 100%;
  height: 6px;
  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: 84px;
  font-size: 12px;
  position: relative;
}
.player__video-volume {
  position: relative;
  &:hover .player__video-volumebar-wrap {
    display: block;
  }
}
.player__video-volumebar-wrap {
  display: none;
  position: absolute;
  cursor: default;
  top: -101px;
  left: -.5px;
  width: 30px;
  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: 12px;
  height: 28px;
  line-height: 28px;
  margin-bottom: 2px;
}
.player__video-volumebar {
  width: 30px;
  margin: 0 auto;
  height: 60px !important;
}
.pui-slider {
  width: 100%;
  clear: both;
  position: relative;
}
.pui-slider-vertical {
  width: 30px;
  height: 100%;
  .pui-slider__tracker-wrp {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    .pui-slider__tracker {
      width: 6px;
      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: 6px;
  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;
}