:root {
    --product-blue: #30a4fd;
    --product-cyan: #30a4fd;
    --product-text: #141a2a;
    --product-line: #e8edf6;
    --wj-header-x: 24px;
    --wj-logo-width: 166px;
    --wj-nav-offset: 20px;
    --wj-nav-left: calc(var(--wj-header-x) + var(--wj-logo-width) + var(--wj-nav-offset));
    --product-hero-x: 20px;
}

html,
body {
    margin: 0;
    min-height: 100%;
    background: #fff;
    overflow-x: hidden;
}

body {
    color: var(--product-text);
    font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.product-single-page,
.product-single-page * {
    box-sizing: border-box;
}

.container_gwZ1bOxI {
    position: relative;
    z-index: 200;
    /* min-height: 720px; */
    color: #101828;
    /* background: url("/static/img/bg.jpg") center top / cover no-repeat; */
    isolation: isolate;
    overflow: hidden;
}

body.consult-modal-open .container_gwZ1bOxI {
    z-index: 10001;
}

.container_gwZ1bOxI:before,
.container_gwZ1bOxI:after {
    content: "";
    display: none;
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    z-index: -1;
}

.container_gwZ1bOxI:before {
    width: 680px;
    height: 680px;
    right: -260px;
    top: 74px;
    border: 1px solid rgba(48, 164, 253, .08);
    box-shadow: 0 0 0 48px rgba(48, 164, 253, .035), 0 0 80px rgba(48, 164, 253, .08) inset;
}

.container_gwZ1bOxI:after {
    width: 420px;
    height: 420px;
    left: -180px;
    bottom: -210px;
    background: rgba(48, 164, 253, .12);
    filter: blur(10px);
}

.wj-header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    width: 100%;
    height: 72px;
    padding: 0 var(--wj-header-x);
    background: transparent;
    color: #101828;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: background .24s ease, box-shadow .24s ease, color .24s ease, backdrop-filter .24s ease;
}

.wj-header.is-scrolled {
    background: rgba(255, 255, 255, .98);
    color: #101828;
    box-shadow: 0 10px 30px rgba(12, 39, 92, .08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.wj-logo {
    display: flex;
    align-items: center;
    width: var(--wj-logo-width);
    height: 42px;
    flex: 0 0 auto;
    overflow: hidden;
}

.wj-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
}

.wj-header.is-scrolled .wj-logo {
    filter: none;
}

.wj-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: var(--wj-nav-offset);
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
}

.wj-nav a,
.wj-nav button {
    border: 0;
    padding: 0;
    background: transparent;
    color: currentColor;
    font: inherit;
    cursor: pointer;
    opacity: .95;
}

.wj-nav button:after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-3px) rotate(45deg);
}

.wj-product-toggle.is-open {
    color: var(--product-blue);
}

.wj-product-toggle.is-open:after {
    transform: translateY(1px) rotate(225deg);
}

.wj-product-menu {
    position: fixed;
    left: 24px;
    top: 80px;
    z-index: 100;
    width: calc(100vw - 48px);
    padding: 32px 44px 38px;
    border: 1.5px solid #30a4fd;
    border-radius: 28px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 22px 60px rgba(16, 40, 88, .14);
    opacity: 0;
    visibility: hidden;
    overflow: visible;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.wj-product-menu::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

.wj-product-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.wj-product-menu:before {
    content: "";
    position: absolute;
    top: -10px;
    left: max(18px, min(var(--product-menu-arrow-left, 184px), calc(100% - 36px)));
    width: 18px;
    height: 18px;
    border-left: 1.5px solid #30a4fd;
    border-top: 1.5px solid #30a4fd;
    background: rgba(255, 255, 255);
    transform: rotate(45deg);
}

.product-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-height: 0;
}

.product-menu-col {
    position: relative;
    padding: 0 24px;
}

.product-menu-col:first-child {
    padding-left: 0;
}

.product-menu-col:not(:first-child):before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, rgba(48, 164, 253, .22) 0%, rgba(228, 232, 240, .85) 42%, rgba(228, 232, 240, 0) 100%);
    pointer-events: none;
}

.product-menu-title {
    margin: 0 0 18px;
    color: #4b5363;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
}

.product-menu-list {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-menu-link {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 8px;
    align-items: center;
    color: #1f2937;
}

.product-menu-thumb {
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 4px;
    object-fit: cover;
}

.product-menu-icon {
    position: relative;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    color: #30a4fd;
}

.product-menu-icon:before {
    content: "";
    position: absolute;
    inset: 4px 3px;
    border-radius: 3px;
    background: currentColor;
}

.product-menu-icon:after {
    content: "";
    position: absolute;
    background: #fff;
}

.product-menu-icon-video:after {
    right: 0;
    top: 7px;
    width: 5px;
    height: 6px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    background: currentColor;
}

.product-menu-icon-ai:before,
.product-menu-icon-room:before,
.product-menu-icon-open:before,
.product-menu-icon-service:before {
    transform: rotate(30deg);
}

.product-menu-icon-web:before {
    inset: 6px 3px 7px;
}

.product-menu-icon-market:before {
    inset: 3px;
    border-radius: 5px;
    background: linear-gradient(90deg, currentColor 0 45%, transparent 45% 55%, currentColor 55% 100%), linear-gradient(0deg, currentColor 0 45%, transparent 45% 55%, currentColor 55% 100%);
}

.product-menu-name {
    display: block;
    color: #202737;
    font-size: 15px;
    line-height: 22px;
    font-weight: 500;
}

.product-menu-desc {
    display: block;
    margin-top: 6px;
    color: #778090;
    font-size: 13px;
    line-height: 20px;
}

.wj-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
}

