/* 主容器 */
        .container {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }
        
        /* 标题区域 */
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            border-bottom: 2px solid #e67e22;
            padding-bottom: 10px;
        }
        
        .section-title {
            font-size: 24px;
            font-weight: bold;
            color: #333;
        }
        
        .return {
            font-size: 18px;
            color: #666;
        }
        
        /* 新闻列表 */
        .news-container {
            background: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }
        
        .news-item {
            display: flex;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }
        
        .news-item:last-child {
            border-bottom: none;
        }
        
        .news-date {
            width: 100px;
            font-size: 14px;
            color: #999;
        }
        
        .news-title {
            flex: 1;
            font-size: 16px;
            font-weight: 500;
        }
        
        .news-title:hover {
            color: #e67e22;
        }
        
        /* 分页样式 */
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .page-info {
            margin-right: 15px;
            font-size: 14px;
            color: #666;
        }
        
        .page-item {
            margin: 0 5px;
        }
        
        .page-link {
            display: block;
            padding: 5px 10px;
            border: 1px solid #ddd;
            border-radius: 3px;
        }
        
        .page-link:hover, .page-link.active {
            background: #e67e22;
            color: white;
            border-color: #e67e22;
        }

        a{
            color: #333;
            text-decoration:none;
        }
                /* 底部备案信息区域 */
        .footer {
            background-color: #2c3e50;
            color: #ecf0f1;
            padding: 40px 0 20px;
            margin-top: 50px;

        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 30px;
            padding-left: 160px;
        }

        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 20px;
        }

        .footer-section h3 {
            color: #e67e22;
            margin-bottom: 20px;
            font-size: 18px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-section .g1{
            padding-right: 150px;
            line-height: 30px;
        }
        .footer-section h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background-color: #e67e22;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #e67e22;
        }

        .footer-contact p {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .footer-contact i {
            margin-right: 10px;
            color: #e67e22;
        }

        .footer-bottom {
            border-top: 1px solid #34495e;
            padding-top: 20px;
            text-align: center;
            font-size: 14px;
        }

        .footer-bottom p {
            margin: 5px 0;
        }

        .beian-link {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s;
        }

        .beian-link:hover {
            color: #e67e22;
        }


        /* 响应式设计 */
        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
            }
            
            .footer-section {
                margin-bottom: 30px;
            }
            
            .nav-menu {
                padding: 0;
            }
        }