.site-header {
    position: relative;
    z-index: 30;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.site-header__inner {
    display: flex;
    min-height: 78px;
    align-items: center;
    gap: 34px;
}

.site-logo {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
}

.site-logo img {
    width: 118px;
    height: auto;
}

.desktop-navigation {
    margin-left: auto;
}

.desktop-menu {
    display: flex;
    align-items: center;
    gap: clamp(24px, 2.4vw, 46px);
}

.desktop-menu a {
    position: relative;
    display: block;
    padding: 27px 0 25px;
    color: #4c4c4c;
    font-size: 16px;
    transition: color 180ms ease;
}

.desktop-menu a::after {
    position: absolute;
    right: 0;
    bottom: 17px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--cxl-blue);
    opacity: 0;
    transform: scaleX(0.4);
    transition: opacity 180ms ease, transform 180ms ease;
}

.desktop-menu a:hover,
.desktop-menu .current-menu-item > a {
    color: var(--cxl-blue);
}

.desktop-menu a:hover::after,
.desktop-menu .current-menu-item > a::after {
    opacity: 1;
    transform: scaleX(1);
}

.header-phone {
    display: none;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    font-style: italic;
    white-space: nowrap;
}

.header-phone__icon {
    color: #e52020;
    font-style: normal;
}

.mobile-menu-button {
    display: none;
    width: 38px;
    height: 38px;
    padding: 8px;
    border: 1px solid var(--cxl-blue);
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
}

.mobile-menu-button span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 4px 0;
    background: var(--cxl-blue);
    transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-menu-overlay {
    position: fixed;
    z-index: 89;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 200ms ease, visibility 200ms ease;
}

.mobile-navigation {
    position: fixed;
    z-index: 90;
    top: 0;
    right: 0;
    width: min(84vw, 340px);
    height: 100dvh;
    padding: 0 24px 28px;
    background: #fff;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.18);
    transform: translateX(105%);
    transition: transform 220ms ease;
}

.mobile-navigation__head {
    display: flex;
    min-height: 66px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--cxl-line);
}

.mobile-navigation__head button {
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    color: #555;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
}

.mobile-menu a {
    display: block;
    padding: 14px 2px;
    border-bottom: 1px solid var(--cxl-line);
    font-size: 16px;
}

.mobile-menu .current-menu-item a {
    color: var(--cxl-blue);
}

.mobile-navigation__phone {
    display: block;
    margin-top: 22px;
    padding: 12px 14px;
    border-radius: 6px;
    color: #fff;
    background: var(--cxl-blue);
    text-align: center;
}

body.menu-open .mobile-menu-overlay {
    opacity: 1;
    visibility: visible;
}

body.menu-open .mobile-navigation {
    transform: translateX(0);
}

.hero-slider {
    position: relative;
    overflow: hidden;
    background: #f8fbff;
}

.hero-slider__track {
    position: relative;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 550ms ease;
}

.hero-slide.is-active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
}

.hero-slide img {
    width: 100%;
}

.hero-slider__arrow {
    position: absolute;
    z-index: 3;
    top: 50%;
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0 0 4px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: rgba(0, 0, 0, 0.42);
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
}

.hero-slider__arrow--prev {
    left: 18px;
}

.hero-slider__arrow--next {
    right: 18px;
}

.hero-slider__dots {
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: 20px;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 9px;
}

.hero-slider__dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #aaa;
    cursor: pointer;
}

.hero-slider__dots button.is-active {
    width: 22px;
    border-radius: 5px;
    background: var(--cxl-blue);
}

.cxl-section {
    padding: 82px 0;
}

.section-heading {
    margin-bottom: 30px;
    text-align: center;
}

.section-heading h2 {
    margin: 0;
    color: #191919;
    font-size: clamp(25px, 2.2vw, 36px);
    line-height: 1.3;
}

.section-heading h2 span {
    margin-left: 5px;
    font-weight: 400;
}

.section-heading p {
    margin: 8px 0 0;
    color: var(--cxl-muted);
    font-size: 17px;
}

.section-heading--left {
    margin-bottom: 28px;
    text-align: left;
}

.section-heading--left p {
    margin-top: -2px;
    color: #dedede;
    font-size: clamp(30px, 3vw, 48px);
    font-weight: 700;
    line-height: 1;
}

.why-us__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: end;
    gap: 64px;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    overflow: hidden;
    border-radius: 0 0 0 48px;
}

.value-card {
    min-height: 142px;
    padding: 24px 26px;
    color: #fff;
    background: var(--cxl-blue);
}

.value-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
}

.value-card__head img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.value-card p {
    margin: 12px 0 0;
    font-size: 17px;
    line-height: 1.8;
}

.factory-card {
    position: relative;
    }

.factory-card::before {
    position: absolute;
    z-index: -1;
    right: -28vw;
    bottom: 0;
    left: 13%;
    height: 72%;
    content: "";
    background: var(--cxl-blue);
}

.factory-card img {
    width: 100%;
    border-radius: 80px 0 80px 0;
}

.products-section {
    background:
        linear-gradient(rgba(248, 251, 253, 0.89), rgba(248, 251, 253, 0.89)),
        radial-gradient(circle at 15% 20%, rgba(7, 133, 220, 0.15), transparent 34%),
        radial-gradient(circle at 85% 70%, rgba(7, 133, 220, 0.1), transparent 31%);
}

.product-categories {
    display: flex;
    justify-content: center;
    margin: -8px 0 34px;
    gap: 44px;
}

.product-categories a {
    position: relative;
    color: #555;
    font-size: 15px;
}

.product-categories a.is-active,
.product-categories a:hover {
    color: var(--cxl-blue);
}

.product-categories a.is-active::after {
    position: absolute;
    right: 10%;
    bottom: -8px;
    left: 10%;
    height: 2px;
    content: "";
    background: var(--cxl-blue);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.product-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid #ededed;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.product-card img {
    width: 100%;
    aspect-ratio: 295 / 280;
    object-fit: cover;
}

.product-card h3 {
    margin: 0;
    padding: 16px 12px;
    color: #444;
    font-size: 15px;
    font-weight: 400;
    text-align: center;
}

.section-action {
    margin-top: 34px;
    text-align: center;
}

.cxl-button {
    display: inline-flex;
    min-width: 170px;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 8px 30px;
    border-radius: 999px;
    color: #fff;
    background: var(--cxl-blue);
    font-size: 14px;
    transition: background 180ms ease, transform 180ms ease;
}

.cxl-button:hover {
    background: var(--cxl-blue-dark);
    transform: translateY(-2px);
}

.applications-intro {
    max-width: 900px;
    margin: 0 auto 32px;
    font-size: clamp(22px, 2vw, 31px);
    line-height: 1.65;
    text-align: center;
}

.application-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
}

.application-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.application-card img {
    width: 100%;
    aspect-ratio: 421 / 332;
    object-fit: cover;
}

.application-card h3 {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0;
    padding: 11px 8px;
    color: #fff;
    background: var(--cxl-blue);
    font-size: 18px;
    text-align: center;
}

.section-action--mobile {
    display: none;
}

