/* 页码容器样式 */
.page_num {
    width: 100%;
    margin: auto;
    text-align: center;
    margin-top: 20px;
}

/* 当前页码样式 */
.page_num span {
    display: inline-flex;
    color: #fff;
    background: #27417E;
    font-size: 14px;
    text-transform: capitalize;
    padding: 0;
    vertical-align: middle;
    width: 36px;
    height: 36px;
    line-height: 100%;
    transition: all .5s;
    position: relative; 
    text-align: center;
    border-radius: 0;
    border: 2px solid #27417E;
    align-items: center;
    justify-content: center;
}

/* 页码链接样式 */
.page_num a {
    background: #fff;
    padding: 0;
    display: inline-flex;
    text-transform: capitalize;
    font-size: 14px;
    position: relative;
    z-index: 0;
    vertical-align: middle;
    line-height: 100%;
    transition: all .5s;
    color: #555;
    border-radius: 0;
    width: 36px;
    height: 36px;
    text-align: center;
    border: 1px solid #e5e5e5;
    align-items: center;
    justify-content: center;
}

/* 页码链接悬停样式 */
.page_num a:hover {
    background: #27417E;
    text-decoration: none;
    color: #fff;
    border-color: #27417E;
    border-radius: 50%;
}

/* 页码链接内图标样式 */
.page_num a i {
    line-height: 32px;
}

/* 页码提示文本样式 */
.page_num p {
    display: block;
    font-size: 14px;
    margin: 0;
    margin-top: 15px; 
    color: #808080;
}

/* 页码提示文本前缀 */
.page_num p:before {
    content: '[';
    padding-right: 3px;
}

/* 页码提示文本后缀 */
.page_num p:after {
    content: ']';
    padding-left: 3px;
}

/* 页码提示文本中强调部分样式 */
.page_num p strong {
    display: inline-block;
    margin: 0 5px;
    font-weight: normal;
    color: #27417E;
}

/* 小屏幕设备响应式样式 */
@media only screen and (max-width: 768px) {
    .page_num {
        border-radius: 0;
        text-align: center;
        padding: 0;
        margin-top: 10px;
        border-radius: 5px;
    }

    .page_num a,
    .page_num span {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 14px;
    }

    .page_num a i {
        line-height: 30px;
    }

    .page_num p {
        display: block;
        font-size: 14px;
    }
}

/* 清除浮动 */
.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

/* Owl 轮播图清除浮动 */
.owl-carousel .owl-wrapper:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

/* FAQ 页面中清除浮动元素样式 */
.page_faq_l div.clearfix {
    height: 20px;
    display: block;
}

/* 当前页样式，加粗字体 */
.page_num .current-page {
    font-weight: bold;
	 background: #27417E;
    text-decoration: none;
    color: #fff;
    border-color: #27417E;
}