:root {
            --z_getv-primary: #d26b46;
            --z_getv-primary-soft: #f9ede8;
            --z_getv-text-dark: #2d2d2d;
            --z_getv-text-mid: #666666;
            --z_getv-bg-light: #ffffff;
            --z_getv-bg-muted: #fbfbfb;
            --z_getv-radius: 21px;
            --z_getv-shadow: 0 15px 35px rgba(210, 107, 70, 0.08);
            --z_getv-transition: 0.35s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
            color: var(--z_getv-text-dark);
            background-color: var(--z_getv-bg-light);
            line-height: 1.7;
            overflow-x: hidden;
            word-break: keep-all;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--z_getv-transition);
        }

        img {
            max-width: 100%;
            display: block;
        }

        /* 导航区域: sogate */
        .z_getv-sogate {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .z_getv-vesslo {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 25px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            min-width: 0;
        }

        .z_getv-logo {
            padding: 18px 0;
            min-width: 0;
        }

        .z_getv-logo img {
            height: 32px;
            width: auto;
        }

        .z_getv-keyway {
            display: flex;
            flex-wrap: wrap;
            min-width: 0;
        }

        .z_getv-keyway a {
            padding: 25px 20px;
            font-weight: 500;
            color: var(--z_getv-text-mid);
            position: relative;
        }

        .z_getv-keyway a:hover, 
        .z_getv-keyway a.active {
            color: var(--z_getv-primary);
        }

        .z_getv-keyway a.active::after {
            content: '';
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: var(--z_getv-primary);
        }

        /* 展示区域: skinglo (Hero Mosaic) */
        .z_getv-skinglo {
            padding-top: 140px;
            padding-bottom: 80px;
            background: linear-gradient(135deg, #fffcfb 0%, #fef8f5 100%);
            overflow: hidden;
        }

        .z_getv-shino {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 30px;
            align-items: center;
        }

        .z_getv-peakly-text {
            grid-column: 1 / 6;
            z-index: 2;
            word-break: break-word;
        }

        .z_getv-peakly-text h1 {
            font-size: clamp(2.5rem, 4vw, 3.8rem);
            line-height: 1.15;
            margin-bottom: 25px;
            font-weight: 700;
            color: var(--z_getv-text-dark);
        }

        .z_getv-peakly-text p {
            font-size: 1.25rem;
            color: var(--z_getv-text-mid);
            margin-bottom: 40px;
            max-width: 500px;
        }

        .z_getv-peakly-mosaic {
            grid-column: 6 / 13;
            display: grid;
            grid-template-areas: 
                "a a b"
                "a a c";
            grid-template-columns: 1fr 1fr 0.8fr;
            grid-template-rows: 240px 240px;
            gap: 20px;
            position: relative;
        }

        .z_getv-lexia-main {
            grid-area: a;
            border-radius: var(--z_getv-radius);
            overflow: hidden;
            box-shadow: var(--z_getv-shadow);
        }

        .z_getv-lexia-sub1 {
            grid-area: b;
            border-radius: var(--z_getv-radius);
            overflow: hidden;
            box-shadow: var(--z_getv-shadow);
        }

        .z_getv-lexia-sub2 {
            grid-area: c;
            border-radius: var(--z_getv-radius);
            overflow: hidden;
            box-shadow: var(--z_getv-shadow);
        }

        .z_getv-lexia-main img, .z_getv-lexia-sub1 img, .z_getv-lexia-sub2 img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .z_getv-lexia-main:hover img { transform: scale(1.05); }

        .z_getv-hitly-cta {
            display: inline-flex;
            align-items: center;
            background: var(--z_getv-primary);
            color: white;
            padding: 18px 45px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            box-shadow: 0 10px 20px rgba(210, 107, 70, 0.2);
        }

        .z_getv-hitly-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(210, 107, 70, 0.3);
        }

        /* 核心能力区: lexihub */
        .z_getv-lexihub {
            padding: 100px 0;
            background: white;
        }

        .z_getv-shino-head {
            text-align: center;
            margin-bottom: 70px;
            width: 100%;
        }

        .z_getv-shino-head h2 {
            font-size: 2.2rem;
            margin-bottom: 15px;
        }

        .z_getv-lexia-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            width: 100%;
        }

        .z_getv-keybit {
            flex: 1;
            min-width: 320px;
            background: var(--z_getv-bg-muted);
            padding: 45px;
            border-radius: var(--z_getv-radius);
            transition: var(--z_getv-transition);
            border: 1px solid transparent;
        }

        .z_getv-keybit:hover {
            background: white;
            border-color: var(--z_getv-primary-soft);
            box-shadow: var(--z_getv-shadow);
            transform: translateY(-5px);
        }

        .z_getv-keybit-icon {
            width: 64px;
            height: 64px;
            background: var(--z_getv-primary-soft);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            color: var(--z_getv-primary);
        }

        .z_getv-keybit h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .z_getv-keybit p {
            color: var(--z_getv-text-mid);
            font-size: 1.05rem;
        }

        /* 沉浸式图文: sheller */
        .z_getv-sheller {
            padding: 100px 0;
            background: #fff;
        }

        .z_getv-sheller-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 60px;
            margin-bottom: 100px;
        }

        .z_getv-sheller-row:nth-child(even) {
            flex-direction: row-reverse;
        }

        .z_getv-sheller-img {
            flex: 1;
            min-width: 380px;
            border-radius: var(--z_getv-radius);
            overflow: hidden;
            box-shadow: var(--z_getv-shadow);
        }

        .z_getv-sheller-content {
            flex: 1;
            min-width: 380px;
        }

        .z_getv-sheller-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .z_getv-sheller-tag {
            display: inline-block;
            background: var(--z_getv-primary-soft);
            color: var(--z_getv-primary);
            padding: 5px 15px;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        /* 矩阵入口: rooton */
        .z_getv-rooton {
            padding: 80px 0;
            background: var(--z_getv-bg-muted);
        }

        .z_getv-lexia-path {
            flex: 1;
            min-width: 260px;
            background: white;
            padding: 35px;
            border-radius: var(--z_getv-radius);
            text-align: center;
        }

        .z_getv-lexia-path h4 {
            font-size: 1.3rem;
            margin-bottom: 12px;
        }

        .z_getv-tappit-link {
            color: var(--z_getv-primary);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            margin-top: 15px;
        }

        /* 页脚: tailer */
        .z_getv-tailer {
            padding: 80px 0 40px;
            background: #222;
            color: #aaa;
        }

        .z_getv-tailer-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            border-bottom: 1px solid #333;
            padding-bottom: 50px;
            margin-bottom: 30px;
        }

        .z_getv-tailer-brand h2 {
            color: white;
            margin-bottom: 20px;
        }

        .z_getv-tailer-links h5 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .z_getv-tailer-links ul {
            list-style: none;
        }

        .z_getv-tailer-links li {
            margin-bottom: 12px;
        }

        .z_getv-tailer-links a:hover {
            color: white;
        }

        .z_getv-tailer-bottom {
            text-align: center;
            font-size: 0.9rem;
        }

        /* 响应式调整 */
        @media (max-width: 1024px) {
            .z_getv-shino { grid-template-columns: 1fr; }
            .z_getv-peakly-text { grid-column: 1 / -1; text-align: center; }
            .z_getv-peakly-text p { margin: 0 auto 40px; }
            .z_getv-peakly-mosaic { grid-column: 1 / -1; grid-template-rows: 200px 200px; }
        }

        @media (max-width: 768px) {
            .z_getv-keyway { display: none; } /* 移动端可隐藏或改为汉堡菜单 */
            .z_getv-sheller-row, .z_getv-sheller-row:nth-child(even) { flex-direction: column; }
            .z_getv-sheller-img, .z_getv-sheller-content { min-width: 100%; }
            .z_getv-peakly-mosaic { grid-template-areas: "a" "b" "c"; grid-template-columns: 1fr; grid-template-rows: auto; }
            .z_getv-keybit { min-width: 100%; }
        }