.news-section {
    padding-top: 64px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.news-card {
    min-width: 0;
}

.news-card--mobile-only {
    display: none;
}

.news-card img {
    width: 100%;
    aspect-ratio: 420 / 220;
    object-fit: cover;
}

.news-card__body {
    padding-top: 16px;
}

.news-card h3 {
    margin: 0 0 8px;
    overflow: hidden;
    font-size: 16px;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-card p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: #8a8a8a;
    font-size: 13px;
    line-height: 1.8;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.site-footer {
    color: #a9a9a9;
    background: var(--cxl-dark);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(3, 0.8fr) 2fr;
    gap: 40px;
    padding-top: 48px;
    padding-bottom: 42px;
}

.footer-brand {
    align-self: center;
    color: #fff;
    font-size: 14px;
}

.footer-column,
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column h2,
.footer-contact h2 {
    margin: 0 0 13px;
    color: #fff;
    font-size: 14px;
}

.footer-column a {
    margin: 3px 0;
    font-size: 12px;
}

.footer-contact p {
    margin: 3px 0;
    font-size: 12px;
    line-height: 1.7;
}

.site-footer__bottom {
    padding: 14px 0;
    border-top: 1px solid #292929;
    font-size: 12px;
    text-align: center;
}

.mobile-dock {
    display: none;
}

@media (max-width: 980px) {
    .desktop-menu {
        gap: 18px;
    }

    .why-us__grid {
        gap: 34px;
    }

    .value-card {
        padding: 20px;
    }

    .site-footer__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-brand {
        display: none;
    }
}

@media (max-width: 767px) {
    body {
        padding-bottom: 58px;
    }

    body.admin-bar .mobile-navigation {
        top: 46px;
        height: calc(100dvh - 46px);
    }

    .cxl-container {
        width: min(calc(100% - 24px), var(--cxl-container));
    }

    .site-header__inner {
        min-height: 54px;
        gap: 10px;
    }

    .site-logo img {
        width: 102px;
    }

    .desktop-navigation {
        display: none;
    }

    .header-phone {
        display: inline-flex;
        margin-left: auto;
        font-size: 16px;
    }

    .mobile-menu-button {
        display: block;
        flex: 0 0 auto;
    }

    .hero-slider__arrow {
        display: none;
    }

    .hero-slider__dots {
        bottom: 8px;
        gap: 6px;
    }

    .hero-slider__dots button {
        width: 6px;
        height: 6px;
    }

    .hero-slider__dots button.is-active {
        width: 6px;
        border-radius: 50%;
    }

    .cxl-section {
        padding: 34px 0;
    }

    .section-heading {
        margin-bottom: 18px;
    }

    .section-heading h2 {
        font-size: 22px;
    }

    .section-heading p {
        margin-top: 5px;
        font-size: 14px;
        line-height: 1.5;
    }

    .section-heading--left {
        text-align: center;
    }

    .section-heading--left p {
        display: none;
    }

    .why-us {
        padding-top: 24px;
    }

    .why-us__grid {
        display: flex;
        flex-direction: column;
        gap: 38px;
    }

    .why-us__content,
    .factory-card {
        width: 100%;
    }

    .value-grid {
        gap: 4px;
        border-radius: 0;
    }

    .value-card {
        min-height: 126px;
        padding: 15px 9px;
        text-align: center;
    }

    .value-card__head {
        flex-direction: column-reverse;
        justify-content: center;
        gap: 5px;
        font-size: 0;
    }

    .value-card__head img {
        width: 33px;
        height: 33px;
    }

    .value-card p {
        margin-top: 6px;
        font-size: 15px;
        line-height: 1.55;
    }

    .factory-card {
        padding: 0;
    }

    .factory-card::before {
        display: none;
    }

    .factory-card img {
        border-radius: 62px 0 62px 0;
    }

    .products-section {
        padding-top: 25px;
    }

    .product-categories {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        margin: 0 0 14px;
        gap: 5px;
    }

    .product-categories a {
        padding: 4px 8px;
        background: #fff;
        text-align: center;
    }

    .product-categories a:last-child {
        grid-column: 1 / -1;
    }

    .product-categories a.is-active::after {
        display: none;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .product-card {
        border-radius: 3px;
    }

    .product-card h3 {
        padding: 8px 5px;
        font-size: 13px;
    }

    .product-grid .product-card:nth-child(n + 7) {
        display: none;
    }

    .products-section .section-action {
        display: none;
    }

    .applications-intro {
        margin-bottom: 18px;
        padding: 0 4px;
        font-size: 17px;
        line-height: 1.55;
    }

    .application-grid {
        gap: 8px;
    }

    .application-card {
        border-radius: 7px;
    }

    .application-card h3 {
        padding: 3px 2px;
        font-size: 12px;
        line-height: 1.4;
    }

    .section-action--mobile {
        display: block;
        margin-top: 24px;
    }

    .cxl-button {
        min-width: 124px;
        min-height: 38px;
        padding: 6px 22px;
        font-size: 13px;
    }

    .news-section {
        padding-top: 30px;
    }

    .news-section .section-heading h2 {
        font-size: 19px;
    }

    .news-section .section-heading h2 span {
        display: none;
    }

    .news-grid {
        display: block;
    }

    .news-card,
    .news-card--mobile-only {
        display: block;
        padding: 11px 0;
        border-bottom: 1px solid var(--cxl-line);
    }

    .news-card a {
        display: grid;
        grid-template-columns: 66px minmax(0, 1fr);
        align-items: start;
        gap: 9px;
    }

    .news-card img {
        width: 66px;
        height: 48px;
        border-radius: 2px;
        object-fit: cover;
    }

    .news-card__body {
        min-width: 0;
        padding: 0;
    }

    .news-card h3 {
        margin-bottom: 2px;
        font-size: 13px;
    }

    .news-card p {
        font-size: 11px;
        line-height: 1.55;
        -webkit-line-clamp: 2;
    }

    .news-section .section-action {
        margin-top: 22px;
    }

    .site-footer {
        display: none;
    }

    .mobile-dock {
        position: fixed;
        z-index: 70;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        height: 58px;
        padding-bottom: env(safe-area-inset-bottom);
        border-top: 1px solid #ededed;
        background: rgba(255, 255, 255, 0.97);
        box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.06);
        backdrop-filter: blur(10px);
    }

    body.admin-bar .mobile-dock {
        bottom: 0;
    }

    .mobile-dock a {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        color: #555;
        font-size: 11px;
        line-height: 1.2;
    }

    .mobile-dock a.is-active {
        color: var(--cxl-blue);
    }

    .mobile-dock svg {
        width: 21px;
        height: 21px;
        margin-bottom: 2px;
        fill: currentColor;
    }
}

@media (max-width: 365px) {
    .site-logo img {
        width: 88px;
    }

    .header-phone {
        font-size: 14px;
    }

    .mobile-menu-button {
        width: 35px;
        height: 35px;
    }

    .value-card p {
        font-size: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* ===== CXL HOME V1.1 CALIBRATION START ===== */
@media (min-width: 768px) {
    :root {
        --cxl-container: 1320px;
    }

    .site-header__inner {
        min-height: 82px;
    }

    .site-logo img {
        width: 148px;
    }

    .hero-slide__copy {
        position: absolute;
        z-index: 2;
        top: 24%;
        left: 57.5%;
        width: min(35vw, 550px);
        color: #131313;
    }

    .hero-slide__kicker {
        margin: 0;
        font-size: clamp(31px, 2.55vw, 50px);
        font-weight: 800;
        line-height: 1.15;
        letter-spacing: -0.04em;
    }

    .hero-slide__kicker strong {
        color: var(--cxl-blue);
    }

    .hero-slide__kicker--small {
        color: var(--cxl-blue);
        font-size: clamp(22px, 1.7vw, 34px);
        letter-spacing: 0;
    }

    .hero-slide__copy h1 {
        margin: 3px 0 15px;
        font-size: clamp(35px, 3vw, 58px);
        font-weight: 800;
        line-height: 1.15;
        letter-spacing: -0.04em;
    }

    .hero-slide__copy h1 span {
        color: var(--cxl-blue);
    }

    .hero-slide__description {
        max-width: 520px;
        margin: 0;
        color: #686868;
        font-size: clamp(13px, 0.9vw, 17px);
        line-height: 1.9;
    }

    .hero-slide__actions {
        display: flex;
        margin-top: 22px;
        gap: 14px;
    }

    .hero-button {
        display: inline-flex;
        min-width: 132px;
        min-height: 42px;
        align-items: center;
        justify-content: center;
        padding: 8px 25px;
        border-radius: 999px;
        color: #fff;
        font-size: 14px;
        transition: transform 180ms ease, filter 180ms ease;
    }

    .hero-button:hover {
        filter: brightness(0.94);
        transform: translateY(-2px);
    }

    .hero-button--primary {
        background: var(--cxl-blue);
    }

    .hero-button--accent {
        background: var(--cxl-orange);
    }

    .why-us {
        padding-top: 94px;
        padding-bottom: 94px;
    }

    .why-us__grid {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
        gap: 76px;
    }

    .value-card {
        min-height: 158px;
        padding: 27px 29px;
    }

    .value-card p {
        font-size: 18px;
    }

    .factory-card {
        padding-bottom: 54px;
        }

    .products-section {
        padding-top: 88px;
        padding-bottom: 88px;
    }

    .product-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 12px;
    }

    .product-grid .product-card:nth-child(n + 6) {
        display: none;
    }

    .applications-section {
        padding-top: 86px;
        padding-bottom: 82px;
    }

    .news-section {
        padding-top: 72px;
        padding-bottom: 88px;
    }

    .news-title-mobile,
    .button-text-mobile {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 1100px) {
    .hero-slide__copy {
        top: 20%;
        left: 55%;
        width: 40vw;
    }

    .hero-slide__description {
        line-height: 1.6;
    }

    .why-us__grid {
        gap: 38px;
    }

    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .product-grid .product-card:nth-child(5) {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-slide__copy {
        display: none;
    }

    .product-grid .product-card:nth-child(n + 6) {
        display: block;
    }

    .product-grid .product-card:nth-child(n + 7) {
        display: none;
    }

    .news-title-desktop,
    .button-text-desktop {
        display: none;
    }

    .news-title-mobile,
    .button-text-mobile {
        display: inline;
    }
}
/* ===== CXL HOME V1.1 CALIBRATION END ===== */

/* ===== CXL HOME V1.2 REFINEMENT START ===== */
@media (min-width: 768px) {
    /*
     * 首页导航覆盖在 Banner 上。
     * 内页继续使用普通白色页头。
     */
    .site-header--home {
        position: absolute;
        z-index: 40;
        top: 0;
        right: 0;
        left: 0;
        border-bottom: 0;
        background: transparent;
    }

    body.admin-bar .site-header--home {
        top: 32px;
    }

    .site-header--home .site-header__inner {
        min-height: 76px;
    }

    .site-header--home.is-scrolled {
        position: fixed;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 7px 22px rgba(0, 0, 0, 0.08);
        backdrop-filter: blur(12px);
    }

    .site-header--inner {
        position: relative;
        background: #fff;
    }

    /*
     * 产品恢复为桌面端一行四列。
     * 保留更大的图片面积和更舒展的卡片比例。
     */
.product-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 20px;
    }

    .product-grid .product-card:nth-child(n + 5) {
        display: none;
    }

    .product-card h3 {
        padding-top: 15px;
        padding-bottom: 15px;
        font-size: 16px;
    }

    /*
     * 应用场景区采用清爽的现代布局。
     * 控制整体宽度，避免图片铺得过满。
     */
    .applications-section {
        position: relative;
        padding-top: 92px;
        padding-bottom: 94px;
        overflow: hidden;
        background:
            radial-gradient(circle at 10% 20%, rgba(7, 133, 220, 0.055), transparent 23%),
            radial-gradient(circle at 92% 85%, rgba(7, 133, 220, 0.045), transparent 22%),
            #fff;
    }

    .applications-section::before {
        position: absolute;
        top: 0;
        left: 50%;
        width: min(280px, 24vw);
        height: 3px;
        content: "";
        border-radius: 999px;
        background: linear-gradient(
            90deg,
            transparent,
            var(--cxl-blue),
            transparent
        );
        transform: translateX(-50%);
    }

    .applications-heading {
        max-width: 980px;
        margin: 0 auto 38px;
        text-align: center;
    }

    .applications-heading__eyebrow {
        display: block;
        margin-bottom: 8px;
        color: var(--cxl-blue);
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.18em;
    }

    .applications-heading h2 {
        margin: 0;
        color: #202020;
        font-size: clamp(27px, 2.1vw, 36px);
        line-height: 1.35;
    }

    .applications-heading p {
        max-width: 880px;
        margin: 11px auto 0;
        color: #555;
        font-size: 18px;
        line-height: 1.8;
    }

    .application-grid {
        margin-inline: auto;
        gap: 28px;
    }

    .application-card {
        border: 1px solid #e9eef2;
        border-radius: 18px;
        background: #fff;
        box-shadow: 0 12px 28px rgba(20, 61, 92, 0.08);
        transition:
            transform 220ms ease,
            box-shadow 220ms ease;
    }

    .application-card:hover {
        box-shadow: 0 18px 38px rgba(20, 61, 92, 0.14);
        transform: translateY(-6px);
    }

    .application-card picture {
        display: block;
        overflow: hidden;
    }

    .application-card img {
        transition: transform 420ms ease;
    }

    .application-card:hover img {
        transform: scale(1.035);
    }

    .application-card h3 {
        padding-top: 12px;
        padding-bottom: 12px;
        font-size: 17px;
        letter-spacing: 0.04em;
    }
}

@media (min-width: 768px) and (max-width: 1100px) {
    .products-section .cxl-container {
        width: min(calc(100% - 32px), 980px);
    }

    .product-grid {
        gap: 14px;
    }

    .applications-heading {
        max-width: 800px;
    }

    .application-grid {
        max-width: 900px;
        gap: 18px;
    }
}

@media (max-width: 767px) {
    /*
     * 手机端页头保持独立白色导航条。
     */
    .site-header--home {
        position: relative;
        top: auto;
        background: #fff;
    }

    /*
     * 桌面隐藏四个以后，手机重新显示前六个。
     */
    .product-grid .product-card:nth-child(n + 5) {
        display: block;
    }

    .product-grid .product-card:nth-child(n + 7) {
        display: none;
    }

    /*
     * 手机端应用场景更接近旧站的紧凑节奏，
     * 同时保留更清晰的标题层级。
     */
    .applications-section {
        padding-top: 34px;
        padding-bottom: 0;
        background: #fff;
    }

    .applications-heading {
        margin: 0 auto 18px;
        padding-inline: 4px;
        text-align: center;
    }

    .applications-heading__eyebrow {
        display: none;
    }

    .applications-heading h2 {
        margin: 0;
        font-size: 18px;
        line-height: 1.55;
    }

    .applications-heading p {
        margin: 6px auto 0;
        color: #333;
        font-size: 15px;
        line-height: 1.65;
    }

    .application-grid {
        gap: 7px;
    }

    .application-card {
        border: 0;
        border-radius: 8px;
        box-shadow: none;
    }

    .application-card h3 {
        padding-top: 4px;
        padding-bottom: 4px;
        font-size: 12px;
    }

    .applications-section .section-action--mobile {
        width: calc(100% + 24px);
        margin: 25px -12px 0;
        padding: 22px 12px 24px;
        background: #f3f4f5;
    }
}
/* ===== CXL HOME V1.2 REFINEMENT END ===== */

/* ===== CXL MOBILE NEWS TITLE FIX START ===== */
@media (max-width: 767px) {
    .news-section .section-heading h2 .news-title-desktop {
        display: none;
    }

    .news-section .section-heading h2 .news-title-mobile {
        display: inline;
    }
}
/* ===== CXL MOBILE NEWS TITLE FIX END ===== */

/* ===== CXL HOME V1.4 MOTION AND CAROUSEL START ===== */
@keyframes cxlHeroFlyIn {
    from {
        opacity: 0;
        transform: translate3d(54px, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes cxlHeroRiseIn {
    from {
        opacity: 0;
        transform: translate3d(0, 24px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.hero-slide__copy > * {
    opacity: 0;
}

.hero-slide.is-active .hero-slide__kicker,
.hero-slide.is-active .hero-client-title {
    animation: cxlHeroFlyIn 680ms cubic-bezier(0.22, 1, 0.36, 1) 100ms both;
}

.hero-slide.is-active .hero-slide__copy h1:not(.hero-client-title) {
    animation: cxlHeroFlyIn 680ms cubic-bezier(0.22, 1, 0.36, 1) 220ms both;
}

.hero-slide.is-active .hero-slide__description {
    animation: cxlHeroRiseIn 580ms cubic-bezier(0.22, 1, 0.36, 1) 390ms both;
}

.hero-slide.is-active .hero-slide__actions {
    animation: cxlHeroRiseIn 580ms cubic-bezier(0.22, 1, 0.36, 1) 520ms both;
}

.hero-client-title {
    max-width: 650px;
    margin: 0 0 22px;
    font-size: clamp(34px, 2.65vw, 54px);
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.035em;
}

.hero-client-title span {
    color: var(--cxl-blue);
}

.product-carousel {
    position: relative;
    padding-inline: 40px;
}

.product-carousel__viewport {
    overflow: hidden;
}

.product-carousel .product-grid {
    display: flex;
    gap: 20px;
    transform: translate3d(0, 0, 0);
    transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.product-carousel .product-card {
    display: block;
    flex: 0 0 calc((100% - 60px) / 4);
    min-width: 0;
}

.product-carousel .product-card:nth-child(n) {
    display: block;
}

.product-carousel__arrow {
    position: absolute;
    z-index: 3;
    top: calc(50% - 18px);
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    padding: 0 0 3px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: rgba(7, 133, 220, 0.92);
    box-shadow: 0 8px 20px rgba(7, 133, 220, 0.22);
    font-size: 29px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition:
        background 180ms ease,
        transform 180ms ease;
}

.product-carousel__arrow:hover {
    background: var(--cxl-blue-dark);
    transform: translateY(-50%) scale(1.07);
}

.product-carousel__arrow--prev {
    left: 0;
}

.product-carousel__arrow--next {
    right: 0;
}

.product-carousel__dots {
    display: flex;
    justify-content: center;
    margin-top: 22px;
    gap: 8px;
}

.product-carousel__dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #c6cdd3;
    cursor: pointer;
    transition:
        width 180ms ease,
        background 180ms ease;
}

.product-carousel__dots button.is-active {
    width: 24px;
    background: var(--cxl-blue);
}

.news-card__media {
    overflow: hidden;
}

.news-card__media img {
    transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.news-card:hover .news-card__media img {
    transform: scale(1.075);
}

@media (min-width: 768px) {
    .hero-slide__copy--two {
        top: 20%;
    }
}

@media (max-width: 767px) {
    .hero-slide__copy > * {
        opacity: 1;
    }

    .product-carousel {
        padding-inline: 0;
    }

    .product-carousel__viewport {
        overflow: visible;
    }

    .product-carousel .product-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        transform: none !important;
        transition: none;
    }

    .product-carousel .product-card {
        min-width: 0;
    }

    .product-carousel .product-card:nth-child(n + 7) {
        display: none;
    }

    .product-carousel__arrow,
    .product-carousel__dots {
        display: none;
    }

    .news-card__media {
        width: 66px;
        height: 48px;
        border-radius: 2px;
    }

    .news-card__media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .news-card:hover .news-card__media img {
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide__copy > * {
        opacity: 1 !important;
        animation: none !important;
    }

    .product-carousel .product-grid,
    .news-card__media img {
        transition: none !important;
    }
}
/* ===== CXL HOME V1.4 MOTION AND CAROUSEL END ===== */

/* ===== CXL HOME V1.4B HERO AND CAROUSEL TUNE START ===== */
@media (min-width: 768px) {
    .hero-slide__copy,
    .hero-slide__copy--two {
        top: 50%;
        width: min(39vw, 700px);
        transform: translateY(-50%);
    }

    .hero-client-title {
        max-width: 700px;
        margin-bottom: 18px;
        font-size: clamp(30px, 2.25vw, 46px);
        line-height: 1.25;
        letter-spacing: -0.025em;
    }

    .hero-slide__copy--two .hero-slide__description {
        max-width: 650px;
    }

    .product-carousel__dots {
        display: none;
    }

    .product-carousel__arrow {
        opacity: 0.82;
    }

    .product-carousel:hover .product-carousel__arrow,
    .product-carousel:focus-within .product-carousel__arrow {
        opacity: 1;
    }
}

@media (min-width: 768px) and (max-width: 1100px) {
    .hero-slide__copy,
    .hero-slide__copy--two {
        left: 55%;
        width: 42vw;
    }

    .hero-client-title {
        font-size: clamp(27px, 2.65vw, 38px);
    }
}
/* ===== CXL HOME V1.4B HERO AND CAROUSEL TUNE END ===== */

/* ===== CXL HOME V1.4D SECOND HERO TITLE START ===== */
@media (min-width: 768px) {
    /*
     * 第二张 Banner 信息量较大，单独降低标题声量。
     * 第一张 Banner 标题保持原样。
     */
    .hero-slide__copy--two .hero-client-title {
        max-width: 720px;
        font-size: clamp(27px, 1.85vw, 38px);
        line-height: 1.3;
        letter-spacing: -0.018em;
    }
}

@media (min-width: 768px) and (max-width: 1100px) {
    .hero-slide__copy--two .hero-client-title {
        font-size: clamp(25px, 2.35vw, 33px);
    }
}
/* ===== CXL HOME V1.4D SECOND HERO TITLE END ===== */

/* ===== CXL INNER PAGES V1 START ===== */
.inner-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(125deg, rgba(0, 105, 187, 0.96), rgba(7, 133, 220, 0.84)),
        radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.2), transparent 26%);
}

.inner-hero::after {
    position: absolute;
    top: -80px;
    right: -70px;
    width: 300px;
    height: 300px;
    content: "";
    border: 44px solid rgba(255, 255, 255, 0.09);
    border-radius: 50%;
}

.inner-hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 230px;
    justify-content: center;
    flex-direction: column;
    padding-block: 48px;
}

.inner-hero__eyebrow {
    margin: 0 0 5px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.24em;
    opacity: 0.78;
}

.inner-hero h1 {
    max-width: 920px;
    margin: 0;
    font-size: clamp(30px, 3vw, 46px);
    line-height: 1.3;
}

.inner-breadcrumb {
    display: flex;
    margin-top: 18px;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    opacity: 0.88;
}

.inner-section {
    padding: 82px 0;
}

.prose-content {
    color: #555;
    font-size: 16px;
    line-height: 1.9;
}

.prose-content > :first-child {
    margin-top: 0;
}

.prose-content h2,
.prose-content h3 {
    color: #222;
    line-height: 1.45;
}

.inner-kicker {
    margin: 0 0 6px;
    color: var(--cxl-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.about-layout,
.product-detail,
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 70px;
}

.about-layout__media img,
.product-detail__media img {
    width: 100%;
    border-radius: 46px 0 46px 0;
    box-shadow: 0 22px 55px rgba(20, 61, 92, 0.16);
}

.about-layout__content h2,
.contact-panel h2,
.product-detail__content h2 {
    margin: 0 0 18px;
    color: #202020;
    font-size: clamp(26px, 2.3vw, 38px);
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 28px;
    gap: 14px;
}

.about-highlights > div {
    padding: 18px;
    border: 1px solid #e7edf1;
    border-radius: 10px;
    background: #f9fbfc;
}

.about-highlights strong,
.about-highlights span {
    display: block;
}

.about-highlights strong {
    margin-bottom: 5px;
    color: var(--cxl-blue);
}

.about-highlights span {
    font-size: 13px;
    line-height: 1.65;
}

.equipment-intro {
    max-width: 860px;
    margin: 0 auto 36px;
    text-align: center;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.equipment-card {
    min-height: 230px;
    padding: 30px 25px;
    overflow: hidden;
    border: 1px solid #e6edf2;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(20, 61, 92, 0.07);
}

.equipment-card__number {
    display: block;
    margin-bottom: 34px;
    color: rgba(7, 133, 220, 0.22);
    font-size: 54px;
    font-weight: 800;
    line-height: 1;
}

.equipment-card h2 {
    margin: 0 0 10px;
    font-size: 20px;
}

.equipment-card p {
    margin: 0;
    color: #777;
    font-size: 14px;
    line-height: 1.75;
}

.contact-layout {
    align-items: stretch;
}

.contact-panel,
.contact-cta {
    padding: 42px;
    border-radius: 18px;
}

.contact-panel {
    border: 1px solid #e7edf1;
    background: #fff;
}

.contact-list {
    margin: 30px 0 0;
}

.contact-list > div {
    display: grid;
    grid-template-columns: 90px 1fr;
    padding: 15px 0;
    border-top: 1px solid #edf0f2;
    gap: 20px;
}

.contact-list dt {
    color: #888;
}

.contact-list dd {
    margin: 0;
    color: #252525;
}

.contact-cta {
    display: flex;
    min-height: 390px;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    background:
        linear-gradient(145deg, rgba(0, 102, 183, 0.97), rgba(7, 133, 220, 0.9)),
        url("../images/factory-desktop.png") center / cover;
}

.contact-cta span {
    font-size: 15px;
    opacity: 0.86;
}

.contact-cta strong {
    margin: 5px 0 14px;
    font-size: clamp(30px, 3.2vw, 48px);
    line-height: 1.2;
}

.contact-cta p {
    max-width: 440px;
    margin: 0 0 24px;
    opacity: 0.88;
}

.contact-cta .cxl-button {
    align-self: flex-start;
    color: var(--cxl-blue);
    background: #fff;
}

.archive-filter {
    display: flex;
    margin-bottom: 35px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.archive-filter a {
    min-width: 110px;
    padding: 9px 20px;
    border: 1px solid #dfe6eb;
    border-radius: 999px;
    color: #555;
    text-align: center;
}

.archive-filter a:hover,
.archive-filter a.is-active {
    border-color: var(--cxl-blue);
    color: #fff;
    background: var(--cxl-blue);
}

.inner-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.inner-product-card {
    overflow: hidden;
    border: 1px solid #e7ebee;
    background: #fff;
    transition: box-shadow 200ms ease, transform 200ms ease;
}

.inner-product-card:hover {
    box-shadow: 0 16px 38px rgba(20, 61, 92, 0.13);
    transform: translateY(-5px);
}

.inner-product-card__media {
    overflow: hidden;
    background: #f3f5f6;
}

.inner-product-card__media img {
    width: 100%;
    aspect-ratio: 1.05;
    object-fit: cover;
    transition: transform 450ms ease;
}

.inner-product-card:hover img {
    transform: scale(1.05);
}

.inner-product-card__body {
    padding: 17px;
}

.inner-product-card h2 {
    margin: 0;
    font-size: 17px;
}

.inner-product-card p {
    margin: 8px 0 0;
    color: #888;
    font-size: 13px;
    line-height: 1.65;
}

.product-detail {
    align-items: start;
}

.product-detail__media {
    position: sticky;
    top: 110px;
}

.product-detail__lead {
    padding: 15px 18px;
    border-left: 3px solid var(--cxl-blue);
    color: #444;
    background: #f5f9fc;
}

.news-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.news-archive-card {
    overflow: hidden;
    border: 1px solid #e7ecef;
    background: #fff;
}

.news-archive-card__media {
    display: block;
    overflow: hidden;
}

.news-archive-card__media img {
    width: 100%;
    aspect-ratio: 420 / 220;
    object-fit: cover;
    transition: transform 480ms ease;
}

.news-archive-card:hover .news-archive-card__media img {
    transform: scale(1.06);
}

.news-archive-card__body {
    padding: 21px;
}

.news-archive-card time {
    color: var(--cxl-blue);
    font-size: 12px;
}

.news-archive-card h2 {
    margin: 8px 0;
    font-size: 18px;
    line-height: 1.5;
}

.news-archive-card p {
    margin: 0 0 15px;
    color: #777;
    font-size: 13px;
    line-height: 1.75;
}

.text-link {
    color: var(--cxl-blue);
    font-size: 13px;
    font-weight: 700;
}

.cxl-pagination {
    grid-column: 1 / -1;
    margin-top: 38px;
}

.cxl-pagination .nav-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.cxl-pagination .page-numbers {
    display: grid;
    min-width: 38px;
    height: 38px;
    place-items: center;
    padding-inline: 10px;
    border: 1px solid #dde5ea;
}

.cxl-pagination .current,
.cxl-pagination a:hover {
    border-color: var(--cxl-blue);
    color: #fff;
    background: var(--cxl-blue);
}

.article-detail {
    max-width: 920px;
}

.article-detail__meta {
    margin-bottom: 25px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e7ebee;
    color: #999;
    font-size: 13px;
}

.article-detail__cover {
    margin-bottom: 30px;
}

.article-detail__cover img {
    width: 100%;
}

.empty-state {
    padding: 60px 20px;
    color: #888;
    background: #f7f9fa;
    text-align: center;
}

@media (max-width: 980px) {
    .equipment-grid,
    .inner-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .inner-hero__inner {
        min-height: 165px;
        padding-block: 34px;
    }

    .inner-hero h1 {
        font-size: 28px;
    }

    .inner-section {
        padding: 42px 0;
    }

    .about-layout,
    .product-detail,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .about-layout__media img,
    .product-detail__media img {
        border-radius: 34px 0 34px 0;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .equipment-grid,
    .inner-product-grid,
    .news-archive-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .equipment-card {
        min-height: 190px;
        padding: 22px 17px;
    }

    .equipment-card__number {
        margin-bottom: 24px;
        font-size: 42px;
    }

    .equipment-card h2 {
        font-size: 17px;
    }

    .contact-panel,
    .contact-cta {
        padding: 27px 22px;
    }

    .contact-list > div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .contact-cta {
        min-height: 310px;
    }

    .archive-filter {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .archive-filter a {
        min-width: 0;
        padding-inline: 8px;
    }

    .inner-product-card__body {
        padding: 11px;
    }

    .inner-product-card h2 {
        font-size: 14px;
    }

    .inner-product-card p {
        display: none;
    }

    .product-detail__media {
        position: static;
    }

    .news-archive-card__body {
        padding: 13px;
    }

    .news-archive-card h2 {
        font-size: 15px;
    }

    .news-archive-card p {
        display: none;
    }
}
/* ===== CXL INNER PAGES V1 END ===== */

/* ===== CXL EQUIPMENT PAGE V1 START ===== */
.equipment-page {
    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(7, 133, 220, 0.045),
            transparent 26%
        ),
        #fff;
}

.equipment-page__intro {
    max-width: 860px;
    margin: 0 auto 46px;
    text-align: center;
}

.equipment-page__intro h2 {
    margin: 0 0 15px;
    color: #202020;
    font-size: clamp(28px, 2.5vw, 40px);
}

.equipment-showcase {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.equipment-showcase__card {
    overflow: hidden;
    border: 1px solid #e1e8ed;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(20, 61, 92, 0.08);
    transition:
        box-shadow 220ms ease,
        transform 220ms ease;
}

.equipment-showcase__card:hover {
    box-shadow: 0 22px 50px rgba(20, 61, 92, 0.15);
    transform: translateY(-6px);
}

.equipment-showcase__media {
    position: relative;
    display: block;
    overflow: hidden;
    background: #eef2f4;
}

.equipment-showcase__media img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.equipment-showcase__card:hover .equipment-showcase__media img {
    transform: scale(1.045);
}

.equipment-showcase__index {
    position: absolute;
    right: 18px;
    bottom: 16px;
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: rgba(7, 133, 220, 0.94);
    box-shadow: 0 8px 24px rgba(7, 133, 220, 0.28);
    font-size: 16px;
    font-weight: 700;
}

.equipment-showcase__body {
    padding: 26px 28px 28px;
}

.equipment-showcase__body h2 {
    margin: 0 0 9px;
    font-size: 23px;
}

.equipment-showcase__body p {
    min-height: 50px;
    margin: 0 0 18px;
    color: #777;
    font-size: 14px;
    line-height: 1.8;
}

.equipment-showcase__link {
    color: var(--cxl-blue);
    font-size: 13px;
    font-weight: 700;
}

.equipment-showcase__link span {
    display: inline-block;
    margin-left: 4px;
    transition: transform 180ms ease;
}

.equipment-showcase__link:hover span {
    transform: translateX(4px);
}

.equipment-process {
    margin-top: 88px;
    padding: 48px;
    border-radius: 20px;
    color: #fff;
    background:
        linear-gradient(
            135deg,
            rgba(0, 100, 180, 0.98),
            rgba(7, 133, 220, 0.9)
        );
}

.equipment-process__heading {
    margin-bottom: 30px;
    text-align: center;
}

.equipment-process__heading .inner-kicker {
    color: rgba(255, 255, 255, 0.72);
}

.equipment-process__heading h2 {
    margin: 0;
    font-size: clamp(25px, 2.2vw, 36px);
}

.equipment-process__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    counter-reset: none;
    gap: 1px;
}

.equipment-process__steps li {
    min-height: 190px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.09);
}

.equipment-process__steps span,
.equipment-process__steps strong {
    display: block;
}

.equipment-process__steps span {
    margin-bottom: 26px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 32px;
    font-weight: 800;
}

.equipment-process__steps strong {
    margin-bottom: 8px;
    font-size: 18px;
}

.equipment-process__steps p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    line-height: 1.7;
}

.equipment-detail {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: start;
    gap: 65px;
}

.equipment-detail__media {
    position: sticky;
    top: 110px;
    overflow: hidden;
    border-radius: 26px;
    background: #eef2f4;
    box-shadow: 0 20px 50px rgba(20, 61, 92, 0.14);
}

.equipment-detail__media img {
    width: 100%;
}

.equipment-detail__content h2 {
    margin: 0 0 18px;
    font-size: clamp(28px, 2.4vw, 40px);
}

.equipment-detail__lead {
    padding: 16px 19px;
    border-left: 3px solid var(--cxl-blue);
    color: #444;
    background: #f5f9fc;
}

@media (max-width: 900px) {
    .equipment-process__steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .equipment-page__intro {
        margin-bottom: 25px;
    }

    .equipment-page__intro h2 {
        font-size: 24px;
    }

    .equipment-showcase {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .equipment-showcase__card {
        border-radius: 12px;
    }

    .equipment-showcase__media img {
        aspect-ratio: 4 / 3;
    }

    .equipment-showcase__index {
        right: 12px;
        bottom: 12px;
        width: 42px;
        height: 42px;
        font-size: 13px;
    }

    .equipment-showcase__body {
        padding: 19px;
    }

    .equipment-showcase__body h2 {
        font-size: 20px;
    }

    .equipment-showcase__body p {
        min-height: 0;
    }

    .equipment-process {
        margin-top: 42px;
        padding: 27px 16px 16px;
        border-radius: 14px;
    }

    .equipment-process__steps {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .equipment-process__steps li {
        min-height: 0;
        padding: 20px;
    }

    .equipment-process__steps span {
        margin-bottom: 12px;
        font-size: 25px;
    }

    .equipment-detail {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .equipment-detail__media {
        position: static;
        border-radius: 16px;
    }
}
/* ===== CXL EQUIPMENT PAGE V1 END ===== */

/* ===== CXL NEWS CENTER V1 START ===== */
.news-center-page {
    background:
        radial-gradient(
            circle at 92% 8%,
            rgba(7, 133, 220, 0.045),
            transparent 25%
        ),
        #fff;
}

.news-center-intro {
    max-width: 820px;
    margin: 0 auto 34px;
    text-align: center;
}

.news-center-intro h2 {
    margin: 0 0 10px;
    color: #202020;
    font-size: clamp(28px, 2.5vw, 40px);
}

.news-center-intro > p:last-child {
    margin: 0;
    color: #777;
    line-height: 1.8;
}

.news-filter {
    margin-bottom: 40px;
}

.news-center-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.news-center-card {
    overflow: hidden;
    border: 1px solid #e3e9ed;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(20, 61, 92, 0.07);
    transition:
        box-shadow 220ms ease,
        transform 220ms ease;
}

.news-center-card:hover {
    box-shadow: 0 20px 46px rgba(20, 61, 92, 0.14);
    transform: translateY(-5px);
}

.news-center-card__media {
    display: block;
    overflow: hidden;
    background: #eef2f4;
}

.news-center-card__media img {
    width: 100%;
    aspect-ratio: 420 / 240;
    object-fit: cover;
    transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.news-center-card:hover .news-center-card__media img {
    transform: scale(1.06);
}

.news-center-card__body {
    padding: 22px;
}

.news-center-card__meta {
    display: flex;
    margin-bottom: 10px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #999;
    font-size: 12px;
}

.news-center-card__meta a,
.news-center-card__meta span {
    color: var(--cxl-blue);
}

.news-center-card h2 {
    margin: 0 0 10px;
    font-size: 19px;
    line-height: 1.55;
}

.news-center-card p {
    display: -webkit-box;
    min-height: 67px;
    margin: 0 0 17px;
    overflow: hidden;
    color: #777;
    font-size: 13px;
    line-height: 1.75;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.news-center-card__link {
    color: var(--cxl-blue);
    font-size: 13px;
    font-weight: 700;
}

.news-center-card__link span {
    display: inline-block;
    margin-left: 4px;
    transition: transform 180ms ease;
}

.news-center-card__link:hover span {
    transform: translateX(4px);
}

.news-detail-page {
    background: #fff;
}

.news-detail {
    max-width: 940px;
}

.news-detail__header {
    margin-bottom: 28px;
}

.news-detail__meta {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #999;
    font-size: 13px;
}

.news-detail__meta a {
    color: var(--cxl-blue);
}

.news-detail__lead {
    margin: 22px 0 0;
    padding: 18px 21px;
    border-left: 3px solid var(--cxl-blue);
    color: #555;
    background: #f5f9fc;
    font-size: 16px;
    line-height: 1.8;
}

.news-detail__cover {
    margin-bottom: 34px;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 18px 44px rgba(20, 61, 92, 0.12);
}

.news-detail__cover img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
}

.news-detail__content {
    font-size: 17px;
}

.news-detail__content h2 {
    margin-top: 38px;
}

.news-detail__navigation {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 54px;
    padding-top: 28px;
    border-top: 1px solid #e4eaee;
    gap: 30px;
}

.news-detail__navigation > div:last-child {
    text-align: right;
}

.news-detail__navigation span {
    display: block;
    margin-bottom: 7px;
    color: #999;
    font-size: 12px;
}

.news-detail__navigation a {
    color: #333;
    font-weight: 700;
    line-height: 1.55;
}

.news-detail__navigation a:hover {
    color: var(--cxl-blue);
}

.related-news {
    margin-top: 82px;
}

.related-news__heading {
    margin-bottom: 25px;
    text-align: center;
}

.related-news__heading h2 {
    margin: 0;
    font-size: 30px;
}

.related-news__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.related-news__card {
    overflow: hidden;
    border: 1px solid #e3e9ed;
    border-radius: 12px;
    background: #fff;
}

.related-news__card img {
    width: 100%;
    aspect-ratio: 420 / 220;
    object-fit: cover;
    transition: transform 420ms ease;
}

.related-news__card:hover img {
    transform: scale(1.05);
}

.related-news__card h3 {
    margin: 15px 16px 7px;
    font-size: 16px;
    line-height: 1.55;
}

.related-news__card time {
    display: block;
    margin: 0 16px 17px;
    color: #999;
    font-size: 12px;
}

@media (max-width: 980px) {
    .news-center-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .news-center-intro {
        margin-bottom: 22px;
    }

    .news-center-intro h2 {
        font-size: 24px;
    }

    .news-filter {
        margin-bottom: 25px;
    }

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

    .news-center-card {
        display: grid;
        grid-template-columns: 112px minmax(0, 1fr);
        border-radius: 9px;
        box-shadow: none;
    }

    .news-center-card__media img {
        height: 100%;
        aspect-ratio: auto;
        object-fit: cover;
    }

    .news-center-card__body {
        min-width: 0;
        padding: 13px;
    }

    .news-center-card__meta {
        margin-bottom: 5px;
        font-size: 10px;
    }

    .news-center-card h2 {
        display: -webkit-box;
        margin-bottom: 7px;
        overflow: hidden;
        font-size: 15px;
        line-height: 1.45;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .news-center-card p {
        min-height: 0;
        margin-bottom: 8px;
        font-size: 11px;
        line-height: 1.55;
        -webkit-line-clamp: 2;
    }

    .news-center-card__link {
        font-size: 11px;
    }

    .news-detail__lead {
        padding: 15px;
        font-size: 14px;
    }

    .news-detail__cover {
        margin-bottom: 25px;
        border-radius: 10px;
    }

    .news-detail__content {
        font-size: 15px;
    }

    .news-detail__navigation {
        grid-template-columns: 1fr;
        margin-top: 38px;
        gap: 20px;
    }

    .news-detail__navigation > div:last-child {
        text-align: left;
    }

    .related-news {
        margin-top: 52px;
    }

    .related-news__heading h2 {
        font-size: 24px;
    }

    .related-news__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .related-news__card a {
        display: grid;
        grid-template-columns: 112px minmax(0, 1fr);
        align-items: center;
    }

    .related-news__card img {
        height: 86px;
        aspect-ratio: auto;
    }

    .related-news__card h3 {
        margin: 0 12px 5px;
        font-size: 14px;
    }

    .related-news__card time {
        margin: 0 12px;
        font-size: 11px;
    }
}
/* ===== CXL NEWS CENTER V1 END ===== */

/* ===== CXL NEWS MOBILE CARD FIX START ===== */
@media (max-width: 767px) {
    /*
     * 使用绝对定位的固定宽度图片列。
     * 避免图片 height: 100% 与自动网格高度互相计算，
     * 导致图片被拉成超长竖条。
     */
    .news-center-card {
        position: relative;
        display: block;
        min-height: 132px;
        padding-left: 112px;
        overflow: hidden;
    }

    .news-center-card__media {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 112px;
        height: auto;
        min-height: 0;
        overflow: hidden;
    }

    .news-center-card__media img {
        display: block;
        width: 100%;
        height: 100%;
        min-height: 0;
        aspect-ratio: auto;
        object-fit: cover;
    }

    .news-center-card__body {
        min-height: 132px;
        padding: 13px 14px;
    }

    .news-center-card__meta {
        overflow: hidden;
        white-space: nowrap;
    }

    .news-center-card h2 {
        -webkit-line-clamp: 2;
    }

    .news-center-card p {
        -webkit-line-clamp: 2;
    }
}

@media (max-width: 380px) {
    .news-center-card {
        min-height: 126px;
        padding-left: 102px;
    }

    .news-center-card__media {
        width: 102px;
    }

    .news-center-card__body {
        min-height: 126px;
        padding: 11px 12px;
    }

    .news-center-card p {
        -webkit-line-clamp: 1;
    }
}
/* ===== CXL NEWS MOBILE CARD FIX END ===== */

/* ===== CXL PRODUCT CONVERSION START ===== */
.product-conversion-section {
    padding: 72px 0 84px;
    background:
        linear-gradient(
            180deg,
            #f5faff 0%,
            #ffffff 54%,
            #f6f9fb 100%
        );
}

.product-conversion-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: 42px;
    align-items: center;
    padding: 38px 42px;
    overflow: hidden;
    border-radius: 24px;
    color: #fff;
    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(255, 255, 255, 0.18),
            transparent 27%
        ),
        linear-gradient(135deg, #0878c8, #1399e5);
    box-shadow: 0 20px 48px rgba(4, 116, 193, 0.18);
}

.product-conversion-eyebrow,
.related-products__heading span {
    display: block;
    margin-bottom: 9px;
    color: #0a88df;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.product-conversion-eyebrow {
    color: rgba(255, 255, 255, 0.78);
}

.product-conversion-copy h2 {
    margin: 0;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.2;
}

.product-conversion-copy p {
    max-width: 690px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 16px;
    line-height: 1.9;
}

.product-conversion-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.product-conversion-actions .cxl-button {
    display: inline-flex;
    min-height: 48px;
    padding: 10px 18px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.product-conversion-actions .cxl-button--primary {
    color: #0784d9;
    background: #fff;
}

.product-conversion-actions .cxl-button--ghost {
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.product-back-link {
    grid-column: 1 / -1;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    text-align: center;
    text-decoration: none;
}

.product-back-link::before {
    content: "←";
    margin-right: 7px;
}

.related-products {
    margin-top: 66px;
}

.related-products__heading {
    display: flex;
    margin-bottom: 24px;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

.related-products__heading h2 {
    margin: 0;
    font-size: clamp(27px, 3vw, 38px);
    line-height: 1.25;
}

.related-products__heading > a {
    color: #0784d9;
    font-size: 14px;
    text-decoration: none;
}

.related-products__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.related-product-card {
    overflow: hidden;
    border: 1px solid #e2e9ee;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(38, 66, 84, 0.06);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.related-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 34px rgba(38, 66, 84, 0.12);
}

.related-product-card__media {
    display: block;
    overflow: hidden;
    background: #f1f4f6;
}

.related-product-card__media img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 260ms ease;
}

.related-product-card:hover .related-product-card__media img {
    transform: scale(1.045);
}

.related-product-card__body {
    padding: 17px 18px 19px;
}

.related-product-card__body h3 {
    margin: 0;
    font-size: 17px;
    line-height: 1.45;
}

.related-product-card__body h3 a {
    color: #151515;
    text-decoration: none;
}

.related-product-card__body span {
    display: block;
    margin-top: 9px;
    color: #0784d9;
    font-size: 12px;
}

@media (max-width: 900px) {
    .product-conversion-panel {
        grid-template-columns: 1fr;
    }

    .product-conversion-actions {
        max-width: 520px;
    }
}

@media (max-width: 767px) {
    .product-conversion-section {
        padding: 42px 0 92px;
    }

    .product-conversion-panel {
        gap: 26px;
        padding: 27px 22px;
        border-radius: 18px;
    }

    .product-conversion-copy h2 {
        font-size: 27px;
    }

    .product-conversion-copy p {
        font-size: 14px;
        line-height: 1.8;
    }

    .product-conversion-actions {
        grid-template-columns: 1fr;
    }

    .product-back-link {
        grid-column: auto;
    }

    .related-products {
        margin-top: 46px;
    }

    .related-products__heading {
        display: block;
    }

    .related-products__heading > a {
        display: inline-block;
        margin-top: 10px;
    }

    .related-products__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .related-product-card {
        border-radius: 10px;
    }

    .related-product-card__body {
        padding: 12px;
    }

    .related-product-card__body h3 {
        font-size: 14px;
    }
}
/* ===== CXL PRODUCT CONVERSION END ===== */

/* ===== CXL ACF INNER HERO START ===== */
.cxl-inner-hero {
    --cxl-inner-hero-position: center center;
    --cxl-inner-hero-overlay: 0.52;
    position: relative;
    display: flex;
    min-height: 350px;
    align-items: center;
    isolation: isolate;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(
            115deg,
            #0877c5 0%,
            #169de5 100%
        );
}

.cxl-inner-hero__background,
.cxl-inner-hero__overlay,
.cxl-inner-hero__ring {
    position: absolute;
    pointer-events: none;
}

.cxl-inner-hero__background {
    z-index: -3;
    inset: 0;
    background-image: var(
        --cxl-inner-hero-desktop,
        none
    );
    background-position: var(
        --cxl-inner-hero-position
    );
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(1.01);
}

.cxl-inner-hero__overlay {
    z-index: -2;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(2, 27, 47, 0.84) 0%,
            rgba(3, 49, 79, 0.70) 38%,
            rgba(4, 73, 113, 0.42) 67%,
            rgba(5, 91, 139, 0.22) 100%
        ),
        linear-gradient(
            rgba(
                0,
                80,
                142,
                var(--cxl-inner-hero-overlay)
            ),
            rgba(
                0,
                80,
                142,
                var(--cxl-inner-hero-overlay)
            )
        );
}

.cxl-inner-hero:not(
    .cxl-inner-hero--has-image
) .cxl-inner-hero__overlay {
    background:
        linear-gradient(
            115deg,
            rgba(4, 87, 158, 0.36),
            rgba(15, 157, 228, 0.06)
        );
}

.cxl-inner-hero__ring {
    z-index: -1;
    top: -126px;
    right: -58px;
    width: 330px;
    height: 330px;
    border: 48px solid rgba(255, 255, 255, 0.09);
    border-radius: 50%;
}



.cxl-inner-hero__container {
    width: min(calc(100% - 48px), 1200px);
    margin-inline: auto;
}

.cxl-inner-hero__content {
    max-width: 760px;
    padding-block: 68px;
}

.cxl-inner-hero__eyebrow {
    display: block;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.25em;
    line-height: 1.4;
    text-transform: uppercase;
}

.cxl-inner-hero__title {
    margin: 0;
    color: #fff;
    font-size: clamp(42px, 4.3vw, 58px);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.16;
    text-shadow:
        0 3px 22px rgba(0, 22, 38, 0.28);
}

.cxl-inner-hero__breadcrumb {
    display: flex;
    margin-top: 24px;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.6;
}

.cxl-inner-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.94);
    text-decoration: none;
}

.cxl-inner-hero__breadcrumb a:hover {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
}

@media (max-width: 767px) {
    .cxl-inner-hero {
        min-height: 270px;
    }

    .cxl-inner-hero__background {
        background-image: var(
            --cxl-inner-hero-mobile,
            var(--cxl-inner-hero-desktop, none)
        );
        transform: none;
    }

    .cxl-inner-hero__overlay {
        background:
            linear-gradient(
                90deg,
                rgba(2, 28, 48, 0.80) 0%,
                rgba(3, 56, 91, 0.60) 72%,
                rgba(4, 84, 132, 0.34) 100%
            ),
            linear-gradient(
                rgba(
                    0,
                    80,
                    142,
                    var(--cxl-inner-hero-overlay)
                ),
                rgba(
                    0,
                    80,
                    142,
                    var(--cxl-inner-hero-overlay)
                )
            );
    }

    .cxl-inner-hero__ring {
        top: -84px;
        right: -86px;
        width: 235px;
        height: 235px;
        border-width: 34px;
    }

    .cxl-inner-hero__container {
        width: min(calc(100% - 28px), 1200px);
    }

    .cxl-inner-hero__content {
        max-width: 92%;
        padding-block: 44px;
    }

    .cxl-inner-hero__eyebrow {
        margin-bottom: 11px;
        font-size: 10px;
        letter-spacing: 0.22em;
    }

    .cxl-inner-hero__title {
        font-size: clamp(32px, 9.5vw, 42px);
        line-height: 1.18;
    }

    .cxl-inner-hero__breadcrumb {
        margin-top: 19px;
        gap: 7px;
        font-size: 12px;
    }
}
/* ===== CXL ACF INNER HERO END ===== */

/* ===== CXL INNER HERO ALIGNMENT START ===== */
.cxl-inner-hero--align-left
.cxl-inner-hero__content {
    margin-right: auto;
    text-align: left;
}

.cxl-inner-hero--align-left
.cxl-inner-hero__breadcrumb {
    justify-content: flex-start;
}

.cxl-inner-hero--align-center
.cxl-inner-hero__content {
    max-width: 860px;
    margin-inline: auto;
    text-align: center;
}

.cxl-inner-hero--align-center
.cxl-inner-hero__breadcrumb {
    justify-content: center;
}

@media (max-width: 767px) {
    .cxl-inner-hero--align-center
    .cxl-inner-hero__content {
        max-width: 94%;
    }
}
/* ===== CXL INNER HERO ALIGNMENT END ===== */

/* ===== CXL INNER HERO FOCAL V4 START ===== */
/*
 * 遮罩层只通过 opacity 响应后台百分比：
 * 0 = 完全透明，0.8 = 80% 强度。
 */
.cxl-inner-hero__overlay,
.cxl-inner-hero:not(
    .cxl-inner-hero--has-image
) .cxl-inner-hero__overlay {
    background:
        linear-gradient(
            90deg,
            #021b2f 0%,
            #03314f 42%,
            rgba(5, 91, 139, 0.55) 74%,
            rgba(5, 91, 139, 0.18) 100%
        );
    opacity: var(--cxl-inner-hero-overlay);
}

@media (max-width: 767px) {
    .cxl-inner-hero__background {
        background-image: var(
            --cxl-inner-hero-desktop,
            none
        );
    }

    .cxl-inner-hero__overlay,
    .cxl-inner-hero:not(
        .cxl-inner-hero--has-image
    ) .cxl-inner-hero__overlay {
        background:
            linear-gradient(
                90deg,
                #021c31 0%,
                #053b5f 68%,
                rgba(5, 91, 139, 0.30) 100%
            );
        opacity: var(--cxl-inner-hero-overlay);
    }
}
/* ===== CXL INNER HERO FOCAL V4 END ===== */

/* ===== CXL INNER HERO RING V5 START ===== */
/* 自定义背景图已经承担视觉主体，不再叠加右上角圆环。 */
.cxl-inner-hero--has-image
.cxl-inner-hero__ring {
    display: none;
}

/* 默认蓝色横幅继续保留品牌圆环装饰。 */
.cxl-inner-hero:not(
    .cxl-inner-hero--has-image
)
.cxl-inner-hero__ring {
    display: block;
}
/* ===== CXL INNER HERO RING V5 END ===== */

/* ===== CXL INNER HERO DECORATION V6 START ===== */
/*
 * 自定义背景图存在时，关闭新旧两套圆环：
 * 1. cxl-inner-hero__ring 元素；
 * 2. 旧主题 .inner-hero::before / ::after 伪元素。
 */
.cxl-inner-hero--has-image
.cxl-inner-hero__ring {
    display: none !important;
}

.cxl-inner-hero--has-image::before,
.cxl-inner-hero--has-image::after {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    border: 0 !important;
    background: none !important;
    content: none !important;
}
/* ===== CXL INNER HERO DECORATION V6 END ===== */

/* ===== CXL HOME V2 EXACT UPGRADE START ===== */
/*
 * 依据当前 front-page.php 的真实类名精修首页。
 * 全站容器基准由 style.css 的 --cxl-container 统一为 1320px。
 */

.home .cxl-section {
    padding-block: 108px;
}

.home .section-heading--home {
    max-width: 820px;
    margin: 0 auto 52px;
}

.home .section-heading--home .section-heading__eyebrow {
    margin: 0 0 10px;
    color: var(--cxl-blue);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .2em;
}

.home .section-heading--home h2 {
    margin: 0;
    color: #17212b;
    font-size: clamp(34px, 2.7vw, 46px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.025em;
}

.home .section-heading--home .section-heading__description,
.home .section-heading--home .why-us__lead {
    margin: 18px 0 0;
    color: #5d6a77;
    font-size: 15px;
    line-height: 1.9;
}

/* 首屏 */
@media (min-width: 768px) {
    .hero-slider {
        min-height: clamp(650px, 45vw, 760px);
    }

    .hero-slide picture,
    .hero-slide picture img {
        height: 100%;
    }

    .hero-slide picture img {
        object-fit: cover;
    }

    .hero-slide__copy,
    .hero-slide__copy--two {
        top: 51%;
        left: max(53%, calc(50% + 55px));
        width: min(43vw, 690px);
        transform: translateY(-50%);
    }

    .hero-slide__copy--one .hero-slide__kicker {
        margin-bottom: 14px;
        color: #2d3a46;
        font-size: clamp(18px, 1.25vw, 24px);
        font-weight: 700;
        letter-spacing: .01em;
    }

    .hero-slide__copy--one .hero-slide__kicker strong {
        font-size: 1.05em;
    }

    .hero-slide__copy--one h1,
    .hero-slide__copy--two .hero-client-title {
        max-width: 690px;
        margin: 0 0 20px;
        color: #17212b;
        font-size: clamp(38px, 2.8vw, 54px);
        font-weight: 800;
        line-height: 1.18;
        letter-spacing: -.035em;
    }

    .hero-slide__description,
    .hero-slide__copy--two .hero-slide__description {
        max-width: 620px;
        color: #596775;
        font-size: clamp(14px, .95vw, 17px);
        line-height: 1.9;
    }

    .hero-slide__actions {
        margin-top: 28px;
        gap: 12px;
    }

    .hero-button {
        min-width: 142px;
        min-height: 48px;
        padding-inline: 26px;
        border-radius: 999px;
        box-shadow: 0 12px 28px rgba(20, 89, 135, .12);
    }

    .hero-button--accent {
        color: #087fc8;
        border: 1px solid rgba(7, 133, 220, .28);
        background: rgba(255, 255, 255, .88);
        backdrop-filter: blur(8px);
    }

    .hero-slider__arrow {
        width: 46px;
        height: 46px;
        color: #3f5363;
        background: rgba(255, 255, 255, .74);
        box-shadow: 0 12px 30px rgba(40, 77, 102, .12);
        backdrop-filter: blur(8px);
    }

    .hero-slider__arrow--prev {
        left: 28px;
    }

    .hero-slider__arrow--next {
        right: 28px;
    }
}

/* 为什么选择创欣隆 */
.why-us {
    background:
        radial-gradient(circle at 8% 18%, rgba(7, 133, 220, .07), transparent 24%),
        linear-gradient(180deg, #f7fbfe 0%, #fff 100%);
}

.why-us__grid {
    grid-template-columns: minmax(0, .95fr) minmax(520px, 1.05fr);
    align-items: center;
    gap: clamp(54px, 5vw, 82px);
}

.why-us .section-heading--home {
    max-width: 660px;
    margin: 0 0 34px;
    text-align: left;
}

.why-us .section-heading--home .section-heading__eyebrow {
    color: var(--cxl-blue);
    font-size: 12px;
    letter-spacing: .2em;
}

.why-us .value-grid {
    gap: 16px;
    overflow: visible;
    border-radius: 0;
}

.why-us .value-card {
    min-height: 170px;
    padding: 28px;
    color: #24313d;
    border: 1px solid #e3edf4;
    border-radius: 18px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 18px 44px rgba(36, 86, 119, .07);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.why-us .value-card:hover {
    border-color: rgba(7, 133, 220, .3);
    box-shadow: 0 22px 50px rgba(36, 86, 119, .12);
    transform: translateY(-4px);
}

.why-us .value-card__head {
    color: var(--cxl-blue);
    font-size: 17px;
    font-weight: 800;
}

.why-us .value-card__head img {
    width: 42px;
    height: 42px;
    padding: 8px;
    border-radius: 12px;
    background: #edf8ff;
}

.why-us .value-card p {
    margin-top: 18px;
    color: #596775;
    font-size: 14px;
    line-height: 1.8;
}

.why-us .factory-card {
    padding: 0;
}

.why-us .factory-card::before {
    top: 42px;
    right: -34px;
    bottom: -34px;
    left: 42px;
    height: auto;
    border-radius: 36px 0 36px 0;
    background: linear-gradient(135deg, #0079c9, #11a1e8);
}

.why-us .factory-card img {
    position: relative;
    z-index: 1;
    border-radius: 46px 0 46px 0;
    box-shadow: 0 26px 68px rgba(25, 77, 112, .18);
}

/* 产品 */
.products-section {
    background:
        radial-gradient(circle at 16% 16%, rgba(7, 133, 220, .08), transparent 28%),
        #f5f8fa;
}

.products-section .product-categories {
    margin: -18px 0 38px;
    gap: 10px;
}

.products-section .product-categories a {
    min-width: 112px;
    padding: 9px 18px;
    border: 1px solid #dfe8ee;
    border-radius: 999px;
    background: rgba(255, 255, 255, .78);
    text-align: center;
}

.products-section .product-categories a.is-active,
.products-section .product-categories a:hover {
    border-color: var(--cxl-blue);
    color: #fff;
    background: var(--cxl-blue);
}

.products-section .product-categories a.is-active::after {
    display: none;
}

.product-carousel {
    padding-inline: 46px;
}

.product-carousel .product-card {
    overflow: hidden;
    border: 1px solid #e3eaee;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 16px 44px rgba(35, 78, 107, .07);
}

.product-card img {
    aspect-ratio: 4 / 3;
    transition: transform .45s ease;
}

.product-card:hover img {
    transform: scale(1.04);
}

.product-card__body {
    min-height: 92px;
    padding: 18px 20px 20px;
}

.product-card__category {
    display: block;
    margin-bottom: 7px;
    color: var(--cxl-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
}

.product-card .product-card__body h3 {
    margin: 0;
    padding: 0;
    color: #25313c;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    text-align: left;
}

/* 应用领域 */
.applications-heading {
    max-width: 900px;
    margin-bottom: 52px;
}

.application-grid {
    gap: 24px;
}

.application-card {
    display: flex;
    flex-direction: column;
    border-radius: 22px;
}

.application-card picture {
    overflow: hidden;
}

.application-card img {
    aspect-ratio: 16 / 10;
}

.application-card__body {
    flex: 1;
    padding: 22px 24px 24px;
    background: #fff;
}

.application-card .application-card__body h3 {
    position: static;
    margin: 0;
    padding: 0;
    color: #202c37;
    background: transparent;
    font-size: 20px;
    font-weight: 800;
    text-align: left;
}

.application-card__body p {
    margin: 10px 0 0;
    color: #64717e;
    font-size: 14px;
    line-height: 1.75;
}

/* 新闻 */
.news-section {
    padding-top: 108px;
    padding-bottom: 112px;
    background: #fff;
}

.news-grid {
    gap: 22px;
}

.news-card {
    overflow: hidden;
    border: 1px solid #e4eaee;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 15px 42px rgba(34, 77, 105, .07);
    transition: transform .22s ease, box-shadow .22s ease;
}

.news-card:hover {
    box-shadow: 0 22px 54px rgba(34, 77, 105, .12);
    transform: translateY(-5px);
}

.news-card__media img {
    aspect-ratio: 16 / 9;
}

.news-card__body {
    padding: 22px 22px 24px;
}

.news-card__meta {
    margin-bottom: 9px;
    color: var(--cxl-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
}

.news-card h3 {
    display: -webkit-box;
    min-height: 54px;
    margin: 0 0 10px;
    overflow: hidden;
    color: #27333e;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.news-card p {
    color: #6b7782;
    font-size: 14px;
    line-height: 1.8;
    -webkit-line-clamp: 3;
}

/* 最终询盘 CTA */
.home-inquiry {
    padding: 86px 0;
    color: #fff;
    background:
        radial-gradient(circle at 87% 18%, rgba(255, 255, 255, .18), transparent 27%),
        linear-gradient(135deg, #006eb9 0%, #0797dc 100%);
}

.home-inquiry__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 52px;
    min-height: 230px;
    padding: 46px 54px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 28px;
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 28px 72px rgba(0, 63, 105, .22);
}

.home-inquiry__eyebrow {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .2em;
}

.home-inquiry h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(34px, 3vw, 48px);
    line-height: 1.18;
    letter-spacing: -.025em;
}

.home-inquiry__copy > p:last-child {
    max-width: 720px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .84);
    font-size: 15px;
    line-height: 1.8;
}

.home-inquiry__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
}

.home-inquiry__button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    transition: transform .2s ease, background-color .2s ease, color .2s ease;
}

.home-inquiry__button:hover {
    transform: translateY(-2px);
}

.home-inquiry__button--primary {
    color: #0879bd;
    background: #fff;
}

.home-inquiry__button--secondary {
    color: #fff;
    background: transparent;
}

@media (max-width: 1100px) {
    .why-us__grid {
        grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
        gap: 42px;
    }

    .home-inquiry__inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .home-inquiry__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .home .cxl-section {
        padding-block: 64px;
    }

    .home .section-heading--home {
        margin-bottom: 30px;
    }

    .home .section-heading--home .section-heading__eyebrow {
        display: block;
        margin-bottom: 8px;
        font-size: 11px;
    }

    .home .section-heading--home h2 {
        font-size: 28px;
    }

    .home .section-heading--home .section-heading__description,
    .home .section-heading--home .why-us__lead {
        margin-top: 13px;
        font-size: 14px;
        line-height: 1.75;
    }

    .why-us__grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .why-us .section-heading--home {
        text-align: center;
    }

    .why-us .value-grid {
        gap: 10px;
    }

    .why-us .value-card {
        min-height: 148px;
        padding: 20px;
    }

    .why-us .value-card__head {
        font-size: 15px;
    }

    .why-us .value-card p {
        margin-top: 12px;
        font-size: 13px;
    }

    .why-us .factory-card::before {
        right: -14px;
        bottom: -16px;
        left: 24px;
    }

    .products-section .product-categories {
        margin-top: -8px;
        margin-bottom: 26px;
        gap: 8px;
    }

    .products-section .product-categories a {
        min-width: 0;
        padding: 7px 13px;
        font-size: 13px;
    }

    .product-card__body {
        min-height: 76px;
        padding: 13px 14px 15px;
    }

    .product-card__category {
        font-size: 10px;
    }

    .product-card .product-card__body h3 {
        font-size: 14px;
    }

    .applications-heading {
        margin-bottom: 24px;
    }

    .application-card__body {
        padding: 14px 12px 15px;
    }

    .application-card .application-card__body h3 {
        font-size: 14px;
        text-align: center;
    }

    .application-card__body p {
        display: none;
    }

    .news-section {
        padding-top: 64px;
        padding-bottom: 68px;
    }

    .news-card {
        border-radius: 12px;
        box-shadow: none;
    }

    .news-card__body {
        padding: 12px;
    }

    .news-card__meta {
        margin-bottom: 5px;
        font-size: 10px;
    }

    .news-card h3 {
        min-height: auto;
        margin-bottom: 5px;
        font-size: 15px;
        -webkit-line-clamp: 2;
    }

    .home-inquiry {
        padding: 62px 0;
    }

    .home-inquiry__inner {
        min-height: 0;
        padding: 30px 24px;
        border-radius: 22px;
    }

    .home-inquiry__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .home-inquiry__button {
        width: 100%;
    }
}
/* ===== CXL HOME V2 EXACT UPGRADE END ===== */

/* ===== CXL HOME V2.1 POLISH START ===== */
/*
 * V2.1 只做视觉精修，不改变首页结构和后台内容。
 * 重点：页头比例、首屏文字与按钮、优势数据、产品卡片及询盘 CTA。
 */

@media (min-width: 768px) {
    .site-header--home .site-header__inner,
    .site-header--home.is-scrolled .site-header__inner {
        min-height: 84px;
    }

    .site-header--home .site-logo img,
    .site-header--home.is-scrolled .site-logo img {
        width: 160px;
    }

    .site-header--home .desktop-menu {
        gap: clamp(28px, 2.55vw, 50px);
    }

    .site-header--home .desktop-menu a {
        padding-top: 30px;
        padding-bottom: 28px;
        font-size: 17px;
        font-weight: 500;
    }

    .site-header--home .desktop-menu a::after {
        bottom: 20px;
        height: 3px;
        border-radius: 999px;
    }

    .hero-slide__copy,
    .hero-slide__copy--two {
        left: max(52.5%, calc(50% + 44px));
        width: min(45vw, 720px);
    }

    .hero-slide__copy--one h1,
    .hero-slide__copy--two .hero-client-title {
        max-width: 720px;
        margin-bottom: 22px;
        font-size: clamp(42px, 3.15vw, 60px);
        line-height: 1.13;
    }

    .hero-slide__description,
    .hero-slide__copy--two .hero-slide__description {
        max-width: 650px;
        font-size: clamp(15px, 1vw, 18px);
        line-height: 1.86;
    }

    .hero-slide__actions {
        margin-top: 30px;
        gap: 14px;
    }

    .hero-button {
        min-width: 156px;
        min-height: 52px;
        padding-inline: 28px;
        font-size: 15px;
        font-weight: 700;
    }

    .hero-button--primary {
        background: linear-gradient(135deg, #0076c9, #0797df);
        box-shadow: 0 14px 30px rgba(0, 111, 196, .22);
    }

    .hero-button--accent {
        color: #fff;
        border-color: #ffad00;
        background: linear-gradient(135deg, #ffad00, #ff9800);
        box-shadow: 0 14px 30px rgba(255, 152, 0, .22);
        backdrop-filter: none;
    }

    .hero-slider__dots {
        bottom: 24px;
    }
}

.why-us .value-card {
    min-height: 176px;
    padding: 30px;
}

.why-us .value-card__head {
    font-size: 19px;
    line-height: 1.35;
    letter-spacing: -.015em;
}

.why-us .value-card__head img {
    width: 46px;
    height: 46px;
}

.why-us .value-card p {
    margin-top: 19px;
    font-size: 14.5px;
}

.product-carousel .product-card {
    border-radius: 20px;
}

.product-card__body {
    min-height: 108px;
    padding: 21px 22px 24px;
}

.product-card__category {
    margin-bottom: 8px;
    font-size: 12.5px;
}

.product-card .product-card__body h3 {
    font-size: 18px;
    line-height: 1.45;
}

.products-section .section-action .cxl-button,
.news-section .section-action .cxl-button {
    min-width: 158px;
    min-height: 48px;
    padding-inline: 25px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
}

.home-inquiry {
    padding-block: 78px;
}

.home-inquiry__inner {
    min-height: 210px;
    gap: 48px;
    padding: 40px 50px;
}

.home-inquiry h2 {
    font-size: clamp(38px, 3.2vw, 52px);
}

.home-inquiry__button {
    min-width: 164px;
    min-height: 54px;
    padding-inline: 28px;
    font-size: 15px;
}

@media (max-width: 1100px) and (min-width: 768px) {
    .site-header--home .site-logo img,
    .site-header--home.is-scrolled .site-logo img {
        width: 148px;
    }

    .site-header--home .desktop-menu {
        gap: 24px;
    }

    .site-header--home .desktop-menu a {
        font-size: 16px;
    }

    .hero-slide__copy,
    .hero-slide__copy--two {
        left: 51%;
        width: 46%;
    }

    .hero-slide__copy--one h1,
    .hero-slide__copy--two .hero-client-title {
        font-size: clamp(38px, 4vw, 50px);
    }
}

@media (max-width: 767px) {
    .product-card__body {
        min-height: 82px;
        padding: 15px 15px 17px;
    }

    .product-card__category {
        font-size: 10.5px;
    }

    .product-card .product-card__body h3 {
        font-size: 15px;
    }

    .home-inquiry {
        padding-block: 58px;
    }

    .home-inquiry__inner {
        padding: 28px 22px;
    }

    .home-inquiry h2 {
        font-size: 30px;
    }

    .home-inquiry__button {
        min-height: 50px;
        font-size: 14px;
    }
}
/* ===== CXL HOME V2.1 POLISH END ===== */

/* CXL HOME ADMIN V1 START */
/* 应用卡片设置链接后保持与无链接状态一致。 */
.application-card > a {
    display: block;
    color: inherit;
    text-decoration: none;
}
/* CXL HOME ADMIN V1 END */

/* CXL_HOME_ADMIN_V11_FOCAL_START */
/* 首页后台焦点值统一控制前台裁切位置。 */
.hero-slide picture img,
.why-us .factory-card img,
.application-card img {
    object-position: var(--cxl-focal-x, 50%) var(--cxl-focal-y, 50%);
}

.why-us .factory-card picture {
    display: block;
    overflow: hidden;
    border-radius: 46px 0 46px 0;
}

.why-us .factory-card img {
    width: 100%;
    aspect-ratio: 688 / 546;
    object-fit: cover;
}
/* CXL_HOME_ADMIN_V11_FOCAL_END */

/* CXL_HOME_ADMIN_V12_MOBILE_START */
/*
 * 首页后台维护 V1.2：手机端视觉修复。
 * 仅作用于首页，桌面端产品轮播的箭头安全边距保持不变。
 */
@media (max-width: 767px) {
    /* Banner 改为“图片 + 文案卡片”结构，避免文案被旧规则隐藏。 */
    body.home .hero-slider {
        background: #fff;
    }

    body.home .hero-slide.is-active {
        display: flex;
        flex-direction: column;
    }

    body.home .hero-slide picture {
        display: block;
        height: clamp(184px, 52vw, 228px);
        overflow: hidden;
        background: #f5f9fc;
    }

    body.home .hero-slide picture img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: var(--cxl-focal-x, 50%) var(--cxl-focal-y, 50%);
    }

    body.home .hero-slide__copy,
    body.home .hero-slide__copy--two {
        position: relative;
        top: auto;
        left: auto;
        display: block;
        width: 100%;
        padding: 21px 18px 39px;
        color: #17212b;
        background: #fff;
        transform: none;
    }

    body.home .hero-slide__copy > * {
        opacity: 1;
        animation: none !important;
    }

    body.home .hero-slide__kicker,
    body.home .hero-slide__copy--one .hero-slide__kicker {
        margin: 0 0 7px;
        color: #4d5e6c;
        font-size: 14px;
        font-weight: 700;
        line-height: 1.45;
        letter-spacing: 0;
    }

    body.home .hero-slide__copy h1,
    body.home .hero-slide__copy--one h1,
    body.home .hero-slide__copy--two .hero-client-title {
        max-width: none;
        margin: 0 0 10px;
        color: #17212b;
        font-size: clamp(25px, 7.3vw, 31px);
        font-weight: 800;
        line-height: 1.2;
        letter-spacing: -.035em;
    }

    body.home .hero-slide__description,
    body.home .hero-slide__copy--two .hero-slide__description {
        display: -webkit-box;
        max-width: none;
        margin: 0;
        overflow: hidden;
        color: #63717d;
        font-size: 13px;
        line-height: 1.68;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    body.home .hero-slide__actions {
        display: flex;
        margin-top: 15px;
        flex-wrap: wrap;
        gap: 9px;
    }

    body.home .hero-button {
        min-width: 112px;
        min-height: 40px;
        padding: 0 17px;
        font-size: 13px;
    }

    body.home .hero-slider__dots {
        bottom: 13px;
    }

    /* 手机端移除桌面轮播箭头预留的 46px，两侧回到页面标准安全边距。 */
    body.home .products-section .product-carousel {
        padding-inline: 0;
    }

    /* 三个分类在同一行，避免最后一个标签独占整行。 */
    body.home .products-section .product-categories {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
    }

    body.home .products-section .product-categories a:last-child {
        grid-column: auto;
    }

    body.home .products-section .product-categories a {
        padding-inline: 8px;
        white-space: nowrap;
    }

    /* 优势卡片降低移动端标题字号和空白，减少不自然换行。 */
    body.home .why-us .value-card {
        min-height: 142px;
        padding: 17px 14px;
    }

    body.home .why-us .value-card__head {
        font-size: 15px;
        line-height: 1.35;
    }

    body.home .why-us .value-card__head img {
        width: 40px;
        height: 40px;
    }

    body.home .why-us .value-card p {
        margin-top: 10px;
        font-size: 12.5px;
        line-height: 1.65;
    }

    /* 新闻：首条作为主卡，其余使用统一横向列表。 */
    body.home .news-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    body.home .news-card,
    body.home .news-card--mobile-only {
        display: block;
        padding: 0;
        overflow: hidden;
        border: 1px solid #e3eaf0;
        border-radius: 15px;
        background: #fff;
        box-shadow: 0 10px 28px rgba(31, 79, 110, .07);
    }

    body.home .news-card > a {
        display: grid;
        grid-template-columns: 112px minmax(0, 1fr);
        min-height: 100px;
        align-items: stretch;
        gap: 0;
    }

    body.home .news-card__media {
        width: 112px;
        height: 100%;
        min-height: 100px;
        border-radius: 0;
    }

    body.home .news-card__media img,
    body.home .news-card img {
        width: 100%;
        height: 100%;
        border-radius: 0;
        object-fit: cover;
    }

    body.home .news-card__body {
        min-width: 0;
        padding: 12px 13px;
    }

    body.home .news-card__meta {
        margin-bottom: 5px;
        font-size: 10px;
    }

    body.home .news-card h3 {
        display: -webkit-box;
        min-height: auto;
        margin: 0;
        overflow: hidden;
        font-size: 14px;
        line-height: 1.5;
        white-space: normal;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    body.home .news-card p {
        display: none;
    }

    body.home .news-card:first-child > a {
        display: block;
        min-height: 0;
    }

    body.home .news-card:first-child .news-card__media {
        width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    body.home .news-card:first-child .news-card__body {
        padding: 16px 16px 17px;
    }

    body.home .news-card:first-child .news-card__meta {
        margin-bottom: 7px;
        font-size: 10.5px;
    }

    body.home .news-card:first-child h3 {
        margin-bottom: 8px;
        font-size: 17px;
        line-height: 1.5;
    }

    body.home .news-card:first-child p {
        display: -webkit-box;
        margin: 0;
        overflow: hidden;
        font-size: 12.5px;
        line-height: 1.75;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    /* 询盘标题略微收紧，减少孤字换行。 */
    body.home .home-inquiry h2 {
        font-size: 28px;
        line-height: 1.22;
    }
}
/* CXL_HOME_ADMIN_V12_MOBILE_END */

/* CXL_HOME_ADMIN_V13_MOBILE_HERO_BUTTONS_START */
/*
 * 首页后台维护 V1.3：
 * 手机端旧基础样式只定义了按钮尺寸，没有定义 display、颜色、背景和圆角，
 * 因此按钮退化为普通文本链接。这里仅修复首页手机端 Banner 按钮。
 */
@media (max-width: 767px) {
    body.home .hero-slide__actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        gap: 10px;
    }

    body.home .hero-slide__actions .hero-button {
        display: inline-flex;
        width: 100%;
        min-width: 0;
        min-height: 42px;
        align-items: center;
        justify-content: center;
        padding: 0 14px;
        border: 1px solid transparent;
        border-radius: 999px;
        color: #fff;
        font-size: 13px;
        font-weight: 700;
        line-height: 1;
        text-align: center;
        text-decoration: none;
        box-shadow: 0 10px 24px rgba(16, 99, 153, .16);
        transition: transform 180ms ease, filter 180ms ease;
    }

    body.home .hero-slide__actions .hero-button--primary {
        color: #fff;
        border-color: #087fc8;
        background: linear-gradient(135deg, #0076c9, #0797df);
    }

    body.home .hero-slide__actions .hero-button--accent {
        color: #fff;
        border-color: #ff9f00;
        background: linear-gradient(135deg, #ffad00, #ff9500);
        box-shadow: 0 10px 24px rgba(255, 153, 0, .18);
    }

    body.home .hero-slide__actions .hero-button:hover,
    body.home .hero-slide__actions .hero-button:focus-visible {
        color: #fff;
        filter: brightness(.96);
        transform: translateY(-1px);
    }

    body.home .hero-slide__actions .hero-button:focus-visible {
        outline: 3px solid rgba(7, 133, 220, .22);
        outline-offset: 2px;
    }
}
/* CXL_HOME_ADMIN_V13_MOBILE_HERO_BUTTONS_END */

/* CXL_HOME_ADMIN_V15_SWIPER_START */
/*
 * 首页 V1.5：使用 Swiper 管理真实滑动轨道。
 * 覆盖旧版绝对定位与透明度切换，让鼠标拖拽和触摸滑动 1:1 跟手。
 */
body.home .hero-slider.swiper {
    overflow: hidden;
    touch-action: pan-y pinch-zoom;
    overscroll-behavior-x: contain;
}

body.home .hero-slider .hero-slider__track.swiper-wrapper {
    position: relative;
    display: flex;
    width: 100%;
    height: auto;
    box-sizing: content-box;
    transition-property: transform;
    will-change: transform;
}

body.home .hero-slider .hero-slide.swiper-slide {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    height: auto;
    flex: 0 0 100%;
    opacity: 1;
    pointer-events: auto;
    transition: none;
}

body.home .hero-slider .hero-slide.swiper-slide:not(.swiper-slide-active) {
    pointer-events: none;
}

body.home .hero-slider .hero-slide.swiper-slide-active {
    z-index: 1;
}

body.home .hero-slider .hero-slide img {
    user-select: none;
    -webkit-user-drag: none;
}

body.home .hero-slider .hero-slider__dots {
    width: auto;
}

body.home .hero-slider .hero-slider__dot {
    display: block;
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    opacity: 1;
    background: #aaa;
    cursor: pointer;
    transition: width 180ms ease, background-color 180ms ease;
}

body.home .hero-slider .hero-slider__dot.is-active {
    width: 22px;
    border-radius: 5px;
    background: var(--cxl-blue);
}

body.home .hero-slider .hero-slider__arrow.swiper-button-lock,
body.home .hero-slider .hero-slider__dots.swiper-pagination-lock {
    display: none;
}

@media (hover: hover) and (pointer: fine) {
    body.home .hero-slider.swiper-grab-cursor {
        cursor: grab;
    }

    body.home .hero-slider.swiper-grab-cursor:active {
        cursor: grabbing;
    }

    body.home .hero-slider :is(a, button) {
        cursor: pointer;
    }
}

@media (max-width: 767px) {
    body.home .hero-slider .hero-slide.swiper-slide {
        display: flex;
        flex-direction: column;
    }

    body.home .hero-slider .hero-slider__track.swiper-wrapper {
        align-items: stretch;
    }
}

/* Swiper 未加载时保留箭头与圆点切换，不让首页失效。 */
body.home .hero-slider.is-slider-fallback .hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

body.home .hero-slider.is-slider-fallback .hero-slide.is-active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
}

body.home .news-section {
    background:
        radial-gradient(circle at 16% 16%, rgba(7, 133, 220, .08), transparent 28%),
        #f5f8fa;
}
/* CXL_HOME_ADMIN_V15_SWIPER_END */

/* CXL_CONTACT_PAGE_V1_START */
.cxl-contact-page {
    color: #203444;
    background: #fff;
}

.cxl-contact-main {
    padding: 104px 0 112px;
    background:
        radial-gradient(circle at 12% 12%, rgba(7, 133, 220, .09), transparent 28%),
        #f5f8fa;
}

.cxl-contact-main__grid {
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
    align-items: stretch;
    gap: 30px;
}

.cxl-contact-info-card,
.cxl-contact-form-card {
    border: 1px solid rgba(38, 93, 128, .11);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(31, 75, 103, .09);
}

.cxl-contact-info-card {
    display: flex;
    min-height: 650px;
    padding: 52px 48px 46px;
    flex-direction: column;
}

.cxl-contact-form-card {
    padding: 52px 52px 46px;
}

.cxl-contact-kicker {
    margin: 0 0 10px;
    color: var(--cxl-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.cxl-contact-info-card h2,
.cxl-contact-form-card h2,
.cxl-contact-map-heading h2 {
    margin: 0;
    color: #172f40;
    font-size: clamp(30px, 2.8vw, 44px);
    line-height: 1.2;
    letter-spacing: -.025em;
}

.cxl-contact-intro,
.cxl-contact-form-card__intro {
    margin: 18px 0 0;
    color: #687985;
    font-size: 15px;
    line-height: 1.9;
}

.cxl-contact-list {
    display: grid;
    margin: 36px 0 0;
    gap: 0;
}

.cxl-contact-list__item {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid #e9eef2;
    gap: 22px;
}

.cxl-contact-list__item:first-child {
    border-top-color: #dfe8ee;
}

.cxl-contact-list dt {
    display: flex;
    margin: 0;
    align-items: center;
    gap: 11px;
    color: #6b7a84;
    font-size: 14px;
    font-weight: 700;
}

.cxl-contact-list dd {
    min-width: 0;
    margin: 0;
    color: #1e3545;
    font-size: 15px;
    line-height: 1.75;
    overflow-wrap: anywhere;
}

.cxl-contact-list dd a {
    color: inherit;
    text-decoration: none;
}

.cxl-contact-list dd a:hover {
    color: var(--cxl-blue);
}

.cxl-contact-list__item--note dd {
    color: #587080;
}

.cxl-contact-list__icon {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    border-radius: 10px;
    color: var(--cxl-blue);
    background: rgba(7, 133, 220, .09);
}

.cxl-contact-list__icon svg,
.cxl-contact-map-fallback__pin svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.cxl-contact-info-card__actions {
    display: flex;
    margin-top: auto;
    padding-top: 34px;
    flex-wrap: wrap;
    gap: 12px;
}

.cxl-contact-button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 750;
    line-height: 1;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, color .2s ease, background-color .2s ease;
}

.cxl-contact-button:hover {
    transform: translateY(-2px);
}

.cxl-contact-button--primary {
    color: #fff;
    border-color: #087fc8;
    background: linear-gradient(135deg, #0076c9, #0797df);
    box-shadow: 0 12px 26px rgba(7, 133, 220, .2);
}

.cxl-contact-button--primary:hover {
    color: #fff;
    box-shadow: 0 16px 32px rgba(7, 133, 220, .25);
}

.cxl-contact-button--secondary {
    color: #17668f;
    border-color: #cfdde6;
    background: #fff;
}

.cxl-contact-button--secondary:hover {
    color: var(--cxl-blue);
    border-color: rgba(7, 133, 220, .42);
}

.cxl-contact-form {
    margin-top: 30px;
}

.cxl-contact-form .wpforms-container {
    margin: 0;
}

.cxl-contact-form .wpforms-container .wpforms-field {
    padding: 0 0 18px;
}

.cxl-contact-form .wpforms-container .wpforms-field-label {
    margin: 0 0 8px;
    color: #2a4354;
    font-size: 14px;
    font-weight: 700;
}

.cxl-contact-form .wpforms-container .wpforms-required-label {
    color: #f06445;
}

.cxl-contact-form .wpforms-container input[type="text"],
.cxl-contact-form .wpforms-container input[type="email"],
.cxl-contact-form .wpforms-container input[type="tel"],
.cxl-contact-form .wpforms-container input[type="number"],
.cxl-contact-form .wpforms-container select,
.cxl-contact-form .wpforms-container textarea {
    width: 100%;
    max-width: none;
    min-height: 50px;
    padding: 12px 15px;
    border: 1px solid #dbe5eb;
    border-radius: 12px;
    color: #223948;
    background: #fbfcfd;
    box-shadow: none;
    font-size: 15px;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.cxl-contact-form .wpforms-container textarea {
    min-height: 138px;
    resize: vertical;
}

.cxl-contact-form .wpforms-container input:focus,
.cxl-contact-form .wpforms-container select:focus,
.cxl-contact-form .wpforms-container textarea:focus {
    outline: none;
    border-color: rgba(7, 133, 220, .72);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(7, 133, 220, .1);
}

.cxl-contact-form .wpforms-container .wpforms-field-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 16px;
}

.cxl-contact-form .wpforms-container .wpforms-field {
    grid-column: 1 / -1;
}

.cxl-contact-form .wpforms-container .cxl-form-half {
    grid-column: span 1;
}

.cxl-contact-form .wpforms-container .wpforms-submit-container {
    padding: 4px 0 0;
}

.cxl-contact-form .wpforms-container button[type="submit"],
.cxl-contact-form .wpforms-container input[type="submit"] {
    display: inline-flex;
    min-width: 154px;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #0076c9, #0797df);
    box-shadow: 0 12px 28px rgba(7, 133, 220, .22);
    font-size: 14px;
    font-weight: 750;
    cursor: pointer;
    transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}

.cxl-contact-form .wpforms-container button[type="submit"]:hover,
.cxl-contact-form .wpforms-container input[type="submit"]:hover {
    filter: brightness(.97);
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(7, 133, 220, .28);
}

.cxl-contact-form .wpforms-confirmation-container-full {
    margin: 0;
    padding: 22px 24px;
    border: 1px solid rgba(40, 167, 69, .22);
    border-radius: 14px;
    color: #246338;
    background: #f1fbf4;
}

.cxl-contact-form__missing {
    padding: 26px;
    border: 1px dashed #ccd9e2;
    border-radius: 16px;
    color: #627481;
    background: #f8fafb;
}

.cxl-contact-form__missing strong {
    display: block;
    margin-bottom: 8px;
    color: #263f50;
}

.cxl-contact-form__missing p {
    margin: 0;
    line-height: 1.75;
}

.cxl-contact-map-section {
    padding: 92px 0 104px;
    background: #fff;
}

.cxl-contact-map-heading {
    display: flex;
    margin-bottom: 26px;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
}

.cxl-contact-map-heading > div > p:last-child {
    margin: 15px 0 0;
    color: #687985;
    font-size: 15px;
    line-height: 1.8;
}

.cxl-contact-map-card {
    height: 480px;
    overflow: hidden;
    border: 1px solid rgba(38, 93, 128, .13);
    border-radius: 28px;
    background: #eaf2f6;
    box-shadow: 0 24px 70px rgba(31, 75, 103, .11);
}

.cxl-contact-map-card iframe,
.cxl-contact-map-canvas {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.cxl-contact-map-fallback {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    padding: 48px;
    flex-direction: column;
    text-align: center;
    background:
        linear-gradient(rgba(255, 255, 255, .74), rgba(255, 255, 255, .74)),
        repeating-linear-gradient(0deg, transparent 0 39px, rgba(7, 133, 220, .08) 40px),
        repeating-linear-gradient(90deg, transparent 0 39px, rgba(7, 133, 220, .08) 40px),
        #edf5f8;
}

.cxl-contact-map-fallback__pin {
    display: inline-flex;
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    color: #fff;
    background: linear-gradient(135deg, #0076c9, #0797df);
    box-shadow: 0 16px 34px rgba(7, 133, 220, .24);
}

.cxl-contact-map-fallback__pin svg {
    width: 30px;
    height: 30px;
}

.cxl-contact-map-fallback strong {
    color: #17374c;
    font-size: 22px;
}

.cxl-contact-map-fallback p {
    max-width: 760px;
    margin: 10px 0 18px;
    color: #647886;
    line-height: 1.8;
}

.cxl-contact-map-fallback a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding: 0 22px;
    border-radius: 999px;
    color: #fff;
    background: var(--cxl-blue);
    font-size: 14px;
    font-weight: 700;
}

@media (max-width: 1020px) {
    .cxl-contact-main__grid {
        grid-template-columns: 1fr;
    }

    .cxl-contact-info-card {
        min-height: 0;
    }
}

@media (max-width: 767px) {
    .cxl-contact-main {
        padding: 72px 0 78px;
    }

    .cxl-contact-main__grid {
        gap: 18px;
    }

    .cxl-contact-info-card,
    .cxl-contact-form-card {
        padding: 30px 22px;
        border-radius: 22px;
    }

    .cxl-contact-info-card h2,
    .cxl-contact-form-card h2,
    .cxl-contact-map-heading h2 {
        font-size: 30px;
    }

    .cxl-contact-list {
        margin-top: 28px;
    }

    .cxl-contact-list__item {
        grid-template-columns: 1fr;
        padding: 17px 0;
        gap: 8px;
    }

    .cxl-contact-list dd {
        padding-left: 45px;
        font-size: 14px;
    }

    .cxl-contact-info-card__actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding-top: 26px;
    }

    .cxl-contact-button {
        width: 100%;
        padding-inline: 16px;
    }

    .cxl-contact-form .wpforms-container .wpforms-field-container {
        grid-template-columns: 1fr;
    }

    .cxl-contact-form .wpforms-container .cxl-form-half {
        grid-column: 1 / -1;
    }

    .cxl-contact-form .wpforms-container button[type="submit"],
    .cxl-contact-form .wpforms-container input[type="submit"] {
        width: 100%;
    }

    .cxl-contact-map-section {
        padding: 66px 0 74px;
    }

    .cxl-contact-map-heading {
        align-items: stretch;
        flex-direction: column;
        gap: 22px;
    }

    .cxl-contact-map-heading .cxl-contact-button {
        align-self: flex-start;
        width: auto;
    }

    .cxl-contact-map-card {
        height: 350px;
        border-radius: 22px;
    }

    .cxl-contact-map-fallback {
        padding: 28px 20px;
    }

}
/* CXL_CONTACT_PAGE_V11_REFINEMENT_START */
/*
 * 联系我们页 V1.1：
 * 预计数量与产品类别并排、左侧增加到访提示、地图标题区收紧。
 */
.cxl-contact-form .wpforms-container .cxl-form-half {
    min-width: 0;
}

.cxl-contact-form .wpforms-container .wpforms-field-description {
    color: #7a8993;
    font-size: 12px;
    line-height: 1.65;
}

@media (max-width: 767px) {
    .cxl-contact-list__item--note dd {
        padding-left: 45px;
    }
}
/* CXL_CONTACT_PAGE_V11_REFINEMENT_END */

/* CXL_CONTACT_PAGE_V1_END */

/* CXL_CONTACT_PAGE_V12_FORM_FIELDS_START */
/*
 * 联系我们页 V1.2：
 * 产品类别选择框在桌面端填满半栏，宽度与联系电话输入框一致。
 * 必填状态由 WPForms 字段配置控制，样式无需硬编码星号。
 */
.cxl-contact-form .wpforms-container
.cxl-form-half.wpforms-field-select select,
.cxl-contact-form .wpforms-container
.cxl-form-half select.wpforms-field-medium,
.cxl-contact-form .wpforms-container
.cxl-form-half .choices {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0;
    box-sizing: border-box;
}

.cxl-contact-form .wpforms-container
.cxl-form-half .choices__inner {
    width: 100%;
    min-height: 50px;
    box-sizing: border-box;
}
/* CXL_CONTACT_PAGE_V12_FORM_FIELDS_END */

/* CXL_INNER_HEADER_ARCHIVE_HERO_V1_START */
/*
 * 内页页头使用 sticky，保持在文档流中，滚动固定时不会造成页面跳动。
 * 首页继续保留原来的透明覆盖与滚动转白效果。
 */
.site-header--inner {
    position: sticky;
    z-index: 60;
    top: 0;
    background: rgba(255, 255, 255, .98);
}

.site-header--inner.is-scrolled {
    border-bottom-color: rgba(0, 0, 0, .07);
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 8px 24px rgba(19, 57, 83, .10);
    backdrop-filter: blur(12px);
}

body.admin-bar .site-header--inner {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar .site-header--inner {
        top: 46px;
    }
}
/* CXL_INNER_HEADER_ARCHIVE_HERO_V1_END */

/* CXL_GLOBAL_FOOTER_V1_START */
.site-footer {
    position: relative;
    overflow: hidden;
    color: rgba(226, 236, 244, .72);
    background:
        radial-gradient(circle at 18% 0%, rgba(7, 133, 220, .14), transparent 34%),
        linear-gradient(180deg, #121b24 0%, #0f151b 100%);
}

.site-footer__accent {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(7, 151, 223, .95), transparent);
}

.site-footer__grid {
    grid-template-columns: minmax(250px, 1.35fr) repeat(3, minmax(120px, .72fr)) minmax(260px, 1.35fr);
    align-items: start;
    gap: clamp(34px, 4vw, 62px);
    padding-top: 78px;
    padding-bottom: 70px;
}

.site-footer__desktop {
    display: grid;
}

.site-footer__mobile {
    display: none;
}

.footer-brand {
    display: block;
    align-self: start;
    color: rgba(226, 236, 244, .74);
}

.footer-brand__logo {
    display: inline-flex;
    width: 158px;
    max-width: 100%;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding: 6px 8px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .16);
}

.footer-brand__logo-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.footer-brand h2,
.footer-mobile-brand h2 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.7;
}

.footer-brand__intro,
.footer-mobile-brand > p {
    max-width: 310px;
    margin: 0;
    color: rgba(226, 236, 244, .66);
    font-size: 13px;
    line-height: 1.9;
}

.footer-brand__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.footer-brand__badges span {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 0 11px;
    border: 1px solid rgba(86, 179, 230, .24);
    border-radius: 999px;
    color: rgba(223, 242, 252, .86);
    background: rgba(7, 133, 220, .08);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .02em;
}

.footer-column,
.footer-contact {
    display: block;
}

.footer-column h2,
.footer-contact h2,
.footer-mobile-contact h2 {
    position: relative;
    margin: 0 0 20px;
    padding-bottom: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.footer-column h2::after,
.footer-contact h2::after,
.footer-mobile-contact h2::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: #0a91dc;
    content: "";
}

.footer-menu,
.footer-legal__menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-menu li + li {
    margin-top: 8px;
}

.footer-menu a {
    display: inline-flex;
    color: rgba(226, 236, 244, .68);
    font-size: 13px;
    line-height: 1.7;
    transition: color .2s ease, transform .2s ease;
}

.footer-menu a:hover,
.footer-menu a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible,
.footer-legal a:hover,
.footer-legal a:focus-visible {
    color: #35b2f4;
}

.footer-menu a:hover,
.footer-menu a:focus-visible {
    transform: translateX(3px);
}

.footer-contact__item + .footer-contact__item {
    margin-top: 19px;
}

.footer-contact__item > span {
    display: block;
    margin-bottom: 6px;
    color: rgba(226, 236, 244, .48);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
}

.footer-contact__item a,
.footer-contact__item p {
    display: block;
    margin: 0;
    color: rgba(238, 246, 250, .78);
    font-size: 12px;
    line-height: 1.75;
    word-break: break-word;
}

.footer-contact__item--phone a {
    color: #fff;
    font-size: clamp(20px, 1.65vw, 27px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .01em;
}

.site-footer__bottom {
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, .07);
    font-size: 12px;
    text-align: left;
}

.site-footer__bottom-inner {
    display: flex;
    min-height: 64px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-footer__bottom p {
    margin: 0;
    color: rgba(226, 236, 244, .48);
}

.footer-legal__menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-legal a {
    color: rgba(226, 236, 244, .5);
    transition: color .2s ease;
}

@media (max-width: 1100px) {
    .site-footer__grid {
        grid-template-columns: 1.25fr repeat(3, .72fr) 1.15fr;
        gap: 28px;
    }

    .footer-contact__item--phone a {
        font-size: 20px;
    }
}

@media (max-width: 900px) and (min-width: 768px) {
    .site-footer__grid {
        grid-template-columns: 1.2fr repeat(3, .75fr);
    }

    .footer-contact {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 22px;
        padding-top: 28px;
        border-top: 1px solid rgba(255, 255, 255, .07);
    }

    .footer-contact h2 {
        grid-column: 1 / -1;
        margin-bottom: 0;
    }

    .footer-contact__item + .footer-contact__item {
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .site-footer {
        display: block;
    }

    .site-footer__desktop {
        display: none;
    }

    .site-footer__mobile {
        display: block;
        padding-top: 54px;
        padding-bottom: 28px;
    }

    .footer-mobile-brand {
        padding-bottom: 28px;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .footer-brand__logo {
        width: 150px;
        margin-bottom: 14px;
        padding: 5px 7px;
    }

    .footer-mobile-brand > p {
        max-width: none;
        font-size: 12px;
        line-height: 1.85;
    }

    .footer-mobile-contact {
        padding: 28px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .footer-mobile-contact h2 {
        margin-bottom: 18px;
    }

    .footer-mobile-contact a,
    .footer-mobile-contact p {
        display: block;
        margin: 8px 0 0;
        color: rgba(238, 246, 250, .72);
        font-size: 12px;
        line-height: 1.75;
        word-break: break-word;
    }

    .footer-mobile-contact__phone {
        margin-top: 0 !important;
        color: #fff !important;
        font-size: 24px !important;
        font-weight: 700;
        line-height: 1.2 !important;
    }

    .footer-mobile-menus details {
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .footer-mobile-menus summary {
        position: relative;
        padding: 18px 28px 18px 0;
        color: #fff;
        font-size: 13px;
        font-weight: 700;
        cursor: pointer;
        list-style: none;
    }

    .footer-mobile-menus summary::-webkit-details-marker {
        display: none;
    }

    .footer-mobile-menus summary::before,
    .footer-mobile-menus summary::after {
        position: absolute;
        top: 50%;
        right: 4px;
        width: 12px;
        height: 1.5px;
        border-radius: 999px;
        background: rgba(255, 255, 255, .7);
        content: "";
        transition: transform .2s ease;
    }

    .footer-mobile-menus summary::after {
        transform: rotate(90deg);
    }

    .footer-mobile-menus details[open] summary::after {
        transform: rotate(0deg);
    }

    .footer-menu--mobile {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 16px;
        padding: 0 0 18px;
    }

    .footer-menu--mobile li + li {
        margin-top: 0;
    }

    .footer-menu--mobile a {
        font-size: 12px;
    }

    .site-footer__bottom-inner {
        min-height: 0;
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        padding-top: 22px;
        padding-bottom: calc(82px + env(safe-area-inset-bottom));
    }

    .footer-legal__menu {
        gap: 18px;
    }
}
/* CXL_GLOBAL_FOOTER_V1_END */

/* CXL_FOOTER_V11_ANCHOR_OFFSET_START */
/*
 * 关于我们页的页脚锚点需要避开固定页头。
 * 桌面端页头约 83px，额外保留 47px 视觉余量。
 */
:root {
    --cxl-about-anchor-offset: 130px;
}

#cxl-philosophy-heading,
#cxl-history-heading,
#cxl-partners-heading {
    scroll-margin-top: var(--cxl-about-anchor-offset);
}

body.admin-bar {
    --cxl-about-anchor-offset: 162px;
}

@media (max-width: 782px) {
    :root {
        --cxl-about-anchor-offset: 96px;
    }

    body.admin-bar {
        --cxl-about-anchor-offset: 140px;
    }
}
/* CXL_FOOTER_V11_ANCHOR_OFFSET_END */

/* CXL_FOOTER_V12_BACK_TO_TOP_START */
.cxl-back-to-top {
    position: fixed;
    z-index: 80;
    right: max(24px, env(safe-area-inset-right));
    bottom: max(24px, env(safe-area-inset-bottom));
    display: inline-flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    color: #fff;
    background: rgba(13, 29, 42, .9);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .24);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
    transition:
        opacity 180ms ease,
        visibility 180ms ease,
        transform 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cxl-back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.cxl-back-to-top:hover,
.cxl-back-to-top:focus-visible {
    border-color: rgba(255, 255, 255, .42);
    background: #087fd0;
    transform: translateY(-2px);
}

.cxl-back-to-top:focus-visible {
    outline: 3px solid rgba(7, 133, 220, .3);
    outline-offset: 3px;
}

.cxl-back-to-top svg {
    display: block;
    width: 24px;
    height: 24px;
    fill: currentColor;
}

@media (max-width: 767px) {
    .cxl-back-to-top {
        right: 16px;
        bottom: calc(72px + env(safe-area-inset-bottom));
        width: 46px;
        height: 46px;
    }

    .cxl-back-to-top svg {
        width: 22px;
        height: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cxl-back-to-top {
        transition: none;
    }
}
/* CXL_FOOTER_V12_BACK_TO_TOP_END */
