         /* 页面头部 */
        .page-header {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
            color: var(--white);
            padding: 150px 0 80px;
            text-align: center;
            margin-top: var(--header-height);
        }
        
		  .breadcrumb {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 0.9rem;
        }
        
        .breadcrumb a {
            color: rgba(255, 255, 255, 0.8);
            transition: var(--transition);
		    margin: 0 10px;
            color: rgba(255, 255, 255, 0.6);
        }
        
        .breadcrumb a:hover {
            color: var(--white);
        }
        
        .breadcrumb span {
            margin: 0 10px;
            color: rgba(255, 255, 255, 0.6);
        }
        
        /* 新闻详情内容 */
        .news-detail-container {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 40px;
			margin-bottom: 15px;
            margin-top: 15px;
        }
        
        .news-sidebar {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--card-shadow);
            align-self: start;
            position: sticky;
            top: calc(var(--header-height) + 20px);
        }
        
        .sidebar-widget {
            margin-bottom: 40px;
        }
        
        .sidebar-widget:last-child {
            margin-bottom: 0;
        }
        
        .sidebar-widget h3 {
            color: var(--primary-dark);
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--border-color);
            font-size: 1.2rem;
        }
        
        .categories-list {
            list-style: none;
        }
        
        .categories-list li {
            margin-bottom: 12px;
        }
        
        .categories-list a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--mid-text);
            transition: var(--transition);
            padding: 8px 0;
        }
        
        .categories-list a:hover {
            color: var(--primary-blue);
        }
        
        .categories-list a.active {
            color: var(--primary-blue);
            font-weight: 500;
        }
        
        .categories-list .count {
            background: var(--light-bg);
            padding: 2px 8px;
            border-radius: 20px;
            font-size: 0.8rem;
        }
        
        .recent-news {
            list-style: none;
        }
        
        .recent-news li {
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border-color);
        }
        
        .recent-news li:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .recent-news a {
            display: flex;
            gap: 15px;
            transition: var(--transition);
        }
        
        .recent-news a:hover {
            transform: translateX(5px);
        }
        
        .recent-thumb {
            width: 80px;
            height: 80px;
            border-radius: 8px;
            overflow: hidden;
            flex-shrink: 0;
        }
        
        .recent-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .recent-content {
            flex: 1;
        }
        
        .recent-content h4 {
            color: var(--primary-dark);
            font-size: 0.95rem;
            margin-bottom: 8px;
            line-height: 1.4;
        }
        
        .recent-content .date {
            color: var(--light-text);
            font-size: 0.8rem;
        }
        
        .tags-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .tag {
            padding: 6px 12px;
            background: var(--light-bg);
            color: var(--mid-text);
            border-radius: 30px;
            font-size: 0.9rem;
            transition: var(--transition);
        }
        
        .tag:hover {
            background: var(--primary-blue);
            color: var(--white);
        }
        
        /* 新闻详情主体 */
        .news-detail-main {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--card-shadow);
        }
        
        .news-header {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border-color);
        }
        
        .news-badge {
            display: inline-block;
            background: var(--accent);
            color: var(--white);
            padding: 6px 14px;
            border-radius: 30px;
            font-size: 12px;
            font-weight: 500;
            margin-bottom: 15px;
        }
        
        .news-title {
            color: var(--primary-dark);
            font-size: 2rem;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        
        .news-meta {
            display: flex;
            align-items: center;
            color: var(--light-text);
            font-size: 0.9rem;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .news-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .news-meta i {
            font-size: 0.8rem;
        }
        
        .news-featured-image {
            width: 100%;
            height: 400px;
            border-radius: var(--border-radius);
            overflow: hidden;
            margin-bottom: 30px;
        }
        
        .news-featured-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .news-content {
            line-height: 1.8;
            color: var(--mid-text);
        }
        
        .news-content p {
            margin-bottom: 20px;
        }
        
        .news-content h2, 
        .news-content h3, 
        .news-content h4 {
            color: var(--primary-dark);
            margin: 30px 0 15px;
        }
        
        .news-content blockquote {
            background: var(--light-bg);
            border-left: 4px solid var(--primary-blue);
            padding: 20px;
            margin: 30px 0;
            font-style: italic;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        
        .news-content figure {
            margin: 30px 0;
        }
        
        .news-content figure img {
            width: 100%;
            border-radius: var(--border-radius);
        }
        
        .news-content figcaption {
            text-align: center;
            color: var(--light-text);
            font-size: 0.9rem;
            margin-top: 10px;
        }
        
        .news-share {
            display: flex;
            align-items: center;
            gap: 15px;
            margin: 40px 0;
            padding: 20px 0;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }
        
        .news-share span {
            font-weight: 500;
            color: var(--primary-dark);
        }
        
        .share-buttons {
            display: flex;
            gap: 10px;
        }
        
        .share-button {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--light-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        
        .share-button:hover {
            background: var(--primary-blue);
            color: var(--white);
            transform: translateY(-3px);
        }
        
        .news-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid var(--border-color);
        }
        
        .nav-previous, 
        .nav-next {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--mid-text);
            transition: var(--transition);
            max-width: 45%;
        }
        
        .nav-previous:hover, 
        .nav-next:hover {
            color: var(--primary-blue);
        }
        
        .nav-previous {
            text-align: left;
        }
        
        .nav-next {
            text-align: right;
            flex-direction: row-reverse;
            margin-left: auto;
        }
        
        /* 相关新闻 */
        .related-news {
            margin-top: 80px;
        }
        
        .related-news h2 {
            color: var(--primary-dark);
            margin-bottom: 30px;
            font-size: 1.8rem;
            position: relative;
            padding-bottom: 15px;
        }
        
        .related-news h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--accent);
        }
        
        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .related-item {
            background: var(--white);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: var(--transition);
        }
        
        .related-item:hover {
            transform: translateY(-10px);
            box-shadow: var(--hover-shadow);
        }
        
        .related-image {
            width: 100%;
            height: 200px;
        }
        
        .related-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .related-content {
            padding: 20px;
        }
        
        .related-content h3 {
            color: var(--primary-dark);
            margin-bottom: 10px;
            font-size: 1.1rem;
            line-height: 1.4;
        }
        
        .related-meta {
            display: flex;
            align-items: center;
            color: var(--light-text);
            font-size: 0.8rem;
            margin-bottom: 15px;
        }
        
        .related-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
            margin-right: 15px;
        }
        
        .related-content .read-more {
            display: inline-flex;
            align-items: center;
            color: var(--primary-blue);
            font-weight: 500;
            transition: var(--transition);
            font-size: 0.9rem;
        }
        
        .related-content .read-more:hover {
            gap: 8px;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .news-detail-container {
                grid-template-columns: 1fr;
            }
            
            .news-sidebar {
                display: none;
            }
            
            .news-navigation {
                flex-direction: column;
                gap: 20px;
            }
            
            .nav-previous, 
            .nav-next {
                max-width: 100%;
            }
            
            .related-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .page-header {
                padding: 100px 0 30px;
            }
            
            .page-header h1 {
                font-size: 2.2rem;
            }
            
            .news-detail-main {
                padding: 25px;
            }
            
            .news-title {
                font-size: 1.6rem;
            }
            
            .news-featured-image {
                height: 250px;
            }
            
            .news-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            
            .news-share {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .section-title h2::after {
                bottom: -10px;
                width: 60px;
                height: 3px;
            }
            
            .related-news h2 {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .news-detail-main {
                padding: 20px;
            }
            
            .news-title {
                font-size: 1.4rem;
            }
            
            .news-featured-image {
                height: 200px;
            }
            
            .related-grid {
                grid-template-columns: 1fr;
            }
        }
        
  