body {
    background: url(../img/背景.png);
    /* overflow: hidden; */
}

a {
    /* text-decoration: none; */
    color: #fff;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.table-wrapper {
    position: relative;
    width: 1200px;
    margin: 0 auto;
    /* padding:0 100px; */
    height: 1050px;
}

.banner img {
    margin-top: -5px;
    width: 100%;
    margin-bottom: 25px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 110px;
}

.logo img {
    width: 297px;
    margin-bottom: 0px;
}

.title img {
    /* transform: scale(.7); */
}

.table-container {
    height: 450px;
    overflow-y: auto;
    border: 1px solid #fff;
}

table {
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
    cursor: default;
    table-layout: fixed;
}

tbody {
    /* No specific styles needed here anymore */
}

table thead {
    height: 80px;
}

thead {
    position: sticky;
    top: 0;
}

table thead th {
    border: none;
    border-bottom: #fff 1px solid;
    border-right: #fff 1px solid;
    background: #042141;
}

table thead th:first-child {
    width: 100px;
}

table thead th:first-child img {
    width: auto;
    /* transform: translateX(-150PX); */
}
table thead th:nth-child(2){
    width: 150px;
}
table thead th:last-child {
    border-right: none;
}

table thead th:last-child img {
    width: auto;
    /* transform: translateX(-260PX); */
}

table tbody td {
    font-family: Source Han Sans CN Regular;
    text-align: center;
    font-size: 18px;
    color: #fff;
    border-top: none;
    /* border-right: none; */
    height: 58px;
    text-align: center !important;
    /* padding-left: 50px; */
    border-color: #fff;
    border-width: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

table tbody td:first-child {
    width: 100px;
    text-align: center;
    border-left: none;
}

table tbody tr:last-child td {
    border-bottom: none;
}

.footer {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    /* transform: translateY(-20px); */
}

/*滚动条的宽度*/

::-webkit-scrollbar {
    width: 15px;
    border: #fff 1px solid;
}

/* 滚动条轨道的颜色 */

::-webkit-scrollbar-track {
    /*background black*/
    background: #2A343E;
    /* width: 16px; */
    /* border-radius: 5px; */
}

/* 滚动条的颜色 */

::-webkit-scrollbar-thumb {
    background: #5B636C;
    /* border-radius: 5px; */
}

/* 鼠标经过滚动条时的颜色 */

::-webkit-scrollbar-thumb:hover {
    background: #5B636C;
}
