.container {
            max-width: 1440px;
            margin: 0 auto;
        }
        
        /* 新闻主体区域 */
        .news-section {
            padding: 40px 0;
        }

        /* 栏目切换样式 */
        .ab_pos {
            background-color: #f8f8f8;
            padding: 15px 0;
            border-bottom: 1px solid var(--border-color);
        }
        
        .pos_main {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .pos_main ul {
            display: flex;
            list-style: none;
            margin-bottom: 10px;
        }
        
        .pos_main ul li {
            margin-right: 20px;
        }
        
        .pos_main ul li a {
            text-decoration: none;
            color: var(--text-secondary);
            font-size: 16px;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        .pos_main ul li.webactive a,
        .pos_main ul li a:hover {
            background-color: var(--primary-color);
            color: var(--light-color);
        }
        
        .pos_main p {
            font-size: 14px;
            color: var(--text-secondary);
        }
        
        .pos_main p a {
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .pos_main p a:hover {
            text-decoration: underline;
        }
        
        .clear {
            clear: both;
        }
        
        /* 新闻主体区域 */
        .webnews {
            padding: 30px 0;
        }
        
        .webnews_main {
            display: flex;
            flex-direction: row;
        }
        
        /* 新闻列表区域 */
        .webnews_list {
            flex: 1;
            padding: 20px;
        }
        
        .webnews_list ul {
            list-style: none;
        }
        
        .webnews_list ul li {
            display: flex;
            padding: 25px 0;
            border-bottom: 1px solid var(--border-color);
        }
        
        /* 新闻图片样式 */
        .webnews_img {
            flex: 0 0 220px;
          
            margin-right: 20px;
            border-radius: 4px;
            overflow: hidden;
            background-color: #f0f0f0;
        }
        
        .webnews_img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .webnews_text {
            flex: 1;
        }
        
        .webnews_text .webnews_Name {
            display: block;
            font-size: 20px;
            font-weight: 700;
            color: var(--dark-color);
            text-decoration: none;
            margin-bottom: 12px;
            transition: color 0.3s ease;
        }
        
        .webnews_text .webnews_Name:hover {
            color: var(--primary-color);
        }
        
        .webnews_text p {
            color: var(--text-secondary);
            margin-bottom: 15px;
            line-height: 1.6;
        }
        
        /* 新闻元信息区域（日期、浏览量、阅读更多） */
        .news-meta {
            display: flex;
            align-items: center;
            font-size: 14px;
            color: var(--text-secondary);
        }
        
        .news-date {
            display: flex;
            align-items: center;
            margin-right: 20px;
        }
        
        .news-date i {
            margin-right: 5px;
            color: #777;
        }
        
        .news-views {
            display: flex;
            align-items: center;
            margin-right: 20px;
        }
        
        .news-views i {
            margin-right: 5px;
            color: #777;
        }
        
        .webnews_More {
            display: inline-flex;
            align-items: center;
            color: var(--primary-color);
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .webnews_More:hover {
            color: #b71c1c;
            padding-left: 5px;
        }
        
        .webnews_More i {
            margin-left: 5px;
            font-size: 12px;
        }

        /* 右侧边栏区域 */
        .news-sidebar {
            flex: 0 0 320px;
        }

        .sidebar-section {
            background: var(--light-color);
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            padding: 25px;
            margin-bottom: 30px;
        }

        .section-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--primary-color);
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
        }

        /* 热门新闻样式 */
        .hot-news-item {
            display: flex;
            padding: 12px 0;
            border-bottom: 1px solid var(--border-color);
        }

        .hot-news-item:last-child {
            border-bottom: none;
        }

        .hot-news-img {
            flex: 0 0 60px;
            height: 60px;
            margin-right: 15px;
            border-radius: 4px;
            overflow: hidden;
        }

        .hot-news-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .hot-news-content {
            flex: 1;
        }

        .hot-news-title {
            font-weight: 600;
            font-size: 15px;
            margin-bottom: 5px;
            text-decoration: none;
            color: #333;
            display: block;
            transition: color 0.3s ease;
        }

        .hot-news-title:hover {
            color: var(--primary-color);
        }

        .hot-news-date {
            color: var(--text-secondary);
            font-size: 13px;
        }

        /* 标签样式 */
        .tags-container {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tag {
            display: inline-block;
            padding: 6px 15px;
            background-color: #f0f0f0;
            color: #555;
            border-radius: 30px;
            font-size: 14px;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .tag:hover {
            background-color: var(--primary-color);
            color: var(--light-color);
            transform: translateY(-2px);
        }

        /* 联系信息样式 */
        .contact-info {
            /*margin-top: 20px;*/
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .contact-icon {
            flex: 0 0 30px;
            color: var(--primary-color);
            font-size: 18px;
            padding-top: 3px;
        }

        .contact-details {
            flex: 1;
        }

        .contact-title {
            font-weight: 600;
            margin-bottom: 3px;
        }

        .contact-value {
            color: var(--text-secondary);
        }

        .contact-value a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .contact-value a:hover {
            color: var(--primary-color);
        }

        /* 分页样式 */
        .pagination {
            display: flex;
            justify-content: center;
            padding: 25px 0;
            margin-top: 20px;
        }

        .pagination a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            margin: 0 5px;
            border-radius: 50%;
            color: #555;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .pagination a:hover {
            background-color: #f0f0f0;
        }

        .pagination a.active {
            background-color: var(--primary-color);
            color: var(--light-color);
        }

        /* 响应式设计 */
        @media (max-width: 1024px) {
            .news-sidebar {
                flex: 0 0 280px;
            }
            
            .webnews_img {
                flex: 0 0 100px;
                
            }
        }
        
        @media (max-width: 900px) {
            .webnews_main {
                flex-direction: column;
            }
            
            .webnews_list {
                margin-right: 0;
                margin-bottom: 30px;
            }
            
            .news-sidebar {
                flex: 0 0 auto;
                width: 100%;
            }
            
            .sidebar-sections {
                display: flex;
                flex-wrap: wrap;
                gap: 20px;
            }
            
            .sidebar-section {
                flex: 1;
                min-width: 300px;
            }
        }
        
        @media (max-width: 768px) {
            .pos_main {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .pos_main ul {
                margin-bottom: 15px;
                width: 100%;
                overflow-x: auto;
                white-space: nowrap;
                padding-bottom: 10px;
            }
            
            .pos_main ul li {
                margin-right: 12px;
            }
            
            .webnews_list ul li {
                flex-direction: column;
            }
            
            .webnews_img {
                width: 100%;
                
                margin-right: 0;
                margin-bottom: 15px;
                flex: none;
            }
            
            .news-meta {
                flex-wrap: wrap;
                gap: 15px;
            }
            
            .news-date, 
            .news-views {
                margin-right: 15px;
                margin-bottom: 5px;
            }
        }
        
        @media (max-width: 480px) {
            .pos_main ul li a {
                font-size: 14px;
                padding: 6px 12px;
            }
            
            .webnews_text .webnews_Name {
                font-size: 18px;
            }
            .webnews_text {
                    /* width: 100%; */
                    margin: 0 auto;
                }
            
            .news-meta {
                font-size: 13px;
            }
            
            .section-title {
                font-size: 20px;
            }
            
            .sidebar-section {
                padding: 20px;
            }
        }