.page-mine { height: 100vh; display: flex; flex-direction: column; background: #f5f6fb; } .scroll-view { flex: 1; height: 0; } .content-wrapper { padding: 32rpx; background: #f5f6fb; min-height: 100%; } /* 用户信息卡片 */ .user-info-card { background: #ffffff; border-radius: 24rpx; padding: 40rpx 32rpx; margin-bottom: 32rpx; box-shadow: 0 16rpx 40rpx rgba(37, 52, 94, 0.08); } .user-header { display: flex; align-items: center; } .user-avatar { width: 100rpx; height: 100rpx; border-radius: 50%; background: #f5f6fb; margin-right: 24rpx; border: 4rpx solid #f5f6fb; } .user-details { flex: 1; display: flex; flex-direction: column; } .user-name { font-size: 32rpx; font-weight: 600; color: #222222; margin-bottom: 8rpx; } .arrow-icon { font-size: 48rpx; color: #9ca2b5; font-weight: 300; } /* 菜单列表 */ .menu-list { background: #ffffff; border-radius: 24rpx; overflow: hidden; box-shadow: 0 16rpx 40rpx rgba(37, 52, 94, 0.08); margin-bottom: 32rpx; } .menu-item { display: flex; justify-content: space-between; align-items: center; padding: 32rpx; border-bottom: 1rpx solid #f5f6fb; } .menu-item:last-child { border-bottom: none; } .menu-left { display: flex; align-items: center; } .menu-icon { font-size: 36rpx; margin-right: 20rpx; } .menu-label { font-size: 28rpx; color: #222222; } .menu-arrow { font-size: 40rpx; color: #9ca2b5; font-weight: 300; } .admin-badge { background: linear-gradient(135deg, #ff9500, #ff5e3a); color: #ffffff; font-size: 20rpx; padding: 4rpx 12rpx; border-radius: 20rpx; margin-right: 12rpx; } /* 退出登录按钮 */ .logout-section { margin-top: 20rpx; } .logout-btn { width: 100%; background: #5d55e8; color: #ffffff; border-radius: 16rpx; padding: 28rpx 0; text-align: center; font-size: 30rpx; font-weight: 600; box-shadow: 0 12rpx 24rpx rgba(93, 85, 232, 0.3); border: none; line-height: 1; } .logout-btn::after { border: none; } .logout-btn:active { opacity: 0.8; } .bottom-safe-area { height: 80rpx; }