.detail-container {
    padding: 40px 0 80px;
}

.breadcrumb {
    color: #666;
    font-size: 13px;
    margin-bottom: 18px;
}
.breadcrumb a {
    color: #666;
}

.article-detail {
    background: #fff;
    padding: 30px;
    min-height: 800px;
    /* box-shadow: 0 2px 10px rgba(0,0,0,0.04); */
}
.article-detail h1 {
    font-size: 22px;
    color: #222;
    margin-bottom: 20px;
    text-align: center;
}
.article-meta {
    text-align: center;
    color: #999;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    padding-bottom: 5px;
    margin-bottom: 65px;
    justify-content: center;
}
.article-meta .meta-source {
    font-weight: 500;
}
.article-meta .meta-info {
    display: flex;
    gap: 16px;
    align-items: center;
}
.article-meta .meta-date,
.article-meta .meta-views {
    color: #999;
}

/* 元信息下划线，带左右尖角 */
.meta-underline {
    width: 70%;
    height: 2px;
    background: #e5e5e5;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}
.meta-underline::before {
    content: '';
    position: absolute;
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    border-right: 110px solid #e5e5e5;
}
.meta-underline::after {
    content: '';
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    border-left: 110px solid #e5e5e5;
}
.article-content p {
    margin-bottom: 18px;
    color: #444;
    font-size: 15px;
    text-indent: 2em;
}
.article-content img {
    width: 100%;
    display: inline-block;
    margin: 18px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}


@media (max-width: 768px) {
    .article-detail {
        padding: 30px 20px;
        justify-content: space-around;
    }
    .article-meta {
        font-size: 12px;
        gap: 20px;
        margin-bottom: 30px;
    }
}