/* 新闻详情页特有样式 */
        .news-detail-section {
            padding: 40px 0 60px;
        }
        
        .detail-container {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 30px;
        }
        
        .news-main {
            background: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .news-detail-header {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #f1f1f1;
        }
        
        .news-detail-title {
            font-size: 1.8rem;
            color: #2c3e50;
            margin-bottom: 20px;
            line-height: 1.4;
        }
        
        .news-detail-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            color: #7f8c8d;
            font-size: 0.9rem;
        }
        
        .meta-item {
            display: flex;
            align-items: center;
        }
        
        .meta-item i {
            margin-right: 8px;
            color: #e74c3c;
        }
        
        .news-detail-content {
            color: #333;
            line-height: 1.8;
            font-size: 1.05rem;
        }
        
        .news-detail-content p {
            margin-bottom: 20px;
        }
        
        .news-detail-content img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 25px 0;
        }
        
        .news-detail-content h3 {
            color: #2c3e50;
            margin: 30px 0 15px;
            font-size: 1.3rem;
        }
        
        .news-detail-content ul {
            margin: 0 0 20px 20px;
        }
        
        .news-detail-content li {
            margin-bottom: 10px;
        }
        
        .news-share {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #f1f1f1;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .share-text {
            color: #7f8c8d;
            font-size: 0.95rem;
        }
        
        .share-icons {
            display: flex;
            gap: 15px;
        }
        
        .share-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2c3e50;
            transition: all 0.3s ease;
        }
        
        .share-icon:hover {
            background: #e74c3c;
            color: white;
        }
        
        .news-navigation {
            margin-top: 30px;
            display: flex;
            justify-content: space-between;
            padding-top: 20px;
            border-top: 1px solid #f1f1f1;
        }
        
        .news-nav-item {
            display: flex;
            align-items: center;
            color: #2c3e50;
            text-decoration: none;
            transition: all 0.3s ease;
            max-width: 45%;
        }
        
        .news-nav-item:hover {
            color: #e74c3c;
        }
        
        .prev-news i {
            margin-right: 10px;
        }
        
        .next-news {
            justify-content: flex-end;
        }
        
        .next-news i {
            margin-left: 10px;
        }
        
        .news-sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .sidebar-widget {
            background: white;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .widget-title {
            font-size: 1.2rem;
            color: #2c3e50;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e74c3c;
            display: inline-block;
        }
        
        .related-news-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .related-news-item {
            display: flex;
            gap: 15px;
            text-decoration: none;
        }
        
        .related-news-image {
            width: 90px;
            height: 90px;
            border-radius: 5px;
            overflow: hidden;
            flex-shrink: 0;
        }
        
        .related-news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.3s ease;
        }
        
        .related-news-item:hover .related-news-image img {
            transform: scale(1.1);
        }
        
        .related-news-content {
            flex: 1;
        }
        
        .related-news-title {
            color: #2c3e50;
            font-size: 0.95rem;
            margin-bottom: 5px;
            transition: all 0.3s ease;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .related-news-item:hover .related-news-title {
            color: #e74c3c;
        }
        
        .related-news-date {
            color: #7f8c8d;
            font-size: 0.8rem;
        }
        
        .news-categories-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .news-category-item {
            padding: 6px 15px;
            background: #f8f9fa;
            border-radius: 20px;
            color: #2c3e50;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        
        .news-category-item:hover {
            background: #e74c3c;
            color: white;
        }
        
        @media (max-width: 992px) {
            .detail-container {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .news-main {
                padding: 20px;
            }
            
            .news-detail-title {
                font-size: 1.5rem;
            }
            
            .news-navigation {
                flex-direction: column;
                gap: 15px;
            }
            
            .news-nav-item {
                max-width: 100%;
                width: 100%;
            }
        }