﻿@charset "utf-8";

body {
    font-family: "Noto Sans SC", "Source Han Sans SC", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    list-style: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-weight: 400;
}

:root {
    --color: rgba(77, 42, 0, 1);
}

textarea,
select,
option,
input,
button {
    transition: all 0.3s ease;
    outline: none;
    background: transparent;
    border: transparent;
    font-family: "Noto Sans SC", "Source Han Sans SC", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
}

textarea {
    resize: none;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

input::placeholder,
textarea::placeholder {
    color: inherit;
    background: transparent;
    border: transparent;
}

a {
    color: inherit;
    text-decoration: none;
    font-weight: inherit;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img {
    border: 0;
    display: block;
}


.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;
}





