recharge.less 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. .recharge-record__wrap {
  2. flex-direction: column;
  3. .user-account__wrap {
  4. flex-direction: column;
  5. border-bottom: 12px solid #f7f7f7;
  6. .title-bar {
  7. margin: 35px 0;
  8. align-items: center;
  9. .title {
  10. font-size: 28px;
  11. color: #3284ff;
  12. }
  13. .border-bar {
  14. width: 6px;
  15. height: 100%;
  16. background-color: #3284ff;
  17. border-radius: 4px;
  18. margin-right: 20px;
  19. }
  20. }
  21. .balance-bar {
  22. justify-content: space-between;
  23. align-items: center;
  24. padding: 0 40px;
  25. margin-bottom: 34px;
  26. .balance {
  27. text {
  28. font-size: 24px;
  29. color: #333;
  30. }
  31. .balance-number {
  32. color: #ff6060;
  33. font-weight: bold;
  34. font-size: 32px;
  35. }
  36. }
  37. .pay-btn {
  38. background-color: #ff6060;
  39. color: #fff;
  40. font-size: 26px;
  41. text-align: center;
  42. width: 180px;
  43. height: 60px;
  44. line-height: 60px;
  45. border-radius: 6px;
  46. }
  47. }
  48. }
  49. .recharge-list__wrap {
  50. border-bottom: 0;
  51. }
  52. .recharge-list {
  53. flex-direction: column;
  54. .recharge-item {
  55. justify-content: space-between;
  56. align-items: center;
  57. margin: 24px 24px 0;
  58. border-bottom: 2px solid #f7f7f7;
  59. .item-info {
  60. flex: 1;
  61. flex-direction: column;
  62. justify-content: flex-start;
  63. align-items: flex-start;
  64. .item-name,
  65. .item-number {
  66. font-size: 24px;
  67. color: #999;
  68. }
  69. .item-number {
  70. margin: 10px 0;
  71. }
  72. .item-pay {
  73. padding-bottom: 20px;
  74. text {
  75. font-size: 24px;
  76. color: #333;
  77. }
  78. .pay-number {
  79. font-size: 36px;
  80. font-weight: bold;
  81. color: #ff6060;
  82. }
  83. }
  84. }
  85. .item-status {
  86. font-size: 24px;
  87. color: #ff6060;
  88. }
  89. .paid {
  90. color: greenyellow;
  91. }
  92. }
  93. }
  94. }