.xz-page-body {
    --xz-page-gutter: 60px;
    margin: 0;
    background: #fff;
    color: #111;
    font-family: "Microsoft YaHei", Arial, Helvetica, sans-serif;
}

.xz-page-body * {
    box-sizing: border-box;
}

.xz-site-shell {
    width: 100%;
    min-width: 0;
    margin: 0;
    background: #fff;
    overflow: visible;
}

.xz-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 78px;
    display: flex;
    align-items: center;
    background: var(--xz-nav-bg, #030303);
    border-bottom: 1px solid var(--xz-nav-border, rgba(255,255,255,.18));
}

.xz-site-logo {
    width: 260px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: clamp(22px, 4vw, 72px);
    text-decoration: none;
}

.xz-logo-mark {
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.xz-logo-mark svg {
    width: 52px;
    height: 52px;
    display: block;
    overflow: visible;
}

.xz-logo-mark img {
    max-width: 190px;
    max-height: 54px;
    object-fit: contain;
    display: block;
}

.xz-logo-mark.has-image {
    flex-basis: auto;
    width: auto;
    min-width: 54px;
}

.xz-logo-mark.has-image svg {
    display: none;
}

.xz-site-logo.has-logo-image .xz-logo-text {
    display: none;
}

.xz-logo-house,
.xz-logo-shield,
.xz-logo-shield-line {
    fill: none;
    stroke: #ff6b1a;
    stroke-width: 4.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.xz-logo-shield,
.xz-logo-shield-line {
    stroke-width: 3.8;
}

.xz-logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #fff;
    letter-spacing: 0;
    white-space: nowrap;
}

.xz-logo-text strong {
    color: #ff6b1a;
    font-size: 21px;
    line-height: 1.05;
    font-weight: 900;
}

.xz-logo-text small {
    position: relative;
    margin-top: 6px;
    padding-left: 18px;
    color: #ff6b1a;
    font-size: 7px;
    line-height: 1;
    font-weight: 700;
    transform: scale(.92);
    transform-origin: left center;
}

.xz-logo-text small:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 14px;
    height: 1px;
    background: #ff6b1a;
}

.xz-site-nav {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
}

@media (min-width: 1025px) {
    .xz-site-header {
        justify-content: flex-start;
        padding: 0 0 0 260px;
    }

    .xz-site-logo {
        position: absolute;
        left: 0;
        top: 0;
        z-index: 2;
    }

    .xz-site-nav {
        flex: 1 1 auto;
        min-width: 0;
        width: auto;
        max-width: none;
        gap: clamp(22px, 2.2vw, 34px);
    }

    .xz-search-button {
        position: relative;
        right: auto;
        top: auto;
        flex: 0 0 56px;
        z-index: 2;
        margin-left: 22px;
        margin-right: clamp(18px, 4vw, 72px);
        transform: none;
    }
}

@media (min-width: 1025px) and (max-width: 1280px) {
    .xz-site-header {
        padding-left: 230px;
    }

    .xz-site-nav {
        gap: 20px;
    }

    .xz-nav-item > a,
    .xz-site-nav > a {
        font-size: 14px;
    }
}

