﻿@charset "utf-8";
@import url(swiper.css);

.home-banner #banner-swiper {
    height: 100%;
    min-height: 370px
}

.home-banner .swiper-pagination {
    display: block
}

.home-banner .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%
}

.home-banner .swiper-slide a img {
    width: 100%
}

.home-banner .swiper-button-next, .home-banner .swiper-button-prev {
    background: 0 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--fontcolor);
    transition: all .1s linear
}

.home-banner .swiper-button-next::after, .home-banner .swiper-button-prev::after {
    display: none
}

.home-banner .swiper-button-next:hover, .home-banner .swiper-button-prev:hover {
    background: var(--color);
    color: #FFF
}

.home-banner .swiper-button-next i, .home-banner .swiper-button-prev i {
    font-size: 26px
}

.home-banner .swiper-button-next {
    right: 80px
}

.home-banner .swiper-button-prev {
    left: 80px
}

.home-banner .swiper-pagination-bullet-active {
    background: var(--color)
}

.home-banner .slide-pc, .home-banner .slide-pc img {
    display: block !important
}

.home-banner .slide-mb, .home-banner .slide-mb img {
    display: none !important
}

@media (max-width: 768px) {
    .home-banner .slide-pc, .home-banner .slide-pc img {
        display: none !important
    }

    .home-banner .slide-mb, .home-banner .slide-mb img {
        display: block !important
    }
}

.home-service .service-wrap {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap
}

.home-service .service-wrap .service-item {
    width: 25%;
    background: var(--footer-bg);
    color: #FFF;
    border: 1px solid #4d5057;
    padding: 60px 40px 50px;
    transition: all .2s linear;
    position: relative
}

.home-service .service-wrap .service-item:hover {
    background: var(--color)
}

.home-service .service-wrap .service-item:hover .title::after {
    background: #FFF
}

.home-service .service-wrap .service-item:hover .bg i {
    color: #FFF
}

.home-service .service-wrap .service-item .title {
    font-size: 18px;
    position: relative;
    padding-bottom: 8px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden
}

.home-service .service-wrap .service-item .title::after {
    content: "";
    width: 40px;
    height: 3px;
    background: var(--color);
    position: absolute;
    left: 0;
    bottom: 0
}

.home-service .service-wrap .service-item .text {
    padding-top: 25px;
    font-size: 16px;
    line-height: 1.8;
    color: #DFDFDF;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden
}

.home-service .service-wrap .service-item .icon {
    margin-top: 20px
}

.home-service .service-wrap .service-item .icon i {
    font-size: 30px
}

.home-service .service-wrap .service-item .bg {
    position: absolute;
    right: 20px;
    bottom: 20px
}

.home-service .service-wrap .service-item .bg i {
    color: #494c54;
    font-size: 60px
}

.home-button-next, .home-button-prev {
    position: absolute;
    left: 0;
    top: 40%;
    background: 0 0;
    width: 40px;
    height: 40px;
    border: 1px solid #DFDFDF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .2s linear;
    cursor: pointer
}

.home-button-next:hover, .home-button-prev:hover {
    background: var(--color);
    border-color: var(--color)
}

.home-button-next:hover i, .home-button-prev:hover i {
    color: #FFF
}

.home-button-next i, .home-button-prev i {
    color: #000
}

.home-button-next {
    left: auto;
    right: 0
}

/* Homepage module 4 — product showcase carousel */
.home-product-showcase {
    padding: 70px 20px 60px;
    background: #f6f6f6
}

.home-product-showcase__header {
    max-width: 900px;
    margin: 0 auto 48px;
    text-align: center
}

.home-product-showcase__title {
    margin: 0 0 16px;
    font-size: clamp(22px, 2.4vw, 32px);
    font-weight: var(--fontbold6);
    color: var(--fontcolor);
    line-height: 1.35
}

.home-product-showcase__subtitle {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted)
}

.home-product-showcase__subtitle:empty {
    display: none
}

.home-product-showcase__slider {
    position: relative;
    padding: 0 56px;
    max-width: 1320px;
    margin: 0 auto
}

.home-product-showcase__card {
    display: block;
    color: var(--fontcolor);
    text-decoration: none;
    transition: transform .2s linear
}

.home-product-showcase__card:hover {
    transform: translateY(-4px)
}

