40 lines
669 B
SCSS
40 lines
669 B
SCSS
|
.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;
|
||
|
}
|
||
|
}
|