.container { background-color: #f5f5f5; min-height: 100vh; padding: 20rpx; } .user-info { background-color: #fff; display: flex; align-items: center; padding: 30rpx; border-radius: 10rpx; margin-bottom: 20rpx; box-shadow: 0 4rpx 8rpx rgba(0, 0, 0, 0.06); } .avatar { width: 100rpx; height: 100rpx; border-radius: 50%; margin-right: 20rpx; } .user-details { display: flex; flex-direction: column; } .nickname { font-size: 32rpx; font-weight: bold; color: #333; } .user-tip { font-size: 24rpx; color: #999; margin-top: 10rpx; } .settings-section { background-color: #fff; border-radius: 10rpx; margin-bottom: 20rpx; padding: 20rpx; box-shadow: 0 4rpx 8rpx rgba(0, 0, 0, 0.06); } .section-title { font-size: 32rpx; font-weight: bold; color: #333; margin-bottom: 20rpx; padding-bottom: 15rpx; border-bottom: 1rpx solid #f0f0f0; } .settings-item { display: flex; justify-content: space-between; align-items: center; padding: 20rpx 0; border-bottom: 1rpx solid #f0f0f0; } .settings-item:last-child { border-bottom: none; } .item-label { font-size: 28rpx; color: #333; } .item-extra { font-size: 24rpx; color: #999; } .logout-btn { width: 100%; background-color: #ff4d4f; color: #fff; margin-top: 40rpx; border-radius: 50rpx; padding: 20rpx; font-size: 32rpx; box-shadow: 0 4rpx 12rpx rgba(255, 77, 79, 0.2); transition: all 0.3s ease; } .logout-btn:hover { background-color: #ff7875; box-shadow: 0 6rpx 16rpx rgba(255, 77, 79, 0.3); }