123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- .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;
- }
|