@charset "utf-8";
/* CSS Document */
/* ========== 新增：文章内容页面样式 ========== */
.article-detail-section {
    padding: 60px 0;
}

.article-detail-container {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 30px;
}

/* 面包屑导航 */
.breadcrumb {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
    color: #888;
}

.breadcrumb a {
    color: #a40013;
    text-decoration: none;
    margin-right: 5px;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 5px;
}

.breadcrumb .current {
    color: #333;
    font-weight: normal;
}

/* 文章标题 */
.article-title {
    font-size: 32px;
    font-weight: bold;
    color: #a40013;
    margin-bottom: 15px;
    line-height: 1.3;
    text-align:center;
}

/* 文章元信息 */
.article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
    margin-top: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
    color: #888;
    font-size: 14px;
    justify-content: center;
}


.meta-item {
    display: flex;
    align-items: center;
}

.meta-item i {
    color: #a40013;
    margin-right: 5px;
    font-size: 14px;
}

/* 正文内容 */
.article-content {
    max-width: 1200px;
    margin: 0 auto;
}

