.o-tv-video-editor {
  width: 100%;
  height: 100%;
}
.o-tv-video-editor__content {
  height: calc(100% - 40px);
  display: flex;
  flex-direction: row;
  overflow-x: auto;
}
.o-tv-video-editor__content-left {
  flex-shrink: 0;
  width: 236px;
  height: 100%;
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}
.o-tv-video-editor__content-right {
  padding-left: 10px;
  padding-right: 10px;
  flex: 1;
  height: 100%;
  overflow-x: auto;
}
.o-tv-video-editor-tool {
  padding-bottom: 20px;
  height: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.o-tv-video-editor-tool__left {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.o-tv-video-editor-tool__right {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 28px;
}
.o-tv-video-editor-tool__right-slider {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 12px;
}
.o-tv-video-editor-tool__right-slider-s {
  width: 100px !important;
}
.o-tv-video-editor-track-manager__header {
  width: 100%;
  height: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  column-gap: 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.o-tv-video-editor-track-manager__body-track {
  position: relative;
  padding-left: 24px;
  padding-right: 24px;
  height: 80px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
}
.o-tv-video-editor-track-manager__body-track--active {
  color: #0067EE;
}
.o-tv-video-editor-track-manager__body-track--active::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  pointer-events: none;
  background: rgba(0, 103, 238, 0.05);
  border: 1px solid #0067EE;
  z-index: 1;
}
.o-tv-video-editor-track-manager__body-track-left {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 16px;
}
.o-tv-video-editor-track-manager__body-track-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 16px;
}
.o-tv-video-editor-rule {
  width: 100%;
  height: 100%;
}
.o-tv-video-editor-rule__track {
  position: relative;
  height: 100%;
  user-select: none;
}
.o-tv-video-editor-rule__track-scale {
  position: relative;
  width: 100%;
  height: 40px;
  border-bottom: 1px solid #BFBFBF;
}
.o-tv-video-editor-rule__track-scale-text {
  position: absolute;
  top: 2px;
  font-weight: 400;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.65);
  user-select: none;
}
.o-tv-video-editor-rule__track-scale-text:not(.o-tv-video-editor-rule__track-scale-text--first):not(.o-tv-video-editor-rule__track-scale-text--last) {
  transform: translateX(-50%);
}
.o-tv-video-editor-rule__track-scale-text--last {
  transform: translateX(-100%);
}
.o-tv-video-editor-rule__track-scale-line {
  position: absolute;
  bottom: 0;
  height: 7px;
  width: 1px;
  background-color: #BFBFBF;
}
.o-tv-video-editor-rule__track-scale-line--align {
  height: 13px;
}
.o-tv-video-editor-rule__track-locator {
  position: absolute;
  bottom: 0px;
  height: 90%;
  width: 1px;
  background-color: rgb(250, 140, 22);
  transition: left 0.3s linear;
}
.o-tv-video-editor-rule__track-locator-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.o-tv-video-editor-rule__track-locator-container-btn {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate3d(-50%, -100%, 0);
}
.o-tv-video-editor-rule__track-locator-container-btn:hover {
  cursor: pointer;
}
.o-tv-video-editor-video-track {
  margin-bottom: 4px;
  position: relative;
  width: 100%;
  height: 76px;
  user-select: none;
}
.o-tv-video-editor-video-track__img {
  position: absolute;
  height: 100%;
  object-fit: cover;
}
.o-tv-video-editor-video-track__slices {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.o-tv-video-editor-video-track__slices-box {
  position: absolute;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 2px;
}
.o-tv-video-editor-video-track__slices-box--active {
  border-radius: 2px;
  border: 3px solid #0067EE;
  background: transparent;
}
.o-tv-video-editor-video-track__slices-box-action {
  position: relative;
  width: 100%;
  height: 100%;
}
.o-tv-video-editor-video-track__slices-box-action-anchor {
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background-color: #fff;
  z-index: 6;
}
.o-tv-video-editor-video-track__slices-box-action-anchor:hover {
  cursor: move;
}
.o-tv-video-editor-video-track__slices-box-action-anchor--left {
  left: -5px;
  transform: translate3d(0, -50%, 0);
}
.o-tv-video-editor-video-track__slices-box-action-anchor--right {
  right: 5px;
  transform: translate3d(0, -50%, 0);
}
.o-tv-video-editor-audio-track {
  margin-bottom: 4px;
  position: relative;
  width: 100%;
  height: 76px;
  user-select: none;
}
.o-tv-video-editor-audio-track__text {
  padding-right: 20px;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  font-weight: bold;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.65);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background-color: rgb(186, 244, 228);
}
.o-tv-video-editor-audio-track__frame {
  position: absolute;
  height: 100%;
}
.o-tv-video-editor-audio-track__frame-c {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: rgb(186, 244, 228);
}
.o-tv-video-editor-audio-track__frame-c:hover {
  cursor: pointer;
}
.o-tv-video-editor-audio-track__frame-c-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.o-tv-video-editor-audio-track__frame-c-text {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: bold;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.65);
  transform: translateY(-50%);
}
.o-tv-video-editor-audio-track__frame-c-text--top {
  top: 0;
  transform: none;
}