| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- .pay-result {
- display: flex;
- flex-direction: column;
- align-items: center;
- width: 100%;
- }
- .pay-result .pay-status {
- margin-top: 100rpx;
- font-size: 48rpx;
- line-height: 72rpx;
- font-weight: bold;
- color: #333333;
- display: flex;
- align-items: center;
- }
- .pay-result .pay-status text {
- padding-left: 12rpx;
- }
- .pay-result .pay-money {
- color: #666666;
- font-size: 28rpx;
- line-height: 48rpx;
- margin-top: 28rpx;
- display: flex;
- align-items: baseline;
- }
- .pay-result .pay-money .pay-money__price {
- font-size: 36rpx;
- line-height: 48rpx;
- color: #fa4126;
- }
- .pay-result .btn-wrapper {
- margin-top: 48rpx;
- padding: 12rpx 32rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- width: 100%;
- box-sizing: border-box;
- }
- .pay-result .btn-wrapper .status-btn {
- height: 88rpx;
- width: 334rpx;
- border-radius: 44rpx;
- border: 2rpx solid #fa4126;
- color: #fa4126;
- font-size: 28rpx;
- font-weight: bold;
- line-height: 88rpx;
- text-align: center;
- }
|