| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- /* pages/clock/clock-tongji/calendar/calendar.wxss */
- .calendar {
- font-size: 30rpx;
- box-sizing: border-box;
- }
- .title,
- .calendar-content {
- overflow: hidden;
- }
- .title-item {
- width: 72rpx;
- height: 72rpx;
- font-size: 26rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #999999;
- margin-right: 30rpx;
- float: left;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .title-item:last-child {
- margin-right: 0;
- }
- .calendar-item {
- width: 72rpx;
- height: 72rpx;
- margin-top: 15rpx;
- font-family: PingFangSC-Semibold, PingFang SC;
- font-weight: 600;
- color: #000;
- float: left;
- margin-right: 30rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- position: relative;
- }
- .calendar-item:nth-child(7n) {
- margin-right: 0;
- }
- .display-space-between {
- display: flex;
- justify-content: space-between;
- align-items: center;
- flex-wrap: wrap;
- }
- .text-gray {
- color: #999;
- }
- .text-red {
- width: 72rpx;
- height: 72rpx;
- font-weight: 600;
- color: #FFFFFF;
- background: #0177FF;
- border-radius: 100%;
- }
- .point {
- height: 10rpx;
- width: 10rpx;
- position: absolute;
- left: 30rpx;
- bottom: -8rpx;
- border-radius: 100%;
- }
- .all {
- background-color: #FD7235;
- border: 2rpx solid #FFFFFF;
- }
- .shortage {
- background-color: #BCBCBC;
- border: 2rpx solid #FFFFFF;
- }
|