
        .products-banner {
            background: url(/img222/banner/news.jpg) no-repeat center center;
        }
        .container-news{
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            margin-top: -114px !important;
            position: relative;
            z-index: 5;
            background: #fff;
        }
        .left-right-new{
            padding: 60px;
        }
        .pagetitle-news{
            position: absolute;
            top: -30px;
            left: 0;
        }
        .pagetitle-news a{
            color: #fff !important;
        }

        .left-right-section {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
        }
        .left-right-section>a{
            margin: 30px 0 0 0;
        }
        .left-right-section>a:nth-child(1){
            margin: 0;
        }
        .left-right-item {
            display: flex;
            overflow: hidden;
            transition: transform 0.3s ease;
            padding: 35px;
            background: #F7F7F7;
        }
        .date-section {
            flex: 0 0 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 25px 35px;
            color: #5D6366;
            background: white;
        }
        .date-section .date {
            font-size: 48px;
            font-weight: bold;
            line-height: 1;
            color: #F8C300;
        }
        .date-section .month-year {
            font-size: 16px;
            margin-top: 5px;
        }
        .content-section {
            flex: 1;
            padding-left: 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .content-section h3 {
            color: #333;
            font-size: 24px;
        }
        .content-section p {
            color: #555;
        }

        .section-header {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            padding: 0 60px;
            border-bottom: 1px solid #F7F7F7;
            margin: 0 -50px;
        }
        .section-title {
            font-size: 28px;
            padding: 24px 0;
            font-weight: bold;
            color: #333;
            position: relative;
            transition: color 0.3s;
            overflow: hidden;
            margin: 0 50px;
        }
        .section-title::before {
            content: '';
            position: absolute;
            top: 0;
            left: -1500px;
            background: #F8C300;
            height: 4px;
            width: 100%;
            transition: all 0.5s ease;
        }
        .section-title:hover{
            color: #F8C300;
        }
        .section-title:hover::before{
            left: 0;
        }
        .active-nav::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            background: #F8C300;
            height: 4px;
            width: 100%;
            transition: all 0.5s ease;
        }


        @media (max-width: 768px) {
            .left-right-section {
                grid-template-columns: 1fr;
                margin: 30px 0 0 0;
            }
            .container {
                padding: 15px;
            }
            section {
                padding: 20px;
            }
            .section-header-box{
                overflow-x: auto;
                white-space: nowrap;
            }
            .section-header {
                width: 800px;
                display: block;
                padding: 12px 60px;
            }
            .section-title{
                font-size: 24px;
                padding: 16px 0;
                margin: 0 16px;
            }
            .left-right-new{
                padding: 0;
            }
            .left-right-item{
                padding: 10px;
                display: flex;
                align-items: flex-start;
                gap: 10px;
            }
            .date-section{
                flex:0 0 auto;
                padding: 5px 8px;
                margin-top: 2px;
            }
            .date-section .date{
                font-size: 20px;
            }
            .date-section .month-year{
                font-size: 12px;
            }
            .content-section{
                padding-left: 0;
                flex:1;
            }
            .content-section h3{
                font-size: 16px;
                line-height: 1.3;
                margin:0 0 6px 0;
                white-space: normal;
            }
            .content-section p{
                display: -webkit-box;
                -webkit-box-orient: vertical;
                -webkit-line-clamp: 3;
                overflow: hidden;
                font-size:14px;
                margin:0;
            }
            .container-news{
                padding: 0 10px;
                margin-top: -80px !important;
            }
        }
