
        
        /* 内容卡片样式 */
        .content-card {
            background: white;
            border-radius: 8px;
            box-shadow: var(--shadow-md);
            overflow: hidden;
            margin-bottom: 2.5rem;
        }
        
        .card-header {
            padding: 1.5rem;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
            border-bottom: 1px solid var(--border-color);
            font-size: 1.5rem;
        }
        
        .card-header h2 {
            color: var(--primary-blue);
            font-size: 1.6rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .card-body {
            padding: 2rem;
        }
        
        /* 新闻列表样式 */
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        /* 新闻项目样式 */
        .news-item {
            background: white;
            border-radius: 10px;
            box-shadow: var(--shadow-sm);
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
        }
        
        .news-item:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
            border-color: rgba(26, 35, 126, 0.2);
        }
        
        .news-item.featured {
            border-left: 4px solid var(--accent-gold);
        }
        
        .news-item.hot {
            border-left: 4px solid var(--accent-red);
        }
        
        .news-item-content {
            padding: 1.5rem;
            display: flex;
            gap: 1.5rem;
        }
        
        .news-thumbnail {
            width: 180px;
            height: 120px;
            flex-shrink: 0;
            border-radius: 8px;
            overflow: hidden;
            background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-blue);
        }
        
        .news-details {
            flex-grow: 1;
        }
        
        .news-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--dark-text);
            margin-bottom: 0.8rem;
            line-height: 1.4;
        }
        
        .news-title a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .news-title a:hover {
            color: var(--primary-blue);
        }
        
        .news-excerpt {
            color: var(--medium-text);
            margin-bottom: 1rem;
            line-height: 1.6;
        }
        
        .news-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--medium-text);
            font-size: 0.85rem;
        }
        
        .news-category {
            background: rgba(26, 35, 126, 0.08);
            color: var(--primary-blue);
            padding: 0.2rem 0.8rem;
            border-radius: 12px;
            font-weight: 500;
            font-size: 0.8rem;
        }
        
        .news-date {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .news-tags {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-top: 0.8rem;
        }
        
        .news-tag {
            background: rgba(212, 175, 55, 0.1);
            color: var(--accent-gold);
            padding: 0.2rem 0.6rem;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 500;
        }
        
        /* 右侧边栏样式 */
        .right-sidebar {
            margin-top: 3rem;
        }
        
        .sidebar-card {
            background: white;
            border-radius: 10px;
            box-shadow: var(--shadow-md);
            overflow: hidden;
            margin-bottom: 1.5rem;
        }
        
        .sidebar-header {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
            color: white;
            padding: 1rem 1.2rem;
            font-size: 1.1rem;
            font-weight: 600;
        }
        
        .sidebar-body {
            padding: 1.2rem;
        }
        
        /* 热门新闻 */
        .hot-news-list {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        
        .hot-news-item {
            display: block;
            padding: 0.8rem;
            background: rgba(26, 35, 126, 0.02);
            border-radius: 6px;
            text-decoration: none;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }
        
        .hot-news-item:hover {
            background: rgba(26, 35, 126, 0.05);
            border-left-color: var(--accent-gold);
        }
        
        .hot-news-title {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--dark-text);
            margin-bottom: 0.3rem;
            line-height: 1.4;
        }
        
        .hot-news-date {
            font-size: 0.75rem;
            color: var(--medium-text);
        }
        
        /* 旅游景点图片展示 */
        .tourism-images {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .tourism-image-item {
            display: block;
            text-decoration: none;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-color);
        }
        
        .tourism-image-item:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
            border-color: rgba(212, 175, 55, 0.3);
        }
        
        .tourism-image {
            width: 100%;
            height: 120px;
            object-fit: cover;
            display: block;
        }
        
        .tourism-image-info {
            padding: 0.8rem;
            background: white;
        }
        
        .tourism-image-title {
            font-weight: 600;
            color: var(--dark-text);
            font-size: 0.95rem;
            margin-bottom: 0.3rem;
        }
        
        .tourism-image-desc {
            font-size: 0.8rem;
            color: var(--medium-text);
            line-height: 1.4;
        }
        
        .view-more-link {
            display: block;
            text-align: center;
            color: var(--accent-gold);
            font-weight: 600;
            text-decoration: none;
            padding: 0.5rem;
            margin-top: 0.5rem;
            border-radius: 4px;
            transition: all 0.3s ease;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }
        
        .view-more-link:hover {
            background: rgba(212, 175, 55, 0.05);
            color: var(--primary-blue);
        }
             
        /* 分页样式 */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            margin-top: 3rem;
            padding: 1.5rem 0;
            border-top: 1px solid var(--border-color);
        }
        
        .pagination a {
            display: flex;
            align-items: center;
            justify-content: center;
           padding: 10px;
            height: 40px;
            background: white;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            color: var(--dark-text);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .pagination a:hover {
            background: rgba(26, 35, 126, 0.05);
            border-color: var(--primary-blue);
            color: var(--primary-blue);
        }
        
        .pagination a.active {
            background: var(--primary-blue);
            color: white;
            border-color: var(--primary-blue);
        }
        
        .pagination a.prev, .pagination a.next {
            width: auto;
            padding: 0 1rem;
        }
       .pagination b {
            display: flex;
            align-items: center;
            justify-content: center;
           padding: 10px;
            height: 40px;
            background: var(--primary-blue);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        /* 两栏布局 */
        .two-column-layout {
            display: flex;
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .main-column {
            flex: 3;
        }
        
        .sidebar-column {
            flex: 1;
        }
        
        /* 移动端响应式 */
        @media (max-width: 992px) {
            .two-column-layout {
                flex-direction: column;
            }
            
            .news-item-content {
                flex-direction: column;
            }
            
            .news-thumbnail {
                width: 100%;
                height: 200px;
            }
            
            .tourism-image {
                height: 160px;
            }
        }
        
        @media (max-width: 768px) {
         
            /* 修改新闻项布局：图片在左，标题在右 */
    .news-item-content {
        flex-direction: row !important; /* 强制行排列 */
        gap: 1rem;
        padding: 0.5rem;
    }
    .card-header h2{    font-size: 1.2rem;}
    .news-thumbnail {
        width: 140px !important; /* 缩小图片宽度 */
        height:100px !important; /* 缩小图片高度 */
        min-width: 100px; /* 确保最小宽度 */
        margin: 0;
    }
    
    .news-details {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
    
    .news-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }
    
    .news-excerpt {
        display: none; /* 移动端隐藏摘要，节省空间 */
    }
    
    .news-meta {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        margin-top: auto; /* 让meta信息显示在最下方 */
    }
    
    .news-date {
        font-size: 0.75rem;
    }
    
    /* 确保图片正常显示 */
    .news-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .tourism-image {
        height: 140px;
    }
    
    .pagination a:not(.prev):not(.next):not(.active) {
        display: none;
    }
    
    .pagination a.prev, .pagination a.next {
        display: flex;
    }
    
    .related-news {
        margin-top: 0.5rem;
    }
    
    .article-content img {
        width: 100% !important;
        height: auto !important;
    }
    .card-body {
    padding: 0.5rem;
}
.card-header{    padding: 0.8rem;    font-size: 1rem;}
            
            .news-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }
            
            .news-thumbnail {
                height: 160px;
            }
            
            .tourism-image {
                height: 140px;
            }
            
            .pagination a:not(.prev):not(.next):not(.active) {
                display: none;
            }
            
            .pagination a.prev, .pagination a.next {
                display: flex;
            }
        }
        
        /* 动画效果 */
        .fade-in {
            animation: fadeIn 0.8s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .slide-up {
            animation: slideUp 0.8s ease;
        }
        
        @keyframes slideUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
                /* 新闻内容页特定样式 */
        .breadcrumb {
            margin: 1.5rem 0;
            font-size: 0.9rem;
            color: var(--medium-text);
        }
        
        .breadcrumb a {
            color: var(--primary-blue);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .breadcrumb a:hover {
            color: var(--accent-gold);
            text-decoration: underline;
        }
        
        .breadcrumb span {
            margin: 0 0.5rem;
        }
        
        .news-article {
            background: white;
            border-radius: 8px;
            box-shadow: var(--shadow-lg);
            padding: 2.5rem;
            margin-bottom: 2rem;
        }
        
        .article-header {
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .article-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--dark-text);
            line-height: 1.3;
            margin-bottom: 1rem;
        }
        
        .article-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            color: var(--medium-text);
            font-size: 0.9rem;
        }
        
        .meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .meta-item i {
            color: var(--primary-blue);
        }
        
        .article-tag {
            display: inline-block;
            padding: 0.3rem 0.8rem;
            background: rgba(26, 35, 126, 0.1);
            color: var(--primary-blue);
            font-size: 0.8rem;
            font-weight: 600;
            border-radius: 20px;
            margin-top: 0.5rem;
        }
        
        .article-image {
            width: 100%;
            border-radius: 8px;
            overflow: hidden;
            margin: 2rem 0;
            box-shadow: var(--shadow-md);
        }
        
        .article-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .article-image-caption {
            text-align: center;
            font-size: 0.9rem;
            color: var(--medium-text);
            padding: 0.8rem;
            background: rgba(0, 0, 0, 0.02);
            border-top: 1px solid var(--border-color);
        }
        
        .article-content {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--dark-text);
        }
        
        .article-content p {
            margin-bottom: 1.5rem;
        }
        
        .article-content h2, .article-content h3 {
            color: var(--primary-blue);
            margin: 2rem 0 1rem;
        }
        
        .article-content h2 {
            font-size: 1.8rem;
            border-left: 4px solid var(--accent-gold);
            padding-left: 1rem;
        }
        
        .article-content h3 {
            font-size: 1.4rem;
        }
        
        .article-content blockquote {
            border-left: 4px solid var(--primary-blue);
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: var(--medium-text);
            background: rgba(26, 35, 126, 0.05);
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
        }
        
        .article-content ul, .article-content ol {
            padding-left: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .article-content li {
            margin-bottom: 0.5rem;
        }
        
        /* 分享按钮样式 */
        .share-section {
            margin: 2.5rem 0;
            padding: 1.5rem;
            background: rgba(26, 35, 126, 0.03);
            border-radius: 8px;
            border: 1px solid var(--border-color);
        }
        
        .share-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary-blue);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .share-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        
        .share-btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.7rem 1.2rem;
            border-radius: 4px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            border: none;
        }
        
        .share-btn i {
            font-size: 1.1rem;
        }
        
        .share-wechat {
            background: #07C160;
            color: white;
        }
        
        .share-wechat:hover {
            background: #06AD56;
            transform: translateY(-2px);
        }
        
        .share-weibo {
            background: #E6162D;
            color: white;
        }
        
        .share-weibo:hover {
            background: #C51225;
            transform: translateY(-2px);
        }
        
        .share-qq {
            background: #12B7F5;
            color: white;
        }
        
        .share-qq:hover {
            background: #0EA5E0;
            transform: translateY(-2px);
        }
        
        .share-linkedin {
            background: #0077B5;
            color: white;
        }
        
        .share-linkedin:hover {
            background: #00669C;
            transform: translateY(-2px);
        }
        
        .share-twitter {
            background: #1DA1F2;
            color: white;
        }
        
        .share-twitter:hover {
            background: #0D8BD9;
            transform: translateY(-2px);
        }
        
        .share-facebook {
            background: #1877F2;
            color: white;
        }
        
        .share-facebook:hover {
            background: #1668D9;
            transform: translateY(-2px);
        }
        
        .share-copy {
            background: var(--primary-blue);
            color: white;
        }
        
        .share-copy:hover {
            background: var(--secondary-blue);
            transform: translateY(-2px);
        }
        
        .share-more {
            background: transparent;
            border: 1px solid var(--border-color);
            color: var(--medium-text);
        }
        
        .share-more:hover {
            background: rgba(26, 35, 126, 0.05);
            color: var(--primary-blue);
        }
        
        /* 相关新闻样式 */
        .related-news {
            margin-top: 3rem;
        }
        
        .related-news-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }
        
        .related-news-item {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
        }
        
        .related-news-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        
        .related-news-image {
            height: 180px;
            overflow: hidden;
        }
        
        .related-news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .related-news-item:hover .related-news-image img {
            transform: scale(1.05);
        }
        
        .related-news-content {
            padding: 1.2rem;
        }
        
        .related-news-content h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--dark-text);
            margin-bottom: 0.8rem;
            line-height: 1.4;
        }
        
        .related-news-content h3 a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .related-news-content h3 a:hover {
            color: var(--primary-blue);
        }
        
        .related-news-meta {
            display: flex;
            justify-content: space-between;
            font-size: 0.8rem;
            color: var(--medium-text);
            margin-top: 0.8rem;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .mobile-header {
                display: block;
            }
            
                        .related-news{margin-top: 0.5rem;}
            .mobile-menu-btn {
                display: flex;
            }
            .article-content img{width:100%!important;height: 100%!important;}
            
            .site-header {
                display: none;
            }
            
            .main-nav {
                display: none;
            }
            
            .news-article {
                padding: 1.5rem;
            }
            
            .article-title {
                font-size: 1.6rem;
            }
            
            .article-content {
                font-size: 1rem;
            }
            
            .share-buttons {
                justify-content: center;
            }
            
            .share-btn {
                padding: 0.6rem 0.8rem;
                font-size: 0.8rem;
            }
            
            .related-news-grid {
                grid-template-columns: 1fr;
            }
            .sidebar-column{display:none;}
            .card-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.8rem;
            }
            
            .card-header-action {
                align-self: flex-end;
            }
        }
        
        /* 桌面端样式 */
        @media (min-width: 769px) {


            .site-header {
                display: block;
            }
            
            .main-nav {
                display: block;
            }
        }
        
        /* 新增：页面加载动画 */
        .fade-in {
            animation: fadeIn 0.8s ease;
        }
        
        .slide-up {
            animation: slideUp 0.8s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
          /* 面包屑导航美化 */
    .detail-breadcrumb {
        background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
        padding: 1rem 1.5rem;
        border-radius: 6px;
        margin-bottom: 2rem;
        box-shadow: var(--shadow-sm);
        border: 1px solid var(--border-color);
    }
    
    .detail-breadcrumb a {
        color: var(--primary-blue);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
    }
    
    .detail-breadcrumb a:hover {
        color: var(--accent-gold);
    }
    
    .detail-breadcrumb span {
        color: var(--accent-gold);
        font-weight: 600;
    }
    
    .detail-breadcrumb a + a:before,
    .detail-breadcrumb a + span:before {
        content: "›";
        margin: 0 0.8rem;
        color: #9ca3af;
    }
    iframe {
    margin-left: auto;
    margin-right: auto;
}



/* 上一篇/下一篇导航样式 */
.article-navigation {
    margin: 3rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.nav-links {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.prev-link, .next-link {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    background: rgba(26, 35, 126, 0.03);
    text-decoration: none;
    color: var(--dark-text);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 0;
    border: 1px solid transparent;
}

.prev-link:hover, .next-link:hover {
    background: rgba(26, 35, 126, 0.08);
    border-color: rgba(26, 35, 126, 0.2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.prev-link {
    text-align: left;
}

.next-link {
    text-align: right;
}

.nav-link-content {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.nav-label {
    display: block;
    font-size: 0.85rem;
    color: var(--medium-text);
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.nav-title {
    display: block;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--primary-blue);
}

.prev-link i {
    margin-right: 1rem;
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.next-link i {
    margin-left: 1rem;
    color: var(--accent-gold);
    font-size: 1.2rem;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .prev-link, .next-link {
        width: 100%;
    }
    
    .nav-title {
        font-size: 0.95rem;
    }
}

        /* 字体大小调整控件样式 */
        .font-size-controls {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 0.5rem;
            padding: 0.5rem 0;
        }
        
        .font-size-label {
            font-size: 0.9rem;
            color: #666;
        }
        
        .font-size-btn {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 1px solid #ddd;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s ease;
            font-weight: bold;
        }
        
        .font-size-btn:hover {
            background: #f0f0f0;
            border-color: #aaa;
        }
        
        .font-size-btn:active {
            transform: scale(0.95);
        }
        
        .font-size-btn.reset {
            width: auto;
            padding: 0 12px;
            border-radius: 16px;
            font-size: 0.8rem;
            font-weight: normal;
        }
        
        .font-size-current {
            min-width: 24px;
            text-align: center;
            font-size: 0.9rem;
            color: #555;
        }
        
        /* 文章内容字体大小类 */
        .article-content.small {
            font-size: 14px;
            line-height: 1.6;
        }
        
        .article-content.medium {
            font-size: 16px;
            line-height: 1.7;
        }
        
        .article-content.large {
            font-size: 18px;
            line-height: 1.8;
        }
        
        .article-content.x-large {
            font-size: 20px;
            line-height: 1.9;
        }
        
        .article-content.xx-large {
            font-size: 22px;
            line-height: 2.0;
        }
        
        /* 移动端适配 */
        @media (max-width: 768px) {
            .font-size-controls {
                justify-content: flex-start;
                margin-top: 0.75rem;
                border-top: 1px solid #eee;
                padding-top: 0.75rem;
            }
            
            .font-size-btn {
                width: 36px;
                height: 36px;
            }
        }