/* 容器样式 */
._input-time-container_14n2f_3 {
  display: flex;
  align-items: stretch;
  justify-content: center;
  box-sizing: content-box;
  padding: 0px;
  font-size: 1rem;
  line-height: 1.4rem;
  white-space: nowrap;
  border-color: rgb(209, 213, 219);
  border-width: 1px;
  border-radius: 0.25rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: #fff;
  height: var(--height);
}

._noborder_14n2f_37 {
  border: none;
}




._input-time-container_14n2f_3 ._spins_14n2f_51 {
  display: flex;
  flex-direction: column;
  margin-left: .4rem;
}

._input-time-container_14n2f_3 ._spins_14n2f_51>button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: #666;
  height: 50%;
  padding-right: 3px;
}

._input-time-container_14n2f_3 ._spins_14n2f_51>button:hover {
  color: #333;
}

._input-time-container_14n2f_3 ._spins_14n2f_51>button>svg {
  min-height: inherit;
  width: 14px;
  height: 14px;
}

._input-time-container_14n2f_3 ._inc_14n2f_101 {
  flex: 1;
  align-self: flex-start;
  padding-top: 2px;
}

._input-time-container_14n2f_3 ._dec_14n2f_113 {
  flex: 1;
  align-self: flex-end;
  padding-bottom: 2px;
}

._focusedTimePart_14n2f_125 {
  background: #f6f6f6;
  outline: none;
}

._input-time-container_14n2f_3 div[data-part] {
  padding: 0px 6px;
  cursor: pointer;
  min-width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

._input-time-container_14n2f_3>span {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
}.audio-track {
    --thumbWidth: 10px;
    --thumbColor: #6be0c5;
    --bgColor: #262633;
    --mainColor: #eee;
    --navColor: #1c1c26;
    --maskColor: rgba(32, 57, 109, .6);
    position: relative;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    background-color: var(--bgColor);
    border-radius: 4px;
}

.audio-track:before {
    position: absolute;
    top: -1.5em;
    right: 0;
    color: rgba(255, 255, 255, .5);
    font-weight: 300;
    font-size: .8em;
    font-style: italic;
    white-space: nowrap;
    content: attr(data-title)
}

.audio-track.no-thumbs {
    margin: 1rem 0
}

.audio-track .item:not(:last-child) {
    margin-bottom: 2px
}

.audio-track canvas {
    width: 100%;
}

.audio-track .fade-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.progress-line,
.help-line {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: 1px;
    height: 100%;
    background-color: #fa3434;
    border: none;
    pointer-events: none;
}

.progress-line:after,
.help-line:after {
    position: absolute;
    width: 54px;
    height: 24px;
    top: -25px;
    left: -26px;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='54' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M27 23v1h-1v-1a5 5 0 0 0-5-5H9A9 9 0 0 1 9 0h36a9 9 0 0 1 0 18H32a5 5 0 0 0-5 5Z' fill='%23000' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    content: attr(data-content);
    color: #fff;
    font-size: 11px;
    display: flex;
    align-items: flex-start;
    padding: 1px 0;
    justify-content: center;
}

.help-line {
    z-index: 2;
    opacity: .5
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    color: #999;
    font-weight: 100;
    font-size: .75em
}

.slider .thumb {
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
    padding: 0;
    cursor: ew-resize;
    outline: none;
    width: var(--thumbWidth);
    background-color: var(--thumbColor);
}


.slider .thumb:before {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #fff;
    font-weight: 400;
    line-height: .7em;
    transform: translate(-50%, -50%);
    content: "•\a•\a•";
    font-size: .65em
}

.slider .thumb:after {
    position: absolute;
    bottom: -1.7em;
    /*  left: 50%; */
    white-space: nowrap;
    /*  transform: translate(-50%); */
    transition: left .1s linear, transform .1s linear;
    content: attr(data-content);
    min-width: -moz-fit-content;
    min-width: fit-content;
}

.slider .thumb:hover:before,
.slider .thumb.focus:before {
    color: #fff
}

.slider .thumb.left {
    /* left: calc(-1 * var(--thumbWidth)); */
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    left: 0;
    transform: translateX(-100%);
}

.slider .thumb.right {
    /*  right: calc(-1 * var(--thumbWidth)); */
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    right: 0;
    transform: translateX(100%);
}

.slider .thumb.left::after {
    left: 0%;
}

.slider .thumb.right::after {
    right: 0%;

}

.slider .thumb.left-inv {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    left: 0;
}

.slider .thumb.right-inv {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    right: 0;
}

.slider .hoverable {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: end;
    justify-content: center;
}

.fades {
    position: absolute;
    bottom: calc(100% - 2.2rem);
    z-index: 5;
}

.fades.in {
    left: 1rem
}

.fades.out {
    right: 1rem;
    display: flex;
    flex-direction: column;
    align-items: end
}

.fades:hover .tooltip,
.fades:hover .range,
.fades:focus-within .range {
    display: grid;
    margin-bottom: 1.25rem;
    color: #9e9fa5;
    background-color: var(--navColor);
    border-radius: 4px;
    opacity: 1;
}

.fades .tooltip {
    padding: .1rem .5rem;
    font-size: .85rem;
    display: none;
}

.fades .range {
    grid-gap: .5rem;
    padding: 1rem 1.5rem;
    font-size: .85rem;
    display: none;
    width: 160px;
}

.fades .range .title {
    display: flex;
    justify-content: space-between
}

.fades .range .title :first-child {
    letter-spacing: .1rem;
    text-transform: uppercase
}

.fades .range .title :last-child {
    color: var(--mainColor)
}

.fades button {
    padding: .2rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #eee;
    background-color: rgba(60, 60, 60, 0.8);
}

.fades button:hover {
    background-color: #333340;
}

.fades button.active {
    color: rgb(168, 85, 247);
}

.fades button svg {
    min-height: auto
}

.inner {
    text-align: center
}

.inner footer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 3rem
}

