123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- .number {
- font-size: 50rpx;
- font-weight: bold;
- color: #303133;
- }
- .number-detail {
- margin-top: 10rpx;
- font-size: 30rpx;
- color: #909399;
- }
- .state-box {
- display: flex;
- align-items: center;
- height: 200rpx;
- width: 100%;
- }
- .state-box .state {
- display: flex;
- align-items: center;
- justify-content: center;
- border-radius: 100%;
- margin: 20rpx;
- height: 150rpx;
- width: 150rpx;
- }
- .state-box .state .state-text {
- font-size: 32rpx;
- font-weight: bold;
- color: #FFF;
- }
- .state-box .msg-box {
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- height: 150rpx;
- width: auto;
- }
- .state-box .msg-box .msg-text {
- color: #303133;
- font-weight: bold;
- font-size: 36rpx;
- margin-left: 15rpx;
- }
- .calendar-container {
- height: 100%;
- width: 100%;
- background-color: #FFF;
- margin: 0 auto;
- box-sizing: border-box;
- border-radius: 12rpx;
- }
- .image {
- margin-left: auto;
- margin-right: 20rpx;
- width: 200rpx;
- height: 200rpx;
- border-radius: 12rpx;
- background-size: 100%;
- background-repeat: no-repeat;
- }
- .box_tag {
- margin-right: 20rpx;
- height: 100%;
- width: 10rpx;
- background-color: #303133;
- z-index: 99;
- }
- .clock-stats {
- display: flex;
- align-items: center;
- justify-content: space-around;
- height: 180rpx;
- margin-bottom: 20rpx;
- }
|