.play-page {
    background: #060611;
    padding-top: 30px;
    padding-bottom: 71px;
}

.play-layout {
    width: 1160px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 21px;
}

.play-main {
    width: 836px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.play-player {
    position: relative;
    width: 836px;
    height: 470px;
    border-radius: 12px;
    overflow: hidden;
    background: #0a0914;
}

/* DPlayer 控制器：显示播放/暂停、音量、全屏；隐藏设置等多余项 */
.play-player .dplayer-video,
.play-player .dplayer {
    width: 100%;
    height: 100%;
}

.play-player .dplayer-controller {
    z-index: 6;
    padding: 0 12px 10px !important;
    height: auto !important;
    background: transparent !important;
}

.play-player .dplayer-controller-mask {
    z-index: 5;
    height: 60px !important;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.55) 0%, transparent 100%) !important;
}

.play-player .dplayer-icons-left,
.play-player .dplayer-icons-right {
    display: flex !important;
    align-items: center;
}

.play-player .dplayer-notice,
.play-player .dplayer-bezel,
.play-player .dplayer-setting,
.play-player .dplayer-comment,
.play-player .dplayer-comment-box,
.play-player .dplayer-comment-input,
.play-player .dplayer-send-icon,
.play-player .dplayer-airplay-icon,
.play-player .dplayer-camera-icon,
.play-player .dplayer-full-in-icon {
    display: none !important;
}

.play-player .dplayer-play-icon,
.play-player .dplayer-volume,
.play-player .dplayer-full {
    display: inline-block !important;
}

.play-player .dplayer-time {
    display: inline !important;
}

.play-player .dplayer-bar-wrap {
    padding: 0 !important;
    margin: 0 0 6px !important;
}

.play-player .dplayer-bar {
    height: 3px !important;
    border-radius: 3px !important;
    background: rgba(255, 255, 255, 0.20) !important;
}

.play-player .dplayer-loaded {
    background: rgba(255, 255, 255, 0.15) !important;
}

.play-player .dplayer-played {
    background: #F12B9E !important;
}

.play-player .dplayer-thumb {
    width: 10px !important;
    height: 10px !important;
    margin-top: -3.5px !important;
    background: #fff !important;
    border: none !important;
    box-shadow: 0 0 0 2px rgba(241, 43, 158, 0.35) !important;
}

.play-player-cover {
    position: absolute;
    inset: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.play-player-cover--hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
}

.play-player-center {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 4;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* DPlayer 在检测到移动端时会自带渲染一个 .dplayer-mobile-play 按钮，
   与我们自定义的封面播放按钮（.play-player-center）重叠，且层级更高，
   会拦截点击导致自定义按钮的 dp.play() 事件永远不会触发。
   页面已有统一的封面+播放按钮方案，这里直接禁用 DPlayer 自带的重复按钮。 */
.play-player .dplayer-mobile-play {
    display: none !important;
    pointer-events: none !important;
}

.play-player-center img {
    width: 72px;
    height: 72px;
    display: block;
}

.play-player-gradient {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(180deg, rgba(6, 6, 17, 0) 0%, rgba(6, 6, 17, 0.85) 100%);
    pointer-events: none;
}

.play-player-gradient--top,
.play-h5-top,
.play-h5-side,
.play-h5-meta,
.play-h5-next,
.play-h5-bottom,
.play-h5-sheet-mask,
.play-sidebar-close,
.play-comment-sheet,
.play-ep-sheet,
.play-speed-sheet {
    display: none;
}

.play-danmaku {
    position: absolute;
    color: #fff;
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    line-height: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.65);
    white-space: nowrap;
    pointer-events: none;
}

.play-danmaku--1 {
    left: 48px;
    top: 72px;
}

.play-danmaku--2 {
    left: 220px;
    top: 128px;
}

.play-danmaku--3 {
    left: 96px;
    top: 188px;
}

.play-danmaku--4 {
    right: 64px;
    top: 96px;
}

.play-controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 16px 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.play-progress {
    position: relative;
    height: 16px;
    display: flex;
    align-items: center;
}

.play-progress-track {
    position: absolute;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.play-progress-fill {
    position: absolute;
    left: 0;
    width: 12%;
    height: 4px;
    border-radius: 2px;
    background: #F12B9E;
}

.play-progress-thumb {
    position: absolute;
    left: 12%;
    width: 12px;
    height: 12px;
    margin-left: -6px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 2px rgba(241, 43, 158, 0.35);
}

.play-controls-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.play-controls-left,
.play-controls-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.play-ctrl-btn {
    width: 28px;
    height: 28px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.play-ctrl-btn img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.play-ctrl-btn--next::before {
    content: "";
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 9px solid #fff;
    margin-right: 2px;
}

.play-ctrl-btn--next::after {
    content: "";
    width: 2px;
    height: 12px;
    background: #fff;
}

.play-ctrl-btn--volume::before {
    content: "";
    width: 8px;
    height: 10px;
    background: #fff;
    clip-path: polygon(0 30%, 45% 30%, 100% 0, 100% 100%, 45% 70%, 0 70%);
}

.play-ctrl-btn--volume::after {
    content: "";
    position: absolute;
    right: 4px;
    width: 6px;
    height: 10px;
    border: 2px solid #fff;
    border-left: none;
    border-radius: 0 8px 8px 0;
}

.play-ctrl-btn--fullscreen::before {
    content: "";
    width: 14px;
    height: 10px;
    border: 2px solid #fff;
    border-radius: 1px;
    box-sizing: border-box;
}

.play-time {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-family: PingFang SC;
    font-weight: 400;
    line-height: 18px;
}

.play-speed {
    height: 24px;
    padding: 0 8px;
    border: none;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 12px;
    font-family: PingFang SC;
    cursor: pointer;
}

.play-danmaku-bar {
    width: 836px;
    height: 44px;
    padding: 0 8px 0 10px;
    background: rgba(24, 23, 46, 0.88);
    border-radius: 10px;
    outline: 1px #383657 solid;
    outline-offset: -1px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-sizing: border-box;
}

.play-danmaku-toggle {
    width: 32px;
    height: 28px;
    border: none;
    border-radius: 6px;
    background: #F12B9E;
    color: #fff;
    font-size: 13px;
    font-family: PingFang SC;
    cursor: pointer;
    flex-shrink: 0;
}

.play-danmaku-input {
    flex: 1;
    min-width: 0;
    height: 28px;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 13px;
    font-family: PingFang SC;
    outline: none;
}

.play-danmaku-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.play-danmaku-send {
    height: 28px;
    padding: 0 14px;
    border: none;
    border-radius: 6px;
    background: #F12B9E;
    color: #fff;
    font-size: 13px;
    font-family: PingFang SC;
    cursor: pointer;
    flex-shrink: 0;
}

.play-info {
    width: 836px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
}

.play-info-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.play-info-ep {
    color: #F12B9E;
    font-size: 13px;
    font-family: PingFang SC;
    font-weight: 400;
    line-height: 18px;
}

.play-info-title {
    margin: 0;
    color: #fff;
    font-size: 22px;
    font-family: PingFang SC;
    font-weight: 400;
    line-height: 30px;
}

.play-info-sub {
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
    font-family: PingFang SC;
    font-weight: 400;
    line-height: 18px;
}

.play-info-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.play-comments {
    width: 836px;
}

.play-comments .detail-comment-list {
    align-self: stretch;
    width: 100%;
}

.play-sidebar {
    width: 303px;
    flex-shrink: 0;
    padding: 18px 16px;
    background: rgba(20, 23, 46, 0.90);
    border-radius: 21px;
    outline: 1px #333354 solid;
    outline-offset: -1px;
    box-sizing: border-box;
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 14px;
    overflow: hidden;
}

.play-sidebar-head {
    width: 271px;
    overflow: hidden;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
}

.play-sidebar-title {
    color: #fff;
    font-size: 16px;
    font-family: PingFang SC;
    font-weight: 400;
    line-height: 22px;
    word-wrap: break-word;
}

.play-sidebar-back {
    color: #9991AB;
    font-size: 12px;
    font-family: PingFang SC;
    font-weight: 400;
    line-height: 18px;
    text-decoration: none;
    word-wrap: break-word;
}

.play-sidebar-back:hover {
    color: #F12B9E;
}

.play-ep-ranges {
    width: 271px;
    overflow: hidden;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.play-ep-range {
    padding: 0;
    border: none;
    background: transparent;
    color: #6E6B75;
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    line-height: 20px;
    cursor: pointer;
    word-wrap: break-word;
}

.play-ep-range--active {
    background: transparent;
    color: #F5F2F7;
}

.play-ep-grid {
    width: 271px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 12px 9px;
}

.play-ep.is-range-hidden,
.play-ep-sheet-item.is-range-hidden {
    display: none;
}

.play-player .dplayer-video,
.play-player .dplayer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.play-player .dplayer-video {
    z-index: 1;
}

.play-ep-row {
    display: flex;
    gap: 9px;
}

.play-ep {
    position: relative;
    width: 47px;
    height: 58px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.10);
    color: #F5F2F7;
    font-size: 18px;
    font-family: "PingFang SC", "Noto Sans SC", sans-serif;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    cursor: pointer;
    padding: 0;
    overflow: hidden;
    flex-shrink: 0;
}

.play-ep-num {
    color: inherit;
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
    line-height: inherit;
    word-wrap: break-word;
}

.play-ep--active {
    background: rgba(241, 43, 158, 0.16);
    color: #F12B9E;
    outline: none;
}

.play-ep--active .play-ep-num {
    color: #F12B9E;
}

.play-ep-playing {
    position: absolute;
    left: 29px;
    top: 5px;
    width: 14px;
    height: 14px;
    object-fit: contain;
    pointer-events: none;
}

.play-ep-lock {
    position: absolute;
    right: 4px;
    top: 4px;
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.play-ep-coin {
    position: absolute;
    left: 17px;
    top: 3px;
    padding: 1px 2px;
    background: rgba(28, 20, 8, 0.64);
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    overflow: hidden;
    box-sizing: border-box;
    pointer-events: none;
    z-index: 1;
}

.play-ep-coin img {
    width: 11px;
    height: 11px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.play-ep-coin span {
    color: #FFC733;
    font-size: 9px;
    font-family: "Noto Sans SC", "PingFang SC", sans-serif;
    font-weight: 400;
    line-height: 13px;
    white-space: nowrap;
    word-wrap: break-word;
}

@media (max-width: 1200px) {
    .play-layout,
    .play-main,
    .play-player,
    .play-danmaku-bar,
    .play-info,
    .play-comments {
        width: 100%;
    }

    .play-layout {
        flex-direction: column;
    }

    .play-sidebar {
        width: 100%;
    }

    .play-sidebar-head,
    .play-ep-ranges,
    .play-ep-grid {
        width: 100%;
    }

    .play-player {
        height: auto;
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 767px) {
    body.is-play-page {
        background: #0E0E0E;
        overflow: hidden;
        height: 100dvh;
    }

    body.is-play-page .site-header,
    body.is-play-page .footer-box,
    body.is-play-page .floating-action,
    body.is-play-page .download-fab {
        display: none !important;
    }

    .play-page.page-shell {
        width: 100%;
        max-width: 100%;
        height: 100dvh;
        padding: 0;
        margin: 0;
        gap: 0;
        background: #0E0E0E;
    }

    .play-layout,
    .play-main {
        width: 100%;
        height: 100%;
        gap: 0;
        position: relative;
    }

    .play-player {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: calc(58px + env(safe-area-inset-bottom, 0px));
        width: 100%;
        height: auto;
        border-radius: 0;
        aspect-ratio: auto;
        z-index: 1;
        background: #0E0E0E;
        overflow: hidden;
    }

    .play-player .dplayer-video,
    .play-player .dplayer {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .play-player .dplayer-controller {
        bottom: 8px !important;
        padding: 0 12px 8px !important;
        height: auto !important;
        background: transparent !important;
        z-index: 6;
    }

    .play-player .dplayer-controller-mask {
        display: none !important;
    }

    .play-player .dplayer-bar-wrap {
        padding: 0 !important;
        margin: 0 0 4px !important;
    }

    .play-player .dplayer-bar {
        height: 2px !important;
        border-radius: 3px !important;
        background: rgba(255, 255, 255, 0.20) !important;
    }

    .play-player .dplayer-loaded {
        background: rgba(255, 255, 255, 0.15) !important;
    }

    .play-player .dplayer-played {
        background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.10) 100%) !important;
    }

    .play-player .dplayer-thumb {
        width: 8px !important;
        height: 8px !important;
        margin-top: -3px !important;
        background: #fff !important;
        border: none !important;
        box-shadow: none !important;
    }

    .play-player .dplayer-icons-left,
    .play-player .dplayer-icons-right {
        display: flex !important;
        align-items: center;
    }

    .play-player .dplayer-notice,
    .play-player .dplayer-bezel,
    .play-player .dplayer-setting,
    .play-player .dplayer-comment,
    .play-player .dplayer-comment-box,
    .play-player .dplayer-comment-input,
    .play-player .dplayer-send-icon,
    .play-player .dplayer-airplay-icon,
    .play-player .dplayer-camera-icon,
    .play-player .dplayer-full-in-icon {
        display: none !important;
    }

    .play-player .dplayer-play-icon,
    .play-player .dplayer-volume,
    .play-player .dplayer-full {
        display: inline-block !important;
    }

    .play-player .dplayer-time {
        display: inline !important;
        font-size: 12px !important;
    }

    .play-player-cover {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .play-player-gradient {
        display: none;
        pointer-events: none;
        z-index: 2;
    }

    .play-player-gradient--top {
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: auto;
        height: min(300px, 40%);
        background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0) 100%);
    }

    .play-player-gradient--bottom {
        display: none !important;
    }

    .play-danmaku,
    .play-danmaku-bar,
    .play-info,
    .play-comments,
    .play-controls,
    .play-controls-bar {
        display: none !important;
    }

    .play-h5-top {
        display: flex;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        z-index: 5;
        padding: calc(12px + env(safe-area-inset-top, 0px)) 16px 12px;
        align-items: center;
        gap: 4px;
        box-sizing: border-box;
    }

    .play-h5-back {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .play-h5-back img {
        width: 24px;
        height: 24px;
        filter: brightness(0) invert(1);
    }

    .play-h5-ep {
        flex: 1;
        min-width: 0;
        color: white;
        font-size: 18px;
        font-family: PingFang SC;
        font-weight: 600;
        line-height: 24px;
    }

    .play-h5-speed-wrap {
        position: relative;
        flex-shrink: 0;
        z-index: 8;
    }

    .play-h5-speed {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
        color: white;
        font-size: 12px;
        font-family: PingFang SC;
        font-weight: 500;
        line-height: 18px;
        flex-shrink: 0;
    }

    .play-h5-speed-icon {
        width: 18px;
        height: 18px;
        object-fit: contain;
        filter: brightness(0) invert(1);
    }

    .play-speed-sheet {
        display: none;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 40;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 18px 16px calc(18px + env(safe-area-inset-bottom, 0px));
        background: #1A1A1A;
        border-radius: 20px 20px 0 0;
        overflow: hidden;
        box-sizing: border-box;
    }

    .play-speed-sheet-head {
        width: 100%;
        max-width: 343px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .play-speed-sheet-collapse {
        width: 24px;
        height: 24px;
        padding: 0;
        border: none;
        background: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .play-speed-sheet-collapse img {
        width: 16px;
        height: 16px;
    }

    .play-speed-sheet-title {
        flex: 1;
        min-width: 0;
        text-align: center;
        color: white;
        font-size: 16px;
        font-family: PingFang SC;
        font-weight: 500;
        line-height: 22px;
    }

    .play-speed-sheet-spacer {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }

    .play-speed-sheet-list {
        align-self: stretch;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .play-speed-sheet-option {
        align-self: stretch;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        width: 100%;
        padding: 0;
        border: none;
        background: none;
        cursor: pointer;
        color: white;
        font-size: 16px;
        font-family: PingFang SC;
        font-weight: 400;
        line-height: 22px;
        text-align: left;
        min-height: 22px;
        margin: 0 0 12px;
        box-sizing: border-box;
    }

    .play-speed-sheet-option:last-child {
        margin-bottom: 0;
    }

    .play-speed-sheet-option-label {
        flex: 1;
        min-width: 0;
    }

    .play-speed-sheet-option.is-active {
        color: #F12B9E;
        font-weight: 500;
    }

    .play-speed-sheet-check {
        width: 24px;
        height: 24px;
        object-fit: contain;
        flex-shrink: 0;
    }

    .play-speed-sheet-check[hidden] {
        display: none !important;
    }

    body.play-speed-sheet-open {
        overflow: hidden;
    }

    body.play-speed-sheet-open .play-h5-sheet-mask {
        display: block;
    }

    body.play-speed-sheet-open .play-speed-sheet {
        display: flex;
    }

    .play-h5-side {
        display: inline-flex;
        position: absolute;
        right: 16px;
        top: 48%;
        transform: translateY(-20%);
        z-index: 5;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 18px;
    }

    .play-h5-side-item {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
        color: rgba(255, 255, 255, 0.60);
        font-size: 12px;
        font-family: PingFang SC;
        font-weight: 500;
        line-height: 18px;
        text-align: center;
    }

    .play-h5-side-item img {
        width: 30px;
        height: 30px;
        object-fit: contain;
        filter: brightness(0) invert(1);
    }

    .play-h5-side-item--active img,
    .play-h5-side-item img[src*="h5_liked"],
    .play-h5-side-item img[src*="h5_collected"] {
        filter: none;
    }

    .play-h5-meta {
        display: inline-flex;
        position: absolute;
        left: 16px;
        width: min(278px, calc(100% - 90px));
        bottom: 72px;
        z-index: 5;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 10px;
        box-sizing: border-box;
    }

    .play-h5-meta-title {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
        color: white;
        font-size: 12px;
        font-family: PingFang SC;
        font-weight: 500;
        line-height: 18px;
        max-width: 100%;
    }

    .play-h5-meta-title span {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .play-h5-meta-title img {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        filter: brightness(0) invert(1);
    }

    .play-h5-meta-intro {
        display: flex;
        align-items: flex-start;
        gap: 6px;
        align-self: stretch;
        width: 100%;
    }

    .play-h5-meta-text {
        margin: 0;
        flex: 1;
        min-width: 0;
        color: rgba(255, 255, 255, 0.65);
        font-size: 12px;
        font-family: PingFang SC;
        font-weight: 400;
        line-height: 18px;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        word-wrap: break-word;
    }

    .play-h5-meta-text.is-expanded {
        display: block;
        -webkit-line-clamp: unset;
        line-clamp: unset;
        overflow: visible;
    }

    .play-h5-meta-more {
        flex-shrink: 0;
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
        color: white;
        font-size: 12px;
        font-family: PingFang SC;
        font-weight: 400;
        line-height: 18px;
    }

    .play-h5-meta-more[hidden] {
        display: none;
    }

    .play-h5-next {
        display: none;
        position: absolute;
        left: 16px;
        right: 16px;
        bottom: 24px;
        z-index: 5;
        width: auto;
        padding: 6px 12px;
        background: rgba(255, 255, 255, 0.10);
        border-radius: 6px;
        justify-content: space-between;
        align-items: center;
        box-sizing: border-box;
    }

    .play-h5-next:not([hidden]) {
        display: inline-flex;
    }

    .play-h5-next-label {
        color: white;
        font-size: 14px;
        font-family: PingFang SC;
        font-weight: 400;
        line-height: 20px;
    }

    .play-h5-next-countdown {
        color: #FFAB6B;
        font-size: 14px;
        font-family: PingFang SC;
        font-weight: 400;
        line-height: 20px;
    }

    .play-h5-bottom {
        display: flex;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 20;
        min-height: 58px;
        padding: 6px 16px calc(6px + env(safe-area-inset-bottom, 0px));
        background: #1A1A1A;
        align-items: center;
        justify-content: center;
        gap: 10px;
        box-sizing: border-box;
    }

    .play-h5-ep-picker {
        flex: 1 1 0;
        min-width: 0;
        padding: 6px 12px;
        background: rgba(255, 255, 255, 0.05);
        border: none;
        border-radius: 3px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        color: white;
        font-size: 12px;
        font-family: PingFang SC;
        font-weight: 400;
        line-height: 18px;
        box-sizing: border-box;
    }

    .play-h5-ep-picker img {
        width: 24px;
        height: 24px;
        opacity: 0.9;
        flex-shrink: 0;
        filter: brightness(0) invert(1);
    }

    .play-h5-clear {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
        border: none;
        background: transparent;
        cursor: pointer;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

    .play-h5-clear img {
        width: 24px;
        height: 24px;
        display: block;
        filter: brightness(0) invert(1);
    }

    .play-h5-comment {
        display: none;
        flex-shrink: 0;
        padding: 6px 12px;
        border: none;
        border-radius: 3px;
        background: rgba(255, 255, 255, 0.05);
        cursor: pointer;
        align-items: center;
        justify-content: flex-start;
        gap: 36px;
        box-sizing: border-box;
    }

    .play-h5-comment img {
        width: 24px;
        height: 24px;
        object-fit: contain;
        display: block;
        filter: brightness(0) invert(1);
    }

    body.play-h5-focus .play-h5-comment {
        display: flex;
    }

    body.play-h5-focus .play-h5-side,
    body.play-h5-focus .play-h5-meta,
    body.play-h5-focus .play-h5-next,
    body.play-h5-focus .play-player-gradient {
        display: none !important;
    }

    .play-h5-sheet-mask {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 30;
        background: rgba(0, 0, 0, 0.70);
    }

    .play-sidebar {
        display: none !important;
    }

    .play-ep-sheet {
        display: none;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 40;
        max-height: 75vh;
        padding: 18px 16px calc(18px + env(safe-area-inset-bottom, 0px));
        background: #1A1A1A;
        border-radius: 20px 20px 0 0;
        overflow: hidden;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        box-sizing: border-box;
    }

    .play-ep-sheet-handle {
        width: 36px;
        height: 5px;
        background: rgba(255, 255, 255, 0.20);
        border-radius: 100px;
        flex-shrink: 0;
    }

    .play-ep-sheet-drama {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
    }

    .play-ep-sheet-drama-main {
        display: flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
        flex: 1;
    }

    .play-ep-sheet-cover {
        width: 54px;
        height: 75px;
        border-radius: 3px;
        object-fit: cover;
        flex-shrink: 0;
        background: #D9D9D9;
    }

    .play-ep-sheet-drama-info {
        display: flex;
        flex-direction: column;
        gap: 8px;
        min-width: 0;
    }

    .play-ep-sheet-drama-title {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: white;
        font-size: 14px;
        font-family: PingFang SC;
        font-weight: 400;
        line-height: 20px;
        min-width: 0;
    }

    .play-ep-sheet-drama-title span {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .play-ep-sheet-drama-close {
        width: 18px;
        height: 18px;
        padding: 0;
        border: none;
        background: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .play-ep-sheet-drama-close img {
        width: 12px;
        height: 12px;
        display: block;
    }

    .play-ep-sheet-drama-status {
        color: rgba(255, 255, 255, 0.35);
        font-size: 12px;
        font-family: PingFang SC;
        font-weight: 400;
        line-height: 18px;
    }

    .play-ep-sheet-collect {
        flex-shrink: 0;
        padding: 4px 12px;
        border: none;
        border-radius: 999px;
        background: #F12B9E;
        color: white;
        font-size: 10px;
        font-family: PingFang SC;
        font-weight: 400;
        line-height: 16px;
        cursor: pointer;
    }

    .play-ep-sheet-collect.is-collected {
        background: rgba(255, 255, 255, 0.05);
        color: #F12B9E;
    }

    .play-ep-sheet-tabs {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 24px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .play-ep-sheet-tabs::-webkit-scrollbar {
        display: none;
    }

    .play-ep-sheet-tab {
        flex-shrink: 0;
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
        color: rgba(255, 255, 255, 0.35);
        font-size: 14px;
        font-family: PingFang SC;
        font-weight: 400;
        line-height: 20px;
    }

    .play-ep-sheet-tab--active {
        color: white;
    }

    .play-ep-sheet-panel {
        width: 100%;
        min-height: 0;
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .play-ep-sheet-panel.is-hidden {
        display: none;
    }

    .play-ep-sheet-grid {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 8px 11px;
    }

    .play-ep-sheet-item {
        position: relative;
        width: 100%;
        aspect-ratio: 1;
        min-height: 58px;
        height: auto;
        border: none;
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.05);
        color: #fff;
        cursor: pointer;
        display: block;
        padding: 0;
        text-decoration: none;
        box-sizing: border-box;
        overflow: hidden;
    }

    .play-ep-sheet-item.is-range-hidden {
        display: none;
    }

    .play-ep-sheet-num {
        position: absolute;
        left: 0;
        top: 21px;
        width: 100%;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #fff;
        font-size: 16px;
        font-family: "PingFang SC", sans-serif;
        font-weight: 500;
        line-height: 22px;
        word-wrap: break-word;
    }

    .play-ep-sheet-item--active {
        background: rgba(246, 103, 38, 0.10);
        color: #F12B9E;
    }

    .play-ep-sheet-item--active .play-ep-sheet-num {
        color: #F12B9E;
    }

    .play-ep-sheet-item--active::after {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        width: 20px;
        height: 20px;
        background: url("/static/images/play_active.svg") center / 14px 14px no-repeat;
        pointer-events: none;
        z-index: 2;
    }

    .play-ep-sheet-coin {
        position: absolute;
        left: 31px;
        top: 2px;
        right: auto;
        z-index: 2;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 2px;
        padding: 1px 2px;
        border-radius: 6px;
        overflow: hidden;
        box-sizing: border-box;
        pointer-events: none;
    }

    .play-ep-sheet-coin img {
        width: 11px;
        height: 11px;
        object-fit: contain;
        display: block;
        flex-shrink: 0;
    }

    .play-ep-sheet-coin span {
        color: #FFC733;
        font-size: 9px;
        font-family: "Noto Sans SC", "PingFang SC", sans-serif;
        font-weight: 400;
        white-space: nowrap;
        word-wrap: break-word;
    }

    .play-ep-sheet-lock {
        position: absolute;
        right: 2px;
        top: 2px;
        width: 14px;
        height: 14px;
        object-fit: contain;
        z-index: 2;
        pointer-events: none;
    }

    .play-ep-more-grid {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 12px 5px;
    }

    .play-ep-more-card {
        width: calc((100% - 10px) / 3);
        display: flex;
        flex-direction: column;
        gap: 4px;
        text-decoration: none;
    }

    .play-ep-more-cover {
        position: relative;
        width: 100%;
        aspect-ratio: 111 / 148;
        border-radius: 6px;
        overflow: hidden;
        background: #525252;
    }

    .play-ep-more-cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .play-ep-more-heat {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 4px;
        padding: 0 4px;
        display: flex;
        align-items: center;
        gap: 2px;
    }

    .play-ep-more-heat img {
        width: 16px;
        height: 16px;
        object-fit: contain;
        filter: brightness(0) invert(1);
    }

    .play-ep-more-heat span {
        color: white;
        font-size: 10px;
        font-family: PingFang SC;
        font-weight: 400;
        line-height: 16px;
    }

    .play-ep-more-title {
        color: white;
        font-size: 12px;
        font-family: PingFang SC;
        font-weight: 500;
        line-height: 18px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .play-ep-more-meta {
        color: rgba(255, 255, 255, 0.65);
        font-size: 12px;
        font-family: PingFang SC;
        font-weight: 400;
        line-height: 18px;
    }

    body.play-ep-sheet-open {
        overflow: hidden;
    }

    body.play-ep-sheet-open .play-h5-sheet-mask {
        display: block;
    }

    body.play-ep-sheet-open .play-ep-sheet {
        display: flex;
    }

    .play-comment-sheet {
        display: none;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 40;
        flex-direction: column;
        max-height: 489px;
        background: #1A1A1A;
        border-radius: 20px 20px 0 0;
        overflow: hidden;
    }

    .play-comment-sheet-panel {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 18px 16px 0;
        min-height: 0;
        flex: 1;
        overflow: hidden;
    }

    .play-comment-sheet-head {
        display: flex;
        align-items: center;
        gap: 12px;
        width: 100%;
    }

    .play-comment-sheet-collapse {
        width: 24px;
        height: 24px;
        padding: 0;
        border: none;
        background: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .play-comment-sheet-collapse img {
        width: 16px;
        height: 16px;
    }

    .play-comment-sheet-title {
        flex: 1;
        min-width: 0;
        color: white;
        font-size: 16px;
        font-family: PingFang SC;
        font-weight: 500;
        line-height: 22px;
    }

    .play-comment-sort {
        display: flex;
        align-items: center;
        padding: 2px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 999px;
        flex-shrink: 0;
    }

    .play-comment-sort-btn {
        padding: 4px 10px;
        border: none;
        border-radius: 999px;
        background: transparent;
        cursor: pointer;
        color: rgba(255, 255, 255, 0.65);
        font-size: 10px;
        font-family: PingFang SC;
        font-weight: 400;
        line-height: 16px;
    }

    .play-comment-sort-btn--active {
        background: rgba(255, 255, 255, 0.10);
        color: white;
    }

    .play-comment-sheet-body {
        flex: 1;
        min-height: 0;
        overflow: hidden;
        /* 覆盖 detail.css H5 的 `.detail-comments { display: none !important }` */
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 0;
        width: 100%;
        background: transparent;
        border-radius: 0;
        outline: none;
    }

    .play-comment-sheet-list,
    .play-comment-sheet-list.detail-comment-list {
        flex: 1;
        align-self: stretch;
        width: 100%;
        min-height: 0;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 18px;
        padding: 0 0 12px;
        -webkit-overflow-scrolling: touch;
        box-sizing: border-box;
    }

    .play-comment-sheet-list .section-empty,
    .play-comment-empty {
        flex: 1;
        align-self: stretch;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 200px;
        width: 100%;
        margin: 0 auto;
        padding: 48px 16px;
        box-sizing: border-box;
        color: rgba(255, 255, 255, 0.45);
        font-size: 14px;
        font-family: PingFang SC;
        font-weight: 400;
        line-height: 20px;
        text-align: center;
    }

    .play-comment-sheet-more {
        align-self: center;
        margin: 0 0 8px;
        padding: 6px 12px;
        border: none;
        background: transparent;
        color: rgba(255, 255, 255, 0.65);
        font-size: 12px;
        font-family: PingFang SC;
        line-height: 18px;
        cursor: pointer;
    }

    .play-comment-sheet-more[hidden] {
        display: none !important;
    }

    .play-comment-item {
        display: flex;
        align-items: flex-start;
        align-self: stretch;
        gap: 12px;
        width: 100%;
    }

    .play-comment-avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        object-fit: cover;
        background: #525252;
        flex-shrink: 0;
    }

    .play-comment-body {
        flex: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .play-comment-name {
        color: rgba(255, 255, 255, 0.65);
        font-size: 14px;
        font-family: PingFang SC;
        font-weight: 400;
        line-height: 20px;
    }

    .play-comment-text {
        color: white;
        font-size: 14px;
        font-family: PingFang SC;
        font-weight: 400;
        line-height: 20px;
        word-wrap: break-word;
    }

    .play-comment-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .play-comment-meta-left {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .play-comment-time {
        color: rgba(255, 255, 255, 0.65);
        font-size: 12px;
        font-family: PingFang SC;
        font-weight: 400;
        line-height: 18px;
    }

    .play-comment-like {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
        color: white;
        font-size: 12px;
        font-family: PingFang SC;
        font-weight: 400;
        line-height: 18px;
    }

    .play-comment-like img {
        width: 18px;
        height: 18px;
        object-fit: contain;
    }

    .play-comment-more-replies {
        display: inline-flex;
        align-items: center;
        gap: 0;
        padding: 6px 12px;
        background: rgba(255, 255, 255, 0.05);
        border: none;
        border-radius: 3px;
        cursor: pointer;
        color: #679ACC;
        font-size: 12px;
        font-family: PingFang SC;
        font-weight: 400;
        line-height: 18px;
        align-self: stretch;
        justify-content: flex-start;
    }

    .play-comment-more-replies img {
        width: 16px;
        height: 16px;
        filter: brightness(0) saturate(100%) invert(58%) sepia(28%) saturate(652%) hue-rotate(169deg) brightness(95%) contrast(88%);
    }

    .play-comment-like img[src*="like_hollow"] {
        filter: brightness(0) invert(1);
        opacity: 0.9;
    }

    .play-comment-replies {
        width: 100%;
        padding: 12px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 6px;
        display: flex;
        flex-direction: column;
        gap: 4px;
        box-sizing: border-box;
    }

    .play-comment-reply-line {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 4px;
        width: 100%;
        font-size: 12px;
        font-family: PingFang SC;
        font-weight: 400;
        line-height: 18px;
    }

    .play-comment-reply-name {
        color: rgba(255, 255, 255, 0.65);
    }

    .play-comment-reply-badge {
        padding: 0 2px;
        background: linear-gradient(135deg, #FF5F62 0%, #F73336 100%);
        border-radius: 3px;
        color: white;
        font-size: 10px;
        line-height: 16px;
    }

    .play-comment-reply-text {
        color: white;
    }

    .play-comment-replies-all {
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
        color: #679ACC;
        font-size: 12px;
        font-family: PingFang SC;
        font-weight: 400;
        line-height: 18px;
        text-align: left;
    }

    .play-comment-composer {
        width: 100%;
        height: calc(58px + env(safe-area-inset-bottom, 0px));
        padding: 6px 16px calc(6px + env(safe-area-inset-bottom, 0px));
        background: #1A1A1A;
        box-sizing: border-box;
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .play-comment-composer-box {
        align-self: stretch;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        min-height: 36px;
        padding: 6px 12px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 3px;
        box-sizing: border-box;
        text-decoration: none;
        color: inherit;
    }

    .play-comment-composer-placeholder,
    .play-comment-composer-login {
        flex: 1;
        min-width: 0;
        color: rgba(255, 255, 255, 0.35);
        font-size: 12px;
        font-family: PingFang SC;
        font-weight: 400;
        line-height: 18px;
        text-decoration: none;
        word-wrap: break-word;
    }

    .play-comment-composer-input {
        flex: 1 1 0;
        width: auto;
        min-width: 0;
        min-height: 0;
        height: 18px;
        max-height: 18px;
        margin: 0;
        padding: 0;
        border: none;
        border-radius: 0;
        background: transparent;
        outline: none;
        box-shadow: none;
        resize: none;
        overflow: hidden;
        -webkit-appearance: none;
        appearance: none;
        color: #fff;
        font-size: 12px;
        font-family: PingFang SC;
        font-weight: 400;
        line-height: 18px;
        caret-color: #fff;
    }

    .play-comment-composer-input::placeholder {
        color: rgba(255, 255, 255, 0.35);
        opacity: 1;
    }

    .play-comment-composer-emoji {
        width: 24px;
        height: 24px;
        padding: 0;
        margin: 0;
        border: none;
        background: none;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        position: relative;
        overflow: hidden;
    }

    .play-comment-composer-emoji.is-loading {
        opacity: 0.5;
        pointer-events: none;
    }

    .play-comment-composer-emoji img {
        width: 24px;
        height: 24px;
        object-fit: contain;
        display: block;
        pointer-events: none;
    }

    body.play-comment-sheet-open {
        overflow: hidden;
    }

    body.play-comment-sheet-open .play-h5-sheet-mask {
        display: block;
    }

    body.play-comment-sheet-open .play-comment-sheet {
        display: flex;
    }
}

