  /* 分页控件样式 - 调整版 */
    .pagination-container {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px 0;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 0.4rem;}
    
    .pagination {
        display: flex;
        align-items: center;
        background: #f8f9fa;
        padding: 4px 8px;
        border-radius: 4px;
        border: 1px solid #dee2e6;}
    
    .page-btn {
        min-width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        margin: 0 2px;
        cursor: pointer;
        font-weight: normal;
        transition: all 0.2s ease;
        border: 1px solid #ced4da;
        background: white;
        color: #495057;
        font-size: 14px;
        padding: 0 6px;}
    
    .page-btn:hover {
        background: #e9ecef;
        color: #495057;
        border-color: #adb5bd;}
    
    .page-btn.active {
        background: #008174;
        color: white;
        border-color: #008174;}
    
    .page-btn.disabled {
        background: #f8f9fa;
        color: #6c757d;
        cursor: default;
        border-color: #dee2e6;}
    
    .nav-btn {
        min-width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        margin: 0 4px;
        cursor: pointer;
        background: white;
        border: 1px solid #ced4da;
        transition: all 0.2s ease;
        color: #495057;
        position: relative;
        font-size: 14px;}
    
    .nav-btn:hover {
        background: #e9ecef;
        border-color: #adb5bd;}
    
    .nav-btn.disabled {
        background: #f8f9fa;
        color: #6c757d;
        cursor: not-allowed;
        border-color: #dee2e6;}
    
    .nav-btn.disabled:hover {
        background: #f8f9fa;
        color: #6c757d;
        border-color: #dee2e6;}
    
    /* 使用纯CSS绘制箭头图标 */
    .prev-btn::before {
        content: "";
        position: absolute;
        width: 8px;
        height: 8px;
        border-left: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg);
        margin-left: 2px;}
    
    .next-btn::before {
        content: "";
        position: absolute;
        width: 8px;
        height: 8px;
        border-right: 2px solid currentColor;
        border-top: 2px solid currentColor;
        transform: rotate(45deg);
        margin-right: 2px;}
    
    .goto-container {
        display: flex;
        align-items: center;
        margin-left: 8px;
        background: white;
        padding: 2px 6px;
        border-radius: 4px;
        border: 1px solid #ced4da;}
    
    .goto-label {
        margin-right: 4px;
        font-weight: normal;
        color: #495057;
        font-size: 14px;
        white-space: nowrap;}
    
    .page-input {
        width: 40px;
        height: 28px;
        text-align: center;
        border: 1px solid #ced4da;
        border-radius: 4px;
        margin: 0 4px;
        font-size: 14px;
        transition: border-color 0.2s;}
    
    .page-input:focus {
        border-color: #80bdff;
        outline: none;
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);}
    
    .goto-button {
        padding: 4px 8px;
        background: #6c757d;
        color: white;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-weight: normal;
        transition: all 0.2s ease;
        margin-left: 4px;
        font-size: 14px;}
    
    .goto-button:hover {
        background: #5a6268;}
    
    .page-info {
        margin-left: 8px;
        font-weight: normal;
        color: #6c757d;
        white-space: nowrap;
        font-size: 14px;}
    
    /* 响应式设计 */
    @media (max-width: 768px) {
        .pagination-container {
            flex-direction: inherit;
            gap: 6px;}
        
        .goto-container {
            margin-top: 6px;
            margin-left: 0;}
        
        .page-info {
            margin-top: 6px;
            margin-left: 0;}
    }
/*bq*/
