CheckAccess.scss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. @import '@/utils/common.scss';
  2. .fast_alert_content {
  3. display: flex;
  4. flex-direction: column;
  5. width: 658px;
  6. background-color: #1C1C1C;
  7. border-radius: 40px;
  8. padding: 40px;
  9. box-sizing: border-box;
  10. align-items: center;
  11. padding-bottom: 16px;
  12. }
  13. .fast_alert_title {
  14. color: #fff;
  15. font-size: 48px;
  16. line-height: 60px;
  17. font-weight: bold;
  18. margin-bottom: 20px;
  19. text-align: center;
  20. }
  21. .fast_alert_detail {
  22. color: #fff;
  23. opacity: 0.6;
  24. font-size: 32px;
  25. line-height: 48px;
  26. margin-bottom: 20px;
  27. text-align: center;
  28. }
  29. .fast_alert_confirm {
  30. width: 578px;
  31. height: 96px;
  32. border-radius: 48px;
  33. color: #000D1FFF;
  34. background-color: $fastColor;
  35. font-size: 32px;
  36. font-weight: bold;
  37. display: flex;
  38. align-items: center;
  39. justify-content: center;
  40. text-align: center;
  41. margin-bottom: 24px;
  42. flex-direction: column;
  43. }
  44. .confirm_multline {
  45. height: 120px;
  46. border-radius: 60px;
  47. }
  48. .confirm_text {
  49. font-size: 32px;
  50. font-weight: bold;
  51. }
  52. /* #ifdef weapp */
  53. .confirm_sub_text {
  54. color: #fff;
  55. font-size: 20px;
  56. background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.4) 100%);
  57. -webkit-background-clip: text;
  58. -webkit-text-fill-color: transparent;
  59. background-clip: text;
  60. text-fill-color: transparent;
  61. font-weight: bold;
  62. }
  63. .fast_alert_container {
  64. position: fixed;
  65. left: 0;
  66. top: 0;
  67. right: 0;
  68. bottom: 0;
  69. display: flex;
  70. align-items: center;
  71. justify-content: center;
  72. background-color: #000000e0;
  73. z-index: 10000000;
  74. }
  75. /* #endif */
  76. /* #ifdef rn */
  77. .confirm_sub_text {
  78. color: #fff;
  79. font-size: 20px;
  80. font-weight: bold;
  81. }
  82. .fast_alert_container {
  83. position: absolute;
  84. left: 0;
  85. top: 0;
  86. right: 0;
  87. bottom: 0;
  88. display: flex;
  89. align-items: center;
  90. justify-content: center;
  91. background-color: #000000e0;
  92. z-index: 10000000;
  93. }
  94. /* #endif */
  95. .fast_alert_cancel {
  96. width: 578px;
  97. height: 96px;
  98. color: #fff;
  99. border-radius: 48px;
  100. background-color: #464646;
  101. font-size: 30px;
  102. font-weight: bold;
  103. display: flex;
  104. align-items: center;
  105. justify-content: center;
  106. text-align: center;
  107. margin-bottom: 24px;
  108. }