/* 管理员小区数据页样式 */

.time-filter {
    display: flex;
    justify-content: flex-end;
}

.filter-select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    background-color: #fff;
    cursor: pointer;
}

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

.stat-value {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.chart-container {
    padding: 15px;
    background-color: #f5f5f5;
    border-radius: 8px;
}

.chart-placeholder {
    width: 100%;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 4px;
}

.chart-text {
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
}

.chart-value {
    font-size: 24px;
    font-weight: 600;
    color: #1890FF;
}

.stats-grid {
    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-item .stat-value {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

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