.home-product-showcase__media {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .06)
}

.home-product-showcase__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain
}

.home-product-showcase__name {
    margin: 16px 0 0;
    font-size: 16px;
    font-weight: var(--fontbold5);
    text-align: center;
    line-height: 1.4
}

.home-product-showcase__nav {
    position: absolute;
    top: 40%;
    z-index: 2;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--color);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s linear, transform .2s linear;
    box-shadow: 0 6px 16px rgba(var(--color-rgb), .35)
}

.home-product-showcase__nav i {
    font-size: 18px;
    color: #fff
}

.home-product-showcase__nav:hover {
    background: var(--color-hover);
    transform: scale(1.05)
}

.home-product-showcase__nav--prev {
    left: 0
}

.home-product-showcase__nav--next {
    right: 0
}

.home-product-showcase__nav.swiper-button-disabled {
    opacity: .35;
    cursor: default;
    transform: none
}

/* Homepage module 7 — latest cases carousel */
.home-latest-cases {
    padding: 48px 0 44px;
    background: #fff;
    overflow: hidden
}

.home-latest-cases__header {
    max-width: 680px;
    margin: 0 auto 28px;
    padding: 0 20px;
    text-align: center
}

.home-latest-cases__title {
    margin: 0 0 10px;
    font-size: clamp(22px, 2.2vw, 30px);
    font-weight: var(--fontbold6);
    color: var(--fontcolor);
    line-height: 1.25
}

.home-latest-cases__title:empty {
    display: none
}

.home-latest-cases__subtitle {
    margin: 0 0 12px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-muted);
    letter-spacing: .04em;
    text-transform: uppercase
}

.home-latest-cases__subtitle:empty {
    display: none
}

.home-latest-cases__explore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: var(--fontbold5);
    color: var(--color);
    text-decoration: none;
    transition: color .2s linear
}

.home-latest-cases__explore:hover {
    color: var(--color-hover);
    text-decoration: underline
}

.home-latest-cases__stage {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px
}

#latest-cases-swiper {
    overflow: visible;
    padding: 8px 0 14px
}

#latest-cases-swiper .swiper-slide {
    width: min(920px, 74vw);
    transition: opacity .4s ease, transform .4s ease
}

.home-latest-cases__card {
    display: block;
    color: inherit;
    text-decoration: none
}

.home-latest-cases__media {
    position: relative;
    width: 100%;
    aspect-ratio: 1120 / 642;
    max-height: 420px;
    border-radius: 8px;
    overflow: hidden;
    background: #f0f0f0;
    box-shadow: 0 6px 22px rgba(0, 0, 0, .08);
    transform: scale(.9);
    opacity: .45;
    transition: transform .45s ease, opacity .45s ease, box-shadow .45s ease
}

.home-latest-cases__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover
}

#latest-cases-swiper .swiper-slide-active .home-latest-cases__media {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 12px 36px rgba(0, 0, 0, .14)
}

.home-latest-cases__go {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: -22px 0 0 -22px;
    border-radius: 50%;
    background: var(--color);
    color: #fff;
    box-shadow: 0 6px 20px rgba(var(--color-rgb), .45);
    opacity: 0;
    transform: scale(.85);
    transition: opacity .35s ease, transform .35s ease, background .2s linear
}

#latest-cases-swiper .swiper-slide-active .home-latest-cases__go {
    opacity: 1;
    transform: scale(1)
}

.home-latest-cases__card:hover .home-latest-cases__go {
    background: var(--color-hover)
}

.home-latest-cases__nav {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 38px;
    height: 38px;
    margin-top: -19px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .95);
    color: var(--fontcolor);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .14);
    transition: background .2s linear, color .2s linear, transform .2s linear
}

.home-latest-cases__nav i {
    font-size: 16px;
    color: var(--fontcolor)
}

.home-latest-cases__nav:hover {
    background: var(--color);
    transform: scale(1.05)
}

.home-latest-cases__nav:hover i {
    color: #fff
}

.home-latest-cases__nav--prev {
    left: max(12px, calc(50% - min(460px, 37vw) - 48px))
}

.home-latest-cases__nav--next {
    right: max(12px, calc(50% - min(460px, 37vw) - 48px))
}