.wj-consult {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.wj-consult img {
    width: 22px;
    height: 22px;
    display: block;
    filter: brightness(0) saturate(100%) invert(14%) sepia(13%) saturate(1516%) hue-rotate(178deg) brightness(96%) contrast(91%);
}

.wj-consult-button {
    border: 0;
    padding: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    cursor: pointer;
}

.wj-use {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    min-width: 96px;
    padding: 0 16px;
    border-radius: 7px;
    background: #fff;
    color: var(--product-blue);
    box-shadow: 0 14px 28px rgba(16, 50, 127, .14);
}

.wj-header.is-scrolled .wj-use {
    background: var(--product-blue);
    color: #fff;
}

.wj-more {
    display: none;
    width: 38px;
    height: 38px;
    margin-left: auto;
    border: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, .16);
    color: #fff;
    position: relative;
}

.wj-header.is-scrolled .wj-more {
    background: rgba(48, 164, 253, .08);
    color: #1f2937;
}

.wj-more:before,
.wj-more:after,
.wj-more span {
    content: "";
    position: absolute;
    left: 10px;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.wj-more:before {
    top: 12px;
}

.wj-more span {
    top: 18px;
}

.wj-more:after {
    top: 24px;
}

.mobile-nav-panel {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 72px;
    z-index: 96;
    display: none;
    padding: 18px;
    border: 1px solid rgba(48, 164, 253, .18);
    border-radius: 14px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 18px 48px rgba(16, 40, 88, .16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.mobile-nav-panel.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-nav-list {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav-list li {
    background: #f6f9ff;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    border: 0;
    border-radius: 10px;
    padding: 0 12px;
    background: #f6f9ff;
    color: #1f2937;
    font: inherit;
    font-size: 15px;
    font-weight: 700;
    text-align: left;
}

.mobile-nav-link--primary {
    justify-content: center;
    background: var(--product-blue);
    color: #fff;
}

.product-hero {
    padding: 195px var(--product-hero-x) 54px;
    min-height: 720px;
    background: url("/assets/img/bg.jpg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

.mt-home-hero__item__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    gap: 0;
    width: min(1120px, 100%);
    /* height: 528px; */
    margin: 0 auto;
}

@media (min-width: 992px) {
    .mt-home-hero__item__inner {
        width: calc(100vw - (var(--wj-nav-left) * 2));
        margin-left: calc(var(--wj-nav-left) - var(--product-hero-x));
        margin-right: auto;
    }
}

.mt-hero-copy {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: none;
    height: 400px;
}

.mt-hero-main {
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translateY(0);
    transition: opacity .28s ease, transform .28s ease;
}

.mt-hero-main.is-switching {
    opacity: 0;
    transform: translateY(10px);
}

.mt-hero-copy h1 {
    margin: 0 0 28px;
    color: #05070f;
    font-size: clamp(42px, 5vw, 58px);
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: 0;
}

.mt-hero-copy p {
    margin: 0;
    color: #3f4b5f;
    font-size: 24px;
    line-height: 2;
    min-height: 92px;
}

.mt-hero-points {
    display: none;
}

.mt-hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    min-height: 88px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.mt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 64px;
    padding: 0 28px;
    border-radius: 999px;
    color: #3f4b5f;
    font-size: 18px;
    font-weight: 700;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.mt-btn:hover {
    transform: translateY(-2px);
}

.mt-btn-primary {
    background: #30a4fd;
    color: #fff;
    box-shadow: 0 18px 38px rgba(48, 164, 253, .24);
}

.mt-btn-secondary {
    border: 1.5px solid #273244;
    background: transparent;
}

.mt-hero-tabs {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: auto;
    color: #596579;
    font-size: 16px;
    border-bottom: 1px solid rgba(22, 51, 96, .12);
    overflow-x: visible;
    scrollbar-width: none;
}

.mt-hero-tabs::-webkit-scrollbar {
    display: none;
}

.mt-hero-tab {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: auto;
    height: 46px;
    margin-right: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    cursor: pointer;
    white-space: nowrap;
    transition: color .2s ease;
}

.mt-hero-tab:hover {
    color: #30a4fd;
}

.mt-hero-tab.is-active {
    color: #30a4fd;
    font-weight: 700;
}

.mt-hero-tab.is-active:after {
    content: "";
    position: absolute;
    left: 0;
    right: auto;
    bottom: -1px;
    width: 100%;
    transform: scaleX(var(--tab-progress, 0));
    transform-origin: left center;
    height: 3px;
    border-radius: 999px;
    background: #30a4fd;
}

.mt-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 528px;
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: opacity .28s ease, transform .28s ease;
}

.mt-hero-visual.is-switching {
    opacity: 0;
    transform: translateY(10px) scale(.985);
}

.mt-hero-fixed-image {
    width: min(620px, 100%);
    height: auto;
    display: block;
}

.promotions_home_main {
    background: #fff;
    padding: 52px 20px 50px;
}

.promotion-banner {
    width: min(1138px, 100%);
    margin: 0 auto;
}

.promotion-banner img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.home-plan-section {
    background: #fff;
    padding: 72px 20px 82px;
}

.home-plan-section .mt-section-inner {
    width: min(1760px, 100%);
    margin: 0 auto;
}

.home-plan-section .mt-section-hd {
    margin-bottom: 40px;
    text-align: center;
}

.home-plan-section .mt-section-title {
    margin: 0;
    color: #0b1020;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: 0;
}

.home-plan-section .text-blue {
    color: #30a4fd;
}

.home-plan-section .mt-card-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 410px), 410px));
    gap: 20px;
    justify-content: center;
    align-items: stretch;
}

.home-plan-section .mt-card-list > .mt-grid__col {
    display: flex;
    width: 100%;
    max-width: 410px;
}

.home-plan-section .mt-purchase-plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    min-height: 560px;
    border-radius: 38px;
    padding: 36px 36px 34px;
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(35, 65, 120, .06);
    transition: transform .22s ease, box-shadow .22s ease;
}

