/**
 * 页脚统计样式 - 与子比主题版权区域融合
 */

.footer-stats {
    text-align: center;
    font-size: 12px;
    color: var(--footer-color);
    margin: 10px auto;
    padding: 0;
    max-width: 100%;
}

.footer-stats-title {
    display: none;
}

.footer-stats-items {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
    margin: 0 auto;
    padding: 0 10px;
}

.footer-stat-item {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.footer-stat-label {
    color: var(--muted-2-color);
    font-size: 12px;
}

.footer-stat-value {
    color: var(--key-color);
    font-weight: 500;
    font-size: 12px;
}

.footer-stat-divider {
    color: var(--muted-4-color);
    margin: 0 4px;
    font-size: 12px;
}

/* 平板设备适配 */
@media (max-width: 992px) {
    .footer-stats-items {
        gap: 6px;
        font-size: 11px;
    }
    
    .footer-stat-label,
    .footer-stat-value,
    .footer-stat-divider {
        font-size: 11px;
    }
}

/* 手机端适配 */
@media (max-width: 768px) {
    .footer-stats {
        margin: 8px auto;
        padding: 0 5px;
    }
    
    .footer-stats-items {
        gap: 4px;
        font-size: 10px;
        flex-wrap: wrap;
    }
    
    .footer-stat-item {
        gap: 2px;
    }
    
    .footer-stat-label,
    .footer-stat-value,
    .footer-stat-divider {
        font-size: 10px;
    }
    
    .footer-stat-divider {
        margin: 0 2px;
    }
}

/* 小屏手机适配 */
@media (max-width: 480px) {
    .footer-stats-items {
        gap: 3px;
        font-size: 9px;
    }
    
    .footer-stat-label,
    .footer-stat-value,
    .footer-stat-divider {
        font-size: 9px;
    }
}

/* 深色主题适配 */
.dark-theme .footer-stat-label {
    color: var(--muted-color);
}

.dark-theme .footer-stat-value {
    color: var(--main-color);
}
