/* 重置样式 */
        .news-container * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif !important;
  
        }
        
        .news-container {
            max-width: 1200px;
            margin: 20px auto;
            background: #f8fafc;
            border-radius: 12px;
            /*padding: 20px;*/
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .news-layout {
            display: flex;
            gap: 25px;
        }
        
        .news-sidebar {
            width: 250px;
            flex-shrink: 0;
            background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
            border-radius: 10px;
            padding: 20px;
            color: white;
            box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
        }
        
        .news-sidebar h3 {
            font-size: 18px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .sidebar-menu {
            list-style: none;
        }
        
        .sidebar-menu li {
            margin-bottom: 12px;
        }
        
        .sidebar-menu a {
            color: white;
            text-decoration: none;
            display: block;
            padding: 8px 12px;
            border-radius: 6px;
            transition: all 0.3s;
        }
        
        .sidebar-menu a:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(5px);
        }
        
        .news-main {
            flex: 1;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        }
        
        .news-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 25px;
            background: linear-gradient(135deg, #4a6fa1 0%, #2c3e50 100%);
            color: white;
        }
        
        .news-title {
            font-size: 22px;
            font-weight: 600;
        }
        
        .news-breadcrumb {
            font-size: 14px;
            opacity: 0.9;
        }
        
        .news-content {
            padding: 25px;
        }
        
        .article-list {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .article-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0;
            border-bottom: 1px solid #f1f5f9;
            transition: all 0.3s;
        }
        
        .article-item:hover {
            background: #f8fafc;
            padding-left: 10px;
        }
        
        .article-link {
            text-decoration: none;
            color: #1e293b;
            font-size: 16px;
            flex: 1;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            padding-right: 15px;
            display: flex;
            align-items: center;
        }
        
        .article-link:before {
            content: "•";
            color: #3b82f6;
            font-size: 20px;
            margin-right: 10px;
        }
        
        .article-date {
            color: #64748b;
            font-size: 14px;
            min-width: 100px;
            text-align: right;
        }
        
        .pagination-container {
            margin-top: 30px;
            text-align: center;
        }
        
        .pagination {
            display: inline-flex;
            align-items: center; /* 垂直居中 */
            list-style: none;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
            background: white;

            color: #3b82f6;

        }
        
        .pagination a, .pagination span {
            display: block;
            padding: 10px 16px;
            text-decoration: none;
            color: #3b82f6;
            background: #fff;
            border-right: 1px solid #f1f5f9;
            transition: all 0.3s;
        }
        
        .pagination a:hover {
            background: #3b82f6;
            color: white;
        }
        
        .pagination .current {
            background: #3b82f6;
            color: white;
            font-weight: 600;
        }
        
        .clearfix {
            clear: both;
        }
        
        /* 响应式设计 */
        @media (max-width: 900px) {
            .news-layout {
                flex-direction: column;
            }
            
            .news-sidebar {
                width: 100%;
            }
            
            .news-header {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
            
            .article-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            
            .article-date {
                align-self: flex-end;
            }
            
            .pagination {
                flex-wrap: wrap;
                justify-content: center;
            }
        }