.details-right {
    flex: 1 1 auto;
    min-width: 0;
}

.details-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
    margin-bottom: 16px;
    background-color: #fff;
    padding: 12px 24px;
}

.details-breadcrumb .home-icon {
    width: 21px;
    height: 21px;
}

.details-breadcrumb .crumb-link {
    color: #333;
    text-decoration: none;
}

.details-breadcrumb .sep {
    color: #999;
    margin: 0 4px;
}

.details-breadcrumb .current {
    color: #000;
    font-weight: 600;
}

.article-details {
    background: #fff;
    padding: 40px 20px;
    border: 1px solid #eee;
}

.details-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--mainColor, #2D87DF);
    margin: 0 0 12px;
    text-align: center;
}

.details-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
    text-align: center;
}

.details-meta .meta-sep {
    color: #999;
    margin: 0 8px;
}

.details-content {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
}

.details-content p {
    margin: 0;
}

.details-content a {
    color: var(--mainColor, #2D87DF);
    text-decoration: none;
}

.details-content img {
    max-width: 100%;
    margin: 10px auto;
}

.article-nav {
    margin-top: 36px;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 8px;

}

.article-link {
    display: block;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
    text-decoration: none;
    text-align: left;
    white-space: normal;
    font-weight: bold;
}

.article-link:hover {
    color: var(--mainColor, #2D87DF);
    text-decoration: underline;
}