1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- .data-popup {
- position: fixed;
- left: 0;
- top: 0;
- width: 100%;
- height: 100vh;
- background: rgba(0, 0, 0, 0.5);
- z-index: 1000;
- display: flex;
- align-items: center;
- justify-content: center;
- z-index: 99999;
- }
- .data-popup-container {
- width: 70%;
- max-width: 600rpx;
- display: flex;
- flex-direction: column;
- align-items: flex-end;
- }
- .data-popup-container .popup-close {
- width: 54rpx;
- height: 54rpx;
- }
- .popup-main {
- width: 100%;
- margin-top: 50rpx;
- padding-top: 60rpx;
- padding-bottom: 70rpx;
- background: #ffffff;
- border-radius: 12rpx;
- }
- .popup-title {
- font-size: 32rpx;
- font-family: 'PingFang SC, PingFang SC-Bold';
- font-weight: 700;
- text-align: center;
- color: #1a1a1a;
- margin-bottom: 40rpx;
- }
- .popup-content {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- font-size: 32rpx;
- font-weight: 400;
- text-align: center;
- color: #3f454e;
- margin-bottom: 52rpx;
- }
- .popup-footer {}
- .popup-footer .btn {
- width: 320rpx;
- height: 80rpx;
- text-align: center;
- line-height: 80rpx;
- background: #ffdc2f;
- border-radius: 40rpx;
- font-size: 32rpx;
- font-family: 'PingFang SC, PingFang SC-Regular';
- font-weight: 400;
- color: #333333;
- }
|