.news-header {
    border-bottom: 1px solid #eaeaea;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
   
    box-sizing: border-box;}

.news-title {
    font-size: 22px; /* 适当减小字体大小 */
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px; /* 减少下边距 */
    color: #fff;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 限制标题最多 2 行 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;}

.news-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px; /* 减小字体大小 */
    color: #666;
    gap: 20px; /* 减少间距 */
    margin-top: 8px;}

.meta-date, .meta-views {
    display: flex;
    align-items: center;
    padding: 6px 12px; /* 减小内边距 */
    background: #f1f5f9;
    border-radius: 20px;
    transition: background 0.3s ease;
    white-space: nowrap;}

.meta-date:hover, .meta-views:hover {
    background: #e2e8f0;}

.meta-icon {
    margin-right: 6px; /* 减小图标间距 */
    font-size: 14px;}

/* 响应式设计（可选） */
@media (max-width: 768px) {
    .news-header {
        height: auto;
        min-height: 150px;
        padding: 15px 20px;}
    
    .news-title {
        font-size: 20px;}
    
    .news-meta {
        flex-direction: column;
        gap: 8px;}
}
.article-container {
            width: 1000px;
            max-width: 100%;
            margin: 0 auto;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;}
        
        .article-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);}
        
        .article-header {
            padding: 40px 40px 25px;
            border-bottom: 1px solid #eaeaea;
            text-align: center;
            background: linear-gradient(to right, #f8f9fa, #ffffff);}
        
        .article-title {
            font-size: 26px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 20px;
            color: #1a1a1a;
            text-align: center;
            position: relative;
            padding-bottom: 15px;}
        
        .article-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #4a90e2, #63b3ed);
            border-radius: 2px;}
        
        .article-meta {
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 15px;
            color: #666;
            gap: 30px;
            margin-top: 15px;}
        
        .publish-date, .view-count {
            display: flex;
            align-items: center;
            padding: 8px 16px;
            background: #f1f5f9;
            border-radius: 20px;
            transition: background 0.3s ease;}
        
        .publish-date:hover, .view-count:hover {
            background: #e2e8f0;}
        
        .icon {
            margin-right: 8px;
            font-size: 16px;}
        
        .article-content {
            padding: 40px 50px;
            font-size: 17px;
            line-height: 1.8;}
        
        .article-content p {
            margin-bottom: 22px;
            text-align: justify;}
        
        .article-content h2 {
            font-size: 24px;
            margin: 35px 0 20px;
            color: #1a1a1a;
            padding-bottom: 10px;
            border-bottom: 1px solid #eaeaea;
            position: relative;}
        
        .article-content h2::before {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 60px;
            height: 3px;
            background: #4a90e2;
            border-radius: 1.5px;}
        
        .article-content blockquote {
            border-left: 4px solid #4a90e2;
            background-color: #f8f9fa;
            padding: 20px 25px;
            margin: 25px 0;
            font-style: italic;
            border-radius: 0 8px 8px 0;
            position: relative;}
        
        .article-content blockquote::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 15px;
            font-size: 50px;
            color: #4a90e2;
            opacity: 0.3;
            font-family: Georgia, serif;
            line-height: 1;}
        
        .article-content img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 25px auto;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);}
        
        .article-footer {
            padding: 25px 40px;
            background: #f8f9fa;
            border-top: 1px solid #eaeaea;
            text-align: center;
            color: #666;
            font-size: 14px;}
        
        /* 响应式设计 */
        @media (max-width: 1100px) {
            .article-container {
                width: 95%;}
        }
        
        @media (max-width: 768px) {
            .article-header, .article-content {
                padding: 25px;}
            
            .article-title {
                font-size: 26px;}
            
            .article-meta {
                flex-direction: column;
                gap: 10px;}
        }
        
        @media (max-width: 480px) {
            body {
                padding: 20px 10px;}
            
            .article-header, .article-content {
                padding: 20px;}
            
            .article-title {
                font-size: 22px;}
            
            .article-content {
                font-size: 16px;}
        }
