.page-mine { display: flex; flex-direction: column; background: #f5f6fb; min-height: 100vh; padding: 30rpx; box-sizing: border-box; } /* User Card */ .user-card { background: #ffffff; border-radius: 20rpx; padding: 40rpx; display: flex; align-items: center; box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.05); margin-bottom: 30rpx; } .avatar-container { width: 120rpx; height: 120rpx; border-radius: 50%; overflow: hidden; background-color: #eee; flex-shrink: 0; } .avatar { width: 100%; height: 100%; } .user-info { margin-left: 30rpx; flex: 1; } .username { font-size: 36rpx; font-weight: bold; color: #333; } /* Section Cards */ .section-card { background: #ffffff; border-radius: 20rpx; overflow: hidden; box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.05); margin-bottom: 30rpx; } .card-header { background: #3F51F7; /* Main Blue */ padding: 20rpx 30rpx; display: flex; align-items: center; } .header-icon-box { width: 40rpx; height: 40rpx; display: flex; align-items: center; justify-content: center; margin-right: 15rpx; } .header-icon-text { font-size: 32rpx; color: #fff; } .header-title { color: #ffffff; font-size: 32rpx; font-weight: bold; } .card-content { padding: 30rpx; background: #fff; } /* Points Content */ .points-content { display: flex; justify-content: space-between; align-items: center; } .points-value { font-size: 32rpx; color: #333; font-weight: 500; } .points-actions { display: flex; gap: 20rpx; } .mini-btn { background: #3F51F7; color: #fff; font-size: 24rpx; padding: 10rpx 30rpx; border-radius: 30rpx; line-height: 2; margin: 0; border: none; } .mini-btn::after { border: none; } /* Transaction Content */ .transaction-content { display: flex; justify-content: center; padding: 60rpx 30rpx; } .empty-text { color: #999; font-size: 28rpx; } /* Bottom Action */ .action-area { margin-top: 40rpx; } .main-btn { background: #3F51F7; color: #fff; font-size: 32rpx; border-radius: 50rpx; padding: 10rpx 0; width: 100%; box-shadow: 0 4rpx 10rpx rgba(63, 81, 247, 0.3); line-height: 2.5; } .main-btn:active { opacity: 0.9; }