haomingming 3f40c4c237 优化
2023-04-08 09:51:45 +08:00

37 lines
540 B
Plaintext

.item{
display: flex;
padding: 20rpx;
flex-direction: column;
background-color: aqua;
}
.item:not(:last-child){
border-bottom: 1px solid #E7E7E7;
background-color: brown;
}
.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;
}