55 lines
901 B
Plaintext
55 lines
901 B
Plaintext
/* pages/my/index/index.wxss */
|
|
.container {
|
|
padding: 0;
|
|
background-color: #f5f5f5;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
/* 用户信息卡片 */
|
|
.user-card{
|
|
text-align: center;
|
|
padding:220rpx 0 60rpx 0;
|
|
}
|
|
.avatar {
|
|
width: 140rpx;
|
|
height: 140rpx;
|
|
border-radius: 50%;
|
|
vertical-align: middle;
|
|
}
|
|
.user-card .nickname{
|
|
margin-top:40rpx;
|
|
}
|
|
|
|
.signature {
|
|
font-size: 28rpx;
|
|
color: #999;
|
|
display: block;
|
|
}
|
|
|
|
.share{
|
|
width:auto!important;
|
|
margin:40rpx 20rpx 20rpx 20rpx!important;
|
|
color: var(--main-font-color);
|
|
padding:0;
|
|
font-weight: normal;
|
|
line-height: 1;
|
|
}
|
|
.share .cell-bd{
|
|
flex-direction: column;
|
|
align-items:flex-start;
|
|
justify-content: center;
|
|
padding:20rpx 0;
|
|
}
|
|
.share .cell-bd .title{
|
|
font-weight: bold;
|
|
}
|
|
.share .cell-bd .tips{
|
|
font-size: 26rpx;
|
|
color: #666;
|
|
margin-top:30rpx;
|
|
}
|
|
.share .count{
|
|
color:var(--main-color);
|
|
margin:0 10rpx;
|
|
font-weight: bold;
|
|
} |