/* Css for , Version=1774246037 */
 
.files-list {display: block; padding: 5px; margin: 0; background-color: @color-gray-pale;}
.files-list > li {position: relative; display: block; float: left; padding: 0; margin: 5px; position: relative;}
.files-list > li > a {color: #666; display: block; height: 70px; min-width: 70px; line-height: 60px; padding: 3px; max-width: 400px; overflow: hidden; text-align: center;background-color: #fff; opacity: 0.9; border: 1px solid #ddd}
.files-list > li > a:hover {opacity: 1; box-shadow: 0 1px 6px rgba(0, 0, 0, 0.3); border-color: #ccc; color: #506EAF;text-decoration: none;}
.files-list > li > a > img, .files-list > li > a > img:hover{max-width: 200px; max-height: 100%; box-shadow: none; margin: 0}
.files-list:empty {display: none;}
.files-list > li.file > a {line-height: 25px; padding: 40px 30px 5px; max-width: 240px; white-space:nowrap; text-overflow:ellipsis; -o-text-overflow:ellipsis; overflow:hidden;}
.files-list > li.file > a:before {display: block; width: 100%; font-size: 30px; position: absolute; top: 10px; text-align: center; left: 0; content: '\e6d4'; font-family: ZenIcon;}
.files-list > li.files-list-heading {float: none; display: block; color: #999;font-weight: bold;}
.files-list > li .file-actions {display: block; position: absolute; right: 0; top: 0;} 
.files-list > li .file-actions > a {opacity: 0; display: inline-block; background-color: #D9E8F5; color: #666; padding: 3px 7px;}
.files-list > li:hover .file-actions > a,.files-list > li .file-actions > a:hover {opacity: 1; background-color: #145BCC; color: #fff; text-decoration: none;}

.files-list > li.file.file-zip > a:before, .files-list > li.file.file-rar > a:before {content: '\e751'}
.files-list > li.file.file-doc > a:before {content: '\e72c';}
.files-list > li.file > .file-md5 {display: none}
.files-list > li.file > .file-download {top: 3px; right: 5px; position: absolute; font-size: 12px; opacity: .5}

    /* 基础表格样式 */
    .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;
    }
