/*内容扩展-引用*/
.container .page-body blockquote {
    margin: 0;
}

.container .page-body blockquote p {
    font-style: italic;
    color: #999;
}

.container .page-body blockquote p::before {
    content: open-quote;
}

.container .page-body blockquote p::after {
    content: close-quote;
}

.container .page-body p img {
    margin: 0 auto;
    display: block !important;
    width: auto;
    height: auto;
}

.container .page-body figure img {
    margin: 0 auto;
    display: block !important;
    width: auto;
    height: auto;
}

/*内容扩展-链接*/
.container .page-body p a {
    text-decoration: underline;
}

/*内容扩展-表格*/
.container .page-body table {
    width: 80% !important;
    text-align: center;
    margin-bottom: 20px;
}

.container .page-body table colgroup col {
    width: auto !important;
}

.container .page-body table tbody tr {
    height: auto !important;
    background-color: #f3f3f3;
}

.container .page-body table tbody tr p {
    margin-bottom: 10px;
    text-indent: 0;
}

/*左侧菜单*/
.page-content {
    display: flex;
    gap: 20px;
}

.page-sidebar {
    flex-shrink: 0;
    width: 200px;
}

.sidebar-menu {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
}

.sidebar-menu .menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    color: #333;
    font-size: 14px;
    text-decoration: none;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.2s;
}

.sidebar-menu .menu-item:last-child {
    border-bottom: none;
}

.sidebar-menu .menu-item:hover {
    background-color: #f5f5f5;
}

.sidebar-menu .menu-item.active {
    color: #fb3434;
}

.sidebar-menu .menu-item .chevron {
    font-style: normal;
    color: #fb3434;
    font-size: 12px;
}

.page-inner {
    flex: 1;
    min-width: 0;
    min-height: calc(100vh - 410px);
}