.article-detail-page main {
    min-height: 880px;
}

.article-detail-page .layout-cols {
    margin-top: 20px;
}

.article-detail-page .layout-main {
    padding: 30px 34px 48px;
}

.article-detail-header {
    margin-bottom: 14px;
    padding-bottom: 18px;
    border-bottom: 1px solid #ededed;
}

.article-detail-title {
    margin-bottom: 14px;
    color: #302d2d;
    font-size: clamp(1.65rem, 2.7vw, 2rem);
    font-weight: 700;
    line-height: 1.38;
    letter-spacing: 0.01em;
    text-align: left;
}

.article-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 20px;
    color: #aaa;
    font-size: 0.8rem;
    font-variant-numeric: tabular-nums;
    justify-content: flex-start;
    text-align: left;
}

.article-detail-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    position: relative;
}

#cjly_nav01 {
    flex: 0 0 40px;
    width: 40px;
    position: relative;
    z-index: 10;
}

.article-share-label {
    display: block;
    width: 40px;
    height: 30px;
    color: #999;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
}

.share-icon-btn {
    display: block;
    width: 40px;
    height: 40px;
    margin: 0 0 10px;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: transparent;
    cursor: pointer;
    transition: opacity var(--transition-fast);
}

.share-icon-btn:hover {
    opacity: 0.78;
}

.share-icon-btn img {
    width: 40px;
    max-width: none;
    height: 40px;
}

.article-share-qr {
    position: absolute;
    top: 28px;
    left: 50px;
    width: 212px;
    padding: 34px 15px 12px;
    border: 1px solid #dedede;
    background: #fff;
    box-shadow: var(--shadow-md);
    z-index: 20;
}

.article-share-qr[hidden] {
    display: none;
}

.article-share-qr-close {
    position: absolute;
    top: 3px;
    right: 5px;
    width: 28px;
    height: 28px;
    min-width: 0;
    min-height: 0;
    background: transparent;
    color: #777;
    cursor: pointer;
    font-size: 24px;
    line-height: 28px;
}

.article-share-qr-close:hover {
    color: var(--primary-red);
}

.article-share-qr-code {
    width: 180px;
    height: 180px;
    margin: 0 auto;
}

.article-share-qr-code canvas,
.article-share-qr-code img {
    width: 180px !important;
    height: 180px !important;
}

.article-share-qr p {
    margin-top: 8px;
    color: #777;
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
}

.article-detail-body {
    flex: 1;
    min-width: 0;
    margin-left: 0;
    color: #333;
    font-size: 1.03rem;
    line-height: 2;
}

.article-detail-body p {
    margin-bottom: 30px;
    text-align: justify;
    text-indent: 2em;
}

.article-editor-tag {
    margin-top: 50px;
    color: #777;
    font-size: 0.85rem;
    text-align: right;
}

.article-detail-page .layout-sidebar .card-panel {
    padding: 18px 20px 20px;
}

.photo-news-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.photo-news-item {
    position: relative;
    display: block;
    height: 138px;
    overflow: hidden;
    border: 1px solid #eee;
    background: #f4f4f4;
    cursor: pointer;
}

.photo-news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal), filter var(--transition-normal);
}

.photo-news-item:hover .photo-news-img {
    transform: scale(1.025);
    filter: brightness(0.9);
}

.photo-news-title-overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    padding: 24px 12px 9px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
    color: #fff;
    font-size: 0.82rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 992px) {
    .article-detail-page main {
        min-height: 0;
    }

    .article-detail-page .layout-sidebar {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .article-detail-header {
        text-align: left;
    }

    .article-detail-title {
        text-align: left;
    }

    .article-meta-info {
        justify-content: flex-start;
        text-align: left;
    }

    .article-detail-page .layout-main {
        padding: 22px 18px 32px;
    }

    .article-detail-layout {
        display: block;
    }

    #cjly_nav01 {
        position: static;
        display: flex;
        width: 100%;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
        transform: none;
    }

    .article-share-label {
        width: auto;
        height: 40px;
        margin-right: 2px;
        line-height: 40px;
    }

    .share-icon-btn {
        flex: 0 0 40px;
        margin: 0;
    }

    .article-share-qr {
        top: 50px;
        left: 0;
    }

    .article-detail-body {
        max-width: 100%;
        margin-left: 0;
        font-size: 1rem;
        line-height: 1.9;
        text-align: left;
    }

    .article-detail-body p {
        text-align: left;
    }

    .article-detail-page .layout-sidebar {
        display: block;
    }
}