﻿.uploader-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

ul._queueList {
    display: flex;
    flex-wrap: wrap;
}

ul._queueList, li {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

._picker {
    font-size: 20px
}

.file-item {
    position: relative;
}

    .file-item div.cancel {
        display: none;
        width: 50%;
        position: absolute;
        top: 0px;
        left: 0px;
        height: 20px;
        line-height: 20px;
        text-align: center;
        background-color: rgba(0,0,0,0.4);
        filter: progid:DXImageTransform.Microsoft.gradient(startcolorstr=#7F000000,endcolorstr=#7F000000);
        color: white;
        cursor: pointer
    }

    .file-item div.preview {
        display: none;
        width: 50%;
        position: absolute;
        top: 0px;
        left: 50%;
        height: 20px;
        line-height: 20px;
        text-align: center;
        background-color: rgba(0,0,0,0.4);
        filter: progid:DXImageTransform.Microsoft.gradient(startcolorstr=#7F000000,endcolorstr=#7F000000);
        color: white;
        cursor: pointer
    }

#closeImgModal {
    width: 50px;
    height: 50px;
    padding: 10px;
    margin-top: 10px;
    border-radius: 50%;
    background-color: #00b7ee;
    color: white;
    border: none;
    position: absolute;
    top: -40px;
    right: -25px;
    outline: none;
}
/*修复webuploader上传按钮只有半边有效*/
._picker div:nth-child(2) {
    width: 100% !important;
    height: 100% !important;
}