
        /* 全局重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        /* 全屏背景容器 - 仅产品背景适配全屏 */
        .specs-bg-container {
            width: 100vw;
            min-height: 100vh;
            background-color: #f8f9fa; /* 产品背景底色，可根据需求调整 */
            padding: 40px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        /* 内容容器 - 适配ueeshop布局，限制最大宽度保证PC端排版 */
        .specs-content {
            width: 100%;
            max-width: 1200px;
            background: #ffffff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            overflow: hidden;
        }

        /* 标题样式 */
        .specs-title {
            text-align: center;
            padding: 25px 0;
            font-size: 24px;
            font-weight: 600;
            color: #333;
            border-bottom: 1px solid #eee;
        }

        /* 表格头部样式 */
        .specs-header {
            display: flex;
            background-color: #eef2f7;
            padding: 15px 20px;
            font-weight: 600;
            color: #333;
        }

        /* 表格列宽分配 - 适配响应式 */
        .header-category, .row-category {
            width: 25%;
        }
        .header-specs, .row-specs {
            width: 50%;
        }
        .header-accuracy, .row-accuracy {
            width: 25%;
        }

        /* 表格行样式 */
        .specs-row {
            display: flex;
            padding: 18px 20px;
            border-bottom: 1px solid #f0f0f0;
            align-items: center;
        }
        .specs-row:last-child {
            border-bottom: none;
        }
        .specs-row:hover {
            background-color: #f9fafc;
        }

        /* 图标样式 */
        .specs-icon {
            margin-right: 8px;
            color: #2c7be5;
            font-size: 18px;
        }

        /* 文字样式 */
        .row-category, .row-specs, .row-accuracy {
            color: #555;
            font-size: 14px;
            line-height: 1.5;
        }
        .row-category {
            display: flex;
            align-items: center;
        }

        /* 移动端适配 - 屏幕宽度≤768px */
        @media (max-width: 768px) {
            .specs-bg-container {
                padding: 20px 10px;
            }
            .specs-header, .specs-row {
                flex-direction: column;
                padding: 12px 15px;
            }
            .header-category, .header-specs, .header-accuracy,
            .row-category, .row-specs, .row-accuracy {
                width: 100%;
                margin-bottom: 8px;
            }
            .header-category:last-child, .header-specs:last-child, .header-accuracy:last-child,
            .row-category:last-child, .row-specs:last-child, .row-accuracy:last-child {
                margin-bottom: 0;
            }
            .specs-title {
                font-size: 20px;
                padding: 20px 0;
            }
            .specs-icon {
                font-size: 16px;
            }
            .row-category, .row-specs, .row-accuracy {
                font-size: 13px;
            }
        }
    