50 lines
658 B
Plaintext
50 lines
658 B
Plaintext
page{
|
|
background-color: #F6F6F6;
|
|
}
|
|
.container{
|
|
width: 100vw;
|
|
}
|
|
.item_list{
|
|
width: 92vw;
|
|
margin: 20rpx auto;
|
|
background-color: #fff;
|
|
border-radius: 20rpx;
|
|
}
|
|
|
|
|
|
|
|
.item{
|
|
display: flex;
|
|
padding: 20rpx;
|
|
flex-direction: column;
|
|
}
|
|
.item:not(:last-child){
|
|
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;
|
|
} |