calendar.wxss 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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. }
  10. .title-item {
  11. width: 72rpx;
  12. height: 72rpx;
  13. font-size: 26rpx;
  14. font-family: PingFangSC-Regular, PingFang SC;
  15. font-weight: 400;
  16. color: #999999;
  17. margin-right: 30rpx;
  18. float: left;
  19. display: flex;
  20. align-items: center;
  21. justify-content: center;
  22. }
  23. .title-item:last-child {
  24. margin-right: 0;
  25. }
  26. .calendar-item {
  27. width: 72rpx;
  28. height: 72rpx;
  29. margin-top: 15rpx;
  30. font-family: PingFangSC-Semibold, PingFang SC;
  31. font-weight: 600;
  32. color: #000;
  33. float: left;
  34. margin-right: 30rpx;
  35. display: flex;
  36. align-items: center;
  37. justify-content: center;
  38. position: relative;
  39. }
  40. .calendar-item:nth-child(7n) {
  41. margin-right: 0;
  42. }
  43. .display-space-between {
  44. display: flex;
  45. justify-content: space-between;
  46. align-items: center;
  47. flex-wrap: wrap;
  48. }
  49. .text-gray {
  50. color: #999;
  51. }
  52. .text-red {
  53. width: 72rpx;
  54. height: 72rpx;
  55. font-weight: 600;
  56. color: #FFFFFF;
  57. background: #0177FF;
  58. border-radius: 100%;
  59. }
  60. .point {
  61. height: 10rpx;
  62. width: 10rpx;
  63. position: absolute;
  64. left: 30rpx;
  65. bottom: -8rpx;
  66. border-radius: 100%;
  67. }
  68. .all {
  69. background-color: #FD7235;
  70. border: 2rpx solid #FFFFFF;
  71. }
  72. .shortage {
  73. background-color: #BCBCBC;
  74. border: 2rpx solid #FFFFFF;
  75. }