.home-plan-section .mt-purchase-plan-card:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 126px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .48) 0%, rgba(255, 255, 255, .2) 100%);
    box-shadow: 0 18px 42px rgba(255, 255, 255, .36);
    pointer-events: none;
}

.home-plan-section .mt-purchase-plan-card:after {
    content: "";
    position: absolute;
    right: 58px;
    top: -62px;
    width: 160px;
    height: 214px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .22);
    transform: rotate(39deg);
    pointer-events: none;
}

.home-plan-section .mt-purchase-plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 54px rgba(35, 65, 120, .14);
}

.home-plan-section .mt-purchase-plan-card > * {
    position: relative;
    z-index: 1;
}

.home-plan-section .mt-purchase-plan-card__hd {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    column-gap: 16px;
    align-items: center;
}

.home-plan-section .mt-purchase-plan-card__hd-content {
    display: contents;
}

.home-plan-section .mt-purchase-plan-card__hd-icon {
    flex: 0 0 auto;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 54px 54px;
    grid-row: 1 / span 2;
}

.home-plan-section .mt-purchase-plan-card__hd-title {
    margin: 0;
    color: #000;
    font-size: 28px;
    line-height: 1.16;
    font-weight: 900;
}

.home-plan-section .mt-purchase-plan-card__hd-desc {
    margin-top: 4px;
    color: #243145;
    font-size: 16px;
    line-height: 1.35;
}

.home-plan-section .mt-plan-features {
    margin-top: 58px;
    padding-top: 0;
    border-top: 0;
}

.home-plan-section .mt-plan-features__title {
    margin: 0 0 18px;
    color: #000;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
}

.home-plan-section .mt-plan-feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-plan-section .mt-plan-feature-list li {
    position: relative;
    padding-left: 24px;
    color: #26364f;
    font-size: 16px;
    line-height: 1.4;
}

.home-plan-section .mt-plan-feature-list li:before {
    content: "";
    position: absolute;
    left: 1px;
    top: .55em;
    width: 8px;
    height: 4px;
    border-left: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(-45deg);
    opacity: .85;
}

.home-plan-section .mt-purchase-plan-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 70px;
    margin-top: 58px;
    border-radius: 999px;
    background: #fff;
    color: #1f2937;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 14px 34px rgba(255, 255, 255, .5);
    transition: background .22s ease, color .22s ease, box-shadow .22s ease;
}

.home-plan-section .mt-purchase-plan-card__btn-icon {
    width: 25px;
    height: 24px;
    margin-left: 8px;
    display: block;
    filter: invert(1);
    transition: filter .22s ease;
}

.home-plan-section .mt-purchase-plan-card:hover .mt-purchase-plan-card__btn {
    background: #30a4fd;
    color: #fff;
    box-shadow: 0 18px 34px rgba(48, 164, 253, .24);
}

.home-plan-section .mt-purchase-plan-card:hover .mt-purchase-plan-card__btn-icon {
    filter: none;
}

.home-plan-section .home-page_mt-card-item-btn___zxty .mt-purchase-plan-card__btn {
    /* background: #41434f;
    color: #ffdba1;
    box-shadow: none; */
}

.home-plan-section .home-page_mt-card-item-btn___zxty .mt-purchase-plan-card__btn-icon {
    /* filter: none; */
}

.home-plan-section .home-page_mt-card-item-btn___zxty:hover .mt-purchase-plan-card__btn {
    background: #30a4fd;
    color: #fff;
    box-shadow: 0 18px 34px rgba(48, 164, 253, .24);
}

.enter_scene {
    background: linear-gradient(180deg, #eef4ff 0%, #f6f9ff 100%);
    padding: 82px 20px 92px;
}

.scene-inner {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.scene-heading {
    text-align: center;
    margin-bottom: 52px;
}

.scene-heading h2 {
    margin: 0 0 14px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.2;
    font-weight: 900;
    color: #080b14;
    letter-spacing: 0;
}

.scene-heading p {
    margin: 0;
    color: #525b6f;
    font-size: 18px;
}

.scene-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 calc((100vw - min(1120px, 100vw)) / 2) 26px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
}

.scene-grid::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

.scene-grid.is-dragging {
    cursor: grabbing;
}

.scene-card {
    flex: 0 0 326px;
    min-width: 326px;
    min-height: 316px;
    border-radius: 20px;
    background: #fff;
    padding: 34px 30px 28px;
    /* box-shadow: 0 16px 42px rgba(38, 76, 142, .08); */
    border: 1px solid rgba(219, 229, 246, .82);
    /* transition: box-shadow .24s ease, border-color .24s ease; */
}

.scene-card:hover {
    border-color: rgba(48, 164, 253, .25);
    /* box-shadow: 0 28px 58px rgba(40, 82, 150, .16); */
}

.scene-icon {
    display: grid;
    place-items: center;
    width: 56px;
    /* width: 56px; */
    height: 56px;
    margin-bottom: 24px;
    border-radius: 10px;
    /* color: #fff;
    font-size: 22px;
    font-weight: 800; */
    box-shadow: inset 0 -8px 0 rgba(255, 255, 255, .16), 0 14px 26px rgba(48, 164, 253, .18);
}

.scene-card:nth-child(1) .scene-icon,
.scene-card:nth-child(5) .scene-icon {
    background: linear-gradient(180deg, #30a4fd 0%, #30a4fd 100%);
}

.scene-card:nth-child(2) .scene-icon,
.scene-card:nth-child(6) .scene-icon {
    background: linear-gradient(180deg, #30a4fd 0%, #30a4fd 100%);
}

.scene-card:nth-child(3) .scene-icon,
.scene-card:nth-child(4) .scene-icon {
    background: linear-gradient(180deg, #30a4fd 0%, #30a4fd 100%);
}

.scene-card h3 {
    margin: 0 0 12px;
    color: #050711;
    font-size: 25px;
    line-height: 1.25;
    font-weight: 900;
}

.scene-card p {
    margin: 0 0 24px;
    color: #697386;
    font-size: 16px;
    line-height: 1.65;
}

.scene-list {
    margin: 0;
    padding: 20px 0 0;
    border-top: 1px solid var(--product-line);
    list-style: none;
}

.scene-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 30px;
    color: #2e3442;
    font-size: 15px;
}

.scene-list li:before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--product-blue);
    flex: 0 0 auto;
}

.scene-more {
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
    color: var(--product-blue);
    font-size: 15px;
    font-weight: 700;
}

.scene-more:after {
    content: "";
    width: 7px;
    height: 7px;
    margin-left: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
}

.scene-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 0;
}

