| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- .fast_alert_content {
- display: flex;
- flex-direction: column;
- width: 658px;
- background-color: #1C1C1C;
- border-radius: 40px;
- padding: 40px;
- box-sizing: border-box;
- align-items: center;
- padding-bottom: 16px;
- }
- .fast_alert_title {
- color: #fff;
- font-size: 48px;
- line-height: 60px;
- font-weight: bold;
- margin-bottom: 20px;
- text-align: center;
- }
- .fast_alert_detail {
- color: #fff;
- opacity: 0.6;
- font-size: 32px;
- line-height: 48px;
- margin-bottom: 20px;
- text-align: center;
- }
- .fast_alert_confirm {
- width: 578px;
- height: 96px;
- border-radius: 48px;
- color: #000D1FFF;
- // background-color: $fastColor;
- font-size: 32px;
- font-weight: bold;
- display: flex;
- align-items: center;
- justify-content: center;
- text-align: center;
- margin-bottom: 24px;
- flex-direction: column;
- }
- .confirm_multline {
- height: 120px;
- border-radius: 60px;
- }
- .confirm_text {
- font-size: 32px;
- font-weight: bold;
- }
- /* #ifdef weapp */
- .confirm_sub_text {
- color: #fff;
- font-size: 20px;
- background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.4) 100%);
- -webkit-background-clip: text;
- -webkit-text-fill-color: transparent;
- background-clip: text;
- text-fill-color: transparent;
- font-weight: bold;
- }
- .fast_alert_container {
- position: fixed;
- left: 0;
- top: 0;
- right: 0;
- bottom: 0;
- display: flex;
- align-items: center;
- justify-content: center;
- background-color: #000000e0;
- z-index: 10000000;
- }
- /* #endif */
- /* #ifdef rn */
- .confirm_sub_text {
- color: #fff;
- font-size: 20px;
- font-weight: bold;
- }
- .fast_alert_container {
- position: absolute;
- left: 0;
- top: 0;
- right: 0;
- bottom: 0;
- display: flex;
- align-items: center;
- justify-content: center;
- background-color: #000000e0;
- z-index: 10000000;
- }
- /* #endif */
- .fast_alert_cancel {
- width: 578px;
- height: 96px;
- color: #fff;
- border-radius: 48px;
- background-color: #464646;
- font-size: 30px;
- font-weight: bold;
- display: flex;
- align-items: center;
- justify-content: center;
- text-align: center;
- margin-bottom: 24px;
- }
|