40 lines
557 B
Plaintext
40 lines
557 B
Plaintext
/* pages/today/index.wxss */
|
|
.top-wrap {
|
|
position: fixed;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
background-color: #ffffff;
|
|
z-index: 99;
|
|
box-shadow: 0 0 20rpx -5rpx rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
swiper {
|
|
height: 100vh;
|
|
}
|
|
|
|
.cells {
|
|
background: #ffffff;
|
|
margin-top: 20rpx;
|
|
}
|
|
|
|
.cell {
|
|
padding: 20rpx;
|
|
}
|
|
|
|
.cell:not(:last-child) {
|
|
border-bottom: 1rpx solid #ebedf0;
|
|
}
|
|
|
|
.cell .name {
|
|
display: flex;
|
|
height: 50rpx;
|
|
font-size: 35rpx;
|
|
margin-bottom: 12rpx;
|
|
}
|
|
|
|
.cell .date {
|
|
color: #999999;
|
|
font-size: 24rpx;
|
|
}
|