.fileInput {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
    top: 0;
    left: 0;
    font-size:0px;
}
.preview-box .uploading{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height: 100%;
    text-align: center;
    background: rgba(0, 0, 0, .5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.preview-box .uploading p{
    width: 100%;
}
.previewListHtml {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.box-bg{
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 90px;
}
.bg-text {
    color: #464646;
    font-size: 12px;
    margin-top: 5px;
}
.image-name{
    position: absolute;
    bottom:0;
    left: 0;
    color: #fff;
    background: rgba(0, 0, 0, .5);
    width: 100%;
    margin:0;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
}
.preview-box {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-size:40px 40px;
    margin-right: 20px;
    margin-bottom: 20px;
    position: relative;
    overflow:hidden;
}

.preview-box:last-child {
    cursor: pointer;
    margin-right: 0;
}

.preview-box .close {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 20px;
    height: 20px;
    color: #fff;
    cursor: pointer;
}

.preview-box img {
    max-width: 100%;
    max-height: 100%;
}

.reSelect {
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .3);
    transition: all .5s;
}

.uploadBtn {
    width: 110px;
    height: 30px;
    border-radius: 3px;
    background: #00B062;
    border: none;
    color: #fff;
    cursor: pointer;
    margin-top: 20px;
}

.preview-box:hover .reSelect {
    opacity: 1;
}

.reSelect p {
    color: #fff;
    font-size: 16px;
}