123456789101112131415161718192021222324252627 |
- .popBox {
- position: fixed;
- top: 0px;
- left: 0px;
- height: 100vh;
- width: 100vw;
- display: flex;
- flex-direction: column;
- align-items: center;
- z-index: 999;
- background-color: rgba(0, 0, 0, 0.46);
- .closeImg {
- width: 46rpx;
- height: 62rpx;
- margin-top: 260rpx;
- margin-left: 75%;
- }
- .activityImg {
- width: 680rpx;
- height: 544rpx;
- border-radius: 20rpx;
- overflow: hidden;
- }
- }
|