51 lines
864 B
SCSS
51 lines
864 B
SCSS
.towline {
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
display: -webkit-box;
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
-webkit-line-clamp: 2;
|
|
}
|
|
.message {
|
|
padding: 35rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
border-bottom: 1rpx solid #F2F2F2;
|
|
.image {
|
|
width: 141rpx;
|
|
height: 150rpx;
|
|
background-color: #000;
|
|
margin-left: 34rpx;
|
|
}
|
|
.introduce {
|
|
margin-left: 32rpx;
|
|
height: 120rpx;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
width: 362rpx;
|
|
.title {
|
|
font-size: 28rpx;
|
|
color: #333;
|
|
}
|
|
.count {
|
|
font-size: 24rpx;
|
|
color: #999;
|
|
display: flex;
|
|
> view {
|
|
margin-right: 27rpx;
|
|
}
|
|
}
|
|
}
|
|
.parameter {
|
|
width: 150rpx;
|
|
height: 120rpx;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
align-items: flex-end;
|
|
}
|
|
} |