﻿/*上传控件样式*/
.upload-dropzone {
    background-color: #f5f5f5;
    border: dashed 1px #999;
    border-radius: 4px;
    padding: 0px;
    position: relative;
}

    .upload-dropzone:hover {
        background-color: #ededed;
        border: dashed 1px #757575;
    }

    .upload-dropzone,
    .upload-dropzone > div {
        width: 100%;
        height: 100%;
    }

#upload-chooser {
    cursor: pointer;
}

#upload-indicator:before {
    color: #7e8695;
    content: '\e1d4';
    font-size: 24px;
    font-family: "FontAwesome";
    animation: loading 1500ms linear infinite;
}

#upload-cover > img {
    width: 100%;
    height: 100%;
}

#upload-rebtn:hover:before,
#upload-cover:hover > #upload-rebtn {
    opacity: 1;
}

#upload-rebtn {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 5px;
    right: 5px;
    opacity: 0;
    transition: .3s;
}

    #upload-rebtn:before {
        content: '\f057';
        font-size: 20px;
        font-weight: 900;
        font-family: "FontAwesome";
        transition: .3s;
        opacity: .7;
        cursor: pointer;
    }

.dropzone-text .upload-icon:after {
    content: '\2b';
    font-family: "FontAwesome";
    font-size: 26px;
    color: gray;
    margin-bottom: 5px;
}

.dropzone-text > span {
    opacity: 0.5;
    font-size: 13px;
    color: #000;
}

#upload-progress {
    display: flex;
    margin-top: 10px;
}

.dx-popup-title {
    height: 52px;
    font-size: 18px;
    padding: 0px 8px 0px 24px;
    border-bottom: 1px solid rgb(224, 224, 224);
}
