12345678910111213141516171819202122232425262728 |
- /* pages/components/showImage/showImage.wxss */
- .sharePopup {
- position: fixed;
- left: 0;
- right: 0;
- bottom: 0;
- top: 0;
- background: rgba(0, 0, 0, 0.7);
- display: flex;
- align-items: center;
- justify-content: center;
- z-index: 100;
- }
- .shareDialog {
- position: relative;
- width: 600rpx;
- height: 600rpx;
- display: flex;
- justify-content: center;
- padding-top: 0rpx;
- }
- .close_icon {
- position: absolute;
- right: -25rpx;
- top: -25rpx;
- width: 100rpx;
- height: 100rpx;
- }
|