| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- .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;
- }
- /* 退出登录按钮 */
- .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;
- }
|