
    /* 容器样式 */
    .roi-section {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        color: #0f172a;
        max-width: 1100px;
        margin: 60px auto;
        padding: 0 20px;
    }

    /* 标题区域 */
    .roi-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .roi-header h2 {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 15px;
        color: #0f172a;
        letter-spacing: -0.02em;
    }

    .roi-header p {
        font-size: 18px;
        color: #64748b;
    }

    /* 表格外框容器 */
    .roi-table-container {
        border: 1px solid #e2e8f0;
        border-radius: 16px; /* 原图的大圆角 */
        overflow: hidden;
        background-color: #ffffff;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
    }

    /* 行基础样式 */
    .roi-row {
        display: flex;
        border-bottom: 1px solid #e2e8f0;
        align-items: center;
    }

    .roi-row:last-child {
        border-bottom: none;
    }

    /* 表头背景色 */
    .roi-table-header {
        background-color: #f8fafc; /* 极浅灰蓝色背景 */
    }

    /* 列宽度比例分配 */
    .roi-col {
        padding: 24px 30px;
        font-size: 16px;
        line-height: 1.5;
    }

    .col-benefit {
        flex: 1.2; /* 第一列宽度 */
        font-weight: 700;
        color: #0f172a;
    }

    .col-improvement {
        flex: 1.5; /* 第二列宽度 */
        font-weight: 700;
        color: #56B8B8; /* 您的主色调 */
    }

    .col-impact {
        flex: 2; /* 第三列宽度 */
        color: #475569;
        font-weight: 400;
    }

    /* 表头文字样式 */
    .roi-table-header .roi-col {
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: #64748b;
        font-weight: 700;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    /* 移动端适配 */
    @media (max-width: 768px) {
        .roi-header h2 {
            font-size: 30px;
        }
        
        .roi-table-container {
            overflow-x: auto; /* 手机端支持横向滑动，防止内容挤压 */
        }
        
        .roi-row {
            min-width: 600px; /* 保证手机端内容不换行，可滑动查看 */
        }

        .roi-col {
            padding: 15px 20px;
            font-size: 14px;
        }
    }
