income-details.wxss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. /* pages/income-details/income-details.wxss */
  2. page {
  3. background: #fff;
  4. }
  5. /* 底色白色 */
  6. /* .income-detail {
  7. padding-bottom: 20rpx;
  8. border-top: 1rpx solid #e1e1e1;
  9. background: #fff;
  10. box-shadow: 0 4px 10px 0 rgba(83, 83, 83, 0.288);
  11. } */
  12. /* 卡片 */
  13. .income-detail {
  14. padding-bottom:20rpx;
  15. border-top:1rpx solid #e1e1e1;
  16. /* background:#3a86b9; */
  17. /* background:#e43130; */
  18. box-shadow:0 4px 10px 0 rgba(83, 83, 83, 0.288);
  19. border-radius:30rpx;
  20. width:96%;
  21. margin: 10rpx auto 0;
  22. color: #ffffff;
  23. background-image: linear-gradient(#323444 20%, #565969 80%);
  24. }
  25. .gather-income {
  26. padding: 20rpx 0;
  27. text-align: center;
  28. }
  29. .gather-income .title {
  30. font-size: 28rpx;
  31. margin-bottom: 20rpx;
  32. }
  33. .number {
  34. display: inline-block;
  35. margin: auto;
  36. text-align: center;
  37. background: #fff;
  38. /* color: #3a86b9; */
  39. color: #bea379;
  40. padding: 10rpx 30rpx;
  41. padding-top: 14rpx;
  42. border-radius: 50rpx;
  43. line-height: 1em;
  44. /* border: 1rpx solid #fff; */
  45. }
  46. .income-item {
  47. display: flex;
  48. justify-content: space-around;
  49. margin-top: 30rpx;
  50. margin-bottom: 30rpx;
  51. }
  52. .items {
  53. width: 50%;
  54. text-align: center;
  55. font-size: 28rpx;
  56. border-right: 1rpx solid #bea379;
  57. }
  58. .items > view {
  59. line-height: 2em;
  60. }
  61. .items:last-child {
  62. border: none;
  63. }
  64. .block-title {
  65. display: flex;
  66. justify-content: space-between;
  67. padding: 0 30rpx;
  68. font-size: 28rpx;
  69. height: 70rpx;
  70. line-height: 70rpx;
  71. margin-top: 30rpx;
  72. background: rgb(247, 247, 247);
  73. border-top: 1rpx solid #f0f0f0;
  74. border-bottom: 1rpx solid #f0f0f0;
  75. }
  76. .block-lists .list-item {
  77. padding: 10rpx 0;
  78. }
  79. .block-lists .list-item:nth-child(2n) {
  80. background: #f4f4f4;
  81. }
  82. .block-lists .list-item .tit {
  83. display: flex;
  84. padding: 10rpx 30rpx;
  85. font-size: 28rpx;
  86. justify-content: space-between;
  87. }
  88. .block-lists .list-item .tit .origin {
  89. flex: 1;
  90. }
  91. .block-lists .list-item .tit .income-num {
  92. text-align: right;
  93. color: #eb2444;
  94. display: flex;
  95. flex-direction: column;
  96. justify-content: space-between
  97. }
  98. .income-fail{
  99. color: #666;
  100. }
  101. .block-lists .list-item .tit .income-num .invalid-num {
  102. color: #999;
  103. }
  104. .block-lists .list-item .date {
  105. font-size: 22rpx;
  106. color: #999;
  107. padding-top: 10rpx;
  108. }
  109. .loading, .empty {
  110. text-align: center;
  111. font-size: 28rpx;
  112. width: 100%;
  113. height: 80rpx;
  114. line-height: 80rpx;
  115. color: #666;
  116. }
  117. .origin-status{
  118. font-size: 22rpx;
  119. }