*{outline: none;}
.clear-fix{
    clear:both;
}
.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* 修改前 */
.container{
    margin: 0 auto;
    max-width: 1280px;
    min-width: 1000px;
    min-height: calc(100% - 36px);
}

.progress{
    background-color: rgba(0,0,0,0.5);
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9999;
    display: none;
    top: 0;
    left: 0;
}

/** 上传进度条 */
.progress .progress-bar-box{
    position: absolute;
    left: 50%;
    top: 50%;
    width: 300px;
    height: 40px;
    margin: -20px 0 0 -150px;
    border-radius: 20px;
    border: 3px solid #34c2bd;
    padding: 3px;
    box-sizing: border-box;
}
.progress .progress-bar{
    width: 100%;
    height: 100%;
    float: left;
    background-color: #34c2bd;
    border-radius: 14px;
    opacity: .8;
}
.progress .progress-bar-rate{
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    width: 100px;
    text-align: center;
    color: #fefefe;
    font-size: 15px;
    line-height: 40px;
    margin-left: -50px;
}
