
    /* 统一的模块容器 */
    .integrated-strength-module {
        font-family: 'Open Sans', sans-serif;
        padding: 60px 20px;
        text-align: center;
    }

    /* --- 公司实力数据部分样式 --- */
    .integrated-strength-module .strength-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        max-width: 1500px;
        margin: 0 auto;
        /* 移除 gap，由 padding 和 border 控制间距 */
        gap: 0; 
    }

    .integrated-strength-module .strength-item {
        padding: 20px 15px; /* 调整内边距适应分隔线 */
        position: relative;
    }

    /* --- MODIFICATION START --- */

    /* 1. 添加垂直分隔线 */
    /* 给除了最后一个元素之外的所有元素添加右边框 */
    .integrated-strength-module .strength-item:not(:last-child) {
        border-right: 1px solid #e0e0e0; /* 不起眼的浅灰色分隔线 */
    }
    /* 在5列布局中，移除每行最后一个元素的右边框 */
    .integrated-strength-module .strength-item:nth-child(5n) {
        border-right: none;
    }

    /* 2. 字体放大 */
    .integrated-strength-module .strength-item .number {
        font-size: 48px; /* from 42px */
        font-weight: bold;
        color: #1a237e;
        margin-bottom: 8px; /* 微调间距 */
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 60px; /* from 50px */
    }

    .integrated-strength-module .strength-item .plus {
        font-size: 32px; /* from 28px */
        margin-left: 4px;
        color: #3498db;
    }

    .integrated-strength-module .strength-item .label {
        font-size: 20px; /* from 18px */
        color: #555; /* 稍微加深颜色 */
        margin-bottom: 5px;
        text-transform: uppercase;
    }

    .integrated-strength-module .strength-item .sublabel {
        font-size: 18px; /* from 16px */
        color: #888; /* 稍微加深颜色 */
    }
    /* --- MODIFICATION END --- */


    /* --- 响应式设计 --- */
    @media (max-width: 992px) {
        .integrated-strength-module .strength-grid {
            grid-template-columns: repeat(3, 1fr);
        }
        /* 在3列布局中，恢复所有元素的边框，然后移除每行最后一个元素的右边框 */
        .integrated-strength-module .strength-item {
            border-right: 1px solid #e0e0e0;
        }
        .integrated-strength-module .strength-item:nth-child(3n) {
            border-right: none;
        }
        .integrated-strength-module .strength-item:last-child {
            border-right: none;
        }
    }

    @media (max-width: 768px) {
        .integrated-strength-module {
            padding: 40px 15px;
        }
        .integrated-strength-module .strength-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        /* 在2列布局中，恢复所有元素的边框，然后移除每行最后一个元素的右边框 */
        .integrated-strength-module .strength-item {
            border-right: 1px solid #e0e0e0;
        }
        .integrated-strength-module .strength-item:nth-child(2n) {
            border-right: none;
        }
        .integrated-strength-module .strength-item:last-child {
            border-right: none;
        }

        /* 移动端字体也相应增大 */
        .integrated-strength-module .strength-item .number {
            font-size: 38px; /* from 32px */
        }
        .integrated-strength-module .strength-item .label {
            font-size: 18px;
        }
        .integrated-strength-module .strength-item .sublabel {
            font-size: 16px;
        }
    }
