showImage.wxss 571 B

123456789101112131415161718192021222324252627282930313233343536
  1. /* pages/components/showImage/showImage.wxss */
  2. .sharePopup {
  3. position: fixed;
  4. left: 0;
  5. right: 0;
  6. bottom: 0;
  7. top: 0;
  8. background: rgba(0, 0, 0, 0.7);
  9. display: flex;
  10. align-items: center;
  11. justify-content: center;
  12. z-index: 100;
  13. }
  14. .shareDialog {
  15. position: absolute;
  16. left: 0;
  17. top: 0;
  18. width: 100%;
  19. height: 100%;
  20. }
  21. .close_icon {
  22. position: absolute;
  23. right: -25rpx;
  24. top: -25rpx;
  25. width: 100rpx;
  26. height: 100rpx;
  27. }
  28. .qrcode {
  29. position: absolute;
  30. left: 50%;
  31. top: 50%;
  32. width: 600rpx;
  33. height: 600rpx;
  34. transform: translate(-50%,-50%);
  35. }