.home-latest-cases__nav.swiper-button-disabled {
    opacity: .35;
    cursor: default;
    transform: none
}

/* Homepage module 6 — factory / honor certificates */
.home-honor-certificates {
    padding: 70px 20px 60px;
    background: #fff
}

.home-honor-certificates__header {
    margin-bottom: 40px;
    max-width: 520px
}

.home-honor-certificates__label {
    margin: 0 0 8px;
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.4
}

.home-honor-certificates__title {
    margin: 0 0 14px;
    font-size: clamp(26px, 2.8vw, 36px);
    font-weight: var(--fontbold6);
    color: var(--fontcolor);
    line-height: 1.25
}

.home-honor-certificates__line {
    display: block;
    width: 48px;
    height: 4px;
    border-radius: 2px;
    background: var(--color)
}

.home-honor-certificates__slider {
    position: relative;
    padding: 10px 0 48px
}

#honor-cert-swiper {
    overflow: hidden;
    padding: 24px 0 8px
}

#honor-cert-swiper .swiper-slide {
    width: 290px;
    height: auto;
    transition: transform .35s ease, opacity .35s ease
}

.home-honor-certificates__card {
    display: flex;
    flex-direction: column;
    align-items: center
}

.home-honor-certificates__media {
    position: relative;
    width: 290px;
    max-width: 100%;
    aspect-ratio: 290 / 410;
    border-radius: 4px;
    overflow: hidden;
    background: #f5f5f5;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
    transition: box-shadow .35s ease, transform .35s ease
}

.home-honor-certificates__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.home-honor-certificates__badge {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 58, 138, .72);
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none
}

.home-honor-certificates__badge::after {
    content: "";
    width: 52px;
    height: 52px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 36px no-repeat
}

#honor-cert-swiper .swiper-slide-active .home-honor-certificates__badge {
    opacity: 1
}

#honor-cert-swiper .swiper-slide-active .home-honor-certificates__media {
    box-shadow: 0 16px 40px rgba(30, 58, 138, .22);
    transform: scale(1.02)
}

.home-honor-certificates__name {
    margin: 14px 0 0;
    font-size: 14px;
    color: var(--fontcolor);
    text-align: center;
    line-height: 1.4;
    max-width: 290px
}

.home-honor-certificates__pagination {
    bottom: 0 !important
}

.home-honor-certificates__pagination .swiper-pagination-bullet {
    width: 28px;
    height: 3px;
    border-radius: 2px;
    background: #ddd;
    opacity: 1;
    margin: 0 4px !important;
    transition: background .2s linear, width .2s linear
}

.home-honor-certificates__pagination .swiper-pagination-bullet-active {
    width: 40px;
    background: var(--color)
}

.home-news .newswrap {
    position: relative;
    padding: 0 80px;
    display: flex;
    flex-wrap: wrap
}

.home-news .newswrap .item {
    width: 23%;
    transition: all .2s linear;
    position: relative;
    margin-right: 2%
}

.home-news .newswrap .item:nth-child(4n) {
    margin-right: 0
}

.home-news .newswrap .item .news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.home-news .newswrap .item .news-info {
    padding: 20px 0
}

.home-news .newswrap .item .news-info .title {
    font-size: 18px;
    color: var(--fontcolor);
    font-weight: 500
}

.home-news .newswrap .item .news-info .date {
    font-size: 16px;
    color: var(--color);
    padding: 10px 0
}

.home-news .newswrap .item .news-info .text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 24px
}

.home-news .newswrap .item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--color);
    transition: all .2s linear
}

.home-news .newswrap .item:hover img {
    transform: scale(1.05)
}

.home-news .newswrap .item:hover::after {
    height: 6px
}

.home-factory-showcase {
    padding: 48px 20px 56px;
    background: #fff
}

.home-factory-showcase__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
    gap: 32px 48px;
    align-items: stretch;
    max-width: 1400px;
    margin: 0 auto
}

.home-factory-showcase__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    min-width: 0
}

.home-factory-showcase__eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 10px;
    font-size: 13px;
    font-weight: var(--fontbold5);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .1em
}

.home-factory-showcase__eyebrow:empty {
    display: none
}

.home-factory-showcase__eyebrow::after {
    content: "";
    width: 36px;
    height: 1px;
    background: #d1d5db;
    flex-shrink: 0
}

