.fdx_uploadImg{
    display: flex;
}
.fdx_uploadImg>label{
    width: 7em;
    text-align: right;
    margin: 0 .85714286em 0 0;
    font-weight: bold;
}
.fdx_uploadImg .uploadContent{
    width: 120px;
    height: 120px;
    border: 1px dashed #bbb;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
}
.fdx_uploadImg .uploadContent>div{
    cursor: pointer;
}
.fdx_uploadImg .uploadContent.mini{
    width: 100px;
    height: 100px;
}
.fdx_uploadImg .uploadContent .dropBox{
    width: calc( 100% - 20px);
    height: calc( 100% - 20px);
    display: flex;
    justify-content: center;
    align-items: center;
}
.fdx_uploadImg .uploadContent .dropBox:hover{
    background-color: #eee;
}
.fdx_uploadImg .uploadContent .dropBox.hide{
    display: none;
}
.fdx_uploadImg .uploadContent .dropBox .file_label{
    width: calc( 100% - 20px);
    height: calc( 100% - 20px);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.fdx_uploadImg .uploadContent .dropBox .file_label .icon.plus{
    font-size: 1.2em;
    color: #bbb;
    line-height: initial;
    margin: 0;
    cursor: pointer;
}
.fdx_uploadImg .uploadContent .imgShow{
    width: calc( 100% - 20px);
    height: calc( 100% - 20px);
    position: relative;
}
.fdx_uploadImg .uploadContent .imgShow .icon{
    position: absolute;
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    margin: 0;
    background-color: red;
    overflow: hidden;
    border-radius: 50%;
    color: white;
    top: -.4em;
    line-height: initial;
    right: -.4em;
}
.fdx_uploadImg .uploadContent .imgShow img{
    width: 100%;
    height: 100%;
}
.fdx_uploadImg .uploadContent .imgShow.hide{
    display: none;
}
.fdx_uploadImg input[type='file']{
    display: none;
}
.fdx_uploadImg .imgExplain{
    display: flex;
    flex-direction: column-reverse;
}
.fdx_uploadImg .imgExplain p{
    margin: 0 0 0 .85714286em;
    font-size: .8em;
    color: #999;
}
.fdx_uploadImg .imgExplain p span{
    margin-right: 1em;
}
.fdx_uploadImg .loadingBox{
    width: 100%;
    height: 100%;
    background-color: white;
    margin: 0;
}
.fdx_uploadImg .loadingBox.hide{
    display: none;
}
.fdx_uploadImg_inputBox label,.fdx_uploadImg_inputBox input {
    display: none !important;
}