/* 统计页面专用样式 */

.stat-list {
    margin-top: 16px;
}

.stat-item {
    margin-bottom: 16px;
}

.stat-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
}

.stat-bar-container {
    width: 100%;
    height: 12px;
    background-color: #f1f1f1;
    border-radius: 6px;
    overflow: hidden;
}

.stat-bar {
    height: 100%;
    background-color: #1976d2;
    border-radius: 6px;
}

/* 设置页面样式 */
.settings-item {
    padding: 16px 0;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.settings-item:last-child {
    border-bottom: none;
}

.settings-item-title {
    font-weight: 500;
    margin-bottom: 4px;
}

.settings-item-desc {
    font-size: 0.9rem;
    color: #666;
}

/* 交易记录卡片样式 */
.transaction-card {
    margin-bottom: 12px;
}

.transaction-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.transaction-category {
    font-weight: 500;
    margin-bottom: 4px;
}

.transaction-date {
    font-size: 0.8rem;
    color: #666;
}

.transaction-note {
    margin-top: 8px;
    font-size: 0.9rem;
    color: #666;
}

.income-amount {
    color: #4caf50;
    font-weight: 500;
}

.expense-amount {
    color: #f44336;
    font-weight: 500;
}