.stats-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            margin-top: 40px !important;
            padding: 20px 0;
        }
        /* 单个卡片样式 */
        .stat-card {
            background: rgb(0 0 0 / 12%);
            padding: 25px 20px;
            text-align: center;
            width: calc(20% - 20px);
            min-width: 150px;
            color: #faebd7;
            transition: transform 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-5px);
        }
        /* 图标样式 */
        .stat-icon {
            font-size: 28px;
            margin-bottom: 15px;
            display: block;
        }
        /* 数字样式 */
        .stat-number {
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 8px;
            color: #fff;
        }
        /* 标签样式 */
        .stat-label {
            font-size: 14px;
            color: #ddd;
        }
        /* 查看更多链接样式 */
        .read-more {
            color: #70b731;
            text-decoration: underline;
            cursor: pointer;
            display: inline-block;
            margin-top: 15px;
        }
        .read-more:hover {
            color: #91d841;
        }
        /* 响应式适配 */
        @media (max-width: 768px) {
            .stat-card {
                width: calc(50% - 20px);
            }
        }
        @media (max-width: 480px) {
            .stat-card {
                width: 100%;
            }
        }
             /* 外层容器 —— 右侧不隐藏，允许溢出显示 */
        .case-container {
            width: 100%;
            margin: 50px 0;
            position: relative;
            overflow: visible; /* 关键：右侧不隐藏！ */
            padding-bottom: 70px;
        }

         .case-wrapper {
            display: flex;
            transition: transform 0.4s ease;
            gap: 20px;
        }


        /* a标签卡片容器 */
        .case-card {
            min-width: calc(33.333% - 14px);
            height: 320px;
            background: #fff;
            border-radius: 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: block;
            text-decoration: none;
            cursor: pointer;
    content-visibility: auto;
        }

        /* 文字区域：底部 + 渐变蓝色半透明背景 */
        .card-text {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 30px 20px 20px;
            text-align: center;
            color: #fff;
            background: linear-gradient(to top, #1e88e5, rgba(30, 136, 229, 0));
        }

        .card-text h3 {
            font-size: 18px;
            margin-bottom: 6px;
            font-weight: 500;
        }

        .card-text p {
            font-size: 14px;
            line-height: 1.4;
            opacity: 0.95;
        }

        /* 响应式 */
        @media (max-width: 992px) {
            .case-card {
                min-width: calc(50% - 10px);
            }
        }

        @media (max-width: 576px) {
            .case-card {
                min-width: 100%;
            }
        }