.xz-nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.xz-nav-item > a,
.xz-site-nav > a {
    color: var(--xz-nav-text, #fff) !important;
    font-size: 16px;
    font-weight: 700;
    line-height: 78px;
    text-decoration: none;
    white-space: nowrap;
}

.xz-nav-item.active > a,
.xz-nav-item > a:hover,
.xz-site-nav > a.active,
.xz-site-nav > a:hover {
    color: var(--xz-nav-active, #ff4b20) !important;
}

.xz-nav-sub {
    position: absolute;
    left: 50%;
    top: 100%;
    z-index: 1001;
    min-width: 150px;
    padding: 8px 0;
    background: var(--xz-nav-sub-bg, rgba(0,0,0,.92));
    border: 1px solid rgba(255,255,255,.12);
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: opacity .18s ease, visibility .18s ease;
}

.xz-nav-item:hover .xz-nav-sub {
    opacity: 1;
    visibility: visible;
}

.xz-site-nav .xz-nav-item:nth-child(2) .xz-nav-sub {
    display: none !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.xz-nav-sub a {
    display: block;
    padding: 9px 18px;
    color: var(--xz-nav-text, #fff) !important;
    font-size: 14px;
    line-height: 1.3;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
}

.xz-nav-sub a:hover {
    color: var(--xz-nav-active, #ff6b1a) !important;
    background: var(--xz-nav-sub-hover-bg, rgba(255,255,255,.08));
}

.xz-page-subnav {
    min-height: 48px;
    display: none !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 160px;
    padding: 8px 0;
    background: #2a2a2a;
    border-top: 1px solid rgba(255,255,255,.08);
    overflow: visible;
}

.xz-page-subnav:empty {
    display: none;
}

.xz-page-subnav a {
    width: 100%;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    color: #fff !important;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    white-space: normal;
}

.xz-page-subnav a.active,
.xz-page-subnav a:hover {
    color: #ff6b1a !important;
}

.xz-search-button {
    width: 56px;
    height: 56px;
    margin-right: clamp(18px, 4vw, 72px);
    position: relative;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.xz-search-button:before {
    content: "";
    position: absolute;
    left: 20px;
    top: 19px;
    width: 12px;
    height: 12px;
    border: 2px solid var(--xz-nav-text, #fff);
    border-radius: 50%;
}

.xz-search-button:after {
    content: "";
    position: absolute;
    left: 33px;
    top: 33px;
    width: 9px;
    height: 2px;
    background: var(--xz-nav-text, #fff);
    transform: rotate(45deg);
    transform-origin: left center;
}

.xz-home {
    background: #fff;
}

.xz-hero,
.xz-hero .bx-wrapper,
.xz-hero .bx-viewport,
.xz-hero-slider,
.xz-hero-slider li {
    height: calc(100vh - 78px) !important;
    min-height: 620px;
}

.xz-hero .bx-wrapper {
    margin: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
}

.xz-hero .bx-viewport {
    left: 0;
    border: 0;
    box-shadow: none;
}

.xz-hero-slide {
    position: relative;
    overflow: hidden;
}

.xz-hero-image-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.xz-hero-slide-tech {
    background:
        radial-gradient(circle at 72% 44%, rgba(0,150,255,.9) 0 16%, transparent 38%),
        radial-gradient(circle at 74% 48%, rgba(255,102,25,.92) 0 7%, transparent 25%),
        linear-gradient(110deg, #bfe7f5 0%, #c6e8f3 38%, #59b4ef 62%, #0355c8 100%);
}

.xz-hero-slide-tech:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,.25), transparent 45%),
        repeating-radial-gradient(circle at 73% 48%, rgba(255,255,255,.3) 0 2px, transparent 2px 26px);
    opacity: .72;
}

.xz-hero-copy-left {
    position: absolute;
    left: 204px;
    top: 118px;
    z-index: 2;
}

.xz-brand-pill {
    display: inline-flex;
    align-items: center;
    height: 78px;
    padding: 0 26px;
    border-radius: 15px;
    background: linear-gradient(90deg, #ff4e00, rgba(255, 118, 38, .4));
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.xz-hero-copy h1 {
    margin: 28px 0 0;
    color: #050505;
    font-size: 35px;
    line-height: 1.34;
    font-weight: 900;
    letter-spacing: 1px;
}

.xz-hero-copy i {
    display: block;
    width: 28px;
    height: 3px;
    margin-top: 18px;
    background: #000;
}

.xz-hero-device {
    position: absolute;
    right: 135px;
    top: 115px;
    z-index: 2;
    width: 290px;
    height: 245px;
}

.xz-orbit {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 18px solid rgba(0,178,255,.45);
    box-shadow: 0 0 28px rgba(0,164,255,.55), inset 0 0 22px rgba(255,255,255,.4);
    transform: rotate(-18deg) skew(-8deg);
}

.xz-orbit-b {
    inset: 35px 16px;
    border-color: rgba(255,115,32,.78);
    filter: blur(.2px);
}

.xz-house-icon {
    position: absolute;
    left: 72px;
    top: 60px;
    width: 150px;
    height: 122px;
    border: 13px solid #ff7b1b;
    border-top: 0;
    border-radius: 0 0 24px 24px;
    filter: drop-shadow(0 0 12px rgba(255,134,34,.65));
}

.xz-house-icon:before {
    content: "";
    position: absolute;
    left: 16px;
    top: -62px;
    width: 106px;
    height: 106px;
    border-left: 13px solid #ff7b1b;
    border-top: 13px solid #ff7b1b;
    border-radius: 18px 0 0 0;
    transform: rotate(45deg);
}

.xz-house-icon:after {
    content: "";
    position: absolute;
    left: 58px;
    top: 30px;
    width: 38px;
    height: 48px;
    background: #ff7b1b;
    clip-path: polygon(50% 0, 92% 18%, 82% 72%, 50% 100%, 18% 72%, 8% 18%);
}

.xz-float-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.85);
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 12px;
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(5px);
    font-weight: 800;
}

.xz-ai {
    left: -26px;
    top: 15px;
    width: 50px;
    height: 50px;
    transform: rotate(-12deg);
}

.xz-location,
.xz-key {
    right: -28px;
    width: 48px;
    height: 48px;
}

.xz-location {
    top: 60px;
}

.xz-key {
    bottom: 8px;
}

.xz-location:before,
.xz-key:before {
    content: "";
    width: 18px;
    height: 18px;
    border: 4px solid rgba(255,255,255,.72);
    border-radius: 50%;
}

.xz-key:after {
    content: "";
    position: absolute;
    width: 18px;
    height: 4px;
    background: rgba(255,255,255,.72);
    right: 8px;
}

.xz-hero-slide-family {
    background:
        linear-gradient(90deg, rgba(0,0,0,.12), rgba(255,255,255,.12)),
        url("/upload/1/cms/content/1686033073949.jpg") left center/33.4% 100% no-repeat,
        url("/upload/1/cms/content/1686033094169.jpg") center/33.4% 100% no-repeat,
        url("/upload/1/cms/content/1686033105353.jpg") right center/33.4% 100% no-repeat,
        linear-gradient(90deg, #d9e9f3, #f4e4d4);
}

.xz-family-mask {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,.28), transparent 26%, transparent 70%, rgba(0,0,0,.18)),
        linear-gradient(104deg, transparent 0 37%, rgba(0,183,255,.86) 38%, rgba(255,255,255,.25) 40%, transparent 43% 59%, rgba(0,183,255,.86) 60%, rgba(255,255,255,.25) 62%, transparent 65%);
}

.xz-family-text {
    position: absolute;
    left: 32%;
    top: 88px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
    font-weight: 900;
}

.xz-family-text span {
    font-size: 21px;
    text-shadow: 0 3px 10px rgba(0,0,0,.32);
}

.xz-family-text strong {
    padding: 6px 14px;
    border-radius: 999px;
    background: #ff5722;
    font-size: 25px;
    line-height: 1;
}

.xz-band-title {
    width: calc(100% - 90px);
    margin: 34px auto 0;
    padding: 15px 20px 12px;
    background: #efefef;
    text-align: center;
}

.xz-band-title h2 {
    margin: 0;
    color: #000;
    font-size: 23px;
    line-height: 1.2;
    font-weight: 900;
}

.xz-band-title p {
    margin: 4px 0 0;
    color: #111;
    font-size: 10px;
    line-height: 1.4;
}

.xz-advantage-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 48px;
    width: calc(100% - 230px);
    margin: 32px auto 30px;
    text-align: center;
}

.xz-advantage-list article {
    min-width: 0;
}

.xz-round-img {
    width: 166px;
    height: 166px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,.35);
}

.xz-round-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.xz-round-monitor {
    background-image: url("/upload/1/cms/content/1686215506299.jpg");
}

.xz-round-home {
    background:
        radial-gradient(circle at 55% 36%, rgba(35,210,255,.55), transparent 33%),
        url("/upload/1/cms/content/1686218113888.jpeg") center/cover no-repeat;
}

.xz-round-rescue {
    background-image: url("/upload/1/cms/content/1686218500020.jpeg");
}

.xz-advantage-list h3 {
    margin: 0;
    color: #000;
    font-size: 21px;
    font-weight: 900;
    line-height: 1.25;
}

.xz-advantage-list p {
    margin: 7px 0 0;
    color: #111;
    font-size: 12px;
}

.xz-partner-title {
    margin-top: 28px;
}

.xz-partners {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    align-items: stretch;
    gap: 26px;
    width: calc(100% - 130px);
    margin: 22px auto 34px;
}

.xz-partner-logo {
    display: flex;
    min-height: 118px;
    padding: 14px 10px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    color: #b21d1d;
    font-weight: 900;
    text-align: center;
}

.xz-partner-logo img {
    max-width: 132px;
    max-height: 58px;
    object-fit: contain;
    display: block;
}

.xz-partner-logo strong {
    color: #222;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 900;
}

.xz-partner-logo small {
    color: #666;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 400;
    white-space: normal;
}

.xz-tsinghua {
    flex-direction: column;
    align-items: flex-start;
    color: #8a257d;
    font-size: 30px;
    font-family: SimSun, serif;
}

.xz-tsinghua small {
    color: #8a257d;
    font-size: 12px;
    font-family: Georgia, serif;
    font-weight: 400;
}

.xz-pku {
    color: #c5161d;
    font-size: 30px;
}

.xz-cuill,
.xz-red-cross {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 2px solid #d7b2a7;
    color: #c4a59b;
    font-size: 13px;
}

.xz-red-cross {
    position: relative;
    border-color: #c92332;
}

.xz-red-cross:before,
.xz-red-cross:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 28px;
    height: 8px;
    background: #c92332;
    transform: translate(-50%, -50%);
}

.xz-red-cross:after {
    width: 8px;
    height: 28px;
}

.xz-site-footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px 36px;
    min-height: 210px;
    padding: 50px var(--xz-page-gutter) 38px;
    background: #4e4e4e;
    color: #c9c9c9;
}

.xz-site-footer h3 {
    margin: 0 0 13px;
    color: #dcdcdc;
    font-size: 17px;
    font-weight: 800;
}

.xz-site-footer a,
.xz-site-footer p,
.xz-footer-qrcode span {
    display: block;
    margin: 0 0 7px;
    color: #c8c8c8 !important;
    font-size: 12px;
    line-height: 1.4;
    text-decoration: none;
}

.xz-footer-contact strong {
    display: block;
    margin: -2px 0 2px;
    color: #efefef;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 900;
}

.xz-footer-contact {
    min-width: 200px;
}

.xz-message {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 28px;
    margin-top: 8px !important;
    border-radius: 4px;
    background: rgba(255,255,255,.15);
}

.xz-message:before {
    content: "";
    width: 14px;
    height: 10px;
    margin-right: 5px;
    border: 1px solid #d0d0d0;
    border-radius: 2px;
}

.xz-footer-qrcode {
    text-align: center;
}

.xz-footer-qrcode img {
    width: 82px;
    height: 82px;
    object-fit: cover;
    background: #fff;
}

.xz-footer-copyright {
    grid-column: 1 / -1;
    margin-top: -10px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.12);
    color: #bfbfbf;
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
}

