/* 统计条容器 - 确保父容器无内边距 */
.stat-bar-wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
}

/* 统计条本体 - 宽度100%，背景铺满 */
.stat-bar {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 5px;          /* 如果不需要圆角可设为0，或保留圆角但背景会铺满 */
    padding: 12px 20px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;  /* 内容均匀分布 */
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

.stat-item {
    display: inline-block;
    white-space: nowrap;
    text-align: center;
}
.stat-number {
    font-weight: bold;
    font-size: 18px;
    margin-left: 5px;
}

/* 响应式 */
@media (max-width: 768px) {
    .stat-bar {
        padding: 10px 15px;
        justify-content: center;
        gap: 15px 20px;
        flex-wrap: wrap;
    }
    .stat-item {
        font-size: 13px;
        white-space: nowrap;
    }
    .stat-number {
        font-size: 16px;
    }
}
@media (max-width: 480px) {
    .stat-bar {
        padding: 8px 10px;
        gap: 8px 12px;
    }
    .stat-item {
        font-size: 12px;
    }
    .stat-number {
        font-size: 14px;
    }
}