privacy-popup.scss 529 B

12345678910111213141516171819202122232425
  1. /* component/privacy-popup/privacy-popup.wxss */
  2. .privacy-container {
  3. height: 100vh;
  4. width: 100vw;
  5. background: rgba($color: #000000, $alpha: 0.6);
  6. position: fixed;
  7. left: 0;
  8. top: 0;
  9. z-index: 1;
  10. display: flex;
  11. align-items: center;
  12. justify-content: center;
  13. }
  14. .privacy-content {
  15. width: 640rpx;
  16. font-size: 32rpx;
  17. font-family: PingFang SC-Bold, PingFang SC;
  18. color: #333333;
  19. text-align: center;
  20. padding: 40rpx;
  21. box-sizing: border-box;
  22. background: #FFFFFF;
  23. border-radius: 16rpx 16rpx 16rpx 16rpx;
  24. }