.xz-custom-content {
    background: #fff;
    padding: 0;
}

.xz-page-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #fff;
}

.xz-page-hero img {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
}

.xz-page-hero h1 {
    position: absolute;
    left: 42px;
    bottom: 34px;
    margin: 0;
    color: #fff;
    font-size: 28px;
    line-height: 1.35;
    font-weight: 900;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .38);
}

.xz-managed-page {
    min-height: 320px;
    padding: 0;
}

.xz-custom-inner {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 0 var(--xz-page-gutter);
    box-sizing: border-box;
    color: #222;
    font-size: 16px;
    line-height: 1.8;
}

.xz-custom-inner:empty {
    display: none;
}

.xz-custom-inner img,
.xz-custom-inner video,
.xz-custom-inner iframe {
    max-width: 100%;
}

.xz-custom-inner img {
    height: auto;
}

.xz-custom-inner img[width],
.xz-custom-inner img[style*="width"] {
    max-width: 100% !important;
    height: auto !important;
}

.xz-custom-inner table {
    max-width: 100%;
}

.xz-page-canvas {
    width: min(100%, 1180px);
    margin: 0 auto;
    background: #fff;
}

.xz-page-canvas.is-narrow {
    width: min(100%, 980px);
}

.xz-page-canvas.is-wide {
    width: min(100%, 1360px);
}

