.upload {
    display: flex;
    flex-wrap: wrap;
    &-action {
        position: relative;
        overflow: hidden;
    }
    &-btn {
        width: 200rpx;
        height: 200rpx;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border: 2rpx dashed #999;
        color: #999;
        // margin: 0 8px 8px 0;
        border-radius: 10rpx;
        &_text {
            font-size: 24rpx;
            line-height: 1.2;
        }
    }
    &-preview {
        overflow: hidden;
        // margin: 0 8px 8px 0;
        position: relative;
        &__close {
            position: absolute;
            right: 12rpx;
            top: 12rpx;
            width: 40rpx;
            height: 40rpx;
            border-radius: 50%;
            background-color: rgba(0, 0, 0, .4);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
        }
    }
    &-tips {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 1;
        font-size: 1em;
        font-weight: 400;
        color: #FFFFFF;
        height: 2em;
        line-height: 2em;
        background: rgba(0, 0, 0, .4);
        border-radius: 0rpx 0rpx 20rpx 20rpx;
        text-align: center;
    }
}