.home-factory-showcase__title {
    margin: 0 0 12px;
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: var(--fontbold6);
    color: var(--fontcolor);
    line-height: 1.25;
    letter-spacing: .01em
}

.home-factory-showcase__title:empty {
    display: none
}

.home-factory-showcase__title:not(:empty) + .home-factory-showcase__title-fallback {
    display: none
}

.home-factory-showcase__accents {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 24px
}

.home-factory-showcase__accents span {
    display: block;
    height: 4px;
    border-radius: 2px;
    background: var(--color)
}

.home-factory-showcase__accents span:first-child {
    width: 40px
}

.home-factory-showcase__accents span:last-child {
    width: 6px
}

.home-factory-showcase__text {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-muted)
}

.home-factory-showcase__text p {
    margin: 0 0 14px
}

.home-factory-showcase__text p:last-child {
    margin-bottom: 0
}

.home-factory-showcase__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-width: 180px;
    height: 48px;
    margin-top: 28px;
    padding: 0 36px;
    border-radius: 999px;
    background: var(--color);
    border: 2px solid var(--color);
    color: #fff;
    font-size: 14px;
    font-weight: var(--fontbold5);
    text-transform: uppercase;
    letter-spacing: .06em;
    transition: all .15s linear
}

.home-factory-showcase__btn:hover {
    background: var(--color-hover);
    border-color: var(--color-hover);
    color: #fff
}

.home-factory-showcase__media {
    min-width: 0;
    display: flex;
    align-items: stretch
}

.home-factory-showcase__video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 8px;
    overflow: hidden;
    background: #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08)
}

.home-factory-showcase__poster {
    position: absolute;
    inset: 0
}

.home-factory-showcase__poster img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.home-factory-showcase__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 68px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .88);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s linear, background .2s linear;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12)
}

.home-factory-showcase__play i {
    color: var(--color);
    font-size: 24px;
    margin-left: 4px
}

.home-factory-showcase__play:hover {
    transform: translate(-50%, -50%) scale(1.06);
    background: #fff
}

.home-factory-showcase__player {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000
}

.home-factory-showcase__video.is-playing .home-factory-showcase__poster {
    display: none
}

.home-factory-showcase__video.is-playing .home-factory-showcase__player {
    display: block
}

.home-static .list {
    padding: 0 50px
}

.home-static {
    position: relative;
    z-index: 1
}

.home-static::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .1);
    z-index: -1
}

@media (max-width: 1366px) {
    .home-news .newswrap {
        padding: 0
    }
}

@media (max-width: 1024px) {
    .home-banner #banner-swiper {
        min-height: 100px
    }

    .home-service .service-wrap .service-item {
        width: 50%
    }

    .home-factory-showcase__inner {
        grid-template-columns: 1fr
    }

    .home-factory-showcase__info {
        justify-content: flex-start
    }

    .home-factory-showcase__btn {
        margin-top: 24px
    }

    .home-static .list {
        padding: 0
    }

    .home-news .newswrap .item {
        width: 48%;
        margin-bottom: 20px;
        margin-right: 4%
    }

    .home-news .newswrap .item:nth-child(2n) {
        margin-right: 0
    }
}

