.home-page.home-new {
    /* padding-top: 60px; */
    color: #333;
    font-family: "Helvetica Neue", Arial, sans-serif;
    background: #fff;
}

.home-new .container-box {
    width: 100%;
    margin: 0 auto;
}

.home-new .container-padding {
    padding: 0 150px;
}

/* Product Series */

.product-series {
    padding: 80px 0;
    background: #fff;
}

.product-series .series-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4.17rem;
}
.product-series h3{
    text-transform: none;
}
.product-series .series-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0rem 0rem 3rem 0rem rgba(52,53,27,0.1);
    border-radius: 0.42rem;
    overflow: hidden;
    padding-bottom: 2.75rem;
}

.product-series .series-image {
    width: 100%;
    height: 22.5rem;
    overflow: hidden;
    margin-bottom: 1.58rem;
}

.product-series .series-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-series .series-item h4 {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1.25rem;
    text-align: left;
    padding: 0 1.67rem;
    line-height: 2.5rem;
    margin-top: 0;
}

.product-series .series-item p {
    font-size: 1.33rem;
    font-weight: 400;
    line-height: 2rem;
    color: #666666;
    padding: 0 1.67rem;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    height: 10rem;
    overflow: hidden;
    margin-bottom: 0;
}

/* Hot-selling Products */

.hot-selling-products {
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 8.33rem;
}
.hot-selling-products h3{
    color: white !important;
    font-size: 4rem;
    color: #FFFEFE;
    margin-bottom: 5.83rem !important;
    margin-top: 0 !important;
}
.hot-selling-products .products-grid {
    display: flex;
    flex-wrap: nowrap;
    /* overflow-x: auto; */
    gap: 4.17rem;
    justify-content: flex-start;
    width: max-content;
    padding-bottom: 3rem;
}

.hot-selling-products .products-auto-scroll-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-left: 150px; /* 起始偏移 150px */
}

@media (max-width: 991px) {
    .hot-selling-products .products-auto-scroll-container {
        padding-left: 40px;
    }
}

@media (max-width: 767px) {
    .hot-selling-products .products-auto-scroll-container {
        padding-left: 15px;
        overflow-x: auto; /* 手机端恢复手动滚动 */
    }
    
    /* 手机端恢复滚动条样式 */
    .hot-selling-products .products-auto-scroll-container::-webkit-scrollbar {
        height: 4px;
    }
    .hot-selling-products .products-auto-scroll-container::-webkit-scrollbar-track {
        background: #f1f1f1;
    }
    .hot-selling-products .products-auto-scroll-container::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 10px;
    }

    .hot-selling-products .auto-scroll-track {
        animation: none !important; /* 手机端禁用自动滚动动画 */
        width: max-content;
    }
}


.hot-selling-products .auto-scroll-track {
    animation: scrollLeft 80s linear infinite;
    animation-play-state: paused; /* Controlled by JS Intersection Observer */
}

.hot-selling-products .auto-scroll-track.is-visible {
    animation-play-state: running;
}

.hot-selling-products .auto-scroll-track:hover {
    animation-play-state: paused;
}

/* 移除不再需要的滚动条样式 */
/* .hot-selling-products .products-grid::-webkit-scrollbar { ... } */


.hot-selling-products .product-card {
    background: #fff;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 36rem;
    flex-shrink: 0;
}

.hot-selling-products .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.hot-selling-products .product-card-image {
    width: 100%;
    /* height: 240px; */
    height: 26.67rem;
    overflow: hidden;
    margin-bottom: 1.67rem;
}

.hot-selling-products .product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hot-selling-products .product-card h4 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    padding: 0 1.67rem;
    line-height: 2.5rem;
    height: 6rem;
}

.hot-selling-products .product-description {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
    /* margin: 0 16px 16px; */
    padding: 0 1.67rem;
}

/* Our Core Advantages */

.our-core-advantages {
    padding: 80px 0;
    background: #fff;
}

.our-core-advantages .advantages-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); */
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    padding: 0 5vw;
}

.our-core-advantages .advantage-item {
    background: #fff;
    padding: 30px;
    border-radius: 0.42rem;
    border: 0.08px solid rgba(146,146,105,0.5);
    position: relative;
    overflow: hidden;
    /* height: 37.5rem; */
    height: 430px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}

.our-core-advantages .advantage-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.our-core-advantages .advantage-icon {
    width: 4.5rem;
    height: 4.5rem;
    margin-bottom: 20px;
}

.our-core-advantages .advantage-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.our-core-advantages .advantage-item h4 {
    font-size: 1.67rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0;
    margin-top: 0;
    text-align: center;
    line-height: 3rem;
}

.our-core-advantages .advantage-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #929269;
    color: #fff;
    padding: 0 1.67rem;
    padding-top: 3.5rem;
    transform: translateY(100%);
    transition: transform 0.4s ease-out;
    overflow-y: auto;
    min-height: 100%;
}

