/* ========== 主体布局 ========== */
.org-wrapper {
    display: flex;
    gap: 0.4427rem;
    align-items: flex-start;
}
.main{
    width: 7.2917rem;
}

/* ========== 左侧导航 ========== */
.org-sidebar {
    width: 1.526rem;
    flex-shrink: 0;
    background:url(../imgs/jgsz_2.png) no-repeat top left/cover;
    height: 2.890625rem;
    position: relative;
    border-top:1px solid rgba(235, 184, 80,1);
    &:before{
        content:'';
        width: 0.0677rem;
        height: 0.724rem;
        background: url(../imgs/jgsz_1.jpg) no-repeat bottom center/cover;
        position: absolute;
        left:0;
        top:0;
        transform: translateX(-100%);
    }
}
.phone_oreg-sidebar{
    display: none;
}
.org-nav {
    display: block;
    padding: 0.1042rem 0.1563rem;
    transition: all 0.2s;
    text-align: center;
    font-size: 0.125rem;
    color: #333333;
}
.org-nav:last-child {
    border-bottom: none;
}
.org-nav:hover,
.org-nav.active {
    background: var(--primary);
    color: #fff;
    font-weight: bold;
}

/* ========== 右侧主区域 ========== */
.org-main {
    flex: 1;
    min-width: 0;
}


/* ========== 分组标题 ========== */
.org-group {
    margin-bottom: 0.2083rem;
}
.group-title {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 0.2604rem;
}
.group-bar {
    height: 5px;
    background: linear-gradient(-90deg, #870A0F, #E8AF55);
    position: absolute;
    left:0;
    width: 100%;
    top:50%;
    transform: translateY(-50%);
}
.group-text {
    font-weight: bold;
    color: var(--title);
    position: relative;
    z-index: 1;
    padding:0 0.1458rem;
    background: #fff;
    margin-left: 0.28125rem;
    font-size: 0.15625rem;
}

/* ========== 分页 ========== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.0521rem;
    padding: 0.2083rem 0;
}
.page-num {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding:0 0.0833rem;
    height: 0.1771rem;
    border: 1px solid #AAAAAA;
    font-weight: 400;
    font-size: 0.0885rem;
    color: #010102;
    box-sizing: border-box;
}
.page-num.active,
.page-num:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.page-link {
    width: 0.4479rem;
    height: 0.2292rem;
    border: 1px solid #A0A0A0;
    font-weight: 400;
    font-size: 0.0885rem;
    color: #040403;
    display: flex;
    align-items: center;
    justify-content: center;
}
.prev{
    margin-left: 0.1042rem;
}
.page-link:hover {
    border-color: var(--primary);
    color: var(--primary);
}