:root {
    --theme: #b58920;
    --theme-hover: #cca447;
    --text-color: #d0b578;
    --link-hover: #eee6d6
}
/* 分页组件样式 */
.wws-pagination-component {
    display: flex;
    margin-top: 30px;
    user-select: none;
}

.wws-pagination-component .wws-page-item {
    margin: 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wws-pagination-component .wws-page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 8px;
    border: 1px solid var(--theme);
    border-radius: 4px;
    color: var(--theme);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.wws-pagination-component .wws-disabled .wws-page-link {
    border: 1px solid var(--text-color);
}

.wws-pagination-component .wws-page-link:hover {
    background-color: var(--link-hover);
}

.wws-pagination-component .wws-page-item.wws-active .wws-page-link {
    background-color: var(--theme);
    color: white;
    border-color: var(--theme);
    cursor: default;
}

.wws-pagination-component .wws-page-item.wws-disabled .wws-page-link {
    color: #ccc;
    cursor: not-allowed;
}

.wws-pagination-component .wws-page-item.wws-disabled .wws-page-link:hover {
    background-color: transparent;
    border-color: var(--text-color);
}

.wws-pagination-component .wws-page-info {
    margin: 0 12px;
    display: flex;
    align-items: center;
    color: #666;
    font-size: 14px;
}

.wws-pagination-component .wws-page-input {
    width: 50px;
    height: 34px;
    text-align: center;
    border: 1px solid var(--text-color);
    border-radius: 4px;
    margin: 0 8px;
    padding: 0 5px;
}

.wws-pagination-component .wws-page-go {
    padding: 0 12px;
    height: 34px;
    background: var(--theme);
    border-radius: 4px;
    color: #fff;
    margin-left: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.wws-pagination-component .wws-page-go:hover {
    background: var(--theme-hover);
}

@media (max-width: 600px) {
    .wws-pagination-component {
        flex-wrap: wrap;
        margin-top: 15px;
    }
    .wws-pagination-component .wws-page-item {
        display: none;
    }
    .wws-pagination-component .wws-page-info {
        margin-top: 10px;
        width: 100%;
        justify-content: center;
    }

    .wws-pagination-component .wws-page-input {
        width: 50px;
        height: 32px;
        text-align: left;
        border-radius: 3px;
    }
}
