index.wxss 812 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /* 自定义上传样式 */
  2. .upImage_ltem {
  3. display: flex;
  4. justify-content: center;
  5. width: 130rpx;
  6. height: 118rpx;
  7. background: #FFFFFF;
  8. border-radius: 20px;
  9. opacity: 0.69;
  10. overflow: hidden;
  11. }
  12. .upImage_add {
  13. font-size: 50rpx;
  14. color: #333333;
  15. }
  16. /* 图片为空提示 */
  17. .image-tips {
  18. position: absolute;
  19. color: #ED6876;
  20. width: 350rpx;
  21. top: 50%;
  22. right: -365rpx;
  23. transform: translate(0, -50%);
  24. }
  25. .van-uploader__preview-image {
  26. width: 50rpx !important;
  27. }
  28. /* 样式2 */
  29. .style2 .upImage_ltem {
  30. display: flex;
  31. align-items: center;
  32. width: 120rpx;
  33. height: 120rpx;
  34. background: #333333;
  35. border-radius: 8px;
  36. background-color: rgba(51, 51, 51, 0.09);
  37. }
  38. .style2 .image {
  39. width: 44rpx;
  40. height: 44rpx;
  41. z-index: 3;
  42. }