monthly.scss 2.1 KB

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