@media (max-width: 768px) {
    .home-banner .swiper-button-next {
        right: 10px;
        width: 30px;
        height: 30px
    }

    .home-banner .swiper-button-prev {
        left: 10px;
        width: 30px;
        height: 30px
    }

    .home-factory-showcase {
        padding: 40px 15px 30px
    }

    .home-factory-showcase__btn {
        width: 100%;
        max-width: 280px
    }

    .head-info {
        padding: 0 15px
    }

    .head-info #nav ul li a {
        font-size: 3.46667vw
    }

    .home-product-showcase__slider, .home-product .product-list {
        padding: 0 10px
    }

    .home-product .product-list .swiper {
        padding-bottom: 40px
    }

    .home-honor-certificates {
        padding: 40px 15px 30px
    }

    .home-honor-certificates__header {
        margin-bottom: 28px
    }

    #honor-cert-swiper .swiper-slide {
        width: min(290px, 72vw)
    }

    .home-honor-certificates__media {
        width: 100%
    }

    .home-product-showcase__nav {
        width: 40px;
        height: 40px
    }

    .home-button-next, .home-button-prev {
        width: 35px;
        height: 35px;
        background: #FFF;
        display: none
    }

    .home-service .service-wrap .service-item {
        width: 100%;
        padding: 20px 15px 10px
    }

    .home-service .service-wrap .service-item .text {
        padding-top: 15px;
        font-size: 14px
    }

    .home-service .service-wrap .service-item .icon {
        margin-top: 10px
    }

    .home-service .service-wrap .service-item .bg {
        bottom: 10px
    }

    .home-service .service-wrap .service-item .bg i {
        font-size: 40px
    }

    .home-product-showcase {
        padding: 40px 15px 30px
    }

    .home-product-showcase__header {
        margin-bottom: 28px
    }

    .home-product-showcase__slider {
        padding: 0 44px
    }

    .home-news .newswrap .item .news-info .title {
        font-size: 16px;
        line-height: 1.2
    }

    .home-news .newswrap .item .news-info .text {
        line-height: 20px;
        display: none
    }

    .swiper-pagination {
        display: block;
        bottom: 0 !important
    }

    .swiper-pagination .swiper-pagination-bullet-active {
        background: var(--color)
    }

    .home-latest-cases {
        padding: 32px 0 28px
    }

    .home-latest-cases__header {
        margin-bottom: 20px
    }

    .home-latest-cases__stage {
        padding: 0 12px
    }

    #latest-cases-swiper .swiper-slide {
        width: min(920px, 88vw)
    }

    .home-latest-cases__media {
        max-height: 240px
    }

    .home-latest-cases__nav {
        width: 32px;
        height: 32px;
        margin-top: -16px
    }

    .home-latest-cases__nav--prev {
        left: 4px
    }

    .home-latest-cases__nav--next {
        right: 4px
    }

    .home-latest-cases__go {
        width: 44px;
        height: 44px;
        margin: -22px 0 0 -22px
    }

}

/* Homepage banner — 1920×960, cover fill, caption center-left */
.home-banner {
    margin: 0;
    padding: 0;
    overflow: hidden
}

.home-banner #banner-swiper {
    width: 100%;
    height: auto;
    max-height: 960px;
    aspect-ratio: 1920 / 960;
    min-height: 280px
}

.home-banner .swiper-slide {
    height: auto
}

.home-banner .banner-slide {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 960;
    max-height: 960px;
    min-height: 280px;
    background: var(--footer-bg)
}

.home-banner .banner-slide__link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    color: #FFF;
    text-decoration: none
}

.home-banner .banner-slide__media {
    position: absolute;
    inset: 0;
    z-index: 0
}

.home-banner .banner-slide__media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(0, 0, 0, .52) 0%, rgba(0, 0, 0, .18) 42%, transparent 68%);
    pointer-events: none
}

.home-banner .banner-slide__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block
}

.home-banner .banner-slide__caption {
    position: absolute;
    left: 0;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    z-index: 3;
    max-width: min(980px, 68%);
    padding: 0 clamp(24px, 5vw, 100px) 0 clamp(80px, 9vw, 150px);
    box-sizing: border-box
}

.home-banner .banner-slide__sub:empty, .home-banner .banner-slide__title:empty {
    display: none
}

.home-banner .banner-slide__sub {
    font-size: clamp(14px, 1.3vw, 20px);
    font-weight: 400;
    line-height: 1.5;
    margin: 0 0 10px;
    color: rgba(255, 255, 255, .88);
    letter-spacing: .02em
}

.home-banner .banner-slide__title {
    font-size: clamp(32px, 4.8vw, 68px);
    font-weight: var(--fontbold7);
    line-height: 1.1;
    margin: 0 0 clamp(18px, 2.4vw, 30px);
    color: #FFF;
    text-transform: none;
    letter-spacing: -.01em
}

.home-banner .banner-slide__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 34px;
    background: var(--color);
    border: 1px solid var(--color);
    border-radius: 999px;
    color: #FFF;
    font-size: clamp(13px, 1vw, 15px);
    font-weight: var(--fontbold5);
    letter-spacing: .04em;
    text-transform: capitalize;
    transition: background .2s linear, border-color .2s linear
}

.home-banner .banner-slide__link:hover .banner-slide__cta {
    background: var(--color-hover);
    border-color: var(--color-hover)
}

