/* 全局样式 */
@font-face {
    font-family: "Figtree"; 
    src: url("./font/figtree.ttf") format("truetype");
    font-weight: normal;         
    font-style: normal;          
    font-display: swap;  
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Figtree', sans-serif;
}

body {
    font-family: "Figtree";
    background-color: #000000;
    color: #ffffff;
    font-size: 16px;
    min-height: 100vh;
    min-width: 790px;
    background-image: url('./img/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: repeat;
    -webkit-user-select: none; 
    -moz-user-select: none;    
    -ms-user-select: none;    
    user-select: none;   
    padding: 5px;     
}
.titleText{

    font-weight: bold;
}
.titleText1{

}
.nohavedata{
    display: block;
    width: 100%;
    margin-top: 20px;
}
.row1{
    min-width: 790px;
    text-align: center;
}

.btnDate.active{
    background-image: url("./img/btn0.png");
    height: 30px;
    width: 83px;
    border: unset;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: transparent;
    cursor: pointer;
    color: #000000;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-right: 12px;
}

.btnDate.unactive{
    background-image: url("./img/btn1.png");
    height: 30px;
    width: 80px;
    border: unset;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: transparent;
    cursor: pointer;
    color: #cdcdcf;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-right: 12px;
    font-size: 16px;
}

.btnDate:hover{
    transform: scale(1.1);
}
.row2{
    text-align: center;
}
.row3{
    margin: 0 auto;
    width: 790px;
    height: 52px;
    background-color: #000000;
    border-radius: 20px;
    display: flex;
}
.totalList{
    width: 155px;
    height: 52px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.bgline{
    height: 32px;
}
.totalArea{
    display: flex;
    align-items: center;
}
.row4{
    margin: 0 auto;
    width: 100%;
    height: max-content;
    overflow: hidden;
    display: flex;
    justify-content: center;
}
.table{

    width: 790px;
    border-collapse: collapse;
    border-spacing: 0;
    overflow: hidden;
    table-layout: fixed;
}
.table thead {
    border-bottom: 2px solid #efd2a1; 
    text-align:center;
    display: table;
    width: 100%;
    table-layout: fixed;
}
.table th {
    padding: 10px;
    height: 40px;
    text-align:center;
}
.table tbody {
    display: block;
    text-align:center;
    max-height: 544px;
    /* width: max-content; */
    display: block;
    overflow-y: auto;
    overflow-x: hidden;
}
.table tbody tr{
    text-align:center;
    border-bottom: 2px solid #efd2a1; 
    display: table;
    width: 100%;
    table-layout: fixed;
}

.table tbody tr td{
    font-size: 13px;
    height: 55px !important;
    padding: 5px 0px 5px 0px;
}

/* 滚动条样式美化（可选） */
.table tbody::-webkit-scrollbar {
    width: 6px; /* 滚动条宽度 */
}

.table tbody::-webkit-scrollbar-track {
    background: #2d2d2d; /* 滚动条轨道背景 */
    border-radius: 3px;
}

.table tbody::-webkit-scrollbar-thumb {
    background: #434343; /* 滚动条滑块颜色 */
    border-radius: 3px;
}

.table tbody::-webkit-scrollbar-thumb:hover {
    background: #555; /* 鼠标悬停时滑块颜色 */
}
.table th:nth-child(1) { 
    width: 120px; 
} 
.table th:nth-child(2) { 
    width: 120px; 
} 
.table th:nth-child(3) { 
    width: 120px; 
}
.table th:nth-child(4) { 
    width: 120px; 
} 
.table th:nth-child(5) { 
    width: 120px; 
}
.table th:nth-child(6) { 
    width: 120px; 
}

.table tbody tr td:nth-child(1) {
    text-align: center;
}
.table tbody tr td:nth-child(2) {
    text-align: center;
}
.table tbody tr td:nth-child(3) { 
    text-align: center;
    color: #dac295;
}
.table tbody tr td:nth-child(4) {
    text-align: center;
}
.table tbody tr td:nth-child(5) {
    text-align: center;
}
.table tbody tr td:nth-child(6) {
    text-align: center;
}
.winloseDetail{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.circle{
    width: 25px;
    height: 25px;
    background-color: rgb(0, 21, 255);
    border-radius: 50%;
    margin-right: 10px;
    font-size: 20px;
    line-height: 25px;
    box-sizing: border-box;
    position: absolute;
    margin-right: 100px;
    z-index: 1;
}
.circlebg{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.winloseDetailText{
    z-index: 10;
}
.row5{
    margin: 0 auto;
    text-align: center;
    width: 790px;
    position: relative;
    display: none;
}
.pageRoot{
    /* right: 0;
    position: absolute; */
}
.pageBtn{
    background-image: url("./img/pagebtn0.png");
    height: 36px;
    width: 83px;
    border: unset;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: transparent;
    cursor: pointer;
    color: #000000;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-right: 20px;
    margin-left: 20px;
    font-size: 16px;
}

.pageBtn:hover{
    background-image: url("./img/pagebtn1.png");
}
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.loading-overlay.show {
    opacity: 1;
    visibility: visible;
}
.loading-content {
    text-align: center;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.9);
    border-radius: 8px;
    width: 400px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    position: absolute;
    top: 30%;
}

.loading-overlay.show .loading-content {
    transform: scale(1);
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ff0000;
    animation: spin 1s ease-in-out infinite;
    margin: 0 auto 20px;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px;
}

.text-red{
    color: red;
}
.text-white{
    color: white;
}


@media (max-width: 480px) {

}