html,body{
    padding:0;
    margin:0;
    font-size: 12px;
    display: block;
    color: #FFFFFF;
    font-family: Arial, sans-serif;
    background: #000000;
    width: 100vw;
    overflow-x: hidden;
}


/* 分页控件样式 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 10px;
}

.pagination button {
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    color: #333;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.pagination button:hover:not(:disabled) {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}

.pagination button:disabled {
    background-color: #f5f5f5;
    color: #ccc;
    cursor: not-allowed;
}

.pagination .active-page {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}

.pagination .dots {
    font-size: 18px;
    color: #333;
}