.xz-full-image {
    display: block;
    width: 100%;
    height: auto;
}

.xz-section-bar {
    width: calc(100% - 80px);
    margin: 34px auto 26px;
    padding: 15px 20px 12px;
    background: #efefef;
    color: #000;
    text-align: center;
}

.xz-section-bar h2,
.xz-section-bar h3 {
    margin: 0;
    color: #000;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 900;
}

.xz-section-bar p {
    margin: 4px 0 0;
    color: #333;
    font-size: 12px;
    line-height: 1.5;
}

.xz-image-stack {
    display: grid;
    gap: 30px;
    width: calc(100% - 80px);
    margin: 0 auto 42px;
}

.xz-image-stack img {
    width: 100%;
    height: auto;
    display: block;
}

.xz-rich-text {
    width: calc(100% - (var(--xz-page-gutter) * 2));
    margin: 0 auto 42px;
    color: #222;
    font-size: 16px;
    line-height: 1.9;
}

.xz-rich-text p {
    margin: 0 0 12px;
}

.xz-custom-inner .xz-rich-text {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.xz-two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
    width: calc(100% - 80px);
    margin: 0 auto 42px;
}

.xz-two-col img {
    width: 100%;
    height: auto;
    display: block;
}

.xz-about-subnav {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    padding: 0 var(--xz-page-gutter);
    background: #2b2b2b;
    overflow-x: auto;
    scrollbar-width: none;
}

.xz-about-subnav::-webkit-scrollbar {
    display: none;
}

.xz-about-subnav a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    color: #fff !important;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.xz-about-subnav a.active {
    color: var(--xz-nav-active) !important;
}

.xz-about-page {
    min-height: 420px;
    background: #fff;
}

.xz-about-banner {
    width: 100%;
    overflow: hidden;
    background: #f3f4f6;
}

.xz-about-banner img {
    display: block;
    width: 100%;
    height: clamp(260px, 38vw, 540px);
    object-fit: cover;
}

.xz-about-title {
    width: calc(100% - (var(--xz-page-gutter) * 2));
    margin: 34px auto 32px;
    padding: 18px 20px 16px;
}

.xz-about-title h2,
.xz-about-title h3 {
    font-size: 22px;
    line-height: 1.25;
}

.xz-about-profile {
    width: calc(100% - 96px);
    max-width: 1180px;
    margin: 0 auto 54px;
    color: #333;
    font-size: 13px;
    line-height: 1.68;
}

.xz-about-profile p {
    margin: 0 0 3px;
    text-indent: 2em;
}

.xz-about-culture {
    width: calc(100% - 56px);
    max-width: 880px;
    margin: 0 auto 42px;
    color: #222;
    text-align: center;
}

.xz-culture-line {
    margin: 0 0 23px;
}

.xz-culture-line strong,
.xz-culture-values h3 {
    display: block;
    margin: 0 0 8px;
    color: #000;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 900;
}

.xz-culture-line p {
    margin: 0;
    color: #333;
    font-size: 13px;
    line-height: 1.55;
}

.xz-culture-values {
    margin-top: 30px;
}

.xz-culture-values > div {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px 20px;
    margin-top: 11px;
}

.xz-culture-values span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    border: 1px solid #bfc3c8;
    border-radius: 50%;
    background: #f5f5f5;
    color: #111;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 700;
    text-align: center;
}

.xz-about-contact {
    display: grid;
    grid-template-columns: minmax(420px, 42%) minmax(0, 1fr);
    gap: 42px;
    width: calc(100% - (var(--xz-page-gutter) * 2));
    max-width: 1280px;
    margin: 0 auto 92px;
    color: #333;
}

.xz-contact-map {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 3;
    background: #e5e5e5;
    overflow: hidden;
}

.xz-contact-map img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
}

.xz-contact-info h3 {
    margin: 8px 0 24px;
    color: #111;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 900;
}

.xz-contact-info p {
    display: flex;
    align-items: flex-start;
    margin: 0 0 18px;
    color: #333;
    font-size: 14px;
    line-height: 1.7;
}

.xz-contact-info strong {
    color: #222;
    font-weight: 800;
    white-space: nowrap;
}

.xz-contact-icon {
    flex: 0 0 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    margin: 3px 6px 0 0;
    color: #222;
    font-size: 15px;
    line-height: 1;
}

.xz-contact-traffic {
    margin-top: 14px;
    padding-left: 0;
}

.xz-contact-traffic p {
    margin-bottom: 6px;
    padding-left: 27px;
}

.xz-contact-traffic p:first-child {
    padding-left: 0;
    margin-bottom: 9px;
}

.xz-page-empty {
    width: min(100% - 48px, 1180px);
    margin: 40px auto;
    padding: 72px 20px;
    color: #909399;
    text-align: center;
    border: 1px dashed #dcdfe6;
    background: #fafafa;
}

