.page_ctrl {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
}

.page_ctrl * {
    line-height: 30px;
    box-sizing: border-box;
}

.page_ctrl button {
    cursor: pointer;
    margin: 0 5px;
    min-width: 30px;
    padding: 0 10px;
    border: 1px solid rgba(0, 0, 0, .2);
    font-size: 16px;
    color: rgba(0, 0, 0, .5);
    text-align: center;
    background: transparent;
    outline: none;
    border-radius: 4px;
}

.page_ctrl button:hover {
    color: #C7000B;
}
.page_num.current_page:hover {
    color: #fff;
}

.page_ctrl .page_dot {
    width: 30px;
    font-size: 14px;
}

.page_ctrl .current_page {
    border: none;
    background: #C7000B;
    color: #fff;
}

.page_ctrl .input_page_num {
    width: 30px;
    height: 30px;
    line-height: 30px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    margin: 0 5px;
    font-size: 14px;
    text-align: center;
    outline: none;
}

.page_ctrl .page_total,
.page_ctrl .page_text {
    font-size: 16px;
    color: #010101;
}

.page_ctrl .page_total {
    margin: 0 5px 0 30px;
}

.page_ctrl .to_page_num {
    cursor: pointer;
    padding: 0 15px;
    font-size: 16px;
    color: #FFFFFF;
    height: 30px;
    background: linear-gradient(180deg, #574592, #374297);
}

.pagi-jump {
    display: none;
}

@media screen and (max-width: 768px) {
	.page_ctrl * {
        line-height: 25px;
    }
    
    .page_ctrl button {
        margin: 0 5px;
        min-width: 25px;
        padding: 0 8px;
        font-size: 10px;
    }
    
    .page_ctrl .page_dot {
        width: 25px;
        font-size: 10px;
    }

    .page_ctrl .input_page_num {
        width: 25px;
        height: 25px;
        line-height: 25px;
        font-size: 10px;
        margin: 0 5px;
    }
    
    .page_ctrl .page_total,
    .page_ctrl .page_text {
        font-size: 10px;
    }
    
    .page_ctrl .page_total {
        margin: 0 5px;
    }
    
    .page_ctrl .to_page_num {
        padding: 0 8px;
        font-size: 10px;
        height: 25px;
    }

    .pagi-jump {
        width: 100%;
        margin-top: 15px;
    }
}
