/* .page-box{
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
} */
.page-box{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 3.125rem;
}
#pageBox{
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    height: 3.125rem;
    font-size: 1rem;
}
#prev,
#next{
    cursor: pointer;
}
#prev>img{
    transform: rotate(180deg);
}
#pageNav{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: .625rem;
    margin-right: .3125rem;
    list-style-type: none;
    padding: 0;
}
#pageNav>li {
    list-style: none;
    background: #6fb1ff;
    border-radius: .3125rem;
    color: #fff;
    padding: 0 .625rem;
    margin-right: .3125rem;
    cursor: pointer;
}
#pageNav>li.cur{
    background: #3d65c4;
}