refund-success.scss 683 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. .success-page {
  2. height: 100vh;
  3. background: #fff;
  4. display: flex;
  5. flex-direction: column;
  6. align-items: center;
  7. padding: 200rpx 40rpx 0;
  8. box-sizing: border-box;
  9. }
  10. .success-title {
  11. font-size: 64rpx;
  12. font-weight: 600;
  13. color: #111;
  14. }
  15. .success-sub {
  16. margin-top: 26rpx;
  17. font-size: 32rpx;
  18. color: #333;
  19. }
  20. .success-footer {
  21. width: 100%;
  22. position: absolute;
  23. left: 0;
  24. right: 0;
  25. bottom: 0;
  26. padding: 8rpx 40rpx calc(10rpx + env(safe-area-inset-bottom));
  27. box-sizing: border-box;
  28. }
  29. .finish-btn {
  30. width: 100%;
  31. height: 88rpx;
  32. line-height: 88rpx;
  33. text-align: center;
  34. border-radius: 12rpx;
  35. color: #fff;
  36. background: #2f6df6;
  37. font-size: 34rpx;
  38. }