1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- .mask {
- width: 100vw;
- height: 100vh;
- background: rgba(0,0,0,.5);
- position: fixed;
- top: 0;
- left: 0;
- z-index: 101;
- }
- .toast {
- width: 600rpx;
- height: 496rpx;
- border-radius: 12rpx;
- position: absolute;
- top: 46%;
- left: 50%;
- transform: translate(-50%,-50%);
- background: #fff;
- text-align: center;
- }
- .content{
- padding: 40rpx 56rpx 46rpx 44rpx;
- }
- .notice_box {
- height: 346rpx;
- color: #666666;
- }
- .notice_box .toast_title {
- margin-bottom: 30rpx;
- }
- .notice_main {
- line-height: 40rpx;
- padding-bottom: 50rpx;
- font-size: 28rpx;
- text-align: left;
- text-align: center;
- }
- .know {
- font-size: 30rpx;
- color: #2562FF;
- padding: 22rpx 0;
- font-weight: bold;
- border-top: 2rpx solid #D8D8D8;
- }
- .toast_title {
- color: #000000;
- font-size: 36rpx;
- line-height: 50rpx;
- font-weight: bold;
- margin-bottom: 50rpx;
- }
- .buttones{
- width: 100%;
- display: flex;
- align-items: center;
- position: absolute;
- bottom: 0;
- }
- .buttones .button{
- width: 50%;
- line-height: 98rpx;
- border-top: 2rpx solid #D8D8D8;
- color: #101426;
- font-size: 32rpx;
- text-align: center;
- }
- .buttones .button_yes{
- background: #2662FF;
- border-color: #2662FF;
- color: #FFFFFF;
- }
|