statistics1.wxss 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /* pages/statistics/statistics.wxss */
  2. page {
  3. background: #f4f4f4;
  4. }
  5. .calendar {
  6. background-color: white; /*背景色为白色*/
  7. padding-top: 10rpx; /*上内边距为10px*/
  8. color: #38acff;
  9. border-radius: 15px; /*添加边框圆角*/
  10. border: 2rpx solid #38acff;
  11. -webkit-box-shadow: 0 0 10rpx #38acff;
  12. -moz-box-shadow: 0 0 10rpx #38acff;
  13. box-shadow: 0 0 10rpx #38acff;
  14. position: absolute;
  15. top: 50%;
  16. left: 50%;
  17. transform: translate(-50%, -50%);
  18. width: 90%;
  19. margin: 0 auto;
  20. z-index:9999;
  21. }
  22. .date {
  23. width: 90%;
  24. margin: 20rpx auto;
  25. background:#fff;
  26. padding:10rpx;
  27. box-sizing: border-box;
  28. border-radius: 10rpx;
  29. }
  30. .date text {
  31. font-size: 26rpx;
  32. }
  33. .search {
  34. text-align: center;
  35. }
  36. .search text {
  37. font-size: 26rpx;
  38. color: #fff;
  39. background: #18d5b9;
  40. padding: 8rpx 20rpx;
  41. border-radius: 10rpx;
  42. }
  43. .list {
  44. margin: 20rpx auto;
  45. width: 90%;
  46. }
  47. .income,.bike {
  48. border: 1rpx solid #efefef;
  49. font-size: 28rpx;
  50. border-radius: 10rpx;
  51. padding: 20rpx;
  52. margin-top: 15rpx;
  53. background: #fff;
  54. }
  55. .bike>view{
  56. display:flex;
  57. justify-content: space-between;
  58. align-items: center;
  59. }
  60. .income .title text {
  61. font-size: 28rpx;
  62. margin-bottom: 20rpx;
  63. }
  64. /* .income view{
  65. font-size:26rpx;
  66. margin-bottom:10rpx;
  67. } */
  68. .flex {
  69. display: flex;
  70. }
  71. .flex text {
  72. width: 50%;
  73. font-size: 26rpx;
  74. margin-bottom: 10rpx;
  75. color:#808080;
  76. }