[file name]: show.css
[file content begin]
/* 文章详情页样式 */

.article-detail-page {
    background: #f8f9fa;
    min-height: 100vh;
}

.article-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.article-header-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.article-title {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.3;
    margin: 0;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.meta-actions {
    display: flex;
    gap: 0.5rem;
    margin-left: auto;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.85rem;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: white;
}

.btn-original {
    background: rgba(255, 255, 255, 0.25);
}

.btn-original:hover {
    background: rgba(255, 255, 255, 0.35);
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.85rem;
    backdrop-filter: blur(10px);
    transition: background 0.3s;
}

.tag:hover {
    background: rgba(255, 255, 255, 0.3);
}

.article-intro {
    border-left: 4px solid #667eea;
}

.article-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.snapshot-section .snapshot-content {
    max-height: 600px;
    overflow-y: auto;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 5px;
    border: 1px solid #dee2e6;
}

.snapshot-section .snapshot-content img {
    max-width: 100%;
    height: auto;
}

.original-link {
    border: 2px dashed #dee2e6;
    background: #f8f9fa;
}

.related-articles .related-article-item {
    display: flex;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    transition: background 0.3s;
}

.related-articles .related-article-item:hover {
    background: #f8f9fa;
}

.related-article-item .related-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.related-article-item .related-info {
    flex: 1;
}

.related-article-item h5 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

/* 文章导航 - 同一行各占一半 */
.article-navigation {
    margin: 2rem 0;
}

.article-navigation .nav-row {
    display: flex;
    gap: 1rem;
}

.article-navigation .nav-link {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
    background: white;
    border: 1px solid #e9ecef;
    min-width: 0;
}

.article-navigation .nav-link:hover {
    background: #f8f9fa;
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.article-navigation .nav-link.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #f8f9fa;
}

.article-navigation .nav-link.disabled:hover {
    transform: none;
    box-shadow: none;
    border-color: #e9ecef;
}

.article-navigation .nav-arrow {
    font-size: 1.5rem;
    color: #667eea;
    flex-shrink: 0;
}

.article-navigation .nav-content {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.article-navigation .nav-label {
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.article-navigation .nav-title {
    font-weight: 500;
    line-height: 1.4;
    color: #212529;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.article-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.article-info-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f8f9fa;
}

.article-info-list li:last-child {
    border-bottom: none;
}

.article-info-list i {
    width: 20px;
    color: #667eea;
}

.latest-articles-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.latest-articles-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f8f9fa;
}

.latest-articles-list li:last-child {
    border-bottom: none;
}

.latest-articles-list a {
    text-decoration: none;
    color: #495057;
    transition: color 0.3s;
}

.latest-articles-list a:hover {
    color: #667eea;
}

.article-date {
    float: right;
    color: #6c757d;
    font-size: 0.85rem;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.share-btn, .copy-link-btn {
    flex: 1;
    min-width: 70px;
}

/* 正文区域全宽 */
.article-content-wrapper {
    max-width: 100%;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .article-title {
        font-size: 1.5rem;
    }
    
    .article-meta {
        gap: 1rem;
        font-size: 0.85rem;
    }
    
    .article-navigation .nav-row {
        flex-direction: column;
    }
    
    .article-navigation .nav-link {
        padding: 1rem;
    }
    
    .article-header {
        padding: 1.5rem 0;
    }
    
    .header-actions {
        justify-content: flex-start;
    }
}
[file content end]