| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- .success-page {
- height: 100vh;
- background: #fff;
- display: flex;
- flex-direction: column;
- align-items: center;
- padding: 200rpx 40rpx 0;
- box-sizing: border-box;
- }
- .success-title {
- font-size: 64rpx;
- font-weight: 600;
- color: #111;
- }
- .success-sub {
- margin-top: 26rpx;
- font-size: 32rpx;
- color: #333;
- }
- .success-footer {
- width: 100%;
- position: absolute;
- left: 0;
- right: 0;
- bottom: 0;
- padding: 8rpx 40rpx calc(10rpx + env(safe-area-inset-bottom));
- box-sizing: border-box;
- }
- .finish-btn {
- width: 100%;
- height: 88rpx;
- line-height: 88rpx;
- text-align: center;
- border-radius: 12rpx;
- color: #fff;
- background: #2f6df6;
- font-size: 34rpx;
- }
|