applyRefundDetails.scss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. .refund-details {
  2. background-color: #f5f5f5;
  3. padding-bottom: 100rpx;
  4. min-height: calc(100vh - 44px);
  5. .refund-details-list {
  6. background-color: #fff;
  7. padding: 30rpx 0;
  8. .refund-details-list-item {
  9. display: flex;
  10. padding: 0 17px;
  11. line-height: 70rpx;
  12. .rdli-label {
  13. width: 150rpx;
  14. text-align: right;
  15. }
  16. .rdli-content {
  17. width: calc(100% - 150rpx);
  18. }
  19. .rdli-font {
  20. color: #fa6400;
  21. }
  22. .image {
  23. width: 100%;
  24. margin-top: 20rpx;
  25. image {
  26. width: 100%;
  27. }
  28. }
  29. }
  30. }
  31. .apply-button {
  32. padding: 0 50rpx;
  33. margin-top: 50rpx;
  34. }
  35. .refund-details-status {
  36. background-color: #fff;
  37. padding: 0 17px;
  38. margin-top: 50rpx;
  39. .refund-details-status-item {
  40. display: flex;
  41. line-height: 70rpx;
  42. view {
  43. &:first-child {
  44. width: 150rpx;
  45. text-align: right;
  46. }
  47. &:last-child {
  48. width: calc(100% - 150rpx);
  49. }
  50. }
  51. }
  52. }
  53. }
  54. /* 订单详情 状态支付退款成功 */
  55. .order-details {
  56. padding: 0 20px;
  57. .order-details-content {
  58. .order-details-content-header {
  59. text-align: center;
  60. margin-top: 54rpx;
  61. font-size: 50rpx;
  62. font-weight: 600;
  63. image {
  64. width: 90rpx;
  65. height: 90rpx;
  66. }
  67. }
  68. .order-details-content-item {
  69. display: flex;
  70. line-height: 70rpx;
  71. view {
  72. &:first-child {
  73. width: 150rpx;
  74. color: #2a2a2a;
  75. }
  76. &:last-child {
  77. width: calc(100% - 150rpx);
  78. text-align: right;
  79. color: #6e6e6e;
  80. }
  81. }
  82. }
  83. }
  84. }