
/* 使用特定的前缀防止干扰全局样式 */
.ue_custom_stats {
    --primary-color: #0A4DA2; /* 建议使用你提到的专业深蓝色 #004a99 */
    --bg-light: #F3F6FA;
    --text-dark: #1F2937;
    padding: 40px 20px 70px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}

.ue_custom_stats .stats-title {
    text-align: center;
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 50px;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.ue_custom_stats .stats-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.ue_custom_stats .stats-card {
    background: var(--bg-light);
    border-radius: 14px;
    padding: 40px 25px;
    flex: 1 1 300px; /* 增加伸缩基准值 */
    max-width: 350px;
    text-align: center;
    position: relative;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
    z-index: 1;
}

.ue_custom_stats .stats-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.ue_custom_stats .stats-card i {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.ue_custom_stats .stats-data {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.ue_custom_stats .stats-label {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* 适配 Ueeshop 移动端编辑器 */
@media (max-width: 768px) {
    .ue_custom_stats .stats-title {
        font-size: 1.8rem;
    }
    .ue_custom_stats .stats-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}
