/*阿凡达网络科技有限公司提供技术支持*/
:root {
     /* 颜色 */
    --mainColor: #005bac;
    --main2Color: #0f3460;
    
}
/* 父容器：弹性布局 + 自适应核心 */
.flex_sty {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    min-height: 46px; /* 自适应高度，不写死 */
    /* 关键：防止子元素被挤压变形 */
    flex-wrap: nowrap;
    gap: 15px; /* 两个模块之间留安全距离 */
}

/* 位置导航 */
.position_sty2 {
    color: #333;
    text-align: left;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}
.position_sty2 a {
    color: #333;
}

/* 返回按钮：强制不换行 */
.goBack {
    z-index: 10;
    white-space: nowrap; /* 核心：文字永远不换行 */
    flex-shrink: 0; /* 关键：不被挤压、不变形 */
}
.goBack a {
    color: #333;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* 底部边框（让返回按钮覆盖在边框线上） */
.flex_sty::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #ccc;
    z-index: 1;
}

/*分页页码 start*/
.page {
    padding:100px 0px;
    text-align:center;
    overflow:hidden;
}
.page a {
    display:inline-block;
    font-size:14px;
    line-height:30px;
    height:30px;
    margin:0 2px;
    padding:0 12px;
    text-align:center;
    color:#999;
    border:1px solid #f6f6f6;
    background:#fff;
}
.page a:hover {
    text-decoration:none;
}
.page a.page-num-current {
    line-height:30px;
    padding:0 12px;
    text-align:center;
    margin-left:2px;
    background:var(--mainColor);
    border:1px solid var(--mainColor);
    color: #fff;
}
.page a.active a {
    color:#fff;
}
/*分页页码 end*/

/*上一篇、下一篇* start*/
.turn_page {
    margin-top: 0.54rem;
    display: grid;
    gap: 0.3rem;
}

.turn_page .ellipsis1 {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.turn_page div a {
    transition: 0.4s;
    font-size: 14px;
    color: #999;
}
/*上一篇、下一篇* end*/











