showImage.wxss 489 B

12345678910111213141516171819202122232425262728
  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: relative;
  16. width: 600rpx;
  17. height: 600rpx;
  18. display: flex;
  19. justify-content: center;
  20. padding-top: 0rpx;
  21. }
  22. .close_icon {
  23. position: absolute;
  24. right: -25rpx;
  25. top: -25rpx;
  26. width: 100rpx;
  27. height: 100rpx;
  28. }