index.module.less 954 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. .uploader-section {
  2. display: flex;
  3. align-items: center;
  4. box-sizing: border-box;
  5. position: relative;
  6. .img-close {
  7. position: absolute;
  8. top: 5px;
  9. right: 12px;
  10. z-index: 99;
  11. font-size: 13px;
  12. background-color: rgba(0, 0, 0, 0.2);
  13. color: #fff;
  14. font-weight: bold;
  15. width: 18px;
  16. height: 18px;
  17. display: flex;
  18. justify-content: center;
  19. align-items: center;
  20. border-radius: 50%;
  21. }
  22. .uploader {
  23. position: relative;
  24. &.default {
  25. :global {
  26. .van-uploader__upload {
  27. width: 102px;
  28. height: 94px;
  29. background-color: #fff;
  30. }
  31. }
  32. .previewImg {
  33. width: 102px;
  34. height: 94px;
  35. border-radius: 10px;
  36. overflow: hidden;
  37. }
  38. }
  39. :global {
  40. .van-uploader__upload-icon,
  41. .van-icon__image {
  42. width: 100%;
  43. height: 100%;
  44. }
  45. }
  46. }
  47. }