63 lines
888 B
Plaintext
63 lines
888 B
Plaintext
|
|
.container {
|
|
padding: 30rpx;
|
|
}
|
|
.user-card {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 40rpx;
|
|
background-color: #fff;
|
|
border-radius: 20rpx;
|
|
margin-bottom: 30rpx;
|
|
}
|
|
.avatar {
|
|
width: 120rpx;
|
|
height: 120rpx;
|
|
border-radius: 50%;
|
|
margin-right: 30rpx;
|
|
}
|
|
.info {
|
|
flex: 1;
|
|
}
|
|
.nickname {
|
|
font-size: 36rpx;
|
|
font-weight: bold;
|
|
margin-bottom: 10rpx;
|
|
}
|
|
.welcome {
|
|
font-size: 28rpx;
|
|
color: #999;
|
|
}
|
|
.menu-list {
|
|
background-color: #fff;
|
|
border-radius: 20rpx;
|
|
padding: 0 30rpx;
|
|
}
|
|
.menu-item {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 30rpx 0;
|
|
border-bottom: 1rpx solid #f5f5f5;
|
|
}
|
|
.menu-left {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.menu-text {
|
|
margin-left: 20rpx;
|
|
font-size: 32rpx;
|
|
}
|
|
.logout-btn {
|
|
margin-top: 60rpx;
|
|
width: 100%;
|
|
}
|
|
.version-number {
|
|
position: absolute;
|
|
top: 30rpx;
|
|
right: 30rpx;
|
|
font-size: 24rpx;
|
|
color: #999;
|
|
}
|
|
|