.modal .inner {
    display: grid;
    grid-gap: 1.5rem;
    width: 100%;
    padding: 5vw;
    color: #999
}




/* Mask 叠加层样式 */
.mask {
    position: absolute;
    top: 0;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    background-color: var(--maskColor);
}

.mask.left {
    left: 0;
}

.mask.right {
    right: 0;
}

.hoverable.m {
    background-color:var(--maskColor);
    pointer-events: none;
}._input-wrap_17a1y_1 {
    padding: 0px 6px;
    font-size: 12px;
    color: rgba(27, 35, 55, .6)
}

._input-line_17a1y_13 {
    display: flex;
    align-items: center;
    gap: 0.5rem
}

._input-range_17a1y_25 {
    position: relative;
    width: 100%;
    height: 22px;
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    touch-action: none;
    min-width: 0px;
    flex: 1 1 auto;
}

._input-range_17a1y_25._disabled_17a1y_49 {
    opacity: 0.5;
    cursor: not-allowed;
}

._track_17a1y_59 {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #e5e5e5;
    border-radius: 3px;
    transform: translateY(-50%);
}

._inner_17a1y_81 {
    position: absolute;
    top: 0;
    height: 100%;
    background-color: #6366f1;
    border-radius: 3px;
    transition: width 0.1s ease-out, left 0.1s ease-out;
}

._start-marker_17a1y_99 {
    position: absolute;
    top: 50%;
    width: 2px;
    height: 100%;
    background-color: #fff;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

._thumb_17a1y_119 {
    position: absolute;
    top: 50%;
    width: 12px;
    height: 12px;
    background-color: #6366f1;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    outline: none;
    z-index: 10;
    transition: left 0.1s ease-out, transform 0.1s ease-out, background-color 0.15s ease-out;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    border: 2px solid #fff;
}

._thumb_17a1y_119::after {
    position: absolute;
    top: -6px;
    right: -6px;
    bottom: -6px;
    left: -6px;
    content: "";
}

._thumb_17a1y_119:hover {
    background-color: #7c3aed;
}

._thumb_17a1y_119:focus {
    background-color: #7c3aed;
}

._thumb_17a1y_119:active,
._input-range_17a1y_25._dragging_17a1y_187 ._thumb_17a1y_119 {
    background-color: rgba(139, 92, 246, 0.95);
}

._thumb_17a1y_119:hover ._tooltip_17a1y_195,
._thumb_17a1y_119:focus ._tooltip_17a1y_195,
._input-range_17a1y_25._dragging_17a1y_187 ._tooltip_17a1y_195 {
    opacity: 1;
    display: block;
}

._tooltip_17a1y_195 {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 12px;
    padding: 0px 4px;
    background: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    color: #000;
    font-size: 12px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease-out;
    z-index: 20;
    display: none;
    min-width: 24px;
    text-align: center;
}

._tooltip_17a1y_195::after {
    content: "";
    display: block;
    position: absolute;
    height: 6px;
    width: 6px;
    background: #fff;
    bottom: -3px;
    left: calc(50% - 3px);
    clip-path: polygon(0% 0%, 100% 100%, 0% 100%);
    transform: rotate(-45deg);
    z-index: 21;
}

._label_17a1y_281 {
    font-size: 14px;
    color: #1b2337;
    margin-bottom: 0.25rem;
}

._input_17a1y_1 {
    outline: none;
    border-radius: 0.25rem;
    background-color: rgba(247, 248, 250, .72);
    color: #1b2337;
    width: 2.75rem;
    height: 28px;
    font-size: 0.875rem;
    line-height: 1.25rem;
    text-align: center;
}._gg-spinner_c4kb7_1 {
    --bw: 2px;
    --size: 20px;
    position: relative;
    display: flex;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    width: var(--size);
    height: var(--size);
    font-size:8px;
}

._gg-spinner_c4kb7_1::after,
._gg-spinner_c4kb7_1::before {
    box-sizing: border-box;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    border-radius: 100%;
}

._gg-spinner_c4kb7_1::before {
    animation: _spinner_c4kb7_1 infinite 0.75s linear;
    border: var(--bw) solid transparent;
    border-top-color: currentColor;
}

._gg-spinner_c4kb7_1::after {
    border: var(--bw) solid;
    opacity: 0.2;
}

@keyframes _spinner_c4kb7_1 {
    0% {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}