.xz-lead-section {
    width: calc(100% - 90px);
    margin: 34px auto 0;
    padding: 0 0 58px;
    background: #fff;
}

.xz-lead-title {
    margin-bottom: 30px;
    padding: 17px 20px 14px;
    background: #efefef;
    color: #000;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 900;
    text-align: center;
}

.xz-lead-form {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    color: #222;
    font-size: 14px;
}

.xz-lead-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 18px 120px;
}

.xz-lead-form label {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr) 22px;
    align-items: center;
    gap: 8px;
    min-height: 34px;
}

.xz-lead-form span {
    color: #111;
    text-align: right;
    white-space: nowrap;
}

.xz-lead-form input,
.xz-lead-form select,
.xz-lead-form textarea {
    width: 100%;
    min-width: 0;
    height: 28px;
    padding: 4px 8px;
    border: 1px solid #d9d9d9;
    border-radius: 0;
    background: #fff;
    color: #222;
    font-size: 13px;
    line-height: 1.4;
    outline: none;
}

.xz-lead-form input:focus,
.xz-lead-form select:focus,
.xz-lead-form textarea:focus {
    border-color: #2f7df6;
}

.xz-lead-form em {
    color: #111;
    font-style: normal;
}

.xz-lead-note {
    color: #e02424 !important;
    font-size: 12px;
    line-height: 1.3;
    white-space: nowrap;
}

.xz-lead-textarea {
    grid-row: span 2;
    align-items: start !important;
}

.xz-lead-textarea span {
    padding-top: 7px;
}

.xz-lead-textarea textarea {
    height: 92px;
    resize: vertical;
}

.xz-lead-stack {
    display: grid;
    gap: 18px;
}

.xz-lead-stack label {
    grid-template-columns: 92px minmax(0, 1fr) minmax(110px, auto);
}

.xz-region-label {
    grid-template-columns: 92px minmax(0, 1fr) 0 !important;
}

.xz-region-picker {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    min-width: 0;
}

.xz-region-picker select {
    width: 100%;
}

.xz-lead-code {
    width: 64px;
    height: 28px;
    cursor: pointer;
    border: 1px solid #ddd;
    background: #fff;
    object-fit: cover;
}

.xz-lead-actions {
    margin-top: 26px;
    display: flex;
    justify-content: center;
    padding-left: 0;
}

.xz-lead-actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    height: 34px;
    padding: 0 18px;
    border: 0;
    border-radius: 4px;
    background: #1d6dff;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.xz-lead-actions button:disabled {
    cursor: not-allowed;
    opacity: .65;
}

.xz-lead-message {
    min-height: 20px;
    margin: 10px 0 0;
    color: #666;
    text-align: center;
}

.xz-lead-message.is-success {
    color: #079455;
}

.xz-lead-message.is-error {
    color: #d93025;
}

.xz-product-page,
.xz-product-detail {
    background: #fff;
}

.xz-product-tabs {
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 34px;
    padding: 0 var(--xz-page-gutter);
    background: #2b2b2b;
    overflow-x: auto;
    scrollbar-width: none;
}

.xz-product-tabs::-webkit-scrollbar {
    display: none;
}

.xz-product-page > .xz-product-tabs,
.xz-product-detail > .xz-product-tabs,
.xz-solution-detail > .xz-solution-tabs {
    display: none;
}

.xz-product-page.xz-solution-page > .xz-solution-tabs {
    display: flex;
}

.xz-product-tabs a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    color: #fff !important;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.xz-product-tabs a.active,
.xz-product-tabs a:hover {
    color: #ff4b20 !important;
}

.xz-product-hero {
    width: 100%;
    background: #f6f0e8;
    overflow: hidden;
}

.xz-product-hero img {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center;
}

.xz-product-main {
    width: 100%;
    padding: 24px var(--xz-page-gutter) 64px;
    background: #fff;
}

.xz-product-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 14px;
    color: #555;
    font-size: 12px;
    line-height: 1.4;
}

.xz-product-breadcrumb a {
    color: #1c73e8 !important;
    text-decoration: none;
}

.xz-product-intro {
    margin: 0 0 22px;
    color: #222;
    font-size: 15px;
    line-height: 1.8;
}

.xz-product-intro:empty {
    display: none;
}

.xz-product-intro img,
.xz-product-rich img {
    max-width: 100%;
    height: auto;
}

.xz-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px 26px;
    margin: 0 0 34px;
}

.xz-product-card {
    min-width: 0;
    border: 1px solid #d9d9d9;
    background: #fff;
}

.xz-product-card a {
    display: block;
    color: #111 !important;
    text-decoration: none;
}

.xz-product-card figure {
    aspect-ratio: 1 / .86;
    margin: 0;
    background: #f4f4f4;
    border-bottom: 1px solid #e3e3e3;
    overflow: hidden;
}

.xz-product-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .25s ease;
}

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

.xz-product-card h2 {
    height: 38px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    color: #111;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 800;
    text-align: center;
}

.xz-product-pages {
    display: flex;
    justify-content: center;
    min-height: 34px;
}

.xz-product-pages .pages {
    width: auto;
    margin: 0;
}

.xz-product-pages .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.xz-product-pages .page-item {
    min-width: 28px;
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 9px;
    border: 1px solid #e6eaf2;
    border-radius: 6px;
    background: #fff;
    color: #607086 !important;
    font-size: 12px;
    line-height: 1;
    text-decoration: none;
}

