40 lines
596 B
Plaintext
40 lines
596 B
Plaintext
.box {
|
|
width: 750rpx;
|
|
padding: 23rpx;
|
|
overflow: hidden;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.box .user {
|
|
box-sizing: border-box;
|
|
width: 704rpx;
|
|
height: 131rpx;
|
|
display: flex;
|
|
border-bottom: 1rpx solid #EEEEEE;
|
|
align-items: center;
|
|
}
|
|
|
|
.box .user .head {
|
|
width: 84rpx;
|
|
height: 84rpx;
|
|
border-radius: 10rpx;
|
|
margin-right: 18rpx;
|
|
background-color: #0f0;
|
|
}
|
|
|
|
.box .user .info {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-around;
|
|
}
|
|
|
|
.box .user .info .name {
|
|
font-size: 30rpx;
|
|
color: #333;
|
|
}
|
|
|
|
.box .user .info .text {
|
|
font-size: 20rpx;
|
|
color: #999;
|
|
}
|