/* Css for , Version=1774246037 */
 
    /* 基础表格样式 */
    .product-standard-table {
        width: 100%;
        max-width: 800px; 
        border-collapse: collapse;
        margin: 20px auto; 
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: 14px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
        
        /* 核心修改: 确保列宽固定 */
        table-layout: fixed; 
    }

    /* 表头样式 */
    .product-standard-table thead th {
        background-color: #007bff; 
        color: white;
        padding: 12px 15px;
        text-align: left;
        font-weight: bold;
        border: 1px solid #007bff;
    }
    
    /* 固定列的宽度 (与原硅烷模板保持一致) */
    .product-standard-table thead th:nth-child(1) { width: 15%; } /* 项目 */
    .product-standard-table thead th:nth-child(2) { width: 35%; } /* 检测项目 */
    .product-standard-table thead th:nth-child(3) { width: 15%; } /* 单位 */
    .product-standard-table thead th:nth-child(4) { width: 15%; } /* 指标 */
    .product-standard-table thead th:nth-child(5) { width: 20%; } /* 分析方法 */


    /* 单元格样式 */
    .product-standard-table tbody td {
        padding: 10px 15px;
        border: 1px solid #ddd;
        transition: all 0.2s ease-in-out; 
        
        /* 防止内容溢出 */
        overflow: hidden; 
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    /* 奇偶行背景色交替 */
    .product-standard-table tbody tr:nth-child(even) {
        background-color: #f8f9fa; 
    }

    /* 鼠标悬停时的效果：字体变大 (1.1倍)，颜色变红，背景色变化 */
    .product-standard-table tbody tr:hover {
        background-color: #fff0f0; 
        color: #dc3545; 
        font-size: 15.4px; 
        font-weight: bold; 
        cursor: pointer; 
    }

    /* 分组标题样式 (例如“组分要求”) */
    .group-header {
        background-color: #0056b3; 
        color: white;
        text-align: center;
        font-weight: bold;
        vertical-align: middle;
        font-size: 16px;
    }
    
    /* 确保悬停时，组标题的颜色保持白色 */
    .product-standard-table tbody tr:hover .group-header {
        color: white; 
    }

    /* 备注/标题样式 */
    .table-title {
        text-align: center;
        font-size: 20px;
        font-weight: bold;
        color: #333;
        margin-bottom: 10px;
    }