.xz-product-pages .page-item:hover {
    border-color: #1d6dff;
    color: #1d6dff !important;
}

.xz-product-summary {
    display: grid;
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    margin: 0 0 34px;
}

.xz-product-gallery {
    min-width: 0;
}

.xz-product-main-image {
    aspect-ratio: 1 / 1;
    border: 1px solid #e0e0e0;
    background: #f5f5f5;
    overflow: hidden;
}

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

.xz-product-thumbs {
    display: grid;
    grid-template-columns: 24px repeat(4, 48px) 24px;
    gap: 10px;
    align-items: center;
    margin-top: 16px;
}

.xz-product-thumbs button {
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid #e2e6ef;
    background: #f4f6fa;
    cursor: pointer;
}

.xz-product-thumbs button.active {
    border-color: #ff4b20;
}

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

.xz-product-thumbs .xz-thumb-nav {
    width: 24px;
    height: 48px;
    position: relative;
    border: 0;
    background: transparent;
}

.xz-thumb-nav:before {
    content: "";
    position: absolute;
    left: 8px;
    top: 19px;
    width: 9px;
    height: 9px;
    border-left: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(45deg);
}

.xz-thumb-nav.next:before {
    left: 5px;
    transform: rotate(-135deg);
}

.xz-product-info {
    min-width: 0;
    padding-top: 8px;
}

.xz-product-title-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #dedede;
}

.xz-product-title-row h1 {
    margin: 0;
    color: #111;
    font-size: 23px;
    line-height: 1.35;
    font-weight: 900;
}

.xz-product-title-row span {
    flex: 0 0 auto;
    color: #c8c8c8;
    font-size: 18px;
    font-weight: 900;
}

.xz-product-model {
    margin: 16px 0 8px;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 700;
}

.xz-product-desc {
    color: #333;
    font-size: 14px;
    line-height: 1.85;
}

.xz-product-desc p {
    margin: 0 0 8px;
}

.xz-product-feature-list {
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
    color: #333;
    font-size: 14px;
    line-height: 1.75;
}

.xz-product-feature-list li:before {
    content: "★";
    margin-right: 4px;
    color: #333;
}

.xz-product-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
}

.xz-consult-btn,
.xz-share-btn {
    min-width: 94px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border-radius: 0;
    border: 1px solid #1d6dff;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.xz-consult-btn {
    background: #1d6dff;
    color: #fff !important;
}

.xz-share-btn {
    background: #fff;
    color: #1d6dff;
}

.xz-share-btn:before {
    content: "";
    width: 14px;
    height: 14px;
    margin-right: 6px;
    background:
        radial-gradient(circle at 3px 3px, currentColor 0 2px, transparent 2.2px),
        radial-gradient(circle at 11px 7px, currentColor 0 2px, transparent 2.2px),
        radial-gradient(circle at 4px 12px, currentColor 0 2px, transparent 2.2px);
    border-left: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: skewY(-28deg);
}

.xz-share-message {
    min-height: 20px;
    margin: 10px 0 0;
    color: #1d6dff;
    font-size: 13px;
}

.xz-product-detail-content {
    margin-top: 28px;
}

.xz-product-detail-content h2 {
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #dcdcdc;
    color: #111;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 900;
}

.xz-product-rich {
    color: #222;
    font-size: 15px;
    line-height: 1.9;
}

.xz-product-rich:empty {
    min-height: 260px;
    background: #e5e5e5;
}

.xz-product-rich p {
    margin: 0 0 12px;
}

.xz-solution-page,
.xz-solution-detail {
    background: #fff;
}

.xz-solution-grid {
    grid-template-columns: repeat(2, minmax(0, 360px));
    justify-content: start;
    gap: 28px 36px;
}

.xz-solution-card figure {
    aspect-ratio: 1.45 / 1;
}

.xz-solution-detail-hero {
    position: relative;
    width: 100%;
    background: #111;
    overflow: hidden;
}

.xz-solution-detail-hero img {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    min-height: 0;
    object-fit: contain;
    object-position: center;
}

.xz-solution-detail-hero h1 {
    position: absolute;
    left: var(--xz-page-gutter);
    bottom: 34px;
    margin: 0;
    color: #fff;
    font-size: 28px;
    line-height: 1.35;
    font-weight: 900;
    text-shadow: 0 3px 12px rgba(0,0,0,.48);
}

.xz-solution-summary {
    margin: 4px 0 18px;
    color: #333;
    font-size: 15px;
    line-height: 1.9;
}

.xz-solution-actions {
    margin: 0 0 22px;
}

.xz-solution-detail-content {
    margin-top: 12px;
}

body {
    min-width: 0;
}

img {
    max-width: 100%;
}

