.NHUpload{
    padding: 0 8px;
    .uploadWarp{
        .uploadBtn{
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #fff;
            border: 1px solid #ddd;
        }
    }
    .uploadContent{
        margin-top: 10px;
        .uploadedItem{
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 10px;
        }
        .type{
            width: 80px;
            height: 80px;
            line-height: 80px;
            background-color: #397ef0;
            color: #fff;
            text-align: center;
            font-size: 20px;
            margin-right: 15px;
            font-family: Arial;
            &.imgType{
                background-color: transparent;
            }
            img{
                width: 100%;
                height: 100%;
                // object-fit: cover;
            }
        }

        .name{
            font-size: 14px;
            color: rgba(0, 0, 0, 0.85);
            font-weight: 400;
            flex: 1;
            text-overflow: ellipsis;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            word-break: break-all;
            white-space: normal;
        }
        .ctrl{
            margin-left: 15px;
            >img{
                margin-right: 12px;
                width: 24px;
                height: 24px;
            }
        }
    }
}