/* ==================== 统计数据模块样式 ==================== */

.stats-section {
    padding: 100px 24px;
    background: #ffffff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stats-item {
    text-align: center;
    position: relative;
}

.stats-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-icon {
    font-size: 48px;
    color: #6c5ce7;
    position: relative;
    z-index: 2;
    font-weight: 700;
    line-height: 1;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(108, 92, 231, 0.05);
    border-radius: 12px;
}

.stats-watermark {
    position: absolute;
    font-size: 60px;
    color: rgba(108, 92, 231, 0.08);
    z-index: 1;
    opacity: 0.4;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.stats-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: #0b6efd;
    margin-bottom: 12px;
    line-height: 1.2;
    min-height: 4.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.stats-value .suffix {
    font-size: 2rem;
    font-weight: 600;
}

.stats-label {
    font-size: 1.1rem;
    color: #2d3436;
    font-weight: 500;
}

/* 动画效果 */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .stats-section {
        padding: 80px 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .stats-value {
        font-size: 3rem;
    }
    
    .stats-value .suffix {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 60px 16px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .stats-icon {
        font-size: 42px;
    }
    
    .stats-watermark {
        font-size: 50px;
    }
    
    .stats-value {
        font-size: 2.5rem;
        min-height: 3.5rem;
    }
    
    .stats-value .suffix {
        font-size: 1.5rem;
    }
    
    .stats-label {
        font-size: 1rem;
    }
}

