﻿:root {
    --color: #5C6335;
    --top60: 60px;
}

.ZsyPagination {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: var(--top60);
    gap: 5px;
}

.ZsyTotal {
    font-size: 12px;
    color: rgb(165, 165, 165);
}

.ZsyItem {
    font-size: 12px;
    height: 30px;
    background: #ffffff;
    color: rgb(165, 165, 165);
    border: 1px solid rgb(165, 165, 165);
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
}

.ZsyItem.ZsyActive {
    background: var(--color);
    border: 1px solid var(--color);
    color: #fff;
}

.ZsyItem.ZsyDisabled {
    cursor: not-allowed;
}

.ZsyEllipsis{
    cursor: default;
    pointer-events: none; 
    border: none;
}

.ZsyItem a {
    width: 100%;
    height: 100%;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ZsyItem a svg {
    width: max-content;
    height: 10px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.ZsyPagesizewrap {
    position: relative;
    width: 90px;
    flex-shrink: 0;
}

.ZsyChufa {
    width: 100%;
    height: 30px;
    padding: 0 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    border: 1px solid rgb(165, 165, 165);
    border-radius: 3px;
    background: #ffffff;
    font-size: 12px;
    color: rgb(165, 165, 165);
    line-height: 1;
    cursor: pointer;
}

.ZsyBiao {
    flex: 1;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ZsyJiantou {
    width: 14px;
    height: auto;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.ZsyLie {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 4px);
    bottom: auto;
    background: #fff;
    border: 1px solid rgb(165, 165, 165);
    border-radius: 3px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    z-index: 50;
    transform: scaleY(0);
    transform-origin: top center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out,
        visibility 0s linear 0.3s;
}

.ZsyLie.ZsyLiedakai {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out,
        visibility 0s linear 0s;
}

.ZsyPagesizewrap.ZsyXiangshang .ZsyLie {
    top: auto;
    bottom: calc(100% + 4px);
    transform-origin: bottom center;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
}

.ZsyHang {
    width: 100%;
}

.ZsyHang a {
    display: block;
    padding: 8px;
    font-size: 12px;
    color: rgb(165, 165, 165);
    line-height: 1;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}

.ZsyHang a:hover {
    background: rgba(56, 88, 174, 0.08);
    color: var(--color);
}

.ZsyHang a.ZsyXuan {
    background: var(--color);
    color: #fff;
}

.ZsyJumpwrap {
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}

.ZsyJumpwrap span {
    font-size: 12px;
    color: rgb(165, 165, 165);
    line-height: 1;
}

.ZsyJumpwrap input {
    width: 50px;
    height: 30px;
    border: 1px solid rgb(165, 165, 165);
    line-height: 1;
    background: #ffffff;
    font-size: 12px;
    color: rgb(165, 165, 165);
    padding: 0 10px;
    border-radius: 3px;
    text-align: center;
}