.player-timeline-layout {
  position: absolute;
  left: 0;
  bottom: 28px;
  width: 100%;
  height: 20px;
  background: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9;
  opacity: 0.8;
  transition: all 0.1s;
  cursor: pointer;
}
.player-timeline-layout.hide-time-line {
  bottom: 0;
  height: 4px;
}
.player-timeline-layout .buffer-line {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: #676767;
  pointer-events: none;
  max-width: 100%;
}
.player-timeline-layout .current-line {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: #4661ff;
  pointer-events: none;
  overflow: hidden;
  max-width: 100%;
}
.player-timeline-layout.player-segment-timeline-layout {
  background: transparent;
}
.player-timeline-layout.player-segment-timeline-layout .segment-line-box {
  width: 100%;
  height: 100%;
  display: flex;
}
.player-timeline-layout.player-segment-timeline-layout .segment-line-box .segment-line-item {
  background: #000000;
  position: relative;
  box-sizing: border-box;
}
.player-timeline-layout.player-segment-timeline-layout .segment-line-box .segment-line-item:hover::after {
  content: ' ';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border: 1px solid #fff;
  z-index: 6;
  position: absolute;
}
.player-timeline-layout.player-segment-timeline-layout .segment-line-box .segment-line-item.segment-line-item-none {
  background: #de0e0e;
  z-index: 6;
  cursor: not-allowed;
}
.player-timeline-layout.frontend-player-timeline-layout .frontend-line-mark {
  position: absolute;
  height: 100%;
  width: 2px;
  background-color: #fff;
  pointer-events: none;
}
.player-timeline-layout.frontend-player-timeline-layout .frontend-line-tip-box {
  position: absolute;
  top: -130px;
  color: #fff;
  font-size: 12px;
  border-radius: 3px;
  background-color: #000000;
  padding: 10px;
  width: 162px;
  line-height: 20px;
  margin-left: -81px;
}
.segment-line-tip-box {
  font-size: 12px;
}
.segment-line-tip-box div {
  margin: 0;
  padding: 2px 0;
}
