/**20250514*/
.tablebox {
    width: 100%;
    border-radius: 6px 6px 6px 6px;
    overflow-x: auto;
    margin-top: 15px;
    margin-bottom: 30px;
    padding: 10px 10px 0 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.tablebox .tbox {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 10px;
    /* 定义整个滚动条的样式 */
    /* 定义滚动条轨道的样式 */
    /* 定义滚动条滑块的样式 */
}
.tablebox .tbox p ,.tablebox .tbox *{line-height: 2.2!important;}
.tablebox .tbox::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    /* 滚动条宽度 */
}
.tablebox .tbox::-webkit-scrollbar-track {
    background: #F1F3F5;
    /* 轨道背景色 */
}
.tablebox .tbox::-webkit-scrollbar-thumb {
    background: #D9D9D9;
    /* 滑块背景色 */
    border-radius: 6px;
    /* 滑块圆角 */
    -webkit-transform: all 0.3s;
    transform: all 0.3s;
}
.tablebox .tbox::-webkit-scrollbar-thumb:hover {
    background: #C9E166;
    /* 滑块悬停背景色 */
}
.tablebox * {
    margin: 0 !important;
}
.tablebox table {
    border: none;
    width: 100% !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 4px;
    overflow-x: scroll;
}
.tablebox table tbody,
.tablebox table thead {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 4px;
}
.tablebox table tbody:first-child tr:first-child th,
.tablebox table thead:first-child tr:first-child th,
.tablebox table tbody:first-child tr:first-child td,
.tablebox table thead:first-child tr:first-child td {
    width: 174px;
    height: 69px;
    background: #AEB8C4;
    border-radius: 6px 6px 6px 6px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: bold;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    font-size: 16px;
    line-height: 28px;
}
.tablebox table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    gap: 4px;
}
.tablebox table tr:nth-child(odd) th,
.tablebox table tr:nth-child(odd) td {
    width: 174px;
    background: #feaf8d;
    border-radius: 6px 6px 6px 6px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
.tablebox table tr:nth-child(even) th,
.tablebox table tr:nth-child(even) td {
    width: 174px;
    background: #feded0;
    border-radius: 6px 6px 6px 6px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
.tablebox table tr td,
.tablebox table tr th {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-weight: 400;
    font-size: 14px;
    color: #21261E;
    line-height: 25px;
    border: none;
}
.tablebox table tr td img,
.tablebox table tr th img {
    width: 156px;
    height: 118px;
    border-radius: 2px;
    -o-object-fit: contain;
    object-fit: contain;
}