book-min/miniprogram/pages/profile/index.wxss

70 lines
912 B
Plaintext
Raw Normal View History

2024-12-18 16:15:08 +08:00
.profile {
min-height: 100vh;
background: #f8f8f8;
}
.user-info {
background: #fff;
padding: 40rpx;
display: flex;
align-items: center;
}
.avatar {
width: 120rpx;
height: 120rpx;
border-radius: 50%;
}
.nickname {
margin-left: 30rpx;
font-size: 36rpx;
font-weight: bold;
}
.stats {
margin: 30rpx 0;
padding: 30rpx;
background: #fff;
display: flex;
justify-content: space-around;
}
.stats-item {
display: flex;
flex-direction: column;
align-items: center;
}
.stats-num {
font-size: 40rpx;
font-weight: bold;
color: #1989fa;
}
.stats-label {
margin-top: 10rpx;
font-size: 24rpx;
color: #666;
}
.menu-list {
background: #fff;
}
.menu-item {
display: flex;
justify-content: space-between;
align-items: center;
padding: 30rpx;
border-bottom: 1rpx solid #eee;
}
.menu-label {
font-size: 30rpx;
color: #333;
}
.menu-arrow {
color: #999;
}