
        .products-banner {
            background: url(/img222/banner/news.jpg) no-repeat center center;
        }
        
       .breadcrumb {
            color: #666;
            margin: 20px 0;
        }
        .breadcrumb a {
            color: #666;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: #007bff;
        }

        .featured-news {
            display: flex;
            width: 100%;
            margin-bottom: 40px;
        }

        /* 轮播样式 */
        .featured-image {
            width: 44%;
            height: 400px;
            position: relative;
            overflow: hidden;
            background-color: #f0f0f0;
        }
        .carousel-track {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.5s ease-in-out;
            flex-shrink: 0;
        }
        .carousel-item {
            flex-shrink: 0;
            min-width: 100%;
            width: 100%;
            height: 100%;
            position: relative;
        }
        .carousel-item .slide-bg {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
        }
        .carousel-item .caption {
            position: absolute;
            bottom: 0;
            left: 0;
            color: #fff;
            font-size: 24px;
            font-weight: bold;
            width: 100%;
            background: rgba(0,0,0,0.4);
            padding: 5px 10px;
            text-align: center;
        }

        /* 右侧内容 */
        .featured-content{
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            background: #F7F7F7;
            padding: 40px 60px 60px 40px;
            width: 56%;
            color: #333;
        }
        .featured-content .date {
            color: #666;
            margin-bottom: 10px;
        }
        .text-animate {
            animation: textFadeUp 0.4s ease forwards;
        }
        @keyframes textFadeUp {
            from {
                opacity: 0;
                transform: translateY(15px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .featured-content h2 {
            font-size: 24px;
            margin-bottom: 15px;
            line-height: 1.4;
        }
        .featured-content h2 a {
            text-decoration: none;
        }
        .featured-content h2 a:hover {
            color: #F8C300;
        }
        .featured-content p {
            line-height: 1.6;
            color: #5D6366;
            margin-bottom: 20px;
        }
        .btn-detail {
            display: inline-block;
            color: #555;
            text-decoration: none;
            padding-bottom: 2px;
        }
        .btn-detail span {
            margin-left: 8px;
            background: #F8C300;
            display: inline-block;
            width: 24px;
            height: 24px;
            line-height: 24px;
            text-align: center;
        }
        .btn-detail:hover {
            color: #002B45;
        }
        .featured-nav {
            text-align: right;
            margin-top: 10px;
        }
        .featured-nav button {
            width: 30px;
            height: 30px;
            border: 1px solid #CCCCCC;
            color: #CCCCCC;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }
        .featured-nav button + button {
            margin-left: 10px;
        }
        .featured-nav button:hover {
            background: #002B45;
            color: #fff;
        }

        /* 新闻列表 - a标签布局，无gap */
        .news-list {
            margin-bottom: 40px;
            display: flex;
            flex-direction: column;
        }
        .news-item {
            display: flex;
            align-items: center;
            width: 100%;
            padding: 30px 60px 30px 0;
            border-bottom: 1px solid #eee;
            text-decoration: none;
            color: inherit;
            transition: background-color 0.3s ease;
        }
        .news-date {
            min-width: 80px;
            color: #555555;
            line-height: 1.4;
            display: flex;
            flex-direction: column;
        }
        .news-date span{
            font-size: 32px;
            color: #333;
        }
        .news-image {
            width: 224px;
            height: 152px;
            display: flex;
            align-items: center;
            margin: 0 3%;
            overflow: hidden;
        }
        .news-image img{
            height: 100%;
        }
        .news-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            height: 152px;
            justify-content: space-around;
        }
        .news-content h3 {
            font-size: 24px;
            margin-bottom: 10px;
            max-height: 76px;
            overflow: hidden;
        }
        .news-content p {
            color: #555555;
            line-height: 1.5;
            max-height: 72px;
            overflow: hidden;
        }
        .news-arrow {
            flex-shrink: 0;
            width: 40px;
            text-align: center;
            margin-left: 8%;
        }
        .news-arrow span {
            color: #ccc;
            text-decoration: none;
            font-size: 18px;
            display: inline-block;
            height: 40px;
            width: 40px;
            line-height: 40px;
            border: 1px solid #ccc;
            transition: all 0.3s ease;
        }

        .news-item:hover .news-content h3{
            color: #F8C300;
        }
        .news-item:hover .news-arrow span {
            background-color: #F8C300;
            border-color: #F8C300;
            color: #041e41;
        }

        .pagination {
            text-align: center;
            margin-bottom: 40px;
        }
        .pagination button, .pagination a {
            display: inline-block;
            width: 30px;
            height: 30px;
            line-height: 30px;
            text-align: center;
            border: none;
            background: #fff;
            color: #333;
            text-decoration: none;
            cursor: pointer;
        }
        .pagination a.active {
            background: #333;
            color: #fff;
        }
        .pagination button:hover, .pagination a:hover:not(.active) {
            background: #f0f0f0;
        }

        /* 响应式 */
        @media (max-width: 1400px) {
            .news-arrow{
                display: none;
            }
        }

        @media (max-width: 992px) {
            .featured-news {
                flex-direction: column;
            }
            .featured-image {
                width: 100%;
                height: 200px;
            }
            .carousel-item .caption{
                font-size: 16px;
            }
            .featured-content {
                width: 100%;
                padding: 30px;
            }
            .news-item {
                flex-wrap: wrap;
                padding: 20px 0;
            }
            .news-date {
                width: 100%;
                min-width: auto;
                margin-bottom: 10px;
            }
            .news-image {
                width: 100%;
                height: 180px;
                margin: 0 0 15px 0;
            }
            .news-arrow {
                margin-left: 0;
                width: auto;
            }
            .news-content {
                height: auto;
                margin-bottom: 15px;
            }
        }

        @media (max-width: 768px) {
            .featured-content {
                padding: 20px;
            }
            .featured-content h2 {
                font-size: 16px;
            }
            .news-image {
                height: auto;
            }
            .news-content h3{
                font-size: 16px;
                max-height: auto;
            }
            .news-item{
                padding: 20px 0 10px 0;
            }
            .news-content{
                margin: 0;
            }
            .news-content p{
                display: none;
            }
            .news-image img{
                width: 100%;
                height: auto;
            }
            .btn-detail{
                display: none;
            }
            .news-date{
                flex-direction: row;
            }
            .news-date span{
                font-size: 14px;
            }
            .news-date span::after{
                content: '-';
            }
        }
