You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
564 B
29 lines
564 B
|
1 year ago
|
/* pages/user/profile/index.wxss */
|
||
|
|
.profile-item {
|
||
|
|
display: flex;
|
||
|
|
justify-content: space-between;
|
||
|
|
align-items: center;
|
||
|
|
font-size: 30rpx;
|
||
|
|
color: #333;
|
||
|
|
height: 118rpx;
|
||
|
|
margin: 0 30rpx;
|
||
|
|
border-bottom: 1rpx solid #D8D8D8;
|
||
|
|
}
|
||
|
|
.profile-item text {
|
||
|
|
font-weight: 500;
|
||
|
|
flex-shrink: 0;
|
||
|
|
}
|
||
|
|
.profile-item .info {
|
||
|
|
flex: 1;
|
||
|
|
text-align: right;
|
||
|
|
}
|
||
|
|
.profile-item .iconfont {
|
||
|
|
flex-shrink: 0;
|
||
|
|
}
|
||
|
|
.profile-item .info image {
|
||
|
|
display: inline-block;
|
||
|
|
width: 80rpx;
|
||
|
|
height: 80rpx;
|
||
|
|
border-radius: 50%;
|
||
|
|
}
|
||
|
|
|