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: 1100px;
    }
.banner img {
    margin-top: -5px;
    width: 100%;
    margin-bottom: 25px;
}

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

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

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

table {
    display: block;
    border: #fff 1px solid;
    border-bottom: #fff 1px solid;
    border-spacing: 0;
    border-collapse: collapse;
    cursor: default;
}

tbody {
    display: block;
    /* height: 202px; */
    border: 0;
    border-spacing: 0;
    border-collapse: collapse;
    cursor: default;
}

tbody {
    overflow-y: scroll;
}

table thead {
    height: 80px;
}

table thead,
tbody tr {
    display: table;
    width: 100%;
    table-layout: fixed;
}

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

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

table thead th:first-child img {
    width: auto;
    transform: translateX(-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: left !important;
    padding-left: 50px;
    border-color: #fff;
    border-width: 1px;
}

table tbody td:first-child {
    width: 480px;
    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;
}