1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- /* 自定义上传样式 */
- .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;
- }
- /* 样式2 */
- .style2 .upImage_ltem {
- display: flex;
- align-items: center;
- width: 120rpx;
- height: 120rpx;
- background: #333333;
- border-radius: 8px;
- background-color: rgba(51, 51, 51, 0.09);
- }
- .style2 .image {
- width: 44rpx;
- height: 44rpx;
- z-index: 3;
- }
|