 /* 1. 让主内容区域使用 Flex 布局，方便内部卡片居中 */
.article-main-section {
    display: flex;
    justify-content: center;
    /* 水平居中 */
    width: 100%;
    padding: 30px 0;
    /* 上下留出一些间距 */
    background-color: #f8f9fa;
    /* 保持与截图一致的浅灰色背景 */
}

/* 2. 限制红框内部容器的最大宽度，并添加内边距 */
.article-container {
    width: 100%;
    max-width: 1140px;
    /* 根据常见的 Bootstrap 大屏幕断点设定，可根据实际需求微调 */
    padding: 0 15px;
    /* 响应式左右留白 */
}

/* 3. 红框本身的卡片样式（白色背景、圆角、阴影、垂直间距） */
.article-content {
    background-color: #ffffff;
    border-radius: 8px;
    /* 圆角效果 */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    /* 轻微的投影，让卡片浮起来 */
    padding: 40px;
    /* 内部四周的内边距，让内容与边框保持距离 */
    margin-bottom: 30px;
    /* 底部外边距 */
}

/* 4. 面包屑导航样式微调（可选，提升视觉舒适度） */
.breadcrumb-nav {
    font-size: 14px;
    color: #6c757d;
    /* 浅灰色字体 */
    margin-bottom: 20px;
}

.breadcrumb-nav i {
    margin-right: 5px;
    color: #007bff;
    /* 首页图标颜色 */
}

.breadcrumb-nav a {
    color: #6c757d;
    text-decoration: none;
}

.breadcrumb-nav a:hover {
    color: #007bff;
    text-decoration: underline;
}

.breadcrumb-nav .separator {
    margin: 0 10px;
    color: #adb5bd;
}

/* 5. 文章标题样式微调 */
.article-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
    text-align: center;
    /* 底部的分割线 */
}

/* 6. 文章正文样式微调 */
.article-body {
    color: #444;
    line-height: 1.8;
    /* 增加行高，阅读更舒适 */
    font-size: 16px;
}

.article-body p {
    margin-bottom: 15px;
}