.z_getv-hdr-sogate {
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.7;
    word-break: keep-all;
    color: var(--z_getv-text-dark);
}
.z_getv-hdr-sogate,
.z_getv-hdr-sogate *,
.z_getv-hdr-sogate *::before,
.z_getv-hdr-sogate *::after {
    box-sizing: border-box;
}

.z_getv-hdr-sogate nav,
.z_getv-hdr-sogate div,
.z_getv-hdr-sogate section,
.z_getv-hdr-sogate article,
.z_getv-hdr-sogate aside,
.z_getv-hdr-sogate p,
.z_getv-hdr-sogate h1,
.z_getv-hdr-sogate h2,
.z_getv-hdr-sogate h3,
.z_getv-hdr-sogate h4,
.z_getv-hdr-sogate h5,
.z_getv-hdr-sogate h6,
.z_getv-hdr-sogate a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.z_getv-hdr-sogate p,
.z_getv-hdr-sogate h1,
.z_getv-hdr-sogate h2,
.z_getv-hdr-sogate h3,
.z_getv-hdr-sogate h4,
.z_getv-hdr-sogate h5,
.z_getv-hdr-sogate h6 {
    text-decoration: none;
}

.z_getv-hdr-sogate img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.z_getv-hdr-sogate {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.z_getv-hdr-sogate a.z_getv-hdr-hitly {
    --aisite-shell-nav-padding: 0;
    --aisite-shell-nav-margin: 0;
    --aisite-shell-nav-line-height: normal;
    --aisite-shell-nav-display: inline;
    --aisite-shell-nav-height: auto;
    --aisite-shell-nav-min-height: auto;
}

.z_getv-hdr-sogate a.z_getv-hdr-hitly,
.z_getv-hdr-sogate a.z_getv-hdr-hitly:hover,
.z_getv-hdr-sogate a.z_getv-hdr-hitly:focus,
.z_getv-hdr-sogate a.z_getv-hdr-hitly:active,
.z_getv-hdr-sogate a.z_getv-hdr-hitly.active,
.z_getv-hdr-sogate a.z_getv-hdr-hitly[aria-current="page"] {
    background: transparent;
    border: none;
    border-bottom: none;
    box-shadow: none;
    outline: none;
    text-decoration: none;
    padding: var(--aisite-shell-nav-padding, 0);
    margin: var(--aisite-shell-nav-margin, 0);
    line-height: var(--aisite-shell-nav-line-height, normal);
    display: var(--aisite-shell-nav-display, inline);
    height: var(--aisite-shell-nav-height, auto);
    min-height: var(--aisite-shell-nav-min-height, auto);
}

.z_getv-hdr-sogate{
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

.z_getv-hdr-sogate .z_getv-hdr-vesslo{
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 25px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            min-width: 0;
        }

.z_getv-hdr-sogate .z_getv-hdr-logo{
            padding: 18px 0;
            min-width: 0;
        }

.z_getv-hdr-sogate .z_getv-hdr-logo img{
            height: 32px;
            width: auto;
        }

.z_getv-hdr-sogate .z_getv-hdr-keyway{
            display: flex;
            flex-wrap: wrap;
            min-width: 0;
        }

.z_getv-hdr-sogate .z_getv-hdr-keyway a{
            padding: 25px 20px;
            font-weight: 500;
            color: #666666;
            position: relative;
        }

.z_getv-hdr-sogate .z_getv-hdr-keyway a:hover, .z_getv-hdr-sogate .z_getv-hdr-keyway a.active{
            color: #d26b46;
        }

.z_getv-hdr-sogate .z_getv-hdr-keyway a.active::after{
            content: '';
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: #d26b46;
        }

@media (max-width: 768px){.z_getv-hdr-sogate .z_getv-hdr-keyway{ display: none; }}

.z_getv-hdr-sogate {
    background: rgb(255, 255, 255);
    background-image: none;
}

.z_getv-ftr-tailer {
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.7;
    word-break: keep-all;
    color: var(--z_getv-text-dark);
}
.z_getv-ftr-tailer,
.z_getv-ftr-tailer *,
.z_getv-ftr-tailer *::before,
.z_getv-ftr-tailer *::after {
    box-sizing: border-box;
}

.z_getv-ftr-tailer nav,
.z_getv-ftr-tailer div,
.z_getv-ftr-tailer section,
.z_getv-ftr-tailer article,
.z_getv-ftr-tailer aside,
.z_getv-ftr-tailer p,
.z_getv-ftr-tailer h1,
.z_getv-ftr-tailer h2,
.z_getv-ftr-tailer h3,
.z_getv-ftr-tailer h4,
.z_getv-ftr-tailer h5,
.z_getv-ftr-tailer h6,
.z_getv-ftr-tailer a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.z_getv-ftr-tailer p,
.z_getv-ftr-tailer h1,
.z_getv-ftr-tailer h2,
.z_getv-ftr-tailer h3,
.z_getv-ftr-tailer h4,
.z_getv-ftr-tailer h5,
.z_getv-ftr-tailer h6 {
    text-decoration: none;
}

.z_getv-ftr-tailer img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.z_getv-ftr-tailer {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.z_getv-ftr-tailer a,
.z_getv-ftr-tailer a:hover,
.z_getv-ftr-tailer a:focus,
.z_getv-ftr-tailer a:active {
    background: transparent;
    box-shadow: none;
    outline: none;
    text-decoration: none;
}

.z_getv-ftr-tailer .z_getv-ftr-vesslo{
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 25px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            min-width: 0;
        }

.z_getv-ftr-tailer{
            padding: 80px 0 40px;
            background: #222;
            color: #aaa;
        }

.z_getv-ftr-tailer .z_getv-ftr-tailer-grid{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            border-bottom: 1px solid #333;
            padding-bottom: 50px;
            margin-bottom: 30px;
        }

.z_getv-ftr-tailer .z_getv-ftr-tailer-brand h2{
            color: white;
            margin-bottom: 20px;
        }

.z_getv-ftr-tailer .z_getv-ftr-tailer-links h5{
            color: white;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

.z_getv-ftr-tailer .z_getv-ftr-tailer-links ul{
            list-style: none;
        }

.z_getv-ftr-tailer .z_getv-ftr-tailer-links li{
            margin-bottom: 12px;
        }

.z_getv-ftr-tailer .z_getv-ftr-tailer-links a:hover{
            color: white;
        }

.z_getv-ftr-tailer .z_getv-ftr-tailer-bottom{
            text-align: center;
            font-size: 0.9rem;
        }