/* CSS Document */
/* 主体内容样式 */
.main {
    padding: 40px 0;
    position: relative;
    z-index: 1;
}

/* 面包屑导航（当前位置）- 完全沿用原有样式 */
.breadcrumb {
    padding: 12px 15px;
    background-color: #f5f5f5;
    border-radius: 4px;
    margin-bottom: 25px;
    font-size: 15px;
    color: #666;
}

.breadcrumb a {
    color: #006699;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 8px;
    color: #999;
}

/* ===================== 文章内容页专属样式 ===================== */
/* 内容容器全屏 */
.article-container {
    width: 100%;
    padding: 20px;
    background-color: #fff;
    border-radius: 4px;
}

/* 文章标题 */
.article-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* 文章信息栏：发布者+时间+浏览量 */
.article-info {
    text-align: center;
    color: #999;
    font-size: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #eee;
}

.article-info span {
    margin: 0 15px;
}

/* 正文内容：无格式、纯文本、简洁样式 */
.article-content {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    text-align: justify;
}
/* 正文段落无额外格式 */
.article-content p {
    margin-bottom: 15px;
    text-indent: 0; /* 无缩进 */
    font-weight: normal;
    font-style: normal;
}
/* 动画定义 */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 响应式适配 */
@media (max-width: 768px) {
    /* 文章内容页移动端适配 */
    .article-title {
        font-size: 22px;
    }
    .article-info span {
        margin: 0 8px;
        display: inline-block;
        margin-bottom: 5px;
    }
    .article-container {
        padding: 15px;
    }
}

