.file-upload-table,.file-upload-table tr,.file-upload-table td{
    border: 0;
    border-color: transparent;
}

.file-upload-img {
    width: 60px;
    height: 60px;
    margin: 2px 5px;
    background-repeat: round;
    position: relative;
    overflow: hidden;
    box-shadow: 1px 1px 3px 0 rgb(220, 220, 220);
    z-index: 98;
    border-radius:3px;
}

.file-upload-img .mask-layer{
    width: 60px;
    height: 60px;
    background-color: #0a001f;
    opacity: 0;
    z-index: 99;
    border-radius:3px;
    cursor: pointer;
}

.file-upload-img .icon{
    font-size: 60px;
    position: absolute;
    top: 20px;
    color: yellowgreen;
}

.file-upload-img .delete{
    position: absolute;
    color: white;
    right: 2px;
    top: 2px;
    cursor: pointer;
    display: none;
    z-index: 100;
}

.file-upload-img .download{
    position: absolute;
    color: white;
    right: 2px;
    bottom: 2px;
    cursor: pointer;
    display: none;
    z-index: 100;
    font-size: 12px;
}

.file-upload-img .preview{
    position: absolute;
    color: white;
    left: 2px;
    bottom: 2px;
    cursor: pointer;
    display: none;
    z-index: 100;
    font-size: 12px;
}


.file-upload-img .file-upload-btn{
    width: 60px;
    height: 60px;
    cursor: pointer;
}

.file-upload-img:hover .mask-layer{
    opacity: 0.5;
}

.file-upload-img:hover .delete{
    display: inline;
    color: white;
    z-index: 100;
}

.file-upload-img:hover .download{
    display: inline;
    color: white;
    z-index: 100;
}

.file-upload-img:hover .preview{
    display: inline;
    color: white;
    z-index: 100;
}