
.image-container {
    position: relative; /* 设置容器为相对定位 */
}

.image-container img {
    display: block; /* 确保图片不占用额外空间 */
    width: 100%; /* 根据需要调整图片大小 */
}

.button {
    position: absolute; /* 设置按钮为绝对定位 */
    top: 50%; /* 距离图片顶部的距离 */
    left: 50%; /* 距离图片左侧的距离 */
    transform: translate(-50%, -50%);
    /*background-color: #007BFF;*/ /* 按钮背景色 */
    /*color: white;*/ /* 文字颜色 */
    /*padding: 10px 20px;*/ /* 内边距 */
    /*border-radius: 5px;*/ /* 边框圆角 */
    cursor: pointer; /* 鼠标悬停样式 */
}
.card-body {border-bottom: none;}

/* 表格样式 */

/* 表格容器 */
.table-container {
    width: 100%;
    max-width: 1200px;
    overflow-x: auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    background: white;
    position: relative;
    margin-bottom: 30px;
}

/* 表格整体样式 */
table {
    width: max-content;
    min-width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 12px;
    /*overflow: hidden;*/
    font-size: 0.95rem;
}

/* 所有单元格添加右边框作为列间隔线 */
td {
    border-right: 1px solid #e0e4e9;
}

/* 最后一列去除右边框 */
tr td:last-child {
    border-right: none;
}

/* 固定第一列（参数名称列） */
tr td:first-child {
    /*position: sticky;
    left: 0;*/
    z-index: 10;
    background: linear-gradient(to right, #1a75bc, #2a5298);
    color: white;
    font-weight: 600;
    text-align: left;
    padding-left: 20px !important;
    box-shadow: 3px 0 10px rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 200px;
}

/* 表头行特殊处理 */
tr.firstRow td:first-child {
    z-index: 20;
}

/* 表头样式 */
tr.firstRow {
    background: linear-gradient(135deg, #2c3e50, #1a2530);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

tr.firstRow td {
    padding: 18px 22px;
    text-align: center;
    border-bottom: 2px solid #3498db;
    position: relative;
}

/* 表格主体样式 */
tbody tr {
    transition: background-color 0.2s;
}

tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

tbody tr:hover {
    background-color: #eaf6ff;
}

tbody td {
    padding: 15px 20px;
    border-bottom: 1px solid #e0e4e9;
    text-align: center;
    color: #34495e;
    position: relative;
}

/* 特殊行样式（带背景色行） */
tbody tr:nth-child(2) td:not(:first-child) {
    font-weight: 600;
    color: #1a75bc;
}

/* 备注列样式 */
td[width="461"] {
    text-align: left;
    max-width: 300px;
    min-width: 150px;
    background-color: #f1f8ff;
    font-style: italic;
    color: #2c3e50;
    padding-left: 25px !important;
}

/* 数值高亮样式 */
td:not(:first-child):not([width="461"]) {
    font-weight: 500;
    color: #16a085;
}

/* 模型名称样式 */
.table-container table tr:first-child td:nth-child(3),
.table-container table tr:first-child td:nth-child(5),
.table-container table tr:first-child td:nth-child(7),
.table-container table tr:first-child td:nth-child(9) {
    font-weight: 700;
    color: #e74c3c;
    letter-spacing: 0.5px;
}

/* 滚动条样式 */
.table-container::-webkit-scrollbar {
    height: 10px;
}

.table-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 0 0 10px 10px;
}

.table-container::-webkit-scrollbar-thumb {
    background: linear-gradient(to right, #1a75bc, #2a5298);
    border-radius: 5px;
}

.table-container::-webkit-scrollbar-thumb:hover {
    background: #1a75bc;
}

@media (max-width: 768px) {

    td, th {
        padding: 10px 12px !important;
        font-size: 14px;
    }
}


