41 lines
661 B
Plaintext
41 lines
661 B
Plaintext
/* pages/msg/index/index.wxss */
|
|
page {
|
|
background-color: #f5f5f5;
|
|
}
|
|
|
|
.item {
|
|
margin: 20rpx;
|
|
padding: 16rpx;
|
|
background-color: white;
|
|
position: relative;
|
|
border-radius: 10rpx;
|
|
}
|
|
|
|
.item .header .title {
|
|
font-size: 30rpx;
|
|
color: #222222;
|
|
}
|
|
|
|
.item .header .point {
|
|
width: 8rpx;
|
|
height: 35rpx;
|
|
margin-right: 16rpx;
|
|
border-radius: 10rpx;
|
|
background-color: var(--blue);
|
|
}
|
|
|
|
.item .header .time {
|
|
font-size: 26rpx;
|
|
color: #666666;
|
|
}
|
|
|
|
.item .content {
|
|
font-size: 28rpx;
|
|
color: #333333;
|
|
margin-top: 15rpx;
|
|
display: -webkit-box;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
-webkit-line-clamp: 2;
|
|
-webkit-box-orient: vertical;
|
|
} |