@media (max-width: 1024px) {
    .xz-page-body {
        --xz-page-gutter: 28px;
    }

    .xz-site-shell {
        width: 100%;
        margin: 0;
    }

    .xz-site-header {
        height: auto;
        min-height: 56px;
        flex-wrap: wrap;
        padding: 0 12px 8px;
    }

    .xz-site-logo {
        width: auto;
        height: 56px;
        padding-left: 0;
        margin-right: auto;
        gap: 7px;
    }

    .xz-logo-mark {
        flex: 0 0 42px;
        width: 42px;
        height: 42px;
    }

    .xz-logo-mark svg {
        width: 40px;
        height: 40px;
    }

    .xz-logo-mark img {
        max-width: 150px;
        max-height: 40px;
    }

    .xz-logo-mark.has-image {
        min-width: 42px;
    }

    .xz-logo-text strong {
        font-size: 18px;
    }

    .xz-logo-text small {
        margin-top: 4px;
        font-size: 6px;
    }

    .xz-site-nav {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 8px;
        overflow-x: auto;
        overflow-y: visible;
        padding: 0 2px;
        scrollbar-width: none;
    }

    .xz-site-nav::-webkit-scrollbar {
        display: none;
    }

    .xz-nav-item,
    .xz-nav-item > a,
    .xz-site-nav > a {
        font-size: 14px;
        line-height: 38px;
        height: 38px;
    }

    .xz-nav-item > a,
    .xz-site-nav > a {
        padding: 0 8px;
    }

    .xz-search-button {
        width: 44px;
        height: 44px;
        margin-right: 0;
        order: 2;
        flex: 0 0 44px;
    }

    .xz-search-button:before {
        left: 14px;
        top: 13px;
    }

    .xz-search-button:after {
        left: 27px;
        top: 27px;
    }

    .xz-nav-sub {
        left: 0;
        top: 38px;
        min-width: 132px;
        transform: none;
    }

    .xz-nav-item:focus-within .xz-nav-sub {
        opacity: 1;
        visibility: visible;
    }

    .xz-page-subnav {
        width: min(180px, 100%);
        min-height: 0;
        padding: 6px 0;
    }

    .xz-page-subnav a {
        min-height: 40px;
        font-size: 13px;
    }

    .xz-hero,
    .xz-hero .bx-wrapper,
    .xz-hero .bx-viewport,
    .xz-hero-slider,
    .xz-hero-slider li {
        height: calc(100vh - 78px) !important;
        min-height: 560px;
    }

    .xz-hero-copy-left {
        left: 32px;
        top: 70px;
    }

    .xz-brand-pill {
        height: 56px;
        font-size: 30px;
    }

    .xz-hero-copy h1 {
        font-size: 27px;
    }

    .xz-hero-device {
        right: 15px;
        top: 140px;
        transform: scale(.72);
        transform-origin: top right;
    }

    .xz-family-text {
        left: 22px;
        right: 22px;
        top: 70px;
        flex-wrap: wrap;
    }

    .xz-family-text strong {
        font-size: 21px;
    }

    .xz-band-title,
    .xz-partners,
    .xz-advantage-list,
    .xz-lead-section,
    .xz-page-canvas,
    .xz-section-bar,
    .xz-image-stack,
    .xz-two-col,
    .xz-about-profile,
    .xz-about-culture,
    .xz-about-contact {
        width: calc(100% - 32px);
    }

    .xz-custom-inner {
        width: 100%;
    }

    .xz-rich-text {
        width: calc(100% - (var(--xz-page-gutter) * 2));
    }

    .xz-two-col {
        grid-template-columns: 1fr;
    }

    .xz-about-subnav {
        justify-content: flex-start;
        gap: 22px;
    }

    .xz-about-banner img {
        height: clamp(220px, 44vw, 340px);
    }

    .xz-about-title {
        margin: 24px auto 22px;
        padding: 12px 16px 11px;
    }

    .xz-about-title h2,
    .xz-about-title h3 {
        font-size: 18px;
    }

    .xz-about-contact {
        grid-template-columns: minmax(230px, 258px) minmax(0, 1fr);
        gap: 24px;
        width: calc(100% - 56px);
        max-width: 630px;
        margin-bottom: 64px;
    }

    .xz-contact-info h3 {
        margin-bottom: 14px;
        font-size: 16px;
    }

    .xz-contact-info p {
        margin-bottom: 10px;
        font-size: 12px;
        line-height: 1.55;
    }

    .xz-advantage-list {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .xz-round-img {
        width: 138px;
        height: 138px;
    }

    .xz-partners {
        flex-wrap: wrap;
        justify-content: center;
        gap: 26px;
    }

    .xz-site-footer {
        grid-template-columns: 1fr 1fr;
        padding: 34px var(--xz-page-gutter);
    }

    .xz-custom-inner .xz-logo-mark img,
    .xz-custom-inner .xz-partner-logo img,
    .xz-custom-inner img[class*="logo"],
    .xz-custom-inner img[class*="icon"],
    .xz-custom-inner img[src*="logo"],
    .xz-custom-inner img[src*="icon"] {
        max-width: min(46vw, 160px) !important;
        max-height: 80px !important;
        object-fit: contain;
    }

    .wrap,
    .right,
    .news_bg .wrap {
        width: auto !important;
        max-width: none !important;
        margin-left: 16px !important;
        margin-right: 16px !important;
    }

    .o_big {
        height: auto !important;
        overflow: hidden;
    }

    .o_big img {
        width: 100%;
        height: auto;
        min-height: 160px;
        object-fit: cover;
    }

    .o_big h1 {
        left: 20px !important;
        right: 20px !important;
        width: auto !important;
        font-size: 24px !important;
        line-height: 1.35 !important;
    }

    .product_a {
        overflow-x: auto;
        white-space: nowrap;
    }

    .news_con li a {
        display: block;
    }

    .news_con .imgs,
    .news_con .i_about_r {
        width: 100% !important;
        float: none !important;
    }

    .message {
        width: auto !important;
        padding: 24px 14px !important;
    }

    .xz-lead-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .xz-page-hero h1 {
        left: 20px;
        right: 20px;
        bottom: 20px;
        font-size: 22px;
    }

    .xz-lead-form label,
    .xz-lead-stack label {
        grid-template-columns: 92px minmax(0, 1fr) auto;
    }

    .xz-region-label {
        grid-template-columns: 92px minmax(0, 1fr) 0 !important;
    }

    .xz-region-picker {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .xz-lead-actions {
        padding-left: 0;
    }

    .xz-product-main {
        padding: 18px var(--xz-page-gutter) 46px;
    }

    .xz-product-tabs {
        gap: 22px;
    }

    .xz-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .xz-product-summary {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .xz-product-main-image {
        max-width: 420px;
    }

    .xz-product-title-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .xz-product-title-row h1 {
        font-size: 21px;
    }

    .xz-solution-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 640px) {
    .xz-page-body {
        --xz-page-gutter: 16px;
    }

    .xz-site-shell {
        width: 100%;
        margin: 0;
    }

    .xz-site-header {
        padding: 0 10px 6px;
    }

    .xz-site-logo {
        height: 52px;
    }

    .xz-logo-mark {
        flex-basis: 38px;
        width: 38px;
        height: 38px;
    }

    .xz-logo-mark svg {
        width: 36px;
        height: 36px;
    }

    .xz-logo-mark img {
        max-width: 132px;
        max-height: 36px;
    }

    .xz-logo-mark.has-image {
        min-width: 38px;
    }

    .xz-site-nav {
        justify-content: flex-start;
        gap: 6px;
        width: calc(100% - 44px);
        order: 2;
        padding-right: 2px;
    }

    .xz-nav-item > a,
    .xz-site-nav > a {
        padding: 0 7px;
        font-size: 13px;
    }

    .xz-search-button {
        order: 3;
        width: 36px;
        height: 36px;
        flex-basis: 36px;
        align-self: center;
    }

    .xz-search-button:before {
        left: 10px;
        top: 9px;
        width: 11px;
        height: 11px;
    }

    .xz-search-button:after {
        left: 22px;
        top: 22px;
        width: 8px;
    }

    .xz-hero,
    .xz-hero .bx-wrapper,
    .xz-hero .bx-viewport,
    .xz-hero-slider,
    .xz-hero-slider li {
        height: calc(100vh - 78px) !important;
        min-height: 520px;
    }

    .xz-hero-device {
        opacity: .45;
    }

    .xz-hero-copy-left {
        left: 22px;
        top: 78px;
    }

    .xz-brand-pill {
        height: 48px;
        font-size: 24px;
    }

    .xz-hero-copy h1 {
        font-size: 24px;
    }

    .xz-site-footer {
        grid-template-columns: 1fr;
        padding-left: var(--xz-page-gutter);
        padding-right: var(--xz-page-gutter);
    }

    .xz-custom-inner img[class*="logo"],
    .xz-custom-inner img[class*="icon"],
    .xz-custom-inner img[src*="logo"],
    .xz-custom-inner img[src*="icon"] {
        max-width: min(64vw, 136px) !important;
        max-height: 68px !important;
    }

    .xz-lead-title {
        font-size: 20px;
    }

    .xz-lead-form label,
    .xz-lead-stack label {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .xz-region-label {
        grid-template-columns: 1fr !important;
    }

    .xz-region-picker {
        grid-template-columns: 1fr;
    }

    .xz-lead-form span {
        text-align: left;
    }

    .xz-lead-actions {
        padding-left: 0;
        text-align: center;
    }

    .xz-product-main {
        padding: 14px var(--xz-page-gutter) 38px;
    }

    .xz-product-tabs {
        gap: 18px;
        padding-left: var(--xz-page-gutter);
        padding-right: var(--xz-page-gutter);
    }

    .xz-product-tabs a,
    .xz-about-subnav a {
        font-size: 13px;
    }

    .xz-about-subnav {
        gap: 18px;
        padding-left: var(--xz-page-gutter);
        padding-right: var(--xz-page-gutter);
    }

    .xz-about-banner img {
        height: 220px;
    }

    .xz-about-title {
        margin: 18px auto 17px;
        padding: 10px 14px 9px;
    }

    .xz-about-title h2,
    .xz-about-title h3 {
        font-size: 16px;
    }

    .xz-about-profile {
        font-size: 13px;
        line-height: 1.9;
    }

    .xz-culture-values span {
        width: 70px;
        height: 70px;
        font-size: 12px;
    }

    .xz-contact-info h3 {
        font-size: 14px;
    }

    .xz-about-contact {
        grid-template-columns: 1fr;
        width: calc(100% - 32px);
        margin-bottom: 48px;
    }

    .xz-product-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .xz-product-card figure {
        aspect-ratio: 1 / .78;
    }

    .xz-product-thumbs {
        grid-template-columns: 24px repeat(4, 1fr) 24px;
        gap: 6px;
    }

    .xz-product-thumbs button {
        width: 100%;
        height: 42px;
    }

    .xz-product-actions {
        flex-wrap: wrap;
    }

    .xz-consult-btn,
    .xz-share-btn {
        flex: 1 1 130px;
    }

    .xz-solution-grid {
        grid-template-columns: 1fr;
    }

    .xz-solution-detail-hero h1 {
        left: var(--xz-page-gutter);
        right: var(--xz-page-gutter);
        bottom: 20px;
        font-size: 22px;
    }
}
