.article-container {
    max-width: 2200px;
    margin: 20px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    /* 确保文章内容层级较低，不遮挡下拉菜单 */
    position: relative;
    z-index: 1;
}

.article-container .article-title {
    font-size: 26px;
    font-weight: bold;
    color: #333;
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
    margin-bottom: 25px;
}

.article-container .article-content {
    /* 移除固定的排版样式，让编辑器样式生效 */
}

/* 针对文章详情页的特殊处理：修正 Header 下拉菜单被遮挡的问题 */
#nav {
    overflow: visible !important;
    position: relative;
    z-index: 1000;
}

/* 保持 Logo 切图逻辑，替代原 #nav 的 overflow: hidden */
#nav .logo-center {
    overflow: hidden;
}
