index.less 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. .index {
  2. background-color: #f9f9f9;
  3. padding: 30px 16px;
  4. min-height: 100vh;
  5. box-sizing: border-box;
  6. .record-list {
  7. background-color: #fff;
  8. padding: 0 17px;
  9. border-radius: 20px;
  10. overflow: hidden;
  11. .record-item {
  12. display: flex;
  13. justify-content: space-between;
  14. align-items: center;
  15. height: 100px;
  16. border-bottom: 1px solid #D8D8D8;
  17. &:last-child {
  18. border-bottom: none;
  19. }
  20. .left {
  21. display: flex;
  22. align-items: center;
  23. .icon {
  24. height: 52px;
  25. width: 52px;
  26. margin-right: 10px;
  27. }
  28. .month {
  29. color: #444444;
  30. font-size: 28px;
  31. }
  32. }
  33. .right {
  34. .amount {
  35. color: #666666;
  36. font-size: 28px;
  37. font-weight: 500;
  38. }
  39. }
  40. }
  41. }
  42. }