
        /* 面包屑样式 */
        .breadcrumb {
            max-width: 1440px;
            margin: 40px auto 0;
            font-size: 14px;
            color: #666;
        }
        .breadcrumb a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .breadcrumb a:hover {
            color: #740d23;
        }
        .breadcrumb span {
            margin: 0 8px;
            color: #999;
        }
        .breadcrumb .current-crumb {
            color: #333;
            font-weight: 500;
        }

        /* 顶部横幅 */
        .header-banner {
            position: relative;
            height: 500px;
            background: url(../images/buss_banner.jpg) center / cover no-repeat;
            overflow: hidden;
        }

        .banner-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            opacity: 0.9;
        }

        .news-title {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 36px;
            color: #fff;
            font-weight: bold;
        }

        /* 美化后的标签导航 */
        .nav-tabs {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
			width:1440px;


        }

        .tab-btn {
            padding: 26px;
            color: #fff;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
			background:rgba(0,0,0,0.3);
			width:33.33%;
			border:none;
        }
        /* 标签按钮hover效果 */
        .tab-btn:not(.active):hover {
            background: #A13E14;
        }
        /* 激活状态样式增强 */
        .tab-btn.active {
            background: #A13E14;
            font-weight: 500;
        }

        /* 焦点新闻轮播 - 平滑滑动版 */
        .focus-news {
            position: relative;
            max-width: 1440px;
            margin: 0 auto;
			margin-top:50px;
			margin-bottom:50px;
        }

        .focus-slider {
            overflow: hidden;
            width: 100%;
        }

        .slider-wrapper {
            display: flex;
            transition: transform 0.5s ease-in-out; /* 核心：平滑过渡动画 */
        }

        .slide {
            flex: 0 0 100%; /* 每个轮播项占满容器宽度 */
            display: flex;
        }

        .focus-left {
            flex: 1.6;
        }
		.focus-left img{width:100%;height:100%}
        .focus-img {
            width: 100%;
            height: auto;
        }

        .focus-right {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
			background:#EFEFEF;
			padding:40px
        }

        .focus-title {
            font-size: 22px;
            margin-bottom: 10px;
            color: #333;
        }

        .focus-date {
            font-size: 14px;
            color: #999;
            margin-bottom: 15px;
			position:relative;
        }
		.focus-date:after{    content: "";
    position: absolute;
    left: 10%;
    top: 50%;
    width: 350px;
    height: 1px;
    background-color: #d7d7d7;}
        .focus-desc {
            font-size: 16px;
            color: #666;
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .detail-btn {
            background: #740d23;
            color: #fff;
            padding: 8px 20px;
            border-radius: 2px;
            font-size: 14px;
            width: 120px;
            transition: background-color 0.3s ease;
			border:none;
			margin-top:20px;
        }
        .detail-btn:hover {
            background: #e09612;
        }

        /* 轮播指示器 */
        .slider-indicators {
            position: absolute;
            bottom: 50px;
            right: 80px;
            display: flex;
            gap: 8px;
        }

        .indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #ddd;
            transition: background-color 0.3s ease;
			border:none;
        }

        .indicator.active {
            background: #740d23;
        }

        /* 新闻列表 */
        .news-list {
            max-width: 1440px;
            margin: 0 auto;
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 50px 120px;
        }

        .news-item {
            padding-bottom: 50px;
			border-bottom: 1px solid #eee;
			margin-bottom: 50px;
            /* 核心：添加过渡动画 */
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform: translateY(0);
            opacity: 0.95;
            cursor: pointer;
        }
        /* 鼠标悬停效果 */
        .news-item:hover {
            transform: translateY(-5px); /* 轻微上移 */
            opacity: 1; /* 透明度提升 */
        }
        /* 文字子元素的单独过渡 */
        .news-item .news-date,
        .news-item .news-item-title,
        .news-item .news-item-desc,
        .news-item .more_de {
            transition: all 0.3s ease;
        }
        /* 悬停时文字轻微变色 + 标题轻微放大 */
        .news-item:hover .news-item-title {
            transform: scale(1.02); /* 轻微放大 */
        }
        .news-item:hover .news-item-desc {
            color: #333; /* 描述变深 */
        }
        .news-item:hover .more_de {
            color: #740d23; /* 查看详情变主题色 */
            padding-left: 5px; /* 轻微左移 */
        }

		.news-item a{color:black;text-decoration:none}
		.news-item .more_de{display:block;padding-top:20px;font-size:12px;}
        .news-date {
            font-size: 14px;
            color: #999;
            margin-bottom: 8px;
        }

        .year {
            margin-left: 5px;
        }

        .news-item-title {
            font-size: 18px;
            margin-bottom: 20px;
			margin-top:20px;
            color: #333;
            font-weight: 500;
            display: inline-block; /* 让缩放生效 */
        }

        .news-item-desc {
            font-size: 14px;
            color: #666;
            line-height: 1.7;
        }

        /* 分页 */
        .pagination {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 80px;
            display: flex;
            align-items: center;
            gap: 8px;
            justify-content: center;
        }

        .page-btn {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            font-size: 14px;
            color: #666;
            border: 1px solid #eee;
            transition: all 0.3s ease;
        }
        .page-btn:hover:not(.current) {
            border-color: #0066cc;
            color: #0066cc;
        }

        .page-btn.current {
            background: #0066cc;
            color: #fff;
            border-color: #0066cc;
        }

        .page-ellipsis {
            font-size: 14px;
            color: #999;
        }

        .page-arrow {
            font-size: 16px;
            color: #666;
            transition: color 0.3s ease;
        }
        .page-arrow:hover {
            color: #0066cc;
        }

        .page-text {
            font-size: 14px;
            color: #666;
            margin-left: 5px;
            transition: color 0.3s ease;
        }
        .page-text:hover {
            color: #0066cc;
        }

        /* 移动端响应式 */
        @media (max-width: 768px) {
            .header-banner {
                height: 200px;
            }

            .news-title {
                font-size: 24px;
            }
			.focus-date:after{    content: "";
    position: absolute;
    left: 20%;
    top: 50%;
    width: 200px;
    height: 1px;
    background-color: #d7d7d7;}
        .focus-desc {
            font-size: 16px;
            color: #666;
            margin-bottom: 20px;
            line-height: 1.8;
        }

            /* 移动端面包屑适配 */
            .breadcrumb {
                padding: 0 20px;
                font-size: 13px;
            }

            /* 移动端标签导航适配 */
            .nav-tabs {
                flex-wrap: wrap;
                padding: 8px 10px;
                border-radius: 6px 6px 0 0;
				width:100%;
            }

            .tab-btn {
                padding: 8px 16px;
                font-size: 14px;
            }

            .focus-news {
                padding: 20px 20px;
            }

            .slide {
                flex-direction: column;
            }

            .focus-title {
                font-size: 18px;
            }

            .slider-indicators {
                right: 20px;
                bottom: 20px;
            }

            .news-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .news-list, .pagination {
                padding: 0 20px;
            }

            .pagination {
                flex-wrap: wrap;
            }

            .page-btn {
                width: 25px;
                height: 25px;
                font-size: 12px;
            }
        }

        @media (max-width: 480px) {
            .header-banner {
                height: 150px;
            }

            .news-title {
                font-size: 20px;
            }

            .focus-desc {
                font-size: 14px;
            }

            .news-item-title {
                font-size: 16px;
            }
            /* 移动端弱化动画 */
            .news-item:hover {
                transform: translateY(-3px);
            }
            .news-item:hover .news-item-title {
                transform: scale(1.01);
            }
        }
		