58 lines
891 B
Plaintext
58 lines
891 B
Plaintext
/* components/aid/index.wxss */
|
|
|
|
.title {
|
|
padding-top: 30rpx;
|
|
padding-left: 30rpx;
|
|
display: flex;
|
|
}
|
|
|
|
.userInfoItem {
|
|
padding: 30rpx;
|
|
}
|
|
|
|
.userInfoItem .content {
|
|
display: flex;
|
|
align-items: center;
|
|
border-bottom: 1rpx solid #ccc;
|
|
}
|
|
|
|
.userInfo {
|
|
height: 200rpx;
|
|
margin-left: 30rpx;
|
|
flex: 1;
|
|
}
|
|
|
|
.userLevel {
|
|
margin-left: 30rpx;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.synopsis {
|
|
height: 80rpx;
|
|
overflow: hidden;
|
|
margin-top: 20rpx;
|
|
margin-bottom: 10rpx;
|
|
font-size: 32rpx;
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 2;
|
|
-webkit-box-orient: vertical;
|
|
}
|
|
|
|
.connect {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.userName {
|
|
width: 150rpx;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.userLevel {
|
|
width: 250rpx;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
} |