.scene-dot {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    padding: 0;
    background: #c6cbd3;
    cursor: pointer;
    transition: width .22s ease, background .22s ease;
}

.scene-dot.is-active {
    width: 8px;
    background: #30a4fd;
}

@media (max-width: 1120px) {
    :root {
        --wj-nav-offset: 12px;
    }

    .wj-nav {
        gap: 18px;
        font-size: 15px;
    }

    .wj-actions {
        gap: 14px;
    }
}

@media (max-width: 991px) {
    .container_gwZ1bOxI {
        min-height: auto;
    }

    .wj-header {
        height: 64px;
        --wj-header-x: 16px;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .wj-nav,
    .wj-actions {
        display: none;
    }

    .wj-product-menu {
        display: none;
    }

    .mobile-nav-panel {
        display: block;
        top: 72px;
    }

    .wj-more {
        display: inline-block;
        color: #1f2937;
        background: rgba(48, 164, 253, .08);
    }

    .product-hero {
        padding-top: 112px;
        min-height: auto;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    .mt-home-hero__item__inner {
        grid-template-columns: 1fr;
        gap: 38px;
        width: 100%;
        max-width: none;
        height: auto;
        margin: 0 auto;
    }

    .mt-hero-copy h1 {
        max-width: none;
        overflow-wrap: anywhere;
    }

    .mt-hero-copy {
        width: 100%;
        min-width: 0;
        height: auto;
    }

    .mt-hero-main {
        width: 100%;
        min-width: 0;
    }

    .mt-hero-actions {
        min-height: 0;
    }

    .mt-hero-copy h1,
    .mt-hero-copy p,
    .mt-hero-points {
        min-height: 0;
    }

    .mt-hero-tabs {
        width: 100%;
        max-width: 100%;
        margin-top: 46px;
        overflow-x: auto;
        scroll-padding-inline: 50%;
    }

    .mt-hero-visual {
        justify-content: center;
        height: auto;
    }

    .mt-hero-fixed-image {
        width: min(560px, 100%);
    }

    .product-hero-actions {
        margin-bottom: 54px;
    }

    .scene-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
        margin-left: 0;
        margin-right: 0;
        padding: 0;
        overflow: visible;
        cursor: default;
        user-select: auto;
        touch-action: auto;
    }

    .scene-card {
        flex: none;
        min-width: 0;
        width: 100%;
        min-height: auto;
    }

    .scene-card.is-clone,
    .scene-dots {
        display: none;
    }
}

.lx-logo-wall {
    background: #fff;
    padding: 72px 0 80px;
    overflow: hidden;
}

.lx-logo-wall-inner {
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: 0 20px;
}

.lx-logo-wall-title {
    margin: 0 0 52px;
    text-align: center;
    font-size: clamp(24px, 3.5vw, 34px);
    line-height: 1.3;
    font-weight: 900;
    color: #080b14;
}

.lx-logo-wall-rows {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.lx-logo-track-wrap {
    position: relative;
    overflow: hidden;
}

.lx-logo-track-wrap::before,
.lx-logo-track-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 1;
    pointer-events: none;
}

.lx-logo-track-wrap::before {
    left: 0;
    background: linear-gradient(90deg, #fff 0%, transparent 100%);
}

.lx-logo-track-wrap::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, #fff 100%);
}

.lx-logo-track {
    display: flex;
    align-items: center;
    gap: 100px;
    width: max-content;
    animation: lxLogoScroll var(--lx-speed, 80s) linear infinite;
}

.lx-logo-track-wrap:nth-child(even) .lx-logo-track {
    animation-direction: reverse;
}

.lx-logo-track-wrap:hover .lx-logo-track {
    animation-play-state: paused;
}

@keyframes lxLogoScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 50px));
    }
}

.lx-logo-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    opacity: .5;
    transition: opacity .24s ease;
}

.lx-logo-item:hover {
    opacity: 1;
}

.lx-logo-item img {
    display: block;
    height: 100%;
    width: auto;
    object-fit: contain;
}

