privacy-popup.scss 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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: 99;
  10. display: flex;
  11. align-items: center;
  12. justify-content: center;
  13. .privacy-content {
  14. width: 640rpx;
  15. font-size: 32rpx;
  16. font-family: PingFang SC-Bold, PingFang SC;
  17. color: #333333;
  18. text-align: center;
  19. padding: 40rpx;
  20. box-sizing: border-box;
  21. background: #FFFFFF;
  22. border-radius: 16rpx 16rpx 16rpx 16rpx;
  23. }
  24. .privacy-title {
  25. font-weight: bolder;
  26. }
  27. .content {
  28. padding: 40rpx 0;
  29. box-sizing: border-box;
  30. text-indent: 64rpx;
  31. }
  32. .button-container {
  33. display: flex;
  34. align-items: center;
  35. justify-content: space-around;
  36. .button {
  37. flex: 1;
  38. height: 64rpx;
  39. max-width: 326rpx;
  40. font-size: 32rpx;
  41. font-family: PingFang SC-Medium, PingFang SC;
  42. font-weight: 500;
  43. color: #FFFFFF;
  44. background: #1890ff;
  45. border-radius: 62rpx 62rpx 62rpx 62rpx;
  46. display: flex;
  47. align-items: center;
  48. justify-content: center;
  49. position: relative;
  50. .btn {
  51. height: 100%;
  52. width: 100%;
  53. position: absolute;
  54. left: 0;
  55. top: 0;
  56. opacity: 0;
  57. }
  58. }
  59. .button+.button {
  60. margin-left: 48rpx;
  61. }
  62. .cancel {
  63. background: #E6E6E6;
  64. }
  65. }
  66. }