@keyframes bannerPopIn {
    from {
        opacity: 0;
        transform: translate3d(0, 24px, 0)
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0)
    }
}

.home-banner .banner-anim {
    opacity: 0;
    transform: translate3d(0, 24px, 0)
}

.home-banner .banner-anim.is-play {
    animation: bannerPopIn .85s cubic-bezier(.22, 1, .36, 1) forwards
}

.home-banner .banner-anim.is-play:nth-child(1) {
    animation-delay: .08s
}

.home-banner .banner-anim.is-play:nth-child(2) {
    animation-delay: .24s
}

.home-banner .banner-anim.is-play:nth-child(3) {
    animation-delay: .4s
}

.home-banner .swiper-pagination {
    display: block !important;
    bottom: 22px !important;
    z-index: 5
}

.home-banner #banner-swiper > .swiper-button-next, .home-banner #banner-swiper > .swiper-button-prev {
    z-index: 5
}

@media (max-width: 768px) {
    .home-banner #banner-swiper {
        aspect-ratio: 1920 / 960;
        max-height: none;
        min-height: 200px
    }

    .home-banner .banner-slide {
        aspect-ratio: 1920 / 960;
        max-height: none;
        min-height: 200px
    }

    .home-banner .banner-slide__caption {
        top: 50%;
        transform: translateY(-50%);
        max-width: 92%;
        padding: 0 20px 0 56px
    }

    .home-banner .banner-slide__sub {
        font-size: 13px;
        margin-bottom: 8px
    }

    .home-banner .banner-slide__title {
        font-size: clamp(22px, 6.2vw, 34px);
        line-height: 1.2;
        margin-bottom: 14px
    }

    .home-banner .banner-slide__cta {
        padding: 9px 22px;
        font-size: 12px
    }

    .home-banner #banner-swiper > .swiper-button-next {
        right: 10px;
        width: 34px;
        height: 34px
    }

    .home-banner #banner-swiper > .swiper-button-prev {
        left: 10px;
        width: 34px;
        height: 34px
    }
}

/* Homepage module 2 — three icon layers below banner (Perfect Overlay Style) */
.home-service {
    padding: 60px 20px;
    background: #fff;
}

.home-service .service-wrap--v2 {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* 核心：将列表父级定义为相对定位容器，使内部绝对定位可以基于它重叠 */
.home-service .service-wrap--v2 .service-item--v2 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    padding: 10px;
}

.home-service .service-wrap--v2 .service-item--v2:hover {
    background: transparent;
}

/* 核心：将文字图层绝对定位，使其完全浮动并在图片中心重叠 */
.home-service .service-item--v2 .title {
    position: absolute;
    z-index: 5; /* 确保文字在最上层 */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* 屏幕完美正中心对齐 */
    width: 100%;

    font-size: 18px; /* 👈 调小后的英文字体大小 */
    line-height: 1.3;
    color: #333333; /* 👈 使用深清晰色，避免被底层图片盖住读不准 */
    font-weight: 500;
    text-align: center;
    margin: 0;
    white-space: nowrap; /* 保持单行，不因挤压随意换行 */
}

.home-service .service-item--v2 .title::after {
    display: none;
}

/* 图标作为底层背景衬托 */
.home-service .service-item--v2 .service-icon {
    position: relative;
    z-index: 1; /* 确保图标在下层 */
    width: 220px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.55; /* 👈 降低底图透明度，完美还原淡化背景效果 */
}

.home-service .service-item--v2 .text,
.home-service .service-item--v2 .icon,
.home-service .service-item--v2 .bg {
    display: none !important;
}

.home-service .service-item--v2 .service-icon img {
    width: auto;
    height: auto;
    max-width: 120px;
    max-height: 120px;
    object-fit: contain;
}

/* 响应式断点：平板设备 */
@media (max-width: 1024px) {
    .home-service .service-wrap--v2 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }

    .home-service .service-item--v2 .title {
        font-size: 15px; /* 平板端字体稍小 */
    }
}

