1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- .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;
- }
|