<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.pagination {
    display: flex;
    gap: 8px;
    padding: 12px 0;
    margin: 0;
    list-style: none;
    justify-content: center;
}

/* é€šç”¨æŒ‰é’®æ&nbsp;·å¼ */
.pagination li {
    min-width: 44px;  /* WCAGæŽ¨èæœ€å°ç‚¹å‡»å°ºå¯¸ */
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f4f4f4;
}

/* å½“å‰é¡µæ&nbsp;·å¼ */
.pagination .active {
    background-color: #ff4444 !important;  /* è®¾è®¡ç¨¿çº¢è‰² */
    color: white;
    box-shadow: 0 2px 4px rgba(255, 68, 68, 0.2);

}

/* å¯ç‚¹å‡»é¡¹æ&nbsp;·å¼ */
.pagination a,
.pagination span:not(.disabled) {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    /*color: #666;*/
    text-decoration: none;
    border: 1px solid #e0e0e0;  /* è®¾è®¡ç¨¿è¾¹æ¡†è‰² */
    /*background: #f4f4f4;*/
    border-radius: inherit;
}

/* æ‚¬åœæ•ˆæžœ */
.pagination li:not(.active):not(.disabled):hover {

    transform: translateY(-3px);
    background-color: #ff4444 !important;  /* è®¾è®¡ç¨¿çº¢è‰² */
    color: white;
}

/* ç¦ç”¨çŠ¶æ€ä¼˜åŒ– */
.pagination .disabled {

    cursor: not-allowed;
    background: #f8f8f8 !important;
    border-color: #eee;
}

/* æ–‡å­—ä¿¡æ¯é¡¹ç‰¹æ®Šå¤„ç† */


 .pager {
     list-style: none;
     padding: 0;
     margin: 20px 0;
     display: flex;
     justify-content: space-between;
     gap: 10px;
 }

.pager li {
    flex: 1;
    text-align: center;

}

.pager a {
    display: block;
    padding: 12px 15px;
    background-color: #ff4444;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.pager a:active {

    transform: scale(0.98);
}

.pager .disabled span {
    display: block;
    padding: 12px 15px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    color: #6c757d;
    font-size: 14px;
    opacity: 0.7;
}

@media (max-width: 480px) {
    .pager {
        margin: 15px 0;
    }

    .pager a,
    .pager .disabled span {
        padding: 10px 12px;
        font-size: 13px;
    }
}

</pre></body></html>