123456789101112131415161718192021222324252627282930 |
- /* 自定义上传样式 */
- .upImage_ltem {
- display: flex;
- justify-content: center;
- width: 130rpx;
- height: 118rpx;
- background: #FFFFFF;
- border-radius: 20px;
- opacity: 0.69;
- overflow: hidden;
- }
- .upImage_add {
- font-size: 50rpx;
- color: #333333;
- }
- /* 图片为空提示 */
- .image-tips {
- position: absolute;
- color: #ED6876;
- width: 350rpx;
- top: 50%;
- right: -365rpx;
- transform: translate(0,-50%);
- }
- .van-uploader__preview-image{
- width: 50rpx !important;
- }
|