.wu-custom {
    display:flex;
    justify-content:flex-start;
}

.queueList {
    
    
}

.upload-file-list {
    list-style: none;
    padding: 0;
    display: flex; /* 使得li横向排列 */
    align-items: center; /* 垂直居中图片和标题 */
    margin-bottom:0px;
}

    .upload-file-list li {
        position: relative; /* 为file-panel定位做准备 */
        margin-right: 20px; /* 根据需要调整间距 */
    }

        .upload-file-list li:last-child {
            margin-right: 0; /* 移除最后一个li的右边距 */
        }

    .upload-file-list .file-panel {
        position: absolute;
        top: 0; /* 初始位置在图片上方 */
        right: 0;
        width: 20px; /* 与图片同宽 */
        height: 20px; /* 假设高度 */
        text-align: center; /* 文本居中显示 */
        background-color: red; /* 半透明背景 */
        color: white; /* 文字颜色 */
        line-height: 20px; /* 行高与高度相同，垂直居中 */
        font-size: 10px;
        border-radius: 2px;
    }

    .upload-file-list li:hover .file-panel {
        display: block; /* 鼠标悬停时显示 */
    }

    .upload-file-list .title {
        width: 100px;
        white-space: nowrap; /* 防止文本换行 */
        overflow: hidden; /* 隐藏超出容器的部分 */
        text-overflow: ellipsis; /* 显示省略符号来代表被修剪的文本 */
        text-align: center; /* 标题居中显示 */
        margin-top: 5px; /* 标题与图片间距 */
    }

    /* 移除默认的span样式，如果需要的话 */
    .upload-file-list i {
        cursor: pointer; /* 鼠标悬停时显示指针样式 */
    }

.webuploader-pick {
    background-color: transparent !important;
    color: rgb(103, 106, 108);
    border: 2px dashed;
    height: 100px;
    width: 100px;
    margin-left: 20px;
    padding: 0;
    display:flex;
    justify-content: space-evenly;
    align-items: center;
}

.webuploader-container-custom{
    display: flex !important;
    flex-direction: column !important;
}
