/* pages/profile/index/index.wxss */ .container { min-height: 100vh; background-color: #F5F5F5; } .profile-header { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); padding: 80rpx 32rpx 60rpx; display: flex; align-items: center; } .avatar { width: 120rpx; height: 120rpx; border-radius: 50%; background: rgba(255, 255, 255, 0.3); display: flex; align-items: center; justify-content: center; margin-right: 32rpx; overflow: hidden; } .avatar-img { width: 100%; height: 100%; } .user-info { flex: 1; } .username { font-size: 36rpx; font-weight: bold; color: #fff; margin-bottom: 12rpx; } .user-role { font-size: 26rpx; color: rgba(255, 255, 255, 0.8); } .menu-section { margin: 24rpx 32rpx; background: #fff; border-radius: 16rpx; overflow: hidden; box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.05); } .version-info { text-align: center; padding: 48rpx 0; font-size: 24rpx; color: #999; }