    /* 案件表格 - 移动端堆叠显示 */
    .data-statistics {
        display: flex;
        flex-wrap: wrap;
        gap: 12px 20px;
        padding: 12px 15px;
        background: #f8f9fa;
        border-radius: 10px;
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 20px;
    }

    .stat-item {
        display: flex;
        align-items: center;
        gap: 6px;
        white-space: nowrap;
    }

    .stat-label {
        color: #333;
        font-weight: 500;
    }

    .stat-number {
        color: #1677ff;
        font-weight: bold;
        font-size: 15px;
    }

    .stat-percent {
        padding: 1px 4px;
        border-radius: 3px;
        font-size: 12px;
        font-weight: bold;
    }

    .stat-percent.up {
        color: #fff;
        background-color: #ff4d4f;
    }

    .stat-percent.down {
        color: #fff;
        background-color: #00b42a;
    }

    .stat-desc {
        color: #999;
        font-size: 12px;
    }

    .case-table {
        background-color: white;
        border-radius: 5px;
        overflow: hidden;
        margin-bottom: 20px;
    }

    .case-table table {
        width: 100%;
        border-collapse: collapse;
    }

    .case-table th {
        background-color: #f7941d;
        color: white;
        padding: 8px;
        text-align: center;
        font-size: 12px;
    }

    .case-table td {
        padding: 8px;
        text-align: center;
        border-bottom: 1px solid #eee;
        font-size: 12px;
    }

    .case-table .col-plaintiff {
        max-width: 180px;
        min-width: 140px;
        white-space: nowrap;
        overflow: hidden;
        /* 超出显示：省略号 */
        text-overflow: ellipsis;
    }

    .case-table .download-btn {
        display: inline-block;
        padding: 4px 12px;
        color: #f7941d;
        text-decoration: none;
        font-size: 13px;
        transition: all 0.2s ease;
        /* 鼠标移入变成小手 */
        cursor: pointer;
    }

    .case-table tbody tr:nth-child(even) {
        background-color: #fcf1e9;
    }

    th,
    td {
        border: 1px solid rgba(136, 136, 136, .3);
    }

    /* 移动端表格适配 */
    @media (max-width: 768px) {
        .case-table thead {
            display: none;
        }

        .case-table tr {
            display: block;
            margin-bottom: 10px;
            border: 1px solid #eee;
            border-radius: 5px;
        }

        .case-table td {
            display: flex;
            justify-content: space-between;
            padding: 6px 10px;
            text-align: right;
            border-bottom: 1px solid #f5f5f5;
        }

        .case-table td::before {
            content: attr(data-label);
            font-weight: bold;
            text-align: left;
            color: #666;
        }

        .case-table .col-plaintiff {
            max-width: 349px;
            word-break: break-all;
            word-wrap: break-word;
            /* 长文本自动换行 */
        }

        .case-table tbody tr:nth-child(even) {
            background-color: #ffffff;
        }

        .show-md {
            display: none;
        }
    }

    @media (min-width: 768px) {
        .case-table th {
            font-size: 14px;
            padding: 10px;
        }

        .case-table td {
            font-size: 13px;
            padding: 10px;
        }

        .view-more button {
            padding: 8px 20px;
            font-size: 14px;
        }

        .data-statistics {
            flex-wrap: nowrap;
            justify-content: center;
        }
    }

    .view-more {
        text-align: right;
        margin-bottom: 30px;
    }

    .view-more button {
        background-color: #f7941d;
        color: white;
        border: none;
        padding: 7px 15px;
        border-radius: 3px;
        cursor: pointer;
        font-size: 13px;
    }