#page {
    width: 100%;
    text-align: center;
}
.pageNum {
    display: inline-block;
    cursor: pointer;
    border: none;
    color: #ffffff;
    background-color: #003e6a;
    font-size: 16px;
    font-family: "Century Gothic", "Heiti TC", "微軟正黑體", "Arial", "新細明體";
    -webkit-appearance: none;
    border-radius: 3px;
    cursor: pointer;
    display: inline-block;
    font-weight: 400;
    height: auto;
    letter-spacing: 2px;
    line-height: 25px;
    margin: 0 5px 10px 2px;
    padding: 8px 24px;
    text-align: center;
    text-transform: uppercase;
    transition: all .3s ease-out;
}

/* 
.pageNum:hover,
#firstPage:hover,
#lastPage:hover {
    font-size: 20px;
}
 */

#firstPage,
#lastPage {
    cursor: pointer;
}
#firstPage {
    margin-right: 5px;
}
#lastPage {
    margin-left: 5px;
}
#pervPage,
#nextPage {
    width: 20px;
    padding: 10px;
}
#pervPage::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    display: inline-block;
    border-width: 8px 12px 8px 0;
    border-color: transparent #003e6a transparent transparent;
    margin-left: 5px;
    vertical-align: middle;
}
#nextPage::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    display: inline-block;
    border-width: 8px 0 8px 12px;
    border-color: transparent transparent transparent #003e6a;
    margin-right: 5px;
    vertical-align: middle;
}
.pageNum.current {
    background: #ed7d31;
    /* background-color: #f80056 !important;
    background-image: linear-gradient(#ffa700, #ff8000) !important; */
    color: #FFFFFF;
}
@media screen and (max-width: 549px) {
    .pageNum {
        padding: 4px 6px;
    }
    #firstPage,
    #lastPage {
        color: #003e6a;
        background-color: transparent;
        margin: 0 2px 2px 2px;
        padding: 2px 2px;
    }
    .pageNum:hover,
    #nextPage:hover,
    #pervPage:hover,
    #firstPage:hover,
    #lastPage:hover {
        font-size: 13px;
    }
}
