index.wxss 1003 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. .pay-result {
  2. display: flex;
  3. flex-direction: column;
  4. align-items: center;
  5. width: 100%;
  6. }
  7. .pay-result .pay-status {
  8. margin-top: 100rpx;
  9. font-size: 48rpx;
  10. line-height: 72rpx;
  11. font-weight: bold;
  12. color: #333333;
  13. display: flex;
  14. align-items: center;
  15. }
  16. .pay-result .pay-status text {
  17. padding-left: 12rpx;
  18. }
  19. .pay-result .pay-money {
  20. color: #666666;
  21. font-size: 28rpx;
  22. line-height: 48rpx;
  23. margin-top: 28rpx;
  24. display: flex;
  25. align-items: baseline;
  26. }
  27. .pay-result .pay-money .pay-money__price {
  28. font-size: 36rpx;
  29. line-height: 48rpx;
  30. color: #fa4126;
  31. }
  32. .pay-result .btn-wrapper {
  33. margin-top: 48rpx;
  34. padding: 12rpx 32rpx;
  35. display: flex;
  36. align-items: center;
  37. justify-content: space-between;
  38. width: 100%;
  39. box-sizing: border-box;
  40. }
  41. .pay-result .btn-wrapper .status-btn {
  42. height: 88rpx;
  43. width: 334rpx;
  44. border-radius: 44rpx;
  45. border: 2rpx solid #fa4126;
  46. color: #fa4126;
  47. font-size: 28rpx;
  48. font-weight: bold;
  49. line-height: 88rpx;
  50. text-align: center;
  51. }