/* 响应式断点：移动端手机 */
@media (max-width: 768px) {
    .home-service {
        padding: 20px 15px 10px;
    }

    .home-service .service-wrap--v2 {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .home-service .service-item--v2 {
        min-height: 100px;
        padding: 4px;
    }

    .home-service .service-item--v2 .title {
        font-size: 14px; /* 手机端字体 */
    }

    .home-service .service-item--v2 .service-icon {
        width: 140px;
        height: 78px;
    }

    .home-service .service-item--v2 .service-icon img {
        max-width: 80px;
        max-height: 80px;
    }
}

/* Homepage module 3 — 4 product categories in Z-layout grid */
.home-product--grid {
    padding: 70px 20px 60px;
    background: #fff;
}

.home-product--grid .home-product-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 60px;
    align-items: stretch;
}

/* 防止被其他样式覆盖，强制模块结构生效 */
.home-product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
}

/* 卡片内 1:1 两列，便于同行图/文列对齐 */
.home-product--grid .home-product-item,
.home-product-item {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(24px, 3vw, 40px);
    align-items: stretch;
}

.home-product-item__coverlink {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.home-product-item__media {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    display: flex;
    align-items: flex-start;
}

.home-product-item__media a {
    display: block;
    width: 100%;
}

.home-product-item__media img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.home-product-item__info {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
}

/* 下排图在右、文在左 */
.home-product--grid .home-product-item:nth-child(3) .home-product-item__media,
.home-product--grid .home-product-item:nth-child(4) .home-product-item__media,
.home-product-item:nth-child(3) .home-product-item__media,
.home-product-item:nth-child(4) .home-product-item__media {
    grid-column: 2;
}

.home-product--grid .home-product-item:nth-child(3) .home-product-item__info,
.home-product--grid .home-product-item:nth-child(4) .home-product-item__info,
.home-product-item:nth-child(3) .home-product-item__info,
.home-product-item:nth-child(4) .home-product-item__info {
    grid-column: 1;
}

.home-product-item__head,
.home-product-item__foot {
    display: flex;
    flex-direction: column;
}

.home-product-item__foot {
    gap: 20px;
}

.home-product-item__title {
    font-size: 22px;
    font-weight: var(--fontbold6);
    color: var(--fontcolor);
    margin: 0 0 10px;
}

/* 副标题 subname */
.home-product-item__head .home-product-item__text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.home-product-item__head .home-product-item__text:empty {
    display: none;
}

/* 栏目描述1 def1 */
.home-product-item__text--extra {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--color);
    font-weight: var(--fontbold5);
}

.home-product-item__text--extra:empty {
    display: none;
}

.home-product-item__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 44px;
    padding: 0 26px;
    border-radius: 999px;
    background: var(--color);
    border: 2px solid var(--color);
    color: #fff;
    font-size: 14px;
    font-weight: var(--fontbold5);
    text-transform: uppercase;
    letter-spacing: .06em;
    transition: all .15s linear;
}

.home-product-item__btn:hover {
    background: var(--color-hover);
    border-color: var(--color-hover);
}

@media (max-width: 900px) {
    .home-product--grid .home-product-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .home-product-grid {
        grid-template-columns: 1fr;
    }

    .home-product--grid .home-product-item {
        gap: 24px;
    }

    .home-product-item {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .home-product--grid {
        padding: 40px 15px 30px;
    }

    .home-product--grid .home-product-item,
    .home-product-item {
        grid-template-columns: 1fr;
    }

    .home-product--grid .home-product-item .home-product-item__media,
    .home-product--grid .home-product-item .home-product-item__info,
    .home-product--grid .home-product-item:nth-child(3) .home-product-item__media,
    .home-product--grid .home-product-item:nth-child(4) .home-product-item__media,
    .home-product--grid .home-product-item:nth-child(3) .home-product-item__info,
    .home-product--grid .home-product-item:nth-child(4) .home-product-item__info,
    .home-product-item .home-product-item__media,
    .home-product-item .home-product-item__info,
    .home-product-item:nth-child(3) .home-product-item__media,
    .home-product-item:nth-child(4) .home-product-item__media,
    .home-product-item:nth-child(3) .home-product-item__info,
    .home-product-item:nth-child(4) .home-product-item__info {
        grid-column: 1;
        grid-row: auto;
    }

    .home-product-item__info {
        justify-content: flex-start;
        gap: 24px;
        min-height: 0;
    }

    .home-product-item__foot {
        gap: 16px;
    }
}