.lx-guide {
    padding: 80px 120px;
    background: url(//static.lexiang-asset.com/koala/img/icon-guide-bg.a2064feb.png) no-repeat calc(50% + 350px) bottom / auto 85.5073%, linear-gradient(268deg, #30a4fd, #30a4fd 45.78%);
}

.lx-guide-inner {
    position: relative;
    width: 100%;
    max-width: 1420px;
    margin: 0 auto;
    box-sizing: border-box;
}

.lx-guide-label {
    margin: 0 0 40px;
    color: #fff;
    font-size: 36px;
    line-height: 36px;
    font-weight: 600;
    letter-spacing: 0;
}

.lx-guide-btn {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lx-guide-use-btn,
.lx-guide-product-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    height: 48px;
    border-radius: 8px;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 500;
    transition: opacity .2s ease;
}

.lx-guide-use-btn:hover,
.lx-guide-product-btn:hover {
    opacity: .8;
}

.lx-guide-use-btn {
    width: 124px;
    background: #fff;
    color: #30a4fd;
}

.lx-guide-product-btn {
    width: 138px;
    border: 1px solid rgba(255, 255, 255, .5);
    background: #30a4fd;
    color: #fff;
}

.met-com-footer-container-section {
    background: #fafafc;
    color: #7b818f;
    font-size: 12px;
    line-height: 1.5;
}

.met-com-footer-container-section.use-media-screen-footer {
    font-size: 14px;
}

.met-com-footer-container-section .footer-container-wrap {
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 40px 30px;
    box-sizing: border-box;
}

@media (min-width: 992px) {
    .promotion-banner {
        width: calc(100vw - (var(--wj-nav-left) * 2));
        margin-left: calc(var(--wj-nav-left) - 20px);
        margin-right: auto;
    }

    .lx-logo-wall-inner {
        width: calc(100vw - (var(--wj-nav-left) * 2));
        margin-left: var(--wj-nav-left);
        margin-right: auto;
    }

    .lx-guide-inner {
        width: calc(100vw - (var(--wj-nav-left) * 2));
        margin-left: calc(var(--wj-nav-left) - 120px);
        margin-right: auto;
    }

    .met-com-footer-container-section .footer-container-wrap {
        width: calc(100vw - (var(--wj-nav-left) * 2));
        margin-left: var(--wj-nav-left);
        margin-right: auto;
        padding-left: 0;
        padding-right: 0;
    }
}

.met-com-footer-container-section .up-wrap {
    display: flex;
    justify-content: space-between;
    gap: 42px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(123, 129, 143, .16);
}

.met-com-footer-container-section .left {
    flex: 1 1 auto;
    min-width: 0;
}

.met-com-footer-container-section .right {
    flex: 0 0 160px;
    display: flex;
    justify-content: flex-end;
    padding-right: 20px;
}

.met-com-footer-container-section .menu-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(118px, 1fr));
    gap: 24px;
    margin-bottom: 28px;
}

.met-com-footer-container-section ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.met-com-footer-container-section .title {
    margin-bottom: 20px;
    color: #0f001a;
    font-size: 14px;
    line-height: 21px;
    font-weight: 500;
}

.met-com-footer-container-section.use-media-screen-footer .title {
    font-size: 16px;
    line-height: 24px;
}

.met-com-footer-container-section .option {
    margin-top: 12px;
    color: #939699;
    font-size: 12px;
    line-height: 18px;
}

.met-com-footer-container-section.use-media-screen-footer .option {
    font-size: 14px;
    line-height: 22px;
}

.met-com-footer-container-section .txt,
.met-com-footer-container-section .desc-txt {
    color: inherit;
}

.met-com-footer-container-section a.txt,
.met-com-footer-container-section a.desc-txt {
    transition: color .18s ease;
}

.met-com-footer-container-section a.txt:hover,
.met-com-footer-container-section a.desc-txt:hover {
    color: #30a4fd;
}

.met-com-footer-container-section .contact-list .title {
    margin-bottom: 14px;
}

.met-com-footer-container-section .contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.met-com-footer-container-section .contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    border-radius: 50%;
    color: #7b818f;
    font-size: 12px;
    font-weight: 700;
}

.met-com-footer-container-section #contact-weibo:before {
    content: "微";
}

.met-com-footer-container-section #contact-shipinhao:before {
    content: "视";
}

.met-com-footer-container-section #contact-bilibili:before {
    content: "B";
}

.met-com-footer-container-section #contact-xiaohongshu:before {
    content: "书";
}

.met-com-footer-container-section .qr-section {
    text-align: center;
    color: #0f001a;
}

.met-com-footer-container-section .item-1 {
    margin-bottom: 12px;
    font-size: 12px;
    line-height: 18px;
}

.met-com-footer-container-section.use-media-screen-footer .item-1 {
    font-size: 14px;
    line-height: 22px;
}

.met-com-footer-container-section .qr-tm-img {
    display: block;
    width: 72px;
    height: 72px;
}

.met-com-footer-container-section .desc-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.met-com-footer-container-section .met-com-website-desc {
    min-width: 0;
}

