CheckAccess.scss 2.2 KB

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