1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- .calendar-item{
- display: flex;
- gap: 28rpx;
- }
- .item-lf{
- background: #FFC200;
- border-radius: 8rpx;
- width: 184rpx;
- height: 160rpx;
- position: relative;
- }
- .item-ri{
- flex: 1;
- height: 160rpx;
- background: #DD2E28;
- border-radius: 8rpx;
- position: relative;
- }
- .item-img{
- position: relative;
- }
- .img-lf,.img-ri{
- position: absolute;
- width: 16rpx;
- height: 38rpx;
- top: -18rpx;
- }
- .img-lf{
- left: 16rpx;
- }
- .img-ri{
- right: 16rpx;
- }
- .item-num{
- font-family: AlimamaShuHeiTi, AlimamaShuHeiTi;
- font-weight: bold;
- font-size: 52rpx;
- color: #FFFFFF;
- position: absolute;
- top: 40%;
- left: 50%;
- transform: translate(-50%,-50%);
- letter-spacing: 2rpx;
- width: 100%;
- text-align: center;
- }
- .colon{
- margin: 0 14rpx;
- }
- .item-day{
- position: absolute;
- background-color: rgba(0,0,0,0.25);
- border-radius: 0rpx 0rpx 8rpx 8rpx;
- bottom: 0;
- left: 0;
- right: 0;
- font-family: PingFangSC, PingFang SC;
- font-weight: 600;
- font-size: 24rpx;
- color: #FFFFFF;
- padding: 6rpx 0;
- text-align: center;
- display: flex;
- justify-content: space-evenly;
- }
|