<style>
      
     
        /* 表格容器样式 */
        .table-img-container {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-bottom: 40px;
            overflow-x: auto;
        }
        
        /* 表格基本样式 */
        .table-img-container table {
            width: 100%;
            border-collapse: collapse;
            background: white;
        }
        
        .table-img-container th {
            background: linear-gradient(to bottom, #3498db, #2980b9);
            color: white;
            font-weight: 600;
            text-align: left;
            padding: 18px 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.95rem;
        }
        
        .table-img-container td {
            padding: 16px 15px;
            border-bottom: 1px solid #ecf0f1;
            word-break: break-word;
    white-space: inherit;
        }
        .firstRow td{
              white-space: nowrap;
         }
        .table-img-container tr:last-child td {
           
        }
        
        .table-img-container tr:nth-child(even) {
            background-color: #f8f9fb;
        }
        
        .table-img-container tr:hover {
            background-color: #f1f9ff;
            transition: background-color 0.3s ease;
        }
        
        .table-img-container td img {
            max-width: 160px!important;
            height: auto;
            border-radius: 5px;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
            
            margin: 0 auto;
        }
        
        /* 响应式样式 - 移动端 */
        @media screen and (max-width: 767px) {
            /* 隐藏表头 */
            .table-img-container thead {
                display: none;
            }
            
            /* 表格行转换为块级元素 */
            .table-img-container tbody tr {
                display: block;
                margin-bottom: 25px;
                border: 1px solid #e0e6ed;
                border-radius: 12px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
                overflow: hidden;
                background: white;
            }
            
            /* 单元格转换为块级元素 */
            .table-img-container tbody td {
                display: block;
                text-align: right;
                padding: 12px 15px;
                border-bottom: 1px solid #f0f4f8;
	   min-height: 50px;
            }
            
            /* 最后一列去掉底边框 */
            .table-img-container tbody td:last-child {
                border-bottom: none;
            }
            
            /* 使用伪元素显示字段名称 */
            .table-img-container tbody td::before {
                content: attr(data-label);
                float: left;
                font-weight: 700;
                color: #3498db;
            }
            
            /* 图片适应移动端 */
            .table-img-container td img {
               max-width: 180px!important;
                height: auto;
                margin: 10px 0;
            }
            
            /* 处理行合并元素 */
            .rowspan-mobile {
                background: #f1f9ff;
                font-weight: 700;
                padding: 15px;
                border-bottom: 2px solid #d6eaf8;
                text-align: center !important;
            }
            
            .rowspan-mobile::before {
                display: none;
            }
        }
        
        /* 表格标题列样式 */
        .test-category {
            background: #ecf7fe;
            font-weight: 600;
            color: #2c3e50;
            vertical-align: middle;
        }
        
        /* 标准样式美化 */
        .standard {
            font-family: 'Consolas', monospace;
            color: #e74c3c;
            font-weight: 500;
        }
        
        /* 页脚样式 */
        .table-img-container footer {
            text-align: center;
            margin-top: 30px;
            color: #7f8c8d;
            font-size: 0.9rem;
        }
        
        /* 提示信息 */
        .responsive-hint {
            text-align: center;
            background: #e8f4fc;
            color: #3498db;
            padding: 15px;
            border-radius: 8px;
            margin: 20px auto;
            max-width: 500px;
            display: none;
        }
        
        @media (max-width: 767px) {
            .responsive-hint {
                display: block;
            }
        }
    </style>