@charset "UTF-8";
:root {
    --primary: #870A0F;
    --gold: #FCF4E5;
}

/* ========== 两栏布局 ========== */
.content-two-col {
    display: flex;
    gap: 0.3125rem;
    align-items: flex-start;
}

/* ========== 左侧主内容 ========== */
.content-main {
    flex: 1;
    min-width: 0;
   overflow:hidden
}
.content-main img{
 max-width:100%;
 box-sizing:border-box
}
.article-header {
    padding: 0.1563rem 0 0.1302rem;
    border-bottom: 1px solid #e8e8e8;
    text-align: center;
}

.article-title {
    font-weight: bold;
    margin: 0 0 0.0833rem;
    font-size: 0.1458rem;
    color: #171717;
}

.article-meta {
    font-weight: 400;
    font-size: 0.0833rem;
    color: #585858;
}

.article-meta .sep {
    margin: 0 0.1042rem;
}

.article-body {
    padding: 0.2083rem 0;
}
.article-body img{
 max-width:100%
}

.article-img {
    margin: 0.1563rem 0;
    text-align: center;
}

.article-img img {
    max-width: 100%;
    border-radius: 0.0417rem;
}

.article-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.1563rem;
    padding: 0.1042rem 0;
    margin-top: 0.1042rem;
    font-weight: 400;
    font-size: 0.0833rem;
    color: #999999;
}

/* ========== 右侧边栏 ========== */
.content-sidebar {
    width: 2.296875rem;
    flex-shrink: 0;
    background: url(../imgs/bg_6.png) no-repeat center center /100% 100%;
    padding: 0.1146rem 0.09375rem 0.0833rem;
    box-sizing: border-box;
}

.sidebar-head {
    display: flex;
    align-items: center;
    gap: 0.0729rem;
    margin-bottom: 0.0417rem;
}

.sidebar-img {
    height: 0.1667rem;
}

.sidebar-title {
    font-size: 0.1094rem;
    font-weight: bold;
    color: var(--primary);
}

.sidebar-list {
    display: flex;
    flex-direction: column;
}

.sidebar-item {
    display: flex;
    align-items: flex-start;
    gap: 0.0625rem;
    padding: 0.125rem 0;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}


.sidebar-date {
    flex-shrink: 0;
    font-weight: 400;
    font-size: 0.0833rem;
    color: #870A0F;
}

.sidebar-text {
    font-weight: 400;
    font-size: 0.0833rem;
    color: #171717;
}

.sidebar-item:hover .sidebar-text {
    color: var(--primary);
}

.sidebar-more {
    display: flex;
    justify-content: flex-end;
    margin-top:0.1042rem
}