.our-core-advantages .advantage-item:hover .advantage-content {
    transform: translateY(0);
}

.our-core-advantages .advantage-item p {
    font-size: 1.33rem;
    line-height: 2rem;
    color: #F2F2EA;
    margin-bottom: 12px;
    font-weight: 400;
}

.our-core-advantages .advantage-item p strong {
    font-weight: bold;
    line-height: 2rem;
    display: block;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.our-core-advantages .advantage-item p:last-child {
    margin-bottom: 0;
}

.home-new h3 {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.3;
    color: #333333;
    margin-bottom: 40px;
    text-align: center;
    /* text-transform: uppercase; */
}

.home-new section {
    width: 100%;
}

.company-profile-box {
    display: flex;
}


/* Hero */

.hero-banner {
    position: relative;
    height: 47vw;
    overflow: hidden;
}

.hero-banner-swiper {
    width: 100%;
    height: 100%;
}

.hero-banner-swiper .swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-banner-swiper .slide-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-banner-swiper .swiper-pagination {
    bottom: 20px;
}

.hero-banner-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.hero-banner-swiper .swiper-pagination-bullet-active {
    background: #fff;
}

.hero-banner-swiper .swiper-button-prev,
.hero-banner-swiper .swiper-button-next {
    color: #fff;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    transition: background 0.3s ease;
}

.hero-banner-swiper .swiper-button-prev:hover,
.hero-banner-swiper .swiper-button-next:hover {
    background: rgba(0, 0, 0, 0.5);
}

.hero-banner-swiper .swiper-button-prev::after,
.hero-banner-swiper .swiper-button-next::after {
    font-size: 20px;
    font-weight: bold;
}

.hero-banner .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(0, 0, 0, 0.3); */
    z-index: 2;
}

.hero-banner .hero-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}


.hero-banner .hero-inner {
    color: #fff;
    text-align: center;
    padding: 40px;
    margin-bottom: 66px;
}

