calendar.wxss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. /* pages/clock/clock-tongji/calendar/calendar.wxss */
  2. .calendar {
  3. font-size: 30rpx;
  4. box-sizing: border-box;
  5. }
  6. .title,
  7. .calendar-content {
  8. overflow: hidden;
  9. padding-bottom: 8rpx;
  10. }
  11. .title-item {
  12. width: 72rpx;
  13. height: 72rpx;
  14. font-size: 26rpx;
  15. font-family: PingFangSC-Regular, PingFang SC;
  16. font-weight: 400;
  17. color: #999999;
  18. margin-right: 30rpx;
  19. float: left;
  20. display: flex;
  21. align-items: center;
  22. justify-content: center;
  23. }
  24. .title-item:last-child {
  25. margin-right: 0;
  26. }
  27. .calendar-item {
  28. width: 72rpx;
  29. height: 72rpx;
  30. margin-top: 15rpx;
  31. font-family: PingFangSC-Semibold, PingFang SC;
  32. font-weight: 600;
  33. color: #000;
  34. float: left;
  35. margin-right: 30rpx;
  36. display: flex;
  37. align-items: center;
  38. justify-content: center;
  39. position: relative;
  40. }
  41. .calendar-item:nth-child(7n) {
  42. margin-right: 0;
  43. }
  44. .display-space-between {
  45. display: flex;
  46. justify-content: space-between;
  47. align-items: center;
  48. flex-wrap: wrap;
  49. }
  50. .text-gray {
  51. color: #999;
  52. }
  53. .text-blue {
  54. width: 72rpx;
  55. height: 72rpx;
  56. font-weight: 600;
  57. color: #FFFFFF;
  58. background: #0177FF;
  59. border-radius: 100%;
  60. }
  61. .text-yellow {
  62. width: 72rpx;
  63. height: 72rpx;
  64. font-weight: 600;
  65. color: #FFFFFF;
  66. background: #FD7235;
  67. border-radius: 100%;
  68. }
  69. .point {
  70. height: 10rpx;
  71. width: 10rpx;
  72. position: absolute;
  73. left: 30rpx;
  74. bottom: -8rpx;
  75. border-radius: 100%;
  76. }
  77. .shortage {
  78. background-color: #FD7235;
  79. border: 2rpx solid #FFFFFF;
  80. }
  81. .all {
  82. background-color: #0177FF;
  83. border: 2rpx solid #FFFFFF;
  84. }