monthly.scss 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. page {
  2. background-color: #F6F6FF
  3. }
  4. .monthly {
  5. padding: 37rpx 40rpx;
  6. height: calc(100vh - 88rpx);
  7. overflow-y: scroll;
  8. .paging {
  9. padding: 37rpx 40rpx;
  10. }
  11. .monthly-list {
  12. .monthly-list-item {
  13. overflow: hidden;
  14. width: 100%;
  15. background-color: #fff;
  16. border-radius: 15rpx;
  17. margin-bottom: 20rpx;
  18. .monthly-list-item-top {
  19. display: flex;
  20. justify-content: space-between;
  21. padding: 26rpx 39rpx;
  22. border-bottom: solid 1px #DFDFDF;
  23. .mlit-left {
  24. view {
  25. &:first-child {
  26. font-size: 32rpx;
  27. color: #3A3A3A;
  28. font-family: PingFangSC-Semibold, PingFang SC;
  29. font-weight: 600;
  30. line-height: 45rpx;
  31. }
  32. &:last-child {
  33. color: #787878;
  34. font-size: 26rpx;
  35. font-family: PingFangSC-Regular, PingFang SC;
  36. font-weight: 400;
  37. line-height: 37rpx;
  38. }
  39. }
  40. }
  41. .mlit-right {
  42. line-height: 50rpx;
  43. text-align: center;
  44. border-radius: 5rpx;
  45. color: #858585;
  46. font-size: 24rpx;
  47. .mlit-right-item{
  48. padding: 0 15rpx;
  49. border: solid 1px #BDBDBD;
  50. }
  51. .mlit-right-item.fee-status{color: #FA6400;border-color: #FA6400;}
  52. .mlit-right-item + .mlit-right-item{margin-left: 10rpx;}
  53. }
  54. }
  55. .monthly-list-item-bottom {
  56. padding: 31rpx 39rpx;
  57. .mlib-item {
  58. display: flex;
  59. flex-direction: row;
  60. color: #595959;
  61. font-family: PingFangSC-Regular, PingFang SC;
  62. font-size: 26rpx;
  63. line-height: 40rpx;
  64. view {
  65. &:first-child {
  66. width: 20%;
  67. text-align: justify;
  68. text-align-last: justify;
  69. margin-right: 5rpx;
  70. }
  71. &:last-child {
  72. margin-left: 10rpx;
  73. }
  74. }
  75. &:last-child {
  76. view {
  77. &:last-child {
  78. color: #FA6400;
  79. }
  80. }
  81. }
  82. }
  83. }
  84. .button-wrap{
  85. border-top: 1px solid #DFDFDF;
  86. // padding: 26rpx 39rpx;
  87. .tool-btn{
  88. padding: 26rpx 39rpx;
  89. flex: 1;
  90. text-align: center;
  91. &-cancel{
  92. // background-color: red;
  93. }
  94. }
  95. }
  96. }
  97. }
  98. }