.hero-banner .eyebrow {
    font-size: 20px;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.hero-banner h2 {
    font-size: 2.8vw;
    line-height: 1.3;
    font-weight: 800;
    margin: 0 0 24px 0;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-banner .subhead {
    font-size: 16px;
    line-height: 1.8;
    margin: 0 auto 32px;
    margin-bottom: 1vw;
    font-weight: 400;
    color: #FFFFFF;
}

.hero-banner .btn-primary1 {
    display: inline-block;
    padding: 14px 22px;
    background: #ABAD64;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    box-shadow: 0px 4px 35px 0px rgba(38,33,22,0.1);
    border: none;
    cursor: pointer;
    font-weight: bold;
}
.stats-band-btn .btn-primary1 {
    display: inline-block;
    padding: 14px 22px;
    background: #ABAD64;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    box-shadow: 0px 4px 35px 0px rgba(38,33,22,0.1);
    border: none;
    cursor: pointer;
    font-weight: bold;
}
.hero-banner .btn-primary1:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.hero-banner-swiper .hero-invisible-link {
    position: absolute;
    bottom: 9vw;
    left: 7vw;
    width: 15vw;
    height: 4vw;
    z-index: 10;
    opacity: 0;
    cursor: pointer;
    background: transparent;
    border: none;
    text-decoration: none;
}

.hero-banner-swiper .hero-invisible-link-center {
    bottom: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 17vw;
    height: 5vw;
}

.hero-banner-swiper .hero-invisible-link-center-bottom {
    bottom: auto;
    left: 50%;
    top: 28vw;
    transform: translate(-50%, -50%);
    width: 25vw;
    height: 5vw;
}


/* Company profile */

.company-profile {
    padding: 90px 0 60px;
}

.company-profile .two-col {
    /* display: grid; */
    /* grid-template-columns: 1.1fr 1fr; */
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
}

.company-profile .text-block {
    font-size: 16px;
    line-height: 1.8;
}

.company-profile .text-block h3 {
    text-align: left;
    margin-bottom: 20px;
}

.company-profile .text-block p {
    font-family: "Source Han Sans SC", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    color: #333333;
    width: 560px;
}

.company-profile .video-block {
    display: flex;
    justify-content: center;
}

.company-profile .video-player {
    width: 688px;
    height: 390px;
    border-radius: 12px;
    display: block;
    object-fit: cover;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
    background: #000;
}


/* Product showcase */

.product-showcase {
    /* padding: 80px 0; */
    /* padding-top: 20px; */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.product-showcase .product-filters {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 30px;
    margin-bottom: 43px;
    justify-content: space-between;
    font-family: Source Han Sans SC;
    padding: 0 150px;
}

.product-showcase .filter-btn-wrapper {
    display: flex;
    justify-content: center;
}

.product-showcase .filter-btn {
    width: 279px;
    height: 43px;
    padding: 12px 0;
    border-radius: 28px;
    border: 1px solid #666666;
    background: #fff;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-showcase .filter-btn:hover {
    border-color: #FFBB11;
    color: #111;
}

.product-showcase .filter-btn.active {
    background: #FFBB11;
    border-color: #FFBB11;
    color: #fff;
}

.product-stage {
    position: relative;
    width: 100%;
}

.product-stage .product-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 10;
}

.product-stage .product-nav.prev {
    left: 150px;
}

.product-stage .product-nav.next {
    right: 150px;
}

.product-stage .product-nav:hover {
    transform: translateY(-50%) translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.product-stage .product-nav img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-stage .product-frame {
    width: 100%;
    height: 26vw;
    background: #fff url('../images/home/product_bg.png') no-repeat center;
    background-size: cover;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-stage .product-frame img {
    height: 20vw;
    width: auto;
    display: block;
    border-radius: 12px;
    margin-top: 3vw;
}


/* Core strengths */

.core-strengths {
    padding: 75px 0 70px;
    padding-bottom: 85px;
    /* background: #f8f8f8; */
}

.core-strengths .strength-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.core-strengths .card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0px 4px 26px 0px rgba(137, 133, 122, 0.2);
    background: #fff;
    display: flex;
    flex-direction: column;
}

.core-strengths .card-image {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.core-strengths .card-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.core-strengths .card-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: rgba(129, 95, 6, 0.7);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 26px;
}

.core-strengths .card-title-overlay h4 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    color: #fff;
}

.core-strengths .card-content {
    padding: 25px 26px;
    display: flex;
    flex-direction: column;
    color: #333;
    flex: 1;
}

.core-strengths .card-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}


/* Stats */

.stats-band {
    height: 22.7vw;
    padding: 70px 0;
    padding-bottom: 100px;
    background-size: cover;
    background-position: 0 0;
}

.stats-container {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 150px;
    margin-bottom: 50px;
}

.stats-container .stat {
    padding: 18px 10px;
}

.stats-container .value {
    font-size: 28px;
    font-weight: bold;
    color: #ABAD64;
    margin-bottom: 6px;
}

.stats-container .label {
    font-size: 15px;
    color: #4E4C45;
    font-family: Source Han Sans SC;
    font-weight: 400;
}


/* Partners */

.partners {
    padding: 80px 0 100px;
    background: #fff;
    overflow: hidden;
}

.partners h3 {
    text-align: center;
    margin-bottom: 50px;
}

.partner-marquee-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.partner-track {
    width: 100%;
    overflow: hidden;
}

.partner-list {
    display: flex;
    width: max-content;
    animation: scrollLeft 60s linear infinite;
}

.track-left .partner-list {
    animation: scrollLeft 60s linear infinite;
}

.track-right .partner-list {
    animation: scrollRight 60s linear infinite;
}

.partner-item {
    flex: 0 0 auto;
    height: 120px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
}

.partner-item img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}


/* Responsive */

@media (max-width: 991px) {
    .home-new .container-padding {
        padding: 0 40px;
    }
    .hero-banner {
        /* min-height: 400px; */
        /* height: 50vw; */
    }
    .hero-banner h2 {
        font-size: 42px;
    }
    .hero-banner .subhead {
        font-size: 15px;
    }
    .hero-banner-swiper .swiper-button-prev,
    .hero-banner-swiper .swiper-button-next {
        width: 40px;
        height: 40px;
    }
    .hero-banner-swiper .swiper-button-prev::after,
    .hero-banner-swiper .swiper-button-next::after {
        font-size: 16px;
    }
    .product-series .series-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .hot-selling-products .products-grid {
        gap: 16px;
    }
    .our-core-advantages .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .our-core-advantages .advantage-item {
        padding: 20px;
        min-height: 250px;
    }
    .our-core-advantages .advantage-content {
        padding: 20px;
    }
    .stats-container {
        padding: 0 40px;
        flex-wrap: wrap;
        gap: 20px;
    }
    .stats-container .stat {
        flex: 1 1 calc(50% - 10px);
        min-width: 120px;
    }
}

