@charset "utf-8";

/*element样式过滤 & 只有组件CSS样式*/
body {
    background: #f2f3f5;
}

.m-upload-list {

}

.m-upload-container {
    float: left;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    margin-right: 8px;
}

.m-upload-item {
    width: 100%;
    height: 100%;
    position: relative
}

.m-upload-item-img {
    width: 100%;
    height: 100%;
}

.m-upload-item-action {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
}

.m-upload-item:hover .m-upload-item-action {
    display: flex;
}

.m-upload-item-add {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-show-upload-list .ant-upload-list {
    display: none;
}