.mediaShowList {
    position: relative;
    height: 64px;
    background-color: #353535;
    color: #ebebeb;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;

    .mediaShowListWrapper {
        width: 95%;
        display: flex;
        align-items: center;
        justify-content: center;
        max-height: 64px;
    }

    .mediaShowListContent {
        overflow: hidden;
        height: 100%;
        // width: 100%;
        display: flex;
        justify-content: center;
    }

    .imgListWrapper {
        display: flex;
        justify-content: center;
        // flex: 1;
        // overflow-x: auto;
        overflow: hidden;
        white-space: nowrap;
        // text-align: center;
    }

    .imgList {
        display: flex;
        height: 100%;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
        &.small {
            .imgWrapper {
                width: 24px;
                height: 24px;
                margin: 4px;
            }
        }
    }

    .imgList-arrow {
        // width: var(--gap-xl);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        min-width: 18px;
        visibility: hidden;
        &.show {
            visibility: visible;
        }
        // background: rgba(0, 0, 0, 0.3);
        // color: #fff;
    }

    .imgWrapper {
        // width: 68px;
        // height: 68px;
        width: 30px;
        height: 30px;
        border: 2px solid #666;
        cursor: pointer;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        user-select: none;
        margin: 0 4px;
        transition: all .1s ease;
        // [&:not(:first-child) {
        //     margin-left: 8px;
        // }]

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            pointer-events: none;
        }
        svg.icon {
            top: 0;
            width: 22px;
            height: 22px;
            pointer-events: none;
        }
        .check-icon {
            position: absolute;
            top: -1px;
            right: 0;
            font-size: 14px;
            color: #2A87EB;
            line-height: 14px;
        }

    }

    .imgWrapper_selected {
        border: 2px solid #2A87EB;
    }

    .unionImgHandle {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 8px;
        min-width: 208px;
        max-width: 208px;
        height: 72px;

        .item {
            &:not(:first-child) {
                margin-left: 8px;
            }
        }

        .ant-btn.ant-btn-link {
            padding: 0;
        }
    }
}

.mediaShowListWrapper_hidden {
    height: 0;
}