

        /* 电脑端标题样式 (完全保留) */
        .led-specs-container caption {
            font-family: 'Montserrat-Regular', sans-serif;
            font-size: 41px;
            font-weight: normal;
            color: #000000;
            padding: 0;
            margin-bottom: 0;
        }
        .led-specs-container caption div {
            padding: 12px;
            border-bottom: 1px solid #e0e0e0;
        }

        /* 通用滚动容器 (完全保留) */
        .led-specs-container {
            width: 100%;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            background-color: #FFFFFF;
            padding: 0;
            margin: 0;
        }

        /* 电脑端 (≥769px) 原有全部规则，只字未动 */
        @media only screen and (min-width: 769px) {
            .led-specs-container table {
                width: 76%;
                margin: 20px auto;
                min-width: fit-content;
                min-width: -moz-fit-content;
                min-width: fit-content;
            }

            .led-specs-container th,
            .led-specs-container td {
                width: auto;
                min-width: 120px;
                max-width: 300px;
                white-space: normal;        /* 电脑端原样保留 normal */
            }

            .led-specs-container th {
                min-width: 140px;
            }
        }        

        /* 表格单元格样式 (保留全部原有，只新增一条 white-space: nowrap 在最后) */
        .led-specs-container th, 
        .led-specs-container td {
            padding: 12px;
            border-bottom: 1px solid #e0e0e0;
            font-family: 'Open Sans', sans-serif;
            background-color: #FFFFFF;
            word-wrap: break-word;
            overflow-wrap: break-word;
            /* ↑ 以上完全原样 */
        }
        .led-specs-container th {
            text-align: left;
            font-weight: normal;
            width: 12.5%;
            font-size: 16px;
        }
        /* 注意：后面大量的 td 重复定义会被后面的覆盖，保留原样，最后统一追加 nowrap */
        .led-specs-container td {
            text-align: center;
            font-size: 16px;
            font-weight: normal;
            width: 12.5%;
        }
        /* 原样保留多处重复 td 定义 (尽管冗余，但不动) */
        .led-specs-container td {
            text-align: center;
            font-size: 16px;
            font-weight: normal;
            width: 12.5%;
        }
        .led-specs-container td {
            text-align: center;
            font-size: 16px;
            font-weight: normal;
            width: 12.5%;
        }
        .led-specs-container td {
            text-align: center;
            font-size: 16px;
            font-weight: normal;
            width: 12.5%;
        }
        .led-specs-container td {
            text-align: center;
            font-size: 16px;
            font-weight: normal;
            width: 12.5%;
        }
        .led-specs-container td {
            text-align: center;
            font-size: 16px;
            font-weight: normal;
            width: 12.5%;
        }
        .led-specs-container td {
            text-align: center;
            font-size: 16px;
            font-weight: normal;
            width: 12.5%;
        }


        /* 移动端样式 (≤768px) 完全保留 */
        @media only screen and (max-width: 768px) {
            .led-specs-container table {
                width: 90% !important;
            }
            .led-specs-container caption {
                font-size: 20px !important;
            }
            .led-specs-container caption div {
                padding: 10px;
                border-bottom: 1px solid #e0e0e0;
            }
            .led-specs-container th,
            .led-specs-container td {
                font-size: 14px;
                padding: 10px;
                border-bottom: 1px solid #e0e0e0;
            }
        }

        /* 原有最后一段独立规则 (也是保留) */
        .led-specs-container td {
            text-align: center;
            vertical-align: middle;
        }

        /* ========= 只增加以下一条规则，实现所有文本单行显示，且完全不影响其他样式 ========= */
        /* 放在最后，利用源顺序覆盖之前所有的 white-space (包括媒体查询内的 normal)  */
        .led-specs-container th,
        .led-specs-container td {
            white-space: nowrap !important;   /* 使用 !important 确保覆盖所有，且不修改任何原有行 */
            overflow: visible !important;      /* 保持可见，溢出由父容器滚动 */
            /* 保留原有其他所有样式不变，仅追加这两个强制属性 */
        }
        /* ========= 增加结束，其他一个字未动 ========= */

    