@media (max-width: 767px) {
    .home-page.home-new {
        padding-top: 50px;
    }
    .home-new .container-padding {
        padding: 0 15px;
    }
    .home-new h3 {
        font-size: 22px;
        margin-bottom: 30px;
    }
    /* Hero Banner */
    .hero-banner {
        /* min-height: 300px; */
        /* height: 60vw; */
    }
    .hero-banner .hero-inner {
        padding: 20px;
    }
    .hero-banner h2 {
        font-size: 28px;
        margin: 0 0 16px 0;
    }
    .hero-banner .subhead {
        font-size: 13px;
        margin-bottom: 20px;
    }
    .hero-banner .btn-primary1 {
        padding: 12px 30px;
        font-size: 13px;
    }
    /* Product Series */
    .product-series {
        padding: 40px 0;
    }
    .product-series .series-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .product-series .series-image {
        height: 200px;
    }
    /* Hot-Selling Products */
    .hot-selling-products {
        padding: 40px 0;
    }
    .hot-selling-products .products-grid {
        gap: 12px;
    }
    .hot-selling-products .product-card-image {
        height: 180px;
    }
    .hot-selling-products .product-card h4 {
        font-size: 14px;
        margin: 12px 12px 6px;
    }
    .hot-selling-products .product-description {
        font-size: 12px;
        line-height: 1.5;
        margin: 0 12px 12px;
    }
    /* Our Core Advantages */
    .our-core-advantages {
        padding: 40px 0;
    }
    .our-core-advantages .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .our-core-advantages .advantage-item {
        padding: 20px;
        min-height: auto;
    }
    .our-core-advantages .advantage-content {
        position: static;
        transform: translateY(0) !important;
        background: #8B8766;
        padding: 20px;
    }
    .our-core-advantages .advantage-icon {
        width: 50px;
        height: 50px;
    }
    .our-core-advantages .advantage-item h4 {
        font-size: 14px;
    }
    .our-core-advantages .advantage-item p {
        font-size: 12px;
        line-height: 1.6;
    }
    /* Stats Band */
    .stats-band {
        height: auto;
        min-height: 300px;
        padding: 40px 0 50px;
    }
    .stats-container {
        flex-direction: column;
        padding: 0 15px;
        gap: 25px;
        margin-bottom: 0;
    }
    .stats-container .stat {
        flex: none;
        width: 100%;
        padding: 15px 10px;
    }
    .stats-container .value {
        font-size: 28px;
        margin-bottom: 8px;
    }
    .stats-container .label {
        font-size: 14px;
    }
    /* Partners */
    .partners {
        padding: 40px 0 60px;
    }
    .partner-marquee-wrapper {
        gap: 30px;
    }
    .partner-item {
        height: 100px;
        padding: 0 10px;
    }
    .partner-list {
        gap: 20px;
        animation: scrollLeft 50s linear infinite;
    }
    .track-left .partner-list {
        animation: scrollLeft 50s linear infinite;
    }
    .track-right .partner-list {
        animation: scrollRight 50s linear infinite;
    }
}

@media (max-width: 480px) {
    .home-new h3 {
        font-size: 20px;
        margin-bottom: 25px;
    }
    .hero-banner {
        /* min-height: 250px; */
        /* height: 65vw; */
    }
    .hero-banner .hero-inner {
        padding: 15px;
    }
    .hero-banner h2 {
        font-size: 24px;
        margin: 0 0 12px 0;
    }
    .hero-banner .subhead {
        font-size: 12px;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    .hero-banner .btn-primary1 {
        padding: 10px 25px;
        font-size: 12px;
    }
    /* Product Series */
    .product-series {
        padding: 30px 0;
    }
    .product-series .series-image {
        height: 160px;
    }
    .product-series .series-item h4 {
        font-size: 16px;
    }
    /* Hot-Selling Products */
    .hot-selling-products {
        padding: 30px 0;
    }
    .hot-selling-products .product-card-image {
        height: 150px;
    }
    .hot-selling-products .product-card h4 {
        font-size: 13px;
        margin: 10px 10px 5px;
    }
    .hot-selling-products .product-description {
        font-size: 11px;
        margin: 0 10px 10px;
    }
    /* Our Core Advantages */
    .our-core-advantages {
        padding: 30px 0;
    }
    .our-core-advantages .advantage-item {
        padding: 15px;
        min-height: auto;
    }
    .our-core-advantages .advantage-content {
        position: static;
        transform: translateY(0) !important;
        background: #8B8766;
        padding: 15px;
        border-radius: 0 0 8px 8px;
    }
    .our-core-advantages .advantage-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 15px;
    }
    .our-core-advantages .advantage-item h4 {
        font-size: 13px;
        margin-bottom: 10px;
    }
    .our-core-advantages .advantage-item p {
        font-size: 11px;
        line-height: 1.5;
        margin-bottom: 8px;
    }
    /* Stats */
    .stats-container .value {
        font-size: 24px;
    }
    .stats-container .label {
        font-size: 13px;
    }
    /* Partners */
    .partners {
        padding: 30px 0 40px;
    }
    .partner-marquee-wrapper {
        gap: 20px;
    }
    .partner-item {
        height: 80px;
        padding: 0 8px;
    }
    .partner-list {
        gap: 15px;
        animation: scrollLeft 40s linear infinite;
    }
    .track-left .partner-list {
        animation: scrollLeft 40s linear infinite;
    }
    .track-right .partner-list {
        animation: scrollRight 40s linear infinite;
    }
}