61 lines
940 B
Plaintext
61 lines
940 B
Plaintext
/* pages/userInfo/index.wxss */
|
|
|
|
.container {
|
|
padding: 190rpx 30rpx 30rpx 30rpx;
|
|
min-height: calc(100vh - 190rpx);
|
|
}
|
|
|
|
.list {
|
|
margin-bottom: 30rpx;
|
|
background: #1a191e;
|
|
border-radius: 20rpx;
|
|
}
|
|
|
|
.list .cell {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
min-height: 90rpx;
|
|
padding: 0 30rpx;
|
|
border-bottom: 2rpx solid #212025;
|
|
}
|
|
|
|
.list .cell.avatar {
|
|
height: 120rpx;
|
|
}
|
|
|
|
.list .cell.unLine {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.list .cell .title {
|
|
font-size: 24rpx;
|
|
color: rgba(255, 255, 255, 0.6);
|
|
}
|
|
|
|
.list .cell .right-cell {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
align-items: center;
|
|
}
|
|
|
|
.list .cell .avatar-img {
|
|
width: 80rpx;
|
|
height: 80rpx;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.list .cell .right-arrow {
|
|
width: 12rpx;
|
|
height: 22rpx;
|
|
margin-left: 24rpx;
|
|
}
|
|
|
|
.list .cell .message {
|
|
flex: 1;
|
|
margin: 20rpx 0;
|
|
text-align: right;
|
|
color: #FFF;
|
|
font-size: 24rpx;
|
|
line-height: 30rpx;
|
|
} |