.container { min-height: 100vh; background: #f8f8f8; padding-bottom: env(safe-area-inset-bottom); } /* 加载状态 */ .loading { text-align: center; padding: 40rpx; color: #999; font-size: 28rpx; } /* 收入统计 */ .income-stats { background: linear-gradient(135deg, #ff4d4f, #ff7875); padding: 40rpx 30rpx; color: #fff; margin-bottom: 20rpx; } .total-income { text-align: center; padding-bottom: 30rpx; } .total-income .label { font-size: 28rpx; opacity: 0.9; } .total-income .amount { font-size: 72rpx; font-weight: 600; margin-top: 10rpx; } .stats-grid { display: flex; justify-content: space-between; padding: 30rpx 0; border-top: 2rpx solid rgba(255, 255, 255, 0.1); } .stats-item { flex: 1; text-align: center; } .stats-item .label { font-size: 24rpx; opacity: 0.9; margin-bottom: 10rpx; } .stats-item .amount { font-size: 32rpx; font-weight: 500; } .withdraw-btn { width: 100%; height: 80rpx; line-height: 80rpx; text-align: center; background: #fff; color: #ff4d4f; font-size: 30rpx; font-weight: 500; border-radius: 40rpx; margin-top: 30rpx; border: none; padding: 0; display: flex; align-items: center; justify-content: center; } /* 收入明细 */ .income-list { background: #fff; border-radius: 16rpx 16rpx 0 0; margin-top: 20rpx; min-height: 400rpx; } .list-header { padding: 30rpx; font-size: 32rpx; color: #333; font-weight: 500; border-bottom: 2rpx solid #f5f5f5; } .list-content { padding: 0 30rpx; } .income-item { padding: 30rpx 0; border-bottom: 2rpx solid #f5f5f5; } .income-item:last-child { border-bottom: none; } .item-main { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12rpx; } .item-type { font-size: 30rpx; color: #333; font-weight: 500; } .item-amount { font-size: 34rpx; color: #ff4d4f; font-weight: 500; } .item-sub { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8rpx; } .item-time { font-size: 24rpx; color: #999; } .item-status { font-size: 24rpx; color: #666; } .item-order { font-size: 24rpx; color: #999; } /* 空状态和加载更多 */ .no-more, .empty { text-align: center; padding: 40rpx; color: #999; font-size: 28rpx; } /* 深色模式 */ .dark-mode { background: #1f1f1f; } .dark-mode .income-list { background: #2a2a2a; } .dark-mode .list-header { color: #fff; border-bottom-color: #333; } .dark-mode .income-item { border-bottom-color: #333; } .dark-mode .item-type { color: #fff; } .dark-mode .item-status { color: #999; } .dark-mode .item-order { color: #666; }