1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- @charset "UTF-8";
- .popup-box {
- width: 500rpx;
- background-color: #fff;
- position: fixed;
- top: 50%;
- left: 50%;
- margin-left: -250rpx;
- -webkit-transform: translateY(-50%);
- transform: translateY(-50%);
- z-index: 311220;
- }
- .popup-box .title {
- font-size: 28rpx;
- color: #000;
- text-align: center;
- margin-top: 30rpx;
- }
- .popup-box .tip {
- font-size: 22rpx;
- color: #555;
- padding: 0 24rpx;
- margin-top: 25rpx;
- }
- .popup-box .bottom .item {
- width: 50%;
- height: 80rpx;
- background-color: #eeeeee;
- text-align: center;
- line-height: 80rpx;
- font-size: 24rpx;
- color: #666;
- margin-top: 54rpx;
- }
- .popup-box .bottom .item.on {
- width: 100%;
- }
- .flex {
- display: flex;
- }
- .popup-box .bottom .item.grant {
- font-size: 28rpx;
- color: #fff;
- font-weight: bold;
- background-color: #c30d24;
- border-radius: 0;
- padding: 0;
- }
- .mask {
- position: fixed;
- top: 0;
- right: 0;
- left: 0;
- bottom: 0;
- background-color: rgba(0, 0, 0, 0.3);
- z-index: 311110;
- }
|