.mfunsPlayer-danmaku-report-mask {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 106;

    &.show {
        display: flex;
    }
    .mfunsPlayer-danmaku-report-model {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 300px;
        // height: 300px;
        background: $translucent-black;
        border-radius: 5px;
        .mfunsPlayer-danmaku-report-title {
            width: 100%;
            height: 50px;
            text-align: center;
            line-height: 50px;
            color: $translucent-white;
            border-bottom: 1px solid $text-grey;
        }
        .mfunsPlayer-danmaku-report-close {
            position: absolute;
            top: 13px;
            right: 13px;
            width: 20px;
            height: 20px;
            text-align: center;
            line-height: 15px;
            background: url("../icon/close.svg");
            background-size: 100% 100%;
            color: $translucent-white;
            cursor: pointer;
            &:hover {
                filter: brightness(0.9);
            }
        }
        .mfunsPlayer-danmaku-report-content {
            width: 100%;
            height: 40px;
            padding: 0 20px;
            text-align: center;
            line-height: 40px;
            color: $translucent-white;
            white-space: nowrap;
            text-overflow: ellipsis;
            overflow: hidden;
            box-sizing: border-box;
        }
        .mfunsPlayer-danmaku-report-item-wrap {
            width: 100%;
            height: 120px;
            color: #e6e6e6;
            font-size: 13px;
            padding: 0 20px;
            box-sizing: border-box;
            .mfunsPlayer-panel-row {
                display: flex;
                flex-wrap: wrap;
                justify-content: space-around;
                align-items: center;
                .mfunsPlayer-switch {
                    min-width: 75px;
                    height: 40px;
                }
            }
        }
        .mfunsPlayer-danmaku-report-detail {
            display: none;
            line-height: 16px;
            outline: none;
            resize: none;
            width: 230px;
            height: 48px;
            background-color: hsla(0, 0%, 100%, 0.12);
            border-radius: 4px;
            padding: 10px;
            color: #fff;
            font-size: 12px;
            border: 1px solid transparent;
            margin: 6px auto 0;
            &.show {
                display: block;
            }
        }
        .mfunsPlayer-danmaku-report-submit {
            margin: 10px auto;
            width: 80px;
            height: 30px;
            text-align: center;
            line-height: 30px;
            color: $translucent-white;
            border-radius: 3px;
            background: $theme-color;
            font-size: 14px;
            cursor: pointer;
            &.disable {
                cursor: not-allowed;
                background: $text-grey;
            }
            &:hover {
                filter: brightness(1.1);
            }
        }
    }
}
.mfunsPlayer-video-color-mask {
    @extend .mfunsPlayer-danmaku-report-mask;

    .mfunsPlayer-video-color-model {
        position: relative;
        width: 400px;
        height: 250px;
        background: $translucent-black;
        border-radius: 5px;
        .mfunsPlayer-video-color-title {
            width: 100%;
            height: 50px;
            text-align: center;
            line-height: 50px;
            color: $translucent-white;
            border-bottom: 1px solid $text-grey;
        }
        .mfunsPlayer-video-color-close {
            position: absolute;
            top: 13px;
            right: 13px;
            width: 20px;
            height: 20px;
            text-align: center;
            line-height: 15px;
            background: url("../icon/close.svg");
            background-size: 100% 100%;
            color: $translucent-white;
            cursor: pointer;
            &:hover {
                filter: brightness(0.9);
            }
        }
        .mfunsPlayer-video-color-item-wrap {
            display: flex;
            width: 100%;
            height: 150px;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: #e6e6e6;
            font-size: 13px;
            padding: 20px;
            box-sizing: border-box;
            .mfunsPlayer-panel-row {
                display: flex;
                flex-wrap: wrap;
                width: 100%;
                height: 50px;
                justify-content: space-around;
                align-items: center;
                .row-title,
                .row-value {
                    min-width: 50px;
                    text-align: center;
                }
                .mfunsPlayer-slider {
                    width: 200px;
                    height: 25px;
                    cursor: pointer;
                }
                .mfunsPlayer-switch {
                    height: 40px;
                }
            }
        }
        .mfunsPlayer-video-color-reset {
            margin: 0 auto;
            width: 80px;
            height: 30px;
            text-align: center;
            line-height: 30px;
            color: $translucent-white;
            border-radius: 3px;
            background: $theme-color;
            font-size: 14px;
            cursor: pointer;
            &:hover {
                filter: brightness(1.1);
            }
        }
    }
}
