 /* 页面标题区域 */
        .page-header {
            padding: 150px 5% 80px;
            background: linear-gradient(135deg, #843f1c 0%, #411600 100%);
            color: white;
            text-align: center;
        }

        .page-header h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .page-header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }

        /* 新闻内容区域 */
        .news-section {
            padding: 80px 5%;
            background-color: #f8f9fa;
        }

        .news-container {
            display: flex;
            max-width: 1200px;
            margin: 0 auto;
            gap: 40px;
        }

        /* 左侧边栏 */
        .left-sidebar {
            flex: 2;
        }

        .sidebar-widget {
            background: white;
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .sidebar-widget h3 {
            font-size: 1.5rem;
            color: #2c3e50;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #843f1c;
        }

        .categories-list {
            list-style: none;
        }

        .categories-list li {
            margin-bottom: 12px;
        }

        .categories-list li a {
            color: #7f8c8d;
            text-decoration: none;
            transition: color 0.3s;
            display: flex;
            align-items: center;
        }

        .categories-list li a i {
            margin-right: 10px;
            font-size: 0.8rem;
            color: #843f1c;
        }

        .categories-list li a:hover {
            color: #843f1c;
        }

        .categories-list li.active a {
            color: #843f1c;
            font-weight: 600;
        }

        .latest-news-list {
            list-style: none;
        }

        .latest-news-item {
            display: flex;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }

        .latest-news-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        

        .latest-news-image {
            width: 80px;
            height: 60px;
            border-radius: 5px;
            overflow: hidden;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .latest-news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .latest-news-content h4 {
            font-size: 0.95rem;
            margin-bottom: 5px;
        }

        .latest-news-content h4 a {
            color: #2c3e50;
            text-decoration: none;
            transition: color 0.3s;
        }

        .latest-news-content h4 a:hover {
            color: #843f1c;
        }

        .latest-news-content span {
            font-size: 0.8rem;
            color: #7f8c8d;
        }

        /* 右侧新闻列表 */
        .right-content {
            flex: 8;
        }

        .news-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }

        .news-card {
            position: relative;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
        }

        .news-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        .news-card .a{
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            display: block;
            background: rgba(132, 63, 28, 0.0);
            z-index: 9;
        }

        .news-image {
            height: 200px;
            overflow: hidden;
        }

        .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .news-card:hover .news-image img {
            transform: scale(1.1);
        }

        .news-content {
            padding: 25px;
        }

        .news-meta {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-size: 0.85rem;
            color: #7f8c8d;
        }

        .news-category {
            background: #f1f8ff;
            color: #843f1c;
            padding: 3px 10px;
            border-radius: 20px;
            font-weight: 500;
        }

        .news-date {
            display: flex;
            align-items: center;
        }

        .news-date i {
            margin-right: 5px;
        }

        .news-content h3 {
            font-size: 1.3rem;
            color: #2c3e50;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .news-content h3 a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s;
        }

        .news-content h3 a:hover {
            color: #843f1c;
        }

        .news-content p {
            color: #7f8c8d;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .read-more {
            display: inline-flex;
            align-items: center;
            color: #843f1c;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }

        .read-more i {
            margin-left: 5px;
            transition: transform 0.3s;
        }

        .read-more:hover i {
            transform: translateX(5px);
        }
         /* 移动端分类导航 */
        .mobile-categories {
            display: none;
            background: white;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            overflow-x: auto;
            white-space: nowrap;
        }

        .mobile-categories::-webkit-scrollbar {
            display: none;
        }

        .mobile-categories h3 {
            font-size: 1.2rem;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .mobile-categories-list {
            display: flex;
            gap: 10px;
        }

        .mobile-category {
            background: #f8f9fa;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            transition: all 0.3s;
            flex-shrink: 0;
        }

        .mobile-category.active {
            background: #843f1c;
            color: white;
        }

        .mobile-category a {
            color: inherit;
            text-decoration: none;
        }

        /* 分页样式 */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 50px;
            gap: 10px;
        }

        .pagination-item {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 5px;
            background: white;
            color: #7f8c8d;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }

        .pagination-item:hover {
            background: #4a90e2;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
        }

        .pagination-item.active {
            background: #4a90e2;
            color: white;
        }

        .pagination-item.dots {
            background: transparent;
            box-shadow: none;
        }

        .pagination-item.dots:hover {
            background: transparent;
            color: #7f8c8d;
            transform: none;
            box-shadow: none;
        }

        .pagination-prev, .pagination-next {
            width: auto;
            padding: 0 15px;
        }

        .pagination-prev i, .pagination-next i {
            margin: 0 5px;
        }


        /* 响应式设计 */
        @media (max-width: 992px) {
            .news-container {
                flex-direction: column;
            }
            
            .mobile-categories {
                display: block;
            }
            
            .sidebar-widget.categories-widget {
                display: none;
            }
            
            .left-sidebar {
                order: 3;
                width: 100%;
            }
            
            .right-content {
                order: 1;
                width: 100%;
            }
            
            nav ul {
                display: none;
            }
            
            .menu-toggle {
                display: block;
            }
            
            .mobile-menu {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background: white;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                padding: 20px;
                display: none;
                z-index: 1002;
            }
            
            .mobile-menu.active {
                display: block;
            }
            
            .mobile-menu ul {
                list-style: none;
            }
            
            .mobile-menu ul li {
                margin: 15px 0;
                position: relative;
            }
            
            .mobile-menu ul li a {
                text-decoration: none;
                color: #2c3e50;
                font-weight: 500;
                display: block;
                padding: 10px 0;
            }
            
            .mobile-dropdown {
                padding-left: 20px;
                display: none;
            }
            
            .mobile-dropdown.active {
                display: block;
            }
            
            .mobile-menu ul li a i {
                float: right;
                transition: transform 0.3s;
            }
            
            .mobile-menu ul li a i.rotate {
                transform: rotate(180deg);
            }
        }

        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 2.2rem;
            }
            
            .social-icons {
                display: none;
            }
            
            .news-list {
                grid-template-columns: 1fr;
            }
            .pagination {
                flex-wrap: wrap;
            }
            
            .pagination-item.dots {
                display: none;
            }
            
            
        }

        @media (max-width: 576px) {
            .page-header h1 {
                font-size: 1.8rem;
            }
            
            .page-header p {
                font-size: 1rem;
            }            
            
        }