/* 统计数据模块样式 */
.stats-section {
    background-color: #111;
    padding: 60px 0;
    color: #fff;
}

.stats-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.stats-item {
    flex: 1;
    text-align: center;
}

.stat-value {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
    line-height: 1.2;
}

.stat-label {
    font-size: 14px;
    color: #9ca3af;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .stats-content {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .stats-item {
        flex: 0 0 calc(50% - 15px);
    }
    
    .stat-value {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 40px 0;
    }
    
    .stats-content {
        gap: 20px;
    }
    
    .stat-value {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .stats-content {
        flex-direction: column;
        gap: 25px;
    }
    
    .stats-item {
        flex: 0 0 100%;
    }
    
    .stat-value {
        font-size: 24px;
    }
}

/* 浏览器兼容性处理 */
@supports (-webkit-font-smoothing: antialiased) {
    .stat-value {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}
