zdxiangqing.wxss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. .container4 {
  2. padding: 30rpx;
  3. background-color: rgba(242, 246, 250, 1);
  4. min-height: 100vh;
  5. display: flex;
  6. flex-direction: column;
  7. box-sizing: border-box;
  8. padding-top: 230rpx;
  9. }
  10. .custom-nav {
  11. position: fixed;
  12. top: 0;
  13. left: 0;
  14. right: 0;
  15. height: 88rpx;
  16. background-color: rgba(46, 130, 255, 1);
  17. display: flex;
  18. align-items: center;
  19. padding-top: 110rpx;
  20. z-index: 1000;
  21. }
  22. /* 固定返回按钮样式 */
  23. .back-icon {
  24. position: fixed;
  25. top: 120rpx;
  26. left: 25rpx;
  27. z-index: 999;
  28. width: 40rpx;
  29. height: 40rpx;
  30. }
  31. .nav-title {
  32. flex: 1;
  33. text-align: center;
  34. font-size: 34rpx;
  35. color: #fff;
  36. }
  37. .bill-detail-card {
  38. background-color: white;
  39. border-radius: 20rpx;
  40. margin: 10rpx;
  41. padding: 30rpx;
  42. box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.05);
  43. }
  44. .bill-date-row, .bill-row {
  45. display: flex;
  46. justify-content: space-between;
  47. padding: 20rpx 0;
  48. font-size: 28rpx;
  49. color: #333;
  50. }
  51. .divider {
  52. height: 1rpx;
  53. background-color: #eee;
  54. margin: 20rpx 0;
  55. }
  56. /* .total {
  57. font-weight: bold;
  58. font-size: 32rpx;
  59. color: #0080ff;
  60. } */
  61. .bill-card {
  62. background: #fff;
  63. border-radius: 16rpx;
  64. margin: 0rpx 2rpx 15rpx 2rpx;
  65. padding: 25rpx 24rpx 25rpx 24rpx;
  66. background: rgba(255, 255, 255, 1);
  67. }
  68. .bill-row {
  69. display: flex;
  70. justify-content: space-between;
  71. padding: 10rpx 0;
  72. }
  73. /* 列名样式 */
  74. .bill-row .label {
  75. color: #2e3038;
  76. font-size: 32rpx;
  77. font-weight: 400;
  78. }
  79. /* 数据值样式 */
  80. .bill-row .value {
  81. color: #686c80;
  82. font-size: 32rpx;
  83. font-weight: 400;
  84. }
  85. /* 所有金额数字的样式 */
  86. .value .amount {
  87. color: rgba(239, 93, 93, 1);
  88. }
  89. .divider {
  90. height: 2rpx;
  91. background: #e5e5e5;
  92. margin: 16rpx 0;
  93. }
  94. .total {
  95. font-size: 32rpx;
  96. }