cashRecord.wxss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /* pages/cashRecord/cashRecord.wxss */
  2. Page {
  3. height: 100%;
  4. width: 100%;
  5. background-color: #f9f9fb;
  6. }
  7. .all {
  8. margin-left: 40rpx;
  9. margin-right: 40rpx;
  10. line-height: 100rpx;
  11. font-size: 28rpx;
  12. color: #878787;
  13. }
  14. .line, .bottom-line {
  15. height: 1px;
  16. background-color: #dddce1;
  17. }
  18. .bottom-line {
  19. margin-top: -1px;
  20. }
  21. .record-bg {
  22. background-color: white;
  23. height: 160rpx;
  24. width: 100%;
  25. display: flex;
  26. flex-direction: column;
  27. }
  28. .record-first-line, .record-second-line {
  29. margin-left: 40rpx;
  30. margin-right: 40rpx;
  31. display: flex;
  32. flex-direction: row;
  33. }
  34. .record-first-line {
  35. height: 50rpx;
  36. margin-top: auto;
  37. }
  38. .record-second-line {
  39. margin-top: 8rpx;
  40. margin-bottom: auto;
  41. }
  42. .record-to {
  43. font-size: 32rpx;
  44. color: #262626;
  45. text-align: left;
  46. margin-right: auto;
  47. line-height: 50rpx;
  48. }
  49. .record-memoy {
  50. font-size: 36rpx;
  51. color: #262626;
  52. font-weight: bold;
  53. text-align: right;
  54. margin-left: auto;
  55. line-height: 50rpx;
  56. }
  57. .record-time {
  58. font-size: 24rpx;
  59. color: #878787;
  60. text-align: left;
  61. margin-right: auto;
  62. }
  63. .record-status {
  64. font-size: 24rpx;
  65. text-align: right;
  66. margin-left: auto;
  67. }
  68. .record-line {
  69. margin-left: 40rpx;
  70. /* margin-top: auto; */
  71. height: 1px;
  72. background-color: #dddce1;
  73. }