.contained-button-file {
	display: none;
}
.upload-file-container {
	cursor: pointer;
	position: relative;
	width: 100px;
	height: 100px;
	border: 1px dashed #e7e7e7;
	&:before,&:after {
        content: "";
        position: absolute;
        background: #404A53;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }
    &:before {
        width: 34px;
        height: 3px;
    }
    &:after {
        width: 3px;
        height: 34px;
    }
}

.file-list-container {
    .file-item {
        display: flex;
        margin-bottom: 24px;
        &:last-child {
            margin-bottom: 0;
        }
        .file-uploading,
        img {
            width: 80px;
            height: 80px;
            margin-right: 20px;
        }
        .file-uploading{
            position: relative;
            background: #e7e7e7;
            .ant-progress{
              z-index: 1;
              width: 100%;
              font-size: 12px;
              position: absolute;
              top: 47%;
              background: #efefef;
              border-radius: 3px;
              .ant-progress-bg{
                background-color: #f3533b;
                height: 5px !important;
                border-radius: 3px;
              }
            }
        }
        .file-info {
            display: flex;
            flex-direction: column;
        }
        .name {
            font-size: 14px;
            color: #333333;
            line-height: 20px;
        }
        .size {
            font-size: 14px;
            color: #999999;
            line-height: 20px;
        }
        .operation {
            display: flex;
            margin-top: 20px;
            font-size: 14px;
            line-height: 20px;
            color: #777777;
        }
        .del {
            cursor: pointer;
            color: #FF3B3F;
            margin-right: 5px;
        }
        .replace {
            cursor: pointer;
            color: #23AF8C;
            margin-left: 5px;
        }
    }
}
.file-upload-btn {
    span {
        display: inline-block;
        cursor: pointer;
        font-size: 14px;
        color: #20bb7a;
        line-height: 20px;
        margin-top: 16px;
    }
}