.met-com-footer-container-section .desc,
.met-com-footer-container-section .desc-policy,
.met-com-footer-container-section .desc-record {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.met-com-footer-container-section .desc .item {
    display: inline-flex;
    align-items: center;
}

.met-com-footer-container-section .indent {
    margin: 0 10px;
    color: rgba(123, 129, 143, .45);
}

.met-com-footer-container-section .copyright {
    margin-top: 8px;
    color: #7b818f;
}

.met-com-footer-container-section.use-media-screen-footer .desc,
.met-com-footer-container-section.use-media-screen-footer .desc-policy,
.met-com-footer-container-section.use-media-screen-footer .desc-record,
.met-com-footer-container-section.use-media-screen-footer .copyright {
    font-size: 13px;
    line-height: 22px;
}

.met-com-footer-container-section .met-com-meeting-language {
    position: relative;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #565e66;
    font-size: 14px;
    line-height: 24px;
    white-space: nowrap;
}

.met-com-footer-container-section .select-default {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.met-com-footer-container-section .up-arrow {
    width: 12px;
    height: auto;
}

.met-com-footer-container-section .select-dropdown {
    display: none;
}

.consult-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 128px 20px 40px;
    background: rgba(0, 0, 0, .45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, visibility .2s ease;
}

.consult-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.consult-dialog {
    position: relative;
    width: min(430px, 100%);
    min-height: 430px;
    padding: 40px 52px 48px;
    border-radius: 8px;
    background: linear-gradient(135deg, #e8f1ff 0%, #fff 46%, #f8fbff 100%);
    box-shadow: 0 12px 28px rgba(16, 24, 40, .22);
    text-align: center;
    transform: translateY(8px) scale(.98);
    transition: transform .2s ease;
}

.consult-modal.is-open .consult-dialog {
    transform: translateY(0) scale(1);
}

.consult-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #7b8494;
    font-size: 28px;
    line-height: 24px;
    cursor: pointer;
}

.consult-title {
    margin: 0 0 12px;
    color: #202631;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;
}

.consult-desc {
    margin: 0 0 26px;
    color: #4f5b6d;
    font-size: 14px;
    line-height: 1.6;
}

.consult-qrcode {
    display: block;
    width: 250px;
    height: 250px;
    margin: 0 auto;
    border-radius: 4px;
    background: #fff;
}

.float-contact-lite {
    position: fixed;
    right: 30px;
    bottom: 100px;
    z-index: 999;
    font-family: Arial, "Microsoft YaHei", sans-serif;
}

.float-contact-lite,
.float-contact-lite * {
    box-sizing: border-box;
}

.float-contact-lite__button {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 58px;
    min-height: 104px;
    border: 0;
    border-radius: 30px;
    padding: 7px 0 15px;
    background: linear-gradient(180deg, #30a4fd 0%, #30a4fd 100%);
    color: #fff;
    box-shadow: 0 14px 34px rgba(48, 164, 253, .26);
    cursor: pointer;
}

.float-contact-lite__avatar {
    width: 46px;
    height: 46px;
    margin-bottom: 7px;
    padding: 3px;
    border-radius: 50%;
    background: #fff;
    overflow: hidden;
}

.float-contact-lite__avatar img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.float-contact-lite__text {
    color: #fff;
    font-size: 17px;
    line-height: 1.18;
    font-weight: 700;
    letter-spacing: 0;
}

.float-contact-lite__popup {
    position: absolute;
    right: 78px;
    top: 0;
    width: 136px;
    padding: 10px 10px 12px;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(23, 43, 77, .18);
    text-align: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(8px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.float-contact-lite__popup:after {
    content: "";
    position: absolute;
    right: -7px;
    top: 72px;
    width: 14px;
    height: 14px;
    background: #fff;
    transform: rotate(45deg);
    box-shadow: 4px -4px 10px rgba(23, 43, 77, .05);
}

.float-contact-lite.is-open .float-contact-lite__popup,
.float-contact-lite__button:hover ~ .float-contact-lite__popup,
.float-contact-lite__button:focus ~ .float-contact-lite__popup,
.float-contact-lite__popup:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}

.float-contact-lite__qrcode {
    display: block;
    width: 116px;
    height: 116px;
    margin: 0 auto 8px;
}

.float-contact-lite__desc {
    display: block;
    color: #3f4857;
    font-size: 14px;
    line-height: 1.2;
    white-space: nowrap;
}

.float-contact-lite__phone {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 58px;
    height: 58px;
    margin-top: 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 14px 34px rgba(28, 63, 110, .14);
    text-align: center;
}

.float-contact-lite__phone-icon {
    display: block;
    width: 22px;
    height: 22px;
    color: #1f2937;
}

.float-contact-lite__phone-text {
    display: block;
    width: 100%;
    font-size: 11px;
    line-height: 1.15;
    font-weight: 600;
    white-space: nowrap;
}

.float-contact-lite__phone-popup {
    position: absolute;
    right: 78px;
    top: 50%;
    display: block;
    width: 190px;
    padding: 18px 16px 20px;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(23, 43, 77, .16);
    color: #1f2937;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(8px, -50%);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.float-contact-lite__phone-popup:after {
    content: "";
    position: absolute;
    right: -7px;
    top: 50%;
    width: 14px;
    height: 14px;
    margin-top: -7px;
    background: #fff;
    transform: rotate(45deg);
    box-shadow: 4px -4px 10px rgba(23, 43, 77, .05);
}

.float-contact-lite__phone-title,
.float-contact-lite__phone-number {
    position: relative;
    z-index: 1;
    display: block;
}

.float-contact-lite__phone-title {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 700;
}

.float-contact-lite__phone-number {
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
    white-space: nowrap;
}

.float-contact-lite__phone:hover .float-contact-lite__phone-popup,
.float-contact-lite__phone:focus .float-contact-lite__phone-popup,
.float-contact-lite__phone:focus-within .float-contact-lite__phone-popup {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(0, -50%);
}

@media (max-width: 1199px) {
    .lx-guide {
        padding: 48px 32px;
        background: url(//static.lexiang-asset.com/koala/img/icon-guide-bg.a2064feb.png) no-repeat calc(100% + 168px) 40px / auto 118%, linear-gradient(268deg, #30a4fd, #30a4fd 45.78%);
    }

    .lx-guide-label {
        margin-bottom: 32px;
        font-size: 32px;
        line-height: 32px;
    }

    .met-com-footer-container-section .footer-container-wrap {
        padding: 40px 30px;
    }

    .met-com-footer-container-section .up-wrap {
        flex-direction: column;
    }

    .met-com-footer-container-section .right {
        justify-content: flex-start;
        padding-right: 0;
    }

    .met-com-footer-container-section .menu-list {
        grid-template-columns: repeat(3, minmax(150px, 1fr));
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .lx-guide-inner {
        width: calc(100vw - (var(--wj-nav-left) * 2));
        margin-left: calc(var(--wj-nav-left) - 32px);
        margin-right: auto;
    }
}

@media (max-width: 991px) {
    .met-com-footer-container-section .up-wrap {
        display: none;
    }
}

@media (max-width: 640px) {
    .wj-logo {
        width: 128px;
        height: 38px;
    }

    .product-hero {
        display: block;
        padding: 92px 16px 38px;
        min-height: 0;
    }

    .mt-home-hero__item__inner {
        gap: 24px;
        width: 100%;
    }

    .mt-hero-copy h1 {
        margin-bottom: 18px;
        font-size: clamp(30px, 9vw, 38px);
        line-height: 1.14;
    }

    .mt-hero-copy p,
    .mt-hero-points li {
        font-size: 15px;
        line-height: 1.75;
    }

    .mt-hero-points {
        margin: 20px 0 26px;
    }

    .mt-hero-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        width: 100%;
        margin-top: 20px;
    }

    .mt-btn {
        min-width: 0;
        width: 100%;
        height: 48px;
        padding: 0 12px;
        font-size: 15px;
    }

    .mt-hero-tabs {
        gap: 18px;
        margin-top: 32px;
        padding-bottom: 2px;
        font-size: 14px;
    }

    .mt-hero-tab {
        margin-right: 0;
    }

    .mt-hero-tab:first-child {
        margin-left: 0;
    }

    .mt-hero-tab:last-child {
        margin-right: 0;
    }

    .mt-hero-visual {
        justify-content: center;
    }

    .mt-hero-fixed-image {
        max-height: 300px;
        object-fit: contain;
    }

    .promotions_home_main {
        padding: 32px 14px 34px;
    }

    .home-plan-section {
        padding: 52px 16px 58px;
    }

    .home-plan-section .mt-section-hd {
        margin-bottom: 28px;
    }

    .home-plan-section .mt-card-list {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .home-plan-section .mt-purchase-plan-card {
        min-height: auto;
        padding: 28px 24px 26px;
        border-radius: 22px;
    }

    .home-plan-section .mt-purchase-plan-card__hd-title {
        font-size: 24px;
    }

    .home-plan-section .mt-purchase-plan-card__hd {
        grid-template-columns: 48px minmax(0, 1fr);
    }

    .home-plan-section .mt-purchase-plan-card__hd-icon {
        width: 48px;
        height: 48px;
        background-size: 48px 48px;
    }

    .home-plan-section .mt-plan-features {
        margin-top: 42px;
    }

    .home-plan-section .mt-plan-feature-list li {
        font-size: 15px;
    }

    .home-plan-section .mt-purchase-plan-card__btn {
        height: 56px;
        margin-top: 34px;
        font-size: 16px;
    }

    .enter_scene {
        padding: 58px 16px 66px;
    }

    .scene-heading {
        margin-bottom: 34px;
    }

    .scene-heading p {
        font-size: 15px;
    }

    .scene-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
        margin-left: 0;
        margin-right: 0;
        padding: 0;
        overflow: visible;
        cursor: default;
        user-select: auto;
        touch-action: auto;
    }

    .scene-card {
        flex: none;
        min-width: 0;
        width: 100%;
        min-height: auto;
        padding: 28px 24px;
        border-radius: 16px;
    }

    .scene-card.is-clone,
    .scene-dots {
        display: none;
    }

    .lx-logo-wall {
        padding: 48px 0 56px;
    }

    .lx-logo-wall-title {
        margin-bottom: 28px;
    }

    .lx-logo-wall-rows {
        gap: 24px;
    }

    .lx-logo-track {
        gap: 40px;
    }

    .lx-logo-item {
        height: 28px;
    }

    .lx-logo-track-wrap::before,
    .lx-logo-track-wrap::after {
        width: 40px;
    }

    .lx-guide {
        padding: 32px;
        background: url(//static.lexiang-asset.com/koala/img/icon-guide-bg.a2064feb.png) no-repeat calc(100% + 140px) 56px / auto 85%, #30a4fd;
    }

    .lx-guide-label {
        margin-bottom: 16px;
        font-size: 18px;
        line-height: 28px;
        font-weight: 500;
    }

    .lx-guide-use-btn,
    .lx-guide-product-btn {
        width: auto;
        min-width: 98px;
        height: 32px;
        padding: 0 12px;
        font-size: 12px;
    }

    .met-com-footer-container-section .footer-container-wrap {
        padding: 32px 20px;
    }

    .met-com-footer-container-section .up-wrap {
        gap: 28px;
        margin-bottom: 28px;
        padding-bottom: 28px;
    }

    .met-com-footer-container-section .menu-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 18px;
    }

    .met-com-footer-container-section .contact-item {
        gap: 14px;
    }

    .met-com-footer-container-section .desc-wrap {
        flex-direction: column;
    }

    .met-com-footer-container-section .indent.mid {
        display: none;
    }

    .met-com-footer-container-section .met-com-meeting-language {
        font-size: 13px;
    }

    .consult-modal {
        align-items: center;
        padding: 24px;
    }

    .consult-dialog {
        min-height: 360px;
        padding: 34px 24px 38px;
    }

    .consult-title {
        font-size: 22px;
    }

    .consult-qrcode {
        width: 220px;
        height: 220px;
    }

    .float-contact-lite {
        right: 16px;
        bottom: 78px;
    }
}

@media (max-width: 420px) {
    .wj-header {
        height: 60px;
        padding: 0 12px;
    }

    .mobile-nav-panel {
        top: 66px;
        left: 10px;
        right: 10px;
    }

    .wj-logo {
        width: 118px;
    }

    .product-hero {
        padding: 84px 14px 40px;
    }

    .mt-hero-copy h1 {
        font-size: 30px;
        line-height: 1.16;
    }

    .mt-hero-copy p {
        font-size: 14px;
        line-height: 1.7;
    }

    .mt-hero-actions {
        gap: 8px;
    }

    .mt-btn {
        height: 44px;
        padding: 0 8px;
        font-size: 14px;
    }

    .scene-card {
        flex-basis: calc(100vw - 28px);
        padding: 24px 20px;
    }

    .scene-card h3 {
        font-size: 22px;
    }

    .lx-guide {
        padding: 28px 20px;
    }

    .lx-guide-btn {
        flex-wrap: wrap;
    }

    .lx-guide-use-btn,
    .lx-guide-product-btn {
        flex: 1 1 128px;
    }

    .met-com-footer-container-section .menu-list {
        grid-template-columns: 1fr;
    }

    .consult-dialog {
        width: min(340px, 100%);
        min-height: 336px;
    }

    .consult-qrcode {
        width: 200px;
        height: 200px;
    }

    .float-contact-lite {
        right: 12px;
        bottom: 66px;
    }

    .float-contact-lite__button {
        width: 54px;
        min-height: 96px;
    }

    .float-contact-lite__popup {
        right: 68px;
        width: 126px;
    }

    .float-contact-lite__qrcode {
        width: 106px;
        height: 106px;
    }
}

@media (max-width: 991px) {
    .up-wrap {
        display: none !important;
    }
}

.mt-home-hero__item__inner {
    grid-template-columns: minmax(0, 1fr) !important;
}

.mt-hero-copy {
    width: 100% !important;
    max-width: none !important;
}

.mt-hero-copy h1 {
    max-width: none !important;
}

.home-plan-section .mt-plan-feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 15px 18px;
}

@media (max-width: 991px) {
    .product-hero {
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        min-height: auto;
    }

    .mt-home-hero__item__inner,
    .mt-hero-copy,
    .mt-hero-main {
        width: 100% !important;
        max-width: none !important;
        min-width: 0;
    }

    .mt-home-hero__item__inner,
    .mt-hero-copy {
        height: auto;
    }

    .mt-hero-copy h1 {
        overflow-wrap: anywhere;
    }

    .mt-hero-tabs {
        width: 100%;
        max-width: 100%;
    }

    .scene-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 14px;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 !important;
        overflow: visible !important;
        cursor: default;
        user-select: auto;
        touch-action: auto;
    }

    .scene-card {
        flex: none !important;
        min-width: 0 !important;
        width: 100% !important;
        min-height: auto;
    }

    .scene-card.is-clone,
    .scene-dots {
        display: none !important;
    }
}

@media (max-width: 640px) {
    .product-hero {
        display: block;
        padding: 92px 16px 38px;
        min-height: 0;
    }

    .mt-home-hero__item__inner {
        gap: 24px;
    }

    .mt-hero-copy h1 {
        font-size: clamp(30px, 9vw, 38px);
        line-height: 1.14;
    }

    .mt-hero-copy p {
        min-height: 0;
        font-size: 15px;
        line-height: 1.75;
    }

    .mt-hero-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        width: 100%;
        margin-top: 20px;
    }

    .mt-btn {
        min-width: 0;
        width: 100%;
        height: 48px;
        padding: 0 12px;
        font-size: 15px;
    }

    .mt-hero-tabs {
        gap: 18px;
        margin-top: 32px;
        padding-bottom: 2px;
    }

    .mt-hero-tab:first-child {
        margin-left: 0 !important;
    }

    .mt-hero-tab:last-child {
        margin-right: 0 !important;
    }
}

@media (max-width: 420px) {
    .product-hero {
        padding: 84px 14px 40px;
    }

    .mt-hero-copy h1 {
        font-size: 30px;
        line-height: 1.16;
    }

    .mt-hero-copy p {
        line-height: 1.7;
    }

    .mt-hero-actions {
        gap: 8px;
    }

    .mt-btn {
        height: 44px;
        padding: 0 8px;
        font-size: 14px;
    }
}
.home-news-center {
    background: #fff;
    padding: 0 0 84px;
}

.home-news-center__inner {
    width: min(1180px, 100%);
    margin: 0 auto;
    padding: 0 20px;
}

.home-news-center__title {
    margin: 0 0 34px;
    text-align: center;
    color: #080b14;
    font-size: clamp(24px, 3.2vw, 34px);
    line-height: 1.3;
    font-weight: 900;
}

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

.home-news-card {
    display: block;
    overflow: hidden;
    min-height: 364px;
    border-radius: 18px;
    background: #fff;
    color: #080b14;
    text-decoration: none;
    box-shadow: 0 14px 42px rgba(47, 118, 189, .1);
    transition: transform .24s ease, box-shadow .24s ease;
}

.home-news-card:hover,
.home-news-card:focus {
    color: #080b14;
    text-decoration: none;
    transform: translateY(-4px);
    box-shadow: 0 18px 52px rgba(47, 118, 189, .16);
}

.home-news-card .date-box {
    width: 100%;
    height: 212px;
    overflow: hidden;
    background: #eef5ff;
}

.home-news-card .date-box img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .32s ease;
}

.home-news-card:hover .date-box img {
    transform: scale(1.04);
}

.home-news-card .article-content {
    display: flex;
    flex-direction: column;
    padding: 24px 24px 28px;
}

.home-news-card .desc {
    position: relative;
    order: 1;
    display: inline-flex;
    align-items: center;
    margin: 0 0 16px;
    padding-left: 82px;
    min-height: 24px;
    color: #66758f;
    font-size: 16px;
    line-height: 24px;
}

.home-news-card .desc::before {
    content: "新闻动态";
    position: absolute;
    left: 0;
    top: 0;
    padding: 0 10px;
    border-radius: 4px;
    background: #0b7cff;
    color: #fff;
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
}

.home-news-card .title {
    display: -webkit-box;
    order: 2;
    margin: 0;
    overflow: hidden;
    color: #050914;
    font-size: 20px;
    line-height: 1.42;
    font-weight: 500;
    letter-spacing: 0;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-hero {
    position: relative;
    overflow: hidden;
    background-image: none !important;
}

.product-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    opacity: 0;
    transition: opacity .48s ease;
    pointer-events: none;
}

.product-hero-bg.is-active {
    opacity: 1;
}

.product-hero .mt-home-hero__item__inner,
.product-hero .product-hero-slide-data-list {
    position: relative;
    z-index: 1;
}

.product-hero-slide-data {
    display: none;
}

@media (max-width: 991px) {
    .home-news-center {
        padding-bottom: 64px;
    }

    .home-news-center__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .home-news-center {
        padding-bottom: 48px;
    }

    .home-news-center__inner {
        padding: 0 16px;
    }

    .home-news-center__list {
        grid-template-columns: 1fr;
    }

    .home-news-card {
        min-height: 0;
        border-radius: 14px;
    }

    .home-news-card .date-box {
        height: 190px;
    }

    .home-news-card .article-content {
        padding: 20px;
    }
}