You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
475 B
26 lines
475 B
3 years ago
|
.timelist {
|
||
|
width: 686rpx;
|
||
|
height: 80rpx;
|
||
|
line-height: 80rpx;
|
||
|
margin: 32rpx;
|
||
|
border-radius: 4rpx;
|
||
|
display: grid;
|
||
|
grid-template-columns: repeat(4,1fr);
|
||
|
grid-gap: 16rpx;
|
||
|
background-color: #fff;
|
||
|
}
|
||
|
|
||
|
.timelist view {
|
||
|
text-align: center;
|
||
|
color: #999999;
|
||
|
font-size: 24rpx;
|
||
|
margin: 8rpx;
|
||
|
}
|
||
|
|
||
|
.timelist .active {
|
||
|
color: #027AFF;
|
||
|
background-color: #f9f9f9;
|
||
|
border-radius: 4rpx;
|
||
|
line-height: 64rpx;
|
||
|
height: 64rpx;
|
||
|
}
|