/* 管理员佣金管理页样式 */

.commission-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0;
}

.stat-item {
    padding: 20px 15px;
    background: linear-gradient(135deg, #1890FF 0%, #1565C0 100%);
    border-radius: 8px;
    text-align: center;
    color: #fff;
}

.stat-item:nth-child(2) {
    background: linear-gradient(135deg, #52C41A 0%, #389E0D 100%);
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.stat-value {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.commission-list {
    padding: 0;
}

.commission-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.commission-item:last-child {
    border-bottom: none;
}

.commission-info {
    flex: 1;
}

.commission-order {
    font-size: 14px;
    color: #333;
    margin-bottom: 4px;
}

.commission-type {
    font-size: 12px;
    color: #999;
    margin-bottom: 4px;
}

.commission-time {
    font-size: 12px;
    color: #999;
}

.commission-amount {
    font-size: 16px;
    font-weight: 600;
    text-align: right;
    color: #52C41A;
}

/* 空状态 */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.empty-text {
    font-size: 14px;
    color: #999;
}

/* 底部操作 */
.bottom-action {
    position: fixed;
    bottom: 60px; /* 调整位置，避免被TabBar遮挡 */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 750px;
    padding: 15px;
    background-color: #fff;
    border-top: 1px solid #eee;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
    z-index: 99;
}

