33 lines
461 B
Plaintext
33 lines
461 B
Plaintext
.item{
|
|
display: flex;
|
|
padding: 20rpx;
|
|
flex-direction: column;
|
|
border-bottom: 1px solid #E7E7E7;
|
|
}
|
|
.top{
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
flex: 1;
|
|
}
|
|
.name{
|
|
flex: 1;
|
|
font-size: 30rpx;
|
|
color: #666666;
|
|
}
|
|
.start{
|
|
flex: 1;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
}
|
|
.content{
|
|
flex: 2;
|
|
font-size: 34rpx;
|
|
color: #333333;
|
|
margin: 20rpx 0;
|
|
}
|
|
.date{
|
|
flex: 1;
|
|
font-size: 28rpx;
|
|
color: #666666;
|
|
} |