popup.wxss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. .data-popup {
  2. position: fixed;
  3. left: 0;
  4. top: 0;
  5. width: 100%;
  6. height: 100vh;
  7. background: rgba(0, 0, 0, 0.5);
  8. z-index: 1000;
  9. display: flex;
  10. align-items: center;
  11. justify-content: center;
  12. z-index: 99999;
  13. }
  14. .data-popup-container {
  15. width: 70%;
  16. max-width: 600rpx;
  17. display: flex;
  18. flex-direction: column;
  19. align-items: flex-end;
  20. }
  21. .data-popup-container .popup-close {
  22. width: 54rpx;
  23. height: 54rpx;
  24. }
  25. .popup-main {
  26. width: 100%;
  27. margin-top: 50rpx;
  28. padding-top: 60rpx;
  29. padding-bottom: 70rpx;
  30. background: #ffffff;
  31. border-radius: 12rpx;
  32. }
  33. .popup-title {
  34. font-size: 32rpx;
  35. font-family: 'PingFang SC, PingFang SC-Bold';
  36. font-weight: 700;
  37. text-align: center;
  38. color: #1a1a1a;
  39. margin-bottom: 40rpx;
  40. }
  41. .popup-content {
  42. display: flex;
  43. flex-direction: column;
  44. justify-content: center;
  45. align-items: center;
  46. font-size: 32rpx;
  47. font-weight: 400;
  48. text-align: center;
  49. color: #3f454e;
  50. margin-bottom: 52rpx;
  51. }
  52. .popup-footer {}
  53. .popup-footer .btn {
  54. width: 320rpx;
  55. height: 80rpx;
  56. text-align: center;
  57. line-height: 80rpx;
  58. background: #ffdc2f;
  59. border-radius: 40rpx;
  60. font-size: 32rpx;
  61. font-family: 'PingFang SC, PingFang SC-Regular';
  62. font-weight: 400;
  63. color: #333333;
  64. }