40 lines
611 B
Plaintext
40 lines
611 B
Plaintext
page{
|
|
background-color: #F4F4F4;
|
|
}
|
|
.container{
|
|
width: 100vw;
|
|
padding-top: 20rpx;
|
|
}
|
|
.list{
|
|
width: 92vw;
|
|
margin: 0 auto;
|
|
}
|
|
.item{
|
|
display: flex;
|
|
flex-direction: column;
|
|
background-color: #fff;
|
|
padding: 20rpx;
|
|
border-radius: 10rpx;
|
|
margin-bottom: 20rpx;
|
|
}
|
|
.item_top{
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
.item_img{
|
|
display: flex;
|
|
flex-direction: row-reverse;
|
|
align-items: center;
|
|
font-size: 34rpx;
|
|
color: #333333;
|
|
}
|
|
.item_date{
|
|
font-size: 26rpx;
|
|
color: #999999;
|
|
}
|
|
.item_content{
|
|
margin-top: 20rpx;
|
|
font-size: 24rpx;
|
|
color: #666666;
|
|
} |