/* 文章详情页样式 */
.article_detail {
    padding: 120px 0 40px 0; /* 顶部增加padding避免被固定导航栏遮挡 */
}

.article_header {
    margin-bottom: 30px;
}

.article_title {
    font-size: 32px;
    font-weight: bold;
    line-height: 1.4;
    color: #333;
    margin-bottom: 15px;
    /* 标题截取 */
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 最多显示2行 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

.article_meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.article_meta .separator {
    margin: 0 10px;
}

.article_content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
}

.article_content h1,
.article_content h2,
.article_content h3,
.article_content h4,
.article_content h5,
.article_content h6 {
    font-weight: bold;
    margin: 20px 0 15px;
    color: #333;
}

.article_content h1 {
    font-size: 28px;
}

.article_content h2 {
    font-size: 24px;
}

.article_content h3 {
    font-size: 20px;
}

.article_content p {
    margin-bottom: 15px;
}

.article_content ul,
.article_content ol {
    margin: 15px 0;
    padding-left: 30px;
}

.article_content li {
    margin-bottom: 8px;
}

.article_content img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    object-fit:cover;
}

.article_content a {
    color: #007bff;
    text-decoration: underline;
}

.article_content a:hover {
    color: #0056b3;
}

/* 文章标签样式 - 参照列表页样式 */
.article_detail .articles_tag {
    font-size: 0.889rem;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e5e5e5;
}

.article_detail .articles_tag span {
    border: 1px solid rgba(4, 7, 8, 0.15);
    background-color: #FFF;
    border-radius: 0.5rem;
    padding: 0.2rem 0.5rem;
    margin-right: 0.5rem;
    display: inline-block;
}

/* 最新文章区域 */
.latest_articles {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.subsection_gray {
    background-color: #f8f8f8;
}

.section_title {
    margin-bottom: 30px;
}

.section_title h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    text-align: center;
}

/* 最新文章区域 - 使用首页的滚动样式 */
.latest_articles .scroll_articles {
    width: var(--container-max-width, 1200px);
    margin: 0 auto;
    position: relative;
}

.latest_articles .articles_list li h5 {
    /* 标题截取 */
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 最多显示2行 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    
    line-height: 2;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .article_detail {
        padding: 100px 0 30px 0; /* 移动端减少顶部padding */
    }

    .article_title {
        font-size: 24px;
        -webkit-line-clamp: 3; /* 移动端最多显示3行 */
    }

    .latest_articles .articles_list li h5 {
        -webkit-line-clamp: 2; /* 移动端保持2行 */
        min-height: 2.8em;
    }

    .article_content {
        font-size: 14px;
    }

    .latest_articles .articles_list li h5 {
        -webkit-line-clamp: 2; /* 移动端保持2行 */
        min-height: 2.8em;
    }
}

