monthly.scss 1.7 KB

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