| 12345678910111213141516171819202122232425 |
- /* component/privacy-popup/privacy-popup.wxss */
- .privacy-container {
- height: 100vh;
- width: 100vw;
- background: rgba($color: #000000, $alpha: 0.6);
- position: fixed;
- left: 0;
- top: 0;
- z-index: 1;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .privacy-content {
- width: 640rpx;
- font-size: 32rpx;
- font-family: PingFang SC-Bold, PingFang SC;
- color: #333333;
- text-align: center;
- padding: 40rpx;
- box-sizing: border-box;
- background: #FFFFFF;
- border-radius: 16rpx 16rpx 16rpx 16rpx;
- }
|