.mali-upload-box{
    position: relative;
}
.mali-upload-box .mali-upload-file{
    display: none;
}
.mali-upload-btn{
    display: inline-block;
    height: 38px;
    line-height: 38px;
    padding: 0 18px;
    background-color: #70b9eb;
    color: #fff;
    white-space: nowrap;
    text-align: center;
    font-size: 14px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
}
.mali-upload-btn[disabled]{
    background-color: #d6d6d6;
    color: #fff;
    cursor: no-drop;
}
.mali-upload-box .mali-upload-list-box{
    display: none;
    opacity: 1;
    position: relative;
    left: 0;
    z-index: 99;
    transition: opacity .5s;
}
.mali-upload-box .mali-upload-list-box.show{
    opacity: 0;
    display: block;
}
.mali-upload-box .mali-upload-list-box.show.show-in{
    opacity: 1;
}
.mali-upload-box .mali-upload-list-box.bottom{
    top: 100%;
}
.mali-upload-box .mali-upload-list-box.top{
    bottom: 100%;
}
.mali-upload-box .mali-upload-list-box .mali-upload-list{
    padding: 5px 15px;
    overflow-y: auto;
    border-style: solid;
    border-color: #e6e6e6;
    border-width: 1px 1px 1px 5px;
    margin-top: 10px;
    margin-bottom: 10px;
    max-height: 150px;
    width: 375px;
    /*padding: 5px 15px;*/
    /*overflow-y: auto;*/
    background-color: #FFFFFF;
}
.mali-upload-box .mali-upload-list-box .mali-upload-list li{
    margin-bottom: 8px;
}
.mali-upload-box .mali-upload-list-box .mali-upload-list li:last-child{
    margin-bottom: 0;
}
.mali-upload-box .mali-upload-list-box.bottom:after{
    content: "";
    position: absolute;
    top: -20px;
    left: 10px;
    border-style: solid;
    border-color:  transparent transparent #e6e6e6 transparent;
    border-width: 10px;
    z-index: 98;
}
.mali-upload-box .mali-upload-list-box.top:after{
    content: "";
    position: absolute;
    bottom: -10px;
    left: 10px;
    border-style: solid;
    border-color:  #e6e6e6 transparent transparent transparent;
    border-width: 10px;
    z-index: 98;
}
.mali-upload-box .mali-upload-list-box:before{
    content: "";
    position: absolute;
    top: -19px;
    left: 10px;
    border-style: solid;
    border-color:  transparent transparent #FFFFFF transparent;
    border-width: 10px;
    z-index: 99;
}
.mali-upload-info{
    position: relative;
    padding: 5px 65px 5px 60px;
}
.mali-upload-info .upload-file-type{
    position: absolute;
    top: 50%;
    left: 10px;
    width: 35px;
    height: 35px;
    background-color: #FFFFFF;
    border: 1px solid #DFDFDF;
    border-radius: 5px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.mali-upload-info .upload-file-type .mali-file-word{
    width: 70%;
    height: 70%;
    background-image: url("../image/word.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.mali-upload-info .upload-file-type .mali-file-pdf{
    width: 70%;
    height: 70%;
    background-image: url("../image/pdf.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.mali-upload-info .upload-file-type .mali-file-xlsx{
    width: 70%;
    height: 70%;
    background-image: url("../image/xlsx.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.mali-upload-info .upload-file-type .mali-file-other{
    width: 70%;
    height: 70%;
    background-image: url("../image/other.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.mali-upload-info .upload-file-type .mali-file-ppt{
    width: 70%;
    height: 70%;
    background-image: url("../image/ppt.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.mali-upload-info .upload-file-type .mali-file-zip{
    width: 70%;
    height: 70%;
    background-image: url("../image/zip.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.mali-upload-info .upload-file-type .mali-file-image{
    width: 100%;
    height: 100%;
}
.mali-upload-info .upload-file-type .mali-file-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.mali-upload-info .upload-file-name{
    color: #545454;
    font-size: 14px;
    margin-bottom: 6px;
}
.mali-upload-info .upload-file-name .upload-file-href{
    overflow: hidden;
    white-space: nowrap;
    display: block;
    text-overflow: ellipsis;
}
.mali-upload-info .upload-file-progress{
    height: 5px;
}
.mali-upload-info .upload-file-progress .progress-box{
    height: 5px;
    background-color: #efefef;
    border-radius: 20px;
    width: 100%;
    overflow: hidden;
    position: relative;
}
.mali-upload-info .upload-file-progress .progress-box span{
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    height: 100%;
    background-color: #43a3e5;
    transition: width .3s;
}
.mali-upload-info .upload-file-control{
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}
.mali-upload-info .upload-file-control .control-icon{
    width: 20px;
    height: 20px;
    position: relative;
    overflow: hidden;
}
.mali-upload-info .upload-file-control .control-icon .upload-file-delete{
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height:  100%;
    background-image: url("../image/close.png");
    background-size: 90%;
    background-repeat: no-repeat;
    background-position: center;
    transition: opacity .3s,top .3s;
    cursor: pointer;
    opacity: 0;
}
.mali-upload-info .upload-file-control .control-icon .upload-file-finish{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:  100%;
    background-image: url("../image/finish.png");
    background-size: 90%;
    background-repeat: no-repeat;
    background-position: center;
    transition: opacity .3s,top .3s;
    opacity: 1;
}
.mali-upload-info:hover .upload-file-control .control-icon .upload-file-delete{
    top: 0;
    opacity: 1;
}
.mali-upload-info:hover .upload-file-control .control-icon .upload-file-finish{
    top: 100%;
    opacity: 0;
}

/* - - - - - -显示图片 - - - - - - */
.mali-upload-image-box{
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    padding: 15px 0 0;
}
.mali-upload-image-box .mali-image-list{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.mali-upload-image-box .mali-image-add-btn{

}
.mali-upload-image-box .mali-image-add-btn .mali-image-add{
    width: 84px;
    height: 84px;
    position: relative;
    z-index: 2;
    border: 1px solid #b0b0b0;
    overflow: hidden;
    margin-right: 15px;
    margin-bottom: 15px;
    opacity: 0.5;
    transition: opacity 0.3s;
    border-radius: 5px;
}
.mali-upload-image-box .mali-image-add-btn .mali-image-add:after{
    position: absolute;
    content: "";
    background-color: #b0b0b0;
    height: 2px;
    width: 64px;
    left: 10px;
    top: 40px;
}
.mali-upload-image-box .mali-image-add-btn .mali-image-add:before{
    position: absolute;
    content: "";
    background-color: #b0b0b0;
    width: 2px;
    height: 64px;
    top: 10px;
    left: 40px;
}
.mali-upload-image-box .mali-image-add-btn .mali-image-add:hover{
    opacity: 1;
}

.mali-upload-image-box .mali-image-add-btn .mali-image-add > input{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    z-index: 2;
}
.mali-upload-image-box .mali-image-list .mali-image-item{
    position: relative;
    margin-right: 15px;
    margin-bottom: 15px;
}
.mali-upload-image-box .mali-image-list .mali-image-item:hover .mali-image-content{
    box-shadow: 0 0 15px -1px rgba(0,0,0,.25);
}
.mali-upload-image-box .mali-image-list .mali-image-item:hover .mali-control-icon .mali-image-icon .upload-image-finish{
    top: 100%;
    opacity: 0;
}
.mali-upload-image-box .mali-image-list .mali-image-item:hover .mali-control-icon .mali-image-icon .upload-image-delete{
    top: 0;
    opacity: 1;
}
.mali-upload-image-box .mali-image-list .mali-image-item:hover .mali-image-content .upload-file-control.finish{
    bottom: 0;
}
.mali-upload-image-box .mali-image-list .mali-image-item .upload-file-control{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3px 5px;
    background-color: rgba(255,255,255,.8);
    border-radius: 50px;
}
.mali-upload-image-box .mali-image-list .mali-image-item .upload-file-control.finish{
    bottom: -15px;
    transition: bottom .3s;
}
.mali-upload-image-box .mali-image-list .mali-image-item .upload-file-control .mali-image-progress .progress-box{
    height: 5px;
    width: 100%;
    border-radius: 50px;
    overflow: hidden;
}
.mali-upload-image-box .mali-image-list .mali-image-item .upload-file-control .mali-image-progress .speed{
    height: 100%;
    background-color: #43a3e5;
    display: block;
    transition: width .3s,background-color .3s;
    width: 0;
}
.mali-upload-image-box .mali-image-list .mali-image-item .mali-image-content{
    width: 84px;
    height: 84px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    transition: box-shadow .2s;
}
.mali-upload-image-box .mali-image-list .mali-image-item .mali-control-icon{
    position: absolute;
    top: -10px;
    right: -10px;
    width: 20px;
    height:  20px;
}
.mali-upload-image-box .mali-image-list .mali-image-item .mali-control-icon .mali-image-icon{
    width: 20px;
    height: 20px;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 0 5px -1px rgba(0,0,0,.1);
    background-color: #FFFFFF;
}
.mali-upload-image-box .mali-image-list .mali-image-item .mali-control-icon .mali-image-icon .upload-image-delete{
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height:  100%;
    background-image: url("../image/close.png");
    background-size: 90%;
    background-repeat: no-repeat;
    background-position: center;
    transition: opacity .3s,top .3s;
    cursor: pointer;
    opacity: 0;
}
.mali-upload-image-box .mali-image-list .mali-image-item .mali-control-icon .mali-image-icon .upload-image-finish{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:  100%;
    background-image: url("../image/finish.png");
    background-size: 90%;
    background-repeat: no-repeat;
    background-position: center;
    transition: opacity .3s,top .3s;
    opacity: 1;
}
.mali-upload-image-box .mali-image-list .mali-image-item .mali-image-content .mali-image-src{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gd {
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
    z-index: 900;
    display: none;
    top: 0;
    left: 0;
}