38 lines
687 B
SCSS
38 lines
687 B
SCSS
.content {
|
|
background-color: #fff;
|
|
width: 750rpx;
|
|
// height: ;
|
|
padding-bottom: 33rpx;
|
|
|
|
.aggregate {
|
|
display: flex;
|
|
box-sizing: border-box;
|
|
padding: 30rpx;
|
|
justify-content: flex-end;
|
|
font-size: 22rpx;
|
|
color: #999;
|
|
height: 78rpx;
|
|
border-bottom: 1rpx solid #f2f2f2;
|
|
|
|
> text {
|
|
color: #333;
|
|
margin: 0 5rpx;
|
|
}
|
|
}
|
|
.message {
|
|
display: flex;
|
|
padding: 0 30rpx;
|
|
justify-content: space-between;
|
|
font-size: 26rpx;
|
|
color: #333;
|
|
align-items: center;
|
|
height: 77rpx;
|
|
border-bottom: 1rpx solid #f2f2f2;
|
|
}
|
|
.leave {
|
|
display: flex;
|
|
height: 77rpx;
|
|
padding: 0 30rpx;
|
|
align-items: center;
|
|
}
|
|
} |