You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

75 lines
1.5 KiB

3 weeks ago
  1. .expense-container.data-v-eb996adb {
  2. background-color: #f5f5f5;
  3. height: 100vh;
  4. }
  5. .top-bar.data-v-eb996adb {
  6. display: flex;
  7. align-items: center;
  8. padding: 30rpx 20rpx;
  9. background-color: #fff;
  10. border-bottom: 1px solid #eee;
  11. }
  12. .title.data-v-eb996adb {
  13. flex: 1;
  14. text-align: center;
  15. font-size: 34rpx;
  16. font-weight: bold;
  17. }
  18. .filter-bar.data-v-eb996adb {
  19. display: flex;
  20. background-color: #fff;
  21. padding: 15rpx 10rpx;
  22. border-bottom: 1px solid #eee;
  23. }
  24. .filter-item.data-v-eb996adb {
  25. display: inline-block;
  26. padding: 15rpx 25rpx;
  27. font-size: 26rpx;
  28. border-radius: 30rpx;
  29. margin: 0 5rpx;
  30. }
  31. .filter-item.active.data-v-eb996adb {
  32. background-color: #e6f7ff;
  33. color: #36bffa;
  34. }
  35. .list.data-v-eb996adb {
  36. padding: 20rpx;
  37. }
  38. .expense-item.data-v-eb996adb {
  39. background-color: #fff;
  40. border-radius: 16rpx;
  41. padding: 25rpx;
  42. margin-bottom: 20rpx;
  43. box-shadow: 0 5rpx 15rpx rgba(0, 0, 0, 0.05);
  44. }
  45. .item-header.data-v-eb996adb {
  46. display: flex;
  47. justify-content: space-between;
  48. margin-bottom: 20rpx;
  49. padding-bottom: 20rpx;
  50. border-bottom: 1px solid #f5f5f5;
  51. }
  52. .expense-type text.data-v-eb996adb {
  53. font-size: 30rpx;
  54. font-weight: bold;
  55. color: #333;
  56. }
  57. .expense-amount.data-v-eb996adb {
  58. font-size: 32rpx;
  59. font-weight: bold;
  60. color: #f5222d;
  61. }
  62. .item-body.data-v-eb996adb {
  63. display: flex;
  64. flex-direction: column;
  65. }
  66. .detail-item.data-v-eb996adb {
  67. display: flex;
  68. justify-content: space-between;
  69. padding: 15rpx 0;
  70. font-size: 28rpx;
  71. }
  72. .detail-label.data-v-eb996adb {
  73. color: #666;
  74. }