

        /* 列表页样式 */
        .banner-section {
            background-color: #0056b3;
            color: white;
            padding: 40px 0;
            margin-bottom: 30px;
            background-image: linear-gradient(135deg, #0056b3, #00408c);
        }

        .banner-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .banner-title {
            font-size: 32px;
            margin-bottom: 10px;
            font-weight: bold;
        }

        .banner-description {
            font-size: 16px;
            opacity: 0.9;
            max-width: 700px;
            margin-bottom: 20px;
        }

        .breadcrumb {
            background: transparent;
            padding: 0;
            margin-bottom: 0;
        }

        .breadcrumb-item a {
            color: rgba(255, 255, 255, 0.8);
        }

        .breadcrumb-item.active {
            color: white;
        }

        .breadcrumb-item+.breadcrumb-item::before {
            color: rgba(255, 255, 255, 0.6);
        }

        .list-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px 50px;
        }

        /* 文章列表样式 */
        .article-list {
            margin-bottom: 40px;
        }

        .article-item {
            background: #fff;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            transition: all 0.3s;
        }

        .article-item:hover {
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }

        .article-img {
            position: relative;
            overflow: hidden;
            height: 220px;
        }

        .article-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s;
        }

        .article-item:hover .article-img img {
            transform: scale(1.05);
        }

        .article-info {
            padding: 20px;
        }

        .article-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 10px;
            line-height: 1.4;
            height: 50px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        .article-title a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s;
        }

        .article-title a:hover {
            color: #0056b3;
        }

        .article-desc {
            color: #666;
            font-size: 14px;
            margin-bottom: 15px;
            /* height: 60px; */
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
        }

        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #999;
            font-size: 12px;
        }

        .article-meta span {
            display: inline-flex;
            align-items: center;
        }

        .article-meta i {
            margin-right: 5px;
            color: #0056b3;
        }

        .article-more {
            display: inline-block;
            padding: 6px 15px;
            background: #f0f8ff;
            color: #0056b3;
            border-radius: 3px;
            font-size: 12px;
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid #d1e6ff;
        }

        .article-more:hover {
            background: #0056b3;
            color: #fff;
            text-decoration: none;
        }

        /* 无图片列表样式 */
        .list-item {
            background: #fff;
            padding: 20px;
            margin-bottom: 20px;
            border-radius: 5px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            position: relative;
        }

        .list-item:hover {
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
        }

        .list-item:before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: #0056b3;
            opacity: 0;
            transition: all 0.3s;
        }

        .list-item:hover:before {
            opacity: 1;
        }

        .list-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .list-title a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s;
        }

        .list-title a:hover {
            color: #0056b3;
            padding-left: 5px;
        }

        .list-desc {
            color: #666;
            font-size: 14px;
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .list-meta {
            display: flex;
            justify-content: space-between;
            color: #999;
            font-size: 12px;
        }

        .list-meta span {
            margin-right: 15px;
            display: inline-flex;
            align-items: center;
        }

        .list-meta i {
            margin-right: 5px;
            color: #0056b3;
        }

        /* 分页样式优化 */
        .pagination-wrapper {
            margin-top: 40px;
            margin-bottom: 30px;
        }
        
        .pagination li {
            margin: 0 5px;
        }
        
        /* 通用按钮样式 */
        .pagination li a,
        .pagination li span {
            display: block;
            padding: 8px 15px;
            background: #fff;
            color: #333;
            border-radius: 3px;
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid #eee;
        }
        
        /* 可点击的分页按钮悬停效果 */
        .pagination li a[href]:hover,
        .pagination li a.tcdNumber:hover {
            background: #0056b3;
            color: #fff;
            border-color: #0056b3;
        }
        
        /* 当前页或不可点击的分页按钮样式 */
        .pagination li a:not([href]),
        .pagination li span.disabled {
            background: #f0f0f0;
            color: #999;
            cursor: default;
            border-color: #ddd;
        }
        
        /* 当前页特殊样式 */
        .pagination li.active a,
        .pagination li span.current {
            background: #0056b3;
            color: #fff;
            border-color: #0056b3;
        }
        
        /* 首页和末页按钮样式 */
        .pagination li:first-child a,
        .pagination li:first-child span,
        .pagination li:last-child a,
        .pagination li:last-child span {
            font-weight: 500;
        }
        
        /* 上一页和下一页按钮样式 */
        .pagination li:nth-child(2) a,
        .pagination li:nth-child(2) span,
        .pagination li:nth-last-child(2) a,
        .pagination li:nth-last-child(2) span {
            padding-left: 12px;
            padding-right: 12px;
        }
        
        /* 添加图标到上一页和下一页 */
        .pagination li:nth-child(2) a:before,
        .pagination li:nth-child(2) span:before {
            content: "«";
            margin-right: 5px;
        }
        
        .pagination li:nth-last-child(2) a:after,
        .pagination li:nth-last-child(2) span:after {
            content: "»";
            margin-left: 5px;
        }

          /* 移动端适配 */
          @media (max-width: 576px) {
            .pagination li a,
            .pagination li span {
                padding: 6px 12px;
                font-size: 14px;
            }
            
            /* 在小屏幕上只显示关键分页按钮 */
            .pagination li:not(:first-child):not(:last-child):not(:nth-child(2)):not(:nth-last-child(2)):not(.active) {
                display: none;
            }
            
            /* 确保当前页码始终显示 */
            .pagination li span.current,
            .pagination li a.current {
                display: block;
            }
        }

        /* 侧边栏样式 */
        .sidebar-block {
            background: #fff;
            padding: 20px;
            margin-bottom: 30px;
            border-radius: 5px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
        }

        .sidebar-title {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 20px;
            position: relative;
            padding-left: 15px;
            border-left: 4px solid #0056b3;
            color: #0056b3;
        }

        .sidebar-list,
        .category-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .sidebar-list li,
        .category-list li {
            padding: 10px 0;
            border-bottom: 1px dashed #eee;
            position: relative;
            padding-left: 15px;
        }

        .sidebar-list li:before,
        .category-list li:before {
            content: "";
            position: absolute;
            left: 0;
            top: 18px;
            width: 6px;
            height: 6px;
            background: #0056b3;
            border-radius: 50%;
        }

        .sidebar-list li a,
        .category-list li a {
            color: #333;
            text-decoration: none;
            transition: all 0.3s;
            display: block;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .sidebar-list li a:hover,
        .category-list li a:hover,
        .category-list li.active a {
            color: #0056b3;
            padding-left: 5px;
        }

        .category-list li.active:before {
            background: #0056b3;
            width: 8px;
            height: 8px;
            top: 17px;
        }

        .contact-info {
            padding: 15px;
            background: #f8f9fa;
            border-radius: 5px;
        }

        .contact-info p {
            margin-bottom: 10px;
        }
    
              

      

        @media (max-width: 768px) {
            .banner-title {
                font-size: 26px;
            }

            .article-img {
                height: 180px;
            }
        }

        /* 列表视图切换按钮 */
        .view-toggle {
            display: flex;
            justify-content: flex-end;
            margin-bottom: 20px;
        }

        .view-toggle button {
            background: #fff;
            border: 1px solid #eee;
            padding: 5px 10px;
            margin-left: 10px;
            border-radius: 3px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .view-toggle button.active {
            background: #0056b3;
            color: #fff;
            border-color: #0056b3;
        }

        .view-toggle button:hover {
            background: #f0f8ff;
            color: #0056b3;
        }

        .view-toggle button.active:hover {
            background: #0056b3;
            color: #fff;
        }