/* common start */
html.noscroll,
body.noscroll {
    overflow: hidden;
}

body {
    scrollbar-gutter: stable;
}

.hmos-6-main {
    font-weight: 400;
    line-height: 1.6;
    position: relative;
    background-color: #fff;
}

.hmos-6-main * {
    margin: 0;
    padding: 0;
    outline: 0;
    box-sizing: border-box;
}

.hmos-6-main sup {
    font-size: 0.6em;
}

.hmos-6-main sup.yes-click {
    cursor: pointer;
}

.hmos-6-main a {
    color: inherit;
    font-size: inherit;
    text-decoration: none;
}

.hmos-6-main ul,
.hmos-6-main ol {
    list-style: none;
    list-style-image: none;
}

.hmos-6-main button {
    border: 0;
    font-size: 0;
    line-height: 0;
}

.hmos-6-main .nr {
    white-space: nowrap;
    display: inline-block;
}

.hmos-6-main img,
.hmos-6-main picture {
    border: 0;
    width: 100%;
    display: block;
}

.hmos-6-main svg {
    width: 100%;
    display: block;
    overflow: visible;
}

.hmos-6-main video {
    border: 0;
    width: 100%;
    display: block;
    object-fit: cover;
}

.hmos-6-main canvas {
    display: block;
    width: 100%;
}

.hmos-6-main .is-ucwx {
    display: none !important;
}

.hmos-6-main .blur-up {
    filter: blur(20px);
    -webkit-filter: blur(20px);
    transition: filter 0.2s;
    -webkit-transition: filter 0.2s;
    -moz-transition: filter 0.2s;
}

.hmos-6-main .blur-up.lazyloaded {
    filter: blur(0);
    -webkit-filter: blur(0);
}

.hmos-6-main br {
    line-height: 0;
}

.hmos-6-main .show-mob,
.hmos-6-main .show-mob-inline {
    display: none;
}

.hmos-6-main .show-pc {
    display: block;
}

.hmos-6-main .show-pc-inline {
    display: inline-block;
}

.hmos-6-main .common-title-wrap {
    position: relative;
    text-align: center;
}

.hmos-6-main .common-big-title {
    display: inline-block;
    font-size: 5vw;
    font-weight: 700;
    line-height: 1.25;
    transform: translate3d(0, 2px, 0);
    -webkit-transform: translate3d(0, 2px, 0);
    -moz-transform: translate3d(0, 2px, 0);
    pointer-events: none;
    transition: background-position 0.8s linear;
    -webkit-transition: background-position 0.8s linear;
    -moz-transition: background-position 0.8s linear;
    user-select: none;
    -webkit-user-select: none;
}

.hmos-6-main .will-change .common-big-title {
    will-change: background-position;
}

.hmos-6-main .text-shadow-wrap {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hmos-6-main .text-shadow-wrap .common-big-title {
    color: #fff;
    filter: url(#TxtShadow);
    -webkit-filter: url(#TxtShadow);
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    pointer-events: auto;
}

.hmos-6-main .common-big-title2 {
    color: #151517;
    font-size: 3.333333vw;
    font-weight: 700;
    line-height: 1.25;
}

.hmos-6-main .common-sub-title {
    color: rgba(0, 0, 0, 0.5);
    font-size: 1.666667vw;
    font-weight: 500;
    line-height: 1.25;
    text-align: center;
}

.hmos-6-main .common-desc {
    color: #999;
    font-size: 1.145833vw;
    font-weight: 500;
    line-height: 1.6;
}

.hmos-6-main .common-desc .highlight-txt {
    color: #000;
    font-style: inherit;
    font-weight: 700;
}

.hmos-6-main .filter-svg {
    height: 0;
    overflow: hidden;
}

@keyframes hoverKf {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
    }

    33% {
        transform: scale(1.0476);
        -webkit-transform: scale(1.0476);
        -moz-transform: scale(1.0476);
    }

    66% {
        transform: scale(1.0216);
        -webkit-transform: scale(1.0216);
        -moz-transform: scale(1.0216);
    }

    100% {
        transform: scale(1.0476);
        -webkit-transform: scale(1.0476);
        -moz-transform: scale(1.0476);
    }
}

@keyframes hoverKfR {
    0% {
        transform: scale(1.0476);
        -webkit-transform: scale(1.0476);
        -moz-transform: scale(1.0476);
    }

    33% {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
    }

    66% {
        transform: scale(1.0216);
        -webkit-transform: scale(1.0216);
        -moz-transform: scale(1.0216);
    }

    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
    }
}

.hmos-6-main .btn-hover-animation {
    animation: hoverKfR .4s linear forwards;
    -webkit-animation: hoverKfR .4s linear forwards;
}

@media (pointer: fine) and (hover: hover) {
    .hmos-6-main .btn-hover-animation:hover {
        animation: hoverKf .4s linear forwards;
        -webkit-animation: hoverKf .4s linear forwards;
    }
}


@keyframes clickKf {
    0% {
        transform: translateY(0)
    }

    25% {
        transform: translateY(4px)
    }

    50% {
        transform: translateY(1px)
    }

    75% {
        transform: translateY(2px)
    }

    100% {
        transform: translateY(0)
    }
}

.hmos-6-main .btn-click-animation.click-animation .btn-animation {
    animation: clickKf .4s linear forwards;
    -webkit-animation: clickKf .4s linear forwards;
}

.hmos-6-main .video-control-btn {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
}

.hmos-6-main .video-control-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(128, 128, 128, 0.5);
    backdrop-filter: blur(2.5vw);
    -webkit-backdrop-filter: blur(2.5vw);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    overflow: hidden;
    transition: .3s ease;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
}

.hmos-6-main .video-control-btn .video-btn {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transition: opacity 0.2s cubic-bezier(0.65, 0.05, 0.36, 1);
    -webkit-transition: opacity 0.2s cubic-bezier(0.65, 0.05, 0.36, 1);
    -moz-transition: opacity 0.2s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.hmos-6-main .video-control-btn .btn-item {
    transition: opacity 0.2s cubic-bezier(0.65, 0.05, 0.36, 1);
    -webkit-transition: opacity 0.2s cubic-bezier(0.65, 0.05, 0.36, 1);
    -moz-transition: opacity 0.2s cubic-bezier(0.65, 0.05, 0.36, 1);
}

@media (pointer: fine) and (hover: hover) {
    .hmos-6-main .video-control-btn:hover {
        cursor: pointer;
    }

    .hmos-6-main .video-control-btn:hover::before {
        opacity: .6;
    }

    .hmos-6-main .video-control-btn:hover .btn-item {
        opacity: .6;
    }

}

.hmos-6-main .video-control-btn.not-bg {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
}

.hmos-6-main .video-control-btn.not-bg::before {
    display: none;
}

.hmos-6-main .control-video[data-video-state="play"] .video-play {
    opacity: 1;
}

.hmos-6-main .control-video[data-video-state="pause"] .video-pause {
    opacity: 1;
}

.hmos-6-main .control-video[data-video-state="replay"] .video-replay {
    opacity: 1;
}

/* common end */

/* kv start */
.hmos-6-main .hmos-6-kv {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hmos-6-main .hmos-6-kv .kv-ksp {
    width: 21.458333vw;
    opacity: 0;
    transform: translate(0, 12.5vw);
    -webkit-transform: translate(0, 12.5vw);
    -moz-transform: translate(0, 12.5vw);
    transition: opacity 1.5s linear, transform 1.5s cubic-bezier(0.77, 0.49, 0.7, 1) 0.3s;
    -webkit-transition: opacity 1.5s linear, transform 1.5s cubic-bezier(0.77, 0.49, 0.7, 1) 0.3s;
    -moz-transition: opacity 1.5s linear, transform 1.5s cubic-bezier(0.77, 0.49, 0.7, 1) 0.3s;
}

.hmos-6-main .hmos-6-kv.animated .kv-ksp {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
}

.hmos-6-main .hmos-6-kv.will-change .kv-ksp {
    will-change: transform, opacity;
}

.hmos-6-main .hmos-6-kv .os-computer {
    width: 52.5vw;
    height: 29.895833vw;
    margin-top: 3.854167vw;
    position: relative;
    z-index: 1;
    transform: scale(3);
    -webkit-transform: scale(3);
    -moz-transform: scale(3);
    transition: transform 1.8s cubic-bezier(0.77, 0.49, 0.7, 1);
    -webkit-transition: transform 1.8s cubic-bezier(0.77, 0.49, 0.7, 1);
    -moz-transition: transform 1.8s cubic-bezier(0.77, 0.49, 0.7, 1);
    transform-origin: center 60%;
}

.hmos-6-main .hmos-6-kv.animated .os-computer {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
}

.hmos-6-main .hmos-6-kv.will-change .os-computer {
    will-change: transform;
}

.hmos-6-main .hmos-6-kv .computer-border {
    position: relative;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-out 1s;
    -webkit-transition: opacity 1.2s ease-out 1s;
    -moz-transition: opacity 1.2s ease-out 1s;
}

.hmos-6-main .hmos-6-kv.will-change .computer-border {
    will-change: opacity;
}

.hmos-6-main .hmos-6-kv.animated .computer-border {
    opacity: 1;
}

.hmos-6-main .hmos-6-kv .computer-screen {
    width: 40.625vw;
    height: 27.552083vw;
    position: absolute;
    top: 0.625vw;
    left: 50%;
    z-index: 1;
    border-radius: 0.572917vw;
    -webkit-border-radius: 0.572917vw;
    -moz-border-radius: 0.572917vw;
    transform: translate(-50%, 0) scale(1.002);
    -webkit-transform: translate(-50%, 0) scale(1.002);
    -moz-transform: translate(-50%, 0) scale(1.002);
    overflow: hidden;
}

@media screen and (max-aspect-ratio:11/10) {
    .hmos-6-main .hmos-6-kv{
        height: auto;
        padding: 25.694444444444445vw 0;
    }
    .hmos-6-main .hmos-6-kv .kv-ksp {
        width: 57.222222222222223vw;
        transform: translate(0, 22.22222222vw);
        -webkit-transform: translate(0, 22.22222222vw);
        -moz-transform: translate(0, 22.22222222vw);
        transition: opacity 1s linear 0.3s,transform 1s ease 0.3s;
        -webkit-transition: opacity 1s linear 0.3s,transform 1s ease 0.3s;
        -moz-transition: opacity 1s linear 0.3s,transform 1s ease 0.3s;
    }

    .hmos-6-main .hmos-6-kv .os-computer {
        width: 91.25vw;
        height: 51.944444vw;
        margin-top: 17.222222vw;
        transition: transform 1.2s ease;
        -webkit-transition: transform 1.2s ease;
        -moz-transition: transform 1.2s ease;
        transform: translate(0, 11.11111112vw) scale(1.2);
        -webkit-transform: translate(0, 11.11111112vw) scale(1.2);
        -moz-transform: translate(0, 11.11111112vw) scale(1.2);
        transform-origin: center center;
}

    .hmos-6-main .hmos-6-kv.animated .os-computer{
        transform: translate(0, 0) scale(1);
        -webkit-transform: translate(0, 0) scale(1);
        -moz-transform: translate(0, 0) scale(1);
}
    
    .hmos-6-main .hmos-6-kv .computer-border{
        opacity: 1;
        transition: none;
        -webkit-transition: none;
        -moz-transition: none;
}

    .hmos-6-main .hmos-6-kv .computer-screen {
        width: 70.694444444444445vw;
        height: 47.777778vw;
        top: 1.111111vw;
        border-radius: 1.111111112vw;
        -webkit-border-radius: 1.111111112vw;
        -moz-border-radius: 1.111111112vw;
    }
}

/* kv end */

/* s2 start */
.hmos-6-main .hmos-6-s2 {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    padding-bottom: 4.166667vw;
}

.hmos-6-main .hmos-6-s2 .introduction-container {
    flex-shrink: 0;
    position: relative;
    width: 56.25vw;
    height: 56.25vw;
}

.hmos-6-main .hmos-6-s2 .introduction-container::before {
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
    background-color: #fff;
}

.hmos-6-main .hmos-6-s2 .introduction-container::after {
    content: '';
    width: 4px;
    height: 100%;
    position: absolute;
    top: 0;
    right: -2px;
    z-index: 3;
    background-color: #fff;
}

.hmos-6-main .hmos-6-s2 .introduction-container .os-bg-video video {
    mix-blend-mode: darken;
}

.hmos-6-main .hmos-6-s2 .introduction-content {
    position: absolute;
    z-index: 1;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hmos-6-main .hmos-6-s2 .introduction-content .introduction-txt {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hmos-6-main .hmos-6-s2 .introduction-content .introduction-txt p {
    display: inline-block;
    color: transparent;
    font-size: 2.083333vw;
    font-weight: 500;
    line-height: 1.6;
    background: linear-gradient(180deg, #5c95f4 0%, #0c4cb5 100%);
    background-clip: text;
    -webkit-background-clip: text;
}

.hmos-6-main .hmos-6-s2 .introduction-content .pup-btn-container {
    position: relative;
    display: inline-flex;
    margin-top: 2.5vw;
    padding: 0.8333334vw 0.8333334vw 0.8333334vw 1.666667vw;
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    color: #0c4cb5;
    font-size: 0.9375vw;
    font-weight: 500;
    line-height: 1.25;
    z-index: 1;
    box-shadow: 0.5px 0.5px 0px #ffffff inset;
}

@media (pointer: fine) and (hover: hover) {
    .hmos-6-main .hmos-6-s2 .introduction-content .pup-btn-container:hover {
        cursor: pointer;
    }
}

.hmos-6-main .hmos-6-s2 .introduction-content .pup-btn-container span {
    color: inherit;
    font-size: inherit;
}

.hmos-6-main .hmos-6-s2 .introduction-content .pup-btn-container .pup-bg {
    position: absolute;
    inset: -1px;
    z-index: -1;
}

.hmos-6-main .hmos-6-s2 .introduction-content .pup-btn-container .pup-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.3);
}

.hmos-6-main .hmos-6-s2 .introduction-content .pup-btn-container .pup-bg img {
    height: 100%;
    object-fit: cover;
    filter: url(#blurFilter);
    -webkit-filter: url(#blurFilter);
}

.hmos-6-main .hmos-6-s2 .introduction-content .pup-btn-container .pup-play-icon {
    flex-shrink: 0;
    width: 1.666667vw;
    height: 1.666667vw;
    margin-left: 0.8333334vw;
    background: radial-gradient(ellipse 65.74% 65.74% at 71.91% 37.98%, #addbfc 0%, #3980e7 71%, #2766d0 100%);
    box-shadow: 2px -2px 4px rgba(131, 171, 235, 0.8) inset;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    animation: hoverKfR .4s linear forwards;
    -webkit-animation: hoverKfR .4s linear forwards;
}

@media (pointer: fine) and (hover: hover) {
    .hmos-6-main .hmos-6-s2 .introduction-content .pup-btn-container:hover .pup-play-icon {
        animation: hoverKf .4s linear forwards;
        -webkit-animation: hoverKf .4s linear forwards;
    }
}


@media screen and (max-aspect-ratio:11/10) {
    .hmos-6-main .hmos-6-s2 {
        padding-bottom: 37.5vw;
    }

    .hmos-6-main .hmos-6-s2 .introduction-container {
        width: 119.4444445vw;
        height: 119.4444445vw;
    }

    .hmos-6-main .hmos-6-s2 .introduction-content {
        inset: auto;
        top: 0;
        left: 0;
        width: 100%;
        padding-top: 30.555556vw;
    }

    .hmos-6-main .hmos-6-s2 .introduction-content .introduction-txt p {
        font-size: 5.555556vw;
    }

    .hmos-6-main .hmos-6-s2 .introduction-content .pup-btn-container {
        margin-top: 36.388889vw;
        padding: 3.1944445vw 3.1944445vw 3.1944445vw 5.277778vw;
        font-size: 4.4444445vw;
    }

    .hmos-6-main .hmos-6-s2 .introduction-content .pup-btn-container .pup-bg::before {
        backdrop-filter: blur(2.777778vw);
        -webkit-backdrop-filter: blur(2.777778vw);
    }

    .hmos-6-main .hmos-6-s2 .introduction-content .pup-btn-container .pup-play-icon {
        width: 8.888889vw;
        height: 8.888889vw;
        margin-left: 3.3333334vw;
    }

}

/* s2 end */
.hmos-6-main .hmos-spacebag {
    background: #f4f5f7;
    border-radius: 3.125vw 3.125vw 0px 0px;
    -webkit-border-radius: 3.125vw 3.125vw 0px 0px;
    -moz-border-radius: 3.125vw 3.125vw 0px 0px;
}

@media screen and (max-aspect-ratio:11/10) {
    .hmos-6-main .hmos-spacebag {
        border-radius: 5.555556vw 5.555556vw 0vw 0vw;
        -webkit-border-radius: 5.555556vw 5.555556vw 0vw 0vw;
        -moz-border-radius: 5.555556vw 5.555556vw 0vw 0vw;
    }
}

/* s3 start */
.hmos-6-main .hmos-6-s3 {
    padding-top: 10.416667vw;
}

.hmos-6-main .hmos-6-s3 .title-content {
    width: 85%;
    margin: 0 auto;
}

.hmos-6-main .hmos-6-s3 .common-title-wrap {
    margin-top: 1.458333vw;
}

.hmos-6-main .hmos-6-s3 .common-title-wrap .common-big-title {
    color: transparent;
    background: linear-gradient(89.96deg, #17b1e2 0.01%, #5195fc 8.66%, #5f84fc 15.26%, #d67fcf 26.19%, #e79e6a 33.12%, #ffffff 50%, #000000 65.74%, #000000 99.99%);
    background-clip: text;
    -webkit-background-clip: text;
    background-size: 300% 100%;
    background-position-x: 100%;
}

.hmos-6-main .hmos-6-s3 .common-title-wrap.animated .common-big-title {
    background-position-x: 0%;
}

.hmos-6-main .hmos-6-s3 .ai-tips-container {
    position: relative;
    margin-top: 6.25vw;
}

.hmos-6-main .hmos-6-s3 .ai-tips-container .ai-logo-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    pointer-events: none;
    transform-origin: center center;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
    -webkit-transform: translate(-50%, -50%) scale(0);
    -moz-transform: translate(-50%, -50%) scale(0);
    transition: opacity 1.2s linear, transform 1.6s cubic-bezier(0.77, 0.49, 0.7, 1);
    -webkit-transition: opacity 1.2s linear, transform 1.6s cubic-bezier(0.77, 0.49, 0.7, 1);
    -moz-transition: opacity 1.2s linear, transform 1.6s cubic-bezier(0.77, 0.49, 0.7, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hmos-6-main .hmos-6-s3 .ai-tips-container.animated .ai-logo-wrap {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    -webkit-transform: translate(-50%, -50%) scale(1);
    -moz-transform: translate(-50%, -50%) scale(1);
}

.hmos-6-main .hmos-6-s3 .ai-tips-container .ai-logo {
    flex-shrink: 0;
    width: 39.895833vw;
    height: 39.895833vw;
    animation: aiRotate 10s linear infinite;
    -webkit-animation: aiRotate 10s linear infinite;
}

@keyframes aiRotate {
    0% {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
    }
}

.hmos-6-main .hmos-6-s3 .ai-tips-container .tips-container {
    width: 81.25vw;
    margin: 0 auto;
}

.hmos-6-main .hmos-6-s3 .ai-tips-container .tips-container .tips-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-right: 2.5vw;
    transform: scale(0);
    transform-origin: center center;
    transition: opacity 1.6s linear, transform 1.6s cubic-bezier(0.77, 0.49, 0.7, 1);
    -webkit-transition: opacity 1.6s linear, transform 1.6s cubic-bezier(0.77, 0.49, 0.7, 1);
    -moz-transition: opacity 1.6s linear, transform 1.6s cubic-bezier(0.77, 0.49, 0.7, 1);
}

.hmos-6-main .hmos-6-s3 .ai-tips-container.animated .tips-container .tips-list {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
}

.hmos-6-main .hmos-6-s3.will-change .tips-list {
    will-change: opacity, transform;
}

.hmos-6-main .hmos-6-s3 .ai-tips-container .tips-container li {
    flex-shrink: 0;
    width: fit-content;
    background: linear-gradient(90.29deg, #cfecf6 0.52%, #d9e1f7 26.48%, #e5dbf5 48.59%, #f2dfe7 75.47%, #f3e7d8 99.96%);
    border: 2px solid #fff;
    box-shadow: 0vw 0.15625vw 1.04166666vw rgba(0, 0, 0, 0.06);
    padding: 0.963542vw 1.354167vw;
    color: #2c2c2c;
    font-size: 1.145833vw;
    line-height: 1.25;
    font-weight: 400;
    border-radius: 1.25vw 0px 1.25vw 1.25vw;
    -webkit-border-radius: 1.25vw 0px 1.25vw 1.25vw;
    -moz-border-radius: 1.25vw 0px 1.25vw 1.25vw;
    opacity: 0;
    transition: opacity 1.6s cubic-bezier(0.77, 0.49, 0.7, 1), transform 1.6s cubic-bezier(0.77, 0.49, 0.7, 1);
    -webkit-transition: opacity 1.6s cubic-bezier(0.77, 0.49, 0.7, 1), transform 1.6s cubic-bezier(0.77, 0.49, 0.7, 1);
    -moz-transition: opacity 1.6s cubic-bezier(0.77, 0.49, 0.7, 1), transform 1.6s cubic-bezier(0.77, 0.49, 0.7, 1);
}

.hmos-6-main .hmos-6-s3.will-change .tips-container li {
    will-change: opacity, transform;
}

.hmos-6-main .hmos-6-s3 .ai-tips-container .tips-container li:nth-child(n+3) {
    margin-top: 4.0625vw;
}

.hmos-6-main .hmos-6-s3 .ai-tips-container .tips-container .ai-tip0 {
    margin-left: 12.864583vw;
    transform: translate(21.66666666vw, 14.0625vw);
    -webkit-transform: translate(21.66666666vw, 14.0625vw);
    -moz-transform: translate(21.66666666vw, 14.0625vw);
}

.hmos-6-main .hmos-6-s3 .ai-tips-container .tips-container .ai-tip1 {
    margin-right: 11.5625vw;
    transform: translate(-21.66666666vw, 14.0625vw);
    -webkit-transform: translate(-21.66666666vw, 14.0625vw);
    -moz-transform: translate(-21.66666666vw, 14.0625vw);
}

.hmos-6-main .hmos-6-s3 .ai-tips-container .tips-container .ai-tip2 {
    margin-left: 3.854167vw;
    transform: translate(27.96875vw, 7.03125vw);
    -webkit-transform: translate(27.96875vw, 7.03125vw);
    -moz-transform: translate(27.96875vw, 7.03125vw);
}

.hmos-6-main .hmos-6-s3 .ai-tips-container .tips-container .ai-tip3 {
    margin-left: 15.625vw;
    transform: translate(-27.96875vw, 7.03125vw);
    -webkit-transform: translate(-27.96875vw, 7.03125vw);
    -moz-transform: translate(-27.96875vw, 7.03125vw);
}

.hmos-6-main .hmos-6-s3 .ai-tips-container .tips-container .ai-tip4 {
    margin-left: 3.645833vw;
    transform: translate(32.29166666vw, 0vw);
    -webkit-transform: translate(32.29166666vw, 0vw);
    -moz-transform: translate(32.29166666vw, 0vw);
}

.hmos-6-main .hmos-6-s3 .ai-tips-container .tips-container .ai-tip5 {
    margin-left: 15.625vw;
    margin-right: 8.333333vw;
    transform: translate(-32.29166666vw, 0vw);
    -webkit-transform: translate(-32.29166666vw, 0vw);
    -moz-transform: translate(-32.29166666vw, 0vw);
}

.hmos-6-main .hmos-6-s3 .ai-tips-container .tips-container .ai-tip6 {
    transform: translate(27.96875vw, -7.03125vw);
    -webkit-transform: translate(27.96875vw, -7.03125vw);
    -moz-transform: translate(27.96875vw, -7.03125vw);
}

.hmos-6-main .hmos-6-s3 .ai-tips-container .tips-container .ai-tip7 {
    margin-right: 8.333333vw;
    transform: translate(-27.96875vw, -7.03125vw);
    -webkit-transform: translate(-27.96875vw, -7.03125vw);
    -moz-transform: translate(-27.96875vw, -7.03125vw);
}

.hmos-6-main .hmos-6-s3 .ai-tips-container .tips-container .ai-tip8 {
    margin-left: 16.302083vw;
    transform: translate(21.66666666vw, -14.0625vw);
    -webkit-transform: translate(21.66666666vw, -14.0625vw);
    -moz-transform: translate(21.66666666vw, -14.0625vw);
}

.hmos-6-main .hmos-6-s3 .ai-tips-container .tips-container .ai-tip9 {
    margin-right: 11.5625vw;
    transform: translate(-21.66666666vw, -14.0625vw);
    -webkit-transform: translate(-21.66666666vw, -14.0625vw);
    -moz-transform: translate(-21.66666666vw, -14.0625vw);
}

.hmos-6-main .hmos-6-s3 .ai-tips-container.animated .tips-container li {
    opacity: 1;
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
}

@media screen and (max-aspect-ratio:11/10) {
    .hmos-6-main .hmos-6-s3 {
        padding-top: 22.222222vw;
    }

    .hmos-6-main .hmos-6-s3 .common-title-wrap {
        margin-top: 4.444444vw;
    }

    .hmos-6-main .hmos-6-s3 .common-title-wrap .common-big-title {
        background: linear-gradient(89.96deg, #17b1e2 0.01%, #5195fc 8.66%, #5f84fc 20.26%, #d67fcf 26.19%, #e79e6a 30.12%, #ffffff 50%, #000000 65.74%, #000000 99.99%);
        background-clip: text;
        -webkit-background-clip: text;
        background-size: 300% 100%;
        background-position-x: 100%;
    }

    .hmos-6-main .hmos-6-s3 .ai-tips-container {
        margin-top: -11.94444444444444vw;
    }

    .hmos-6-main .hmos-6-s3 .ai-tips-container .ai-logo-wrap {
        position: static;
        width: 100%;
        overflow: hidden;
        opacity: 1;
        transform: none;
        -webkit-transform: none;
        -moz-transform: none;
        transition: none;
        -webkit-transition: none;
        -moz-transition: none;
    }

    .hmos-6-main .hmos-6-s3 .ai-tips-container .ai-logo {
        width: 106.388889vw;
        height: 106.388889vw;
    }

    .hmos-6-main .hmos-6-s3 .ai-tips-container .tips-container {
        width: 100%;
        overflow: hidden;
        margin-top: -12.5vw;
    }

    .hmos-6-main .hmos-6-s3 .ai-tips-container .tips-container .tips-list {
        width: 291.666666666vw;
        padding-right: 0;
        transform: none;
        -webkit-transform: none;
        -moz-transform: none;
        justify-content: flex-start;
    }

    .hmos-6-main .hmos-6-s3 .ai-tips-container .tips-container li {
        box-shadow: 0vw 0.416667vw 2.777778vw rgba(0, 0, 0, 0.06);
        padding: 3.333333vw 4.444444vw;
        font-size: 3.472222vw;
        border-radius: 3.33333333vw 0vw 3.33333333vw 3.33333333vw;
        -webkit-border-radius: 3.33333333vw 0vw 3.33333333vw 3.33333333vw;
        -moz-border-radius: 3.33333333vw 0vw 3.33333333vw 3.33333333vw;
        opacity: 1;
    }

    .hmos-6-main .hmos-6-s3 .ai-tips-container .tips-container li:nth-child(n+1) {
        margin-top: 10.55555555vw;
    }

    .hmos-6-main .hmos-6-s3 .ai-tips-container .tips-container li.ai-tip0,
    .hmos-6-main .hmos-6-s3 .ai-tips-container .tips-container li.ai-tip1,
    .hmos-6-main .hmos-6-s3 .ai-tips-container .tips-container li.ai-tip4 {
        margin-top: 0;
    }

    .hmos-6-main .hmos-6-s3 .ai-tips-container .tips-container .ai-tip0 {
        margin-left: 17.5vw;
        margin-right: 13.88888888vw;
        order: 1;
    }

    .hmos-6-main .hmos-6-s3 .ai-tips-container .tips-container .ai-tip1 {
        margin-right: 11.5625vw;
        order: 2;
    }

    .hmos-6-main .hmos-6-s3 .ai-tips-container .tips-container .ai-tip2 {
        margin-left: 0;
        margin-right: 13.88888888vw;
        order: 4;
    }

    .hmos-6-main .hmos-6-s3 .ai-tips-container .tips-container .ai-tip3 {
        margin-left: 0;
        margin-right: 13.88888888vw;
        order: 5;
    }

    .hmos-6-main .hmos-6-s3 .ai-tips-container .tips-container .ai-tip4 {
        margin-left: 0;
        order: 3;
    }

    .hmos-6-main .hmos-6-s3 .ai-tips-container .tips-container .ai-tip5 {
        margin-left: 0;
        margin-right: 0;
        order: 7;
    }

    .hmos-6-main .hmos-6-s3 .ai-tips-container .tips-container .ai-tip6 {
        margin-left: 17.5vw;
        margin-right: 13.88888888vw;
        order: 8;
    }

    .hmos-6-main .hmos-6-s3 .ai-tips-container .tips-container .ai-tip7 {
        margin-right: 13.88888888vw;
        order: 6;
    }

    .hmos-6-main .hmos-6-s3 .ai-tips-container .tips-container .ai-tip8 {
        margin-left: 0;
        margin-right: 13.88888888vw;
        order: 9;
    }

    .hmos-6-main .hmos-6-s3 .ai-tips-container .tips-container .ai-tip9 {
        margin-right: 0;
        order: 10;
    }

    .hmos-6-main .hmos-6-s3 .ai-tips-container .tips-container .tips-list li {
        transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        transition: none;
        -webkit-transition: none;
        -moz-transition: none;
    }
}

/* s3 end */
/* s4 start */
.hmos-6-main .hmos-6-s4 {
    margin-top: 10.416667vw;
}

.hmos-6-main .hmos-6-s4 .s4-section {
    width: 67.5vw;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.hmos-6-main .hmos-6-s4 .content-wrap {
    width: 20.3125vw;
}

.hmos-6-main .hmos-6-s4 .content-wrap .common-desc {
    margin-top: 1.666667vw;
}

.hmos-6-main .hmos-6-s4 .right-video-wrap {
    flex-shrink: 0;
    width: 42.604167vw;
    height: 24.270833vw;
    position: relative;
    z-index: 1;
}

.hmos-6-main .hmos-6-s4 .computer-screen {
    position: absolute;
    width: 33.229167vw;
    height: 22.135417vw;
    z-index: -1;
    top: 0.572917vw;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
}

@media screen and (max-aspect-ratio:11/10) {
    .hmos-6-main .hmos-6-s4 {
        margin-top: 27.777778vw;
    }

    .hmos-6-main .hmos-6-s4 .s4-section {
        width: 100%;
        flex-direction: column;
        justify-content: flex-start;
    }

    .hmos-6-main .hmos-6-s4 .content-wrap {
        width: 77.777778vw;
    }

    .hmos-6-main .hmos-6-s4 .content-wrap .common-desc {
        margin-top: 5.555556vw;
    }

    .hmos-6-main .hmos-6-s4 .right-video-wrap {
        width: 82.2222223vw;
        height: 46.805556vw;
        margin-top: 11.111111vw;
    }

    .hmos-6-main .hmos-6-s4 .computer-screen {
        width: 64.027778vw;
        height: 42.777778vw;
        top: 1.111111vw;
    }
}

/* s4 end */
/* s5 start */
.hmos-6-main .hmos-6-s5 {
    margin-top: 10.416667vw;
}

.hmos-6-main .hmos-6-s5 .content-wrap {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.hmos-6-main .hmos-6-s5 .mutually-swiper-container {
    margin-top: 3.333333vw;
    width: 100%;
    overflow: hidden;
}


.hmos-6-main .hmos-6-s5 .mutually-swiper-container .mutually-swiper {
    width: 67.5vw;
    height: 36.458333vw;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hmos-6-main .hmos-6-s5 .mutually-swiper .common-bg {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.hmos-6-main .hmos-6-s5 .mutually-swiper .mutually-content {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    padding: 5.729167vw 0 5.208333vw;
    border-radius: 2.0833334vw;
    -webkit-border-radius: 2.0833334vw;
    -moz-border-radius: 2.0833334vw;
    overflow: hidden;
}

.hmos-6-main .hmos-6-s5 .mutually-swiper .swiper-slide .mutually-content3 {
    padding: 0;
}

.hmos-6-main .hmos-6-s5 .mutually-swiper .computer-container {
    position: relative;
    width: 44.0625vw;
    height: 25.052083vw;
    margin: 0 auto;
    z-index: 1;
}

.hmos-6-main .hmos-6-s5 .mutually-swiper .mutually-content3 .computer-container {
    width: 100%;
    height: 100%;
}


.hmos-6-main .hmos-6-s5 .mutually-swiper .mutually-content .computer-screen {
    position: absolute;
    top: 0.572917vw;
    left: 50%;
    width: 34.322917vw;
    height: 22.916667vw;
    z-index: -1;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
}

.hmos-6-main .hmos-6-s5 .mutually-swiper .mutually-content video {
    height: 100%;
}

.hmos-6-main .hmos-6-s5 .mutually-swiper .mutually-content .video-control-btn {
    width: 2.0833334vw;
    height: 2.0833334vw;
    position: absolute;
    right: 1.25vw;
    bottom: 1.25vw;
    z-index: 2;
    opacity: 0;
}

.hmos-6-main .hmos-6-s5 .mutually-swiper .swiper-slide-active .video-control-btn {
    opacity: 1;
    transition-delay: 0.3s;
}

.hmos-6-main .hmos-6-s5 .swiper-nav-container {
    position: relative;
    margin: 2.5vw auto 0;
    width: fit-content;
    padding: 0.208333vw;
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    overflow: hidden;
    background: #e2e2e2;
}

.hmos-6-main .hmos-6-s5 .swiper-nav-container .swiper-nav-wrapper {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    overflow: hidden;
}

.hmos-6-main .hmos-6-s5 .swiper-nav-container .nav-list {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hmos-6-main .hmos-6-s5 .swiper-nav-container .nav-list li {
    color: rgba(0, 0, 0, .3);
    flex-shrink: 0;
    padding: 0.729167vw 1.25vw;
    font-size: 0.9375vw;
    font-weight: 500;
    line-height: 1.25;
    text-align: center;
    transition: color 0.2s ease 0.2s;
    -webkit-transition: color 0.2s ease 0.2s;
    -moz-transition: color 0.2s ease 0.2s;
}

.hmos-6-main .hmos-6-s5 .swiper-nav-container .nav-list li.active {
    color: rgba(0, 0, 0, .8);
}

@media (pointer: fine) and (hover: hover) {
    .hmos-6-main .hmos-6-s5 .swiper-nav-container .nav-list li span:hover {
        cursor: pointer;
    }
}


.hmos-6-main .hmos-6-s5 .swiper-nav-container .nav-btn-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: calc(var(--nav-width) * 1px);
    height: 100%;
    transform: translateX(calc(var(--offset-dist) * 1px));
    -webkit-transform: translateX(calc(var(--offset-dist) * 1px));
    -moz-transform: translateX(calc(var(--offset-dist) * 1px));
    z-index: -1;
    transition: width 0.5s linear, transform .5s ease-out;
    -webkit-transition: width 0.5s linear, transform .5s ease-out;
    -moz-transition: width 0.5s linear, transform .5s ease-out;
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    overflow: hidden;
}

.hmos-6-main .hmos-6-s5.will-change .swiper-nav-container .nav-btn-bg {
    will-change: width,transform;
}

.hmos-6-main .hmos-6-s5 .swiper-nav-container .nav-btn-bg img {
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    overflow: hidden;
    height: 100%;
    object-fit: cover;
    filter: url(#blurFilter);
    -webkit-filter: url(#blurFilter);
}

.hmos-6-main .hmos-6-s5 .swiper-nav-container .nav-btn-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0.5px 0.5px 0px #fff inset, -0.5px -0.5px 0px #fff inset;
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    overflow: hidden;
}

.hmos-6-main .hmos-6-s5 .mutually-swiper-container .swiper-descs-list {
    width: 46.875vw;
    margin: 2.083333vw auto 0;
    display: flex;
}

.hmos-6-main .hmos-6-s5 .mutually-swiper-container .swiper-descs-list p {
    flex-shrink: 0;
    width: 100%;
    color: #999;
    font-size: 1.145833vw;
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    -webkit-transition: opacity 0.5s ease;
    -moz-transition: opacity 0.5s ease;
}

.hmos-6-main .hmos-6-s5.will-change .mutually-swiper-container .swiper-descs-list p{
    will-change: opacity;
}

.hmos-6-main .hmos-6-s5 .mutually-swiper-container .swiper-descs-list p+p {
    margin-left: -100%;
}

.hmos-6-main .hmos-6-s5 .mutually-swiper-container .swiper-descs-list p.active {
    opacity: 1;
    pointer-events: auto;
    transition-delay: 0.4s;
}

@media screen and (max-aspect-ratio:11/10) {
    .hmos-6-main .hmos-6-s5 {
        margin-top: 27.777778vw;
    }

    .hmos-6-main .hmos-6-s5 .content-wrap {
        text-align: left;
        width: 80vw;
        margin-left: 11.111111vw;
    }

    .hmos-6-main .hmos-6-s5 .mutually-swiper-container {
        margin-top: 8.888889vw;
    }

    .hmos-6-main .hmos-6-s5 .mutually-swiper-container .mutually-swiper {
        width: 86.666667vw;
        height: auto;
        margin-left: 4.4444444444444445vw;
        overflow: visible;
    }

    .hmos-6-main .hmos-6-s5 .mutually-swiper-container .mutually-swiper .swiper-slide:nth-last-child(n+2) {
        margin-right: 4.44444444445vw;
    }

    .hmos-6-main .hmos-6-s5 .mutually-swiper .mutually-content {
        padding: 25.416667vw 0 25.416667vw;
        border-radius: 5.555555555555556vw;
        -webkit-border-radius: 5.555555555555556vw;
        -moz-border-radius: 5.555555555555556vw;
    }

    .hmos-6-main .hmos-6-s5 .mutually-swiper .computer-container {
        width: 81.527778vw;
        height: 46.388889vw;
    }

    .hmos-6-main .hmos-6-s5 .mutually-swiper .mutually-content .computer-screen {
        top: 1.111111vw;
        width: 63.611111vw;
        height: 42.5vw;
    }

    .hmos-6-main .hmos-6-s5 .mutually-swiper .mutually-content .video-control-btn {
        width: 8.888889vw;
        height: 8.888889vw;
        right: 4.444444vw;
        bottom: 4.444444vw;
        opacity: 1;
    }

    .hmos-6-main .hmos-6-s5 .swiper-nav-container {
        width: 82.2222223vw;
        margin: 11.111111vw auto 0;
        padding: 1.111111vw;
    }

    .hmos-6-main .hmos-6-s5 .swiper-nav-container .swiper-nav-wrapper.tabnav-scrollable {
        overflow-x: auto;
        overflow-y: hidden;
        justify-content: flex-start;
    }

    .hmos-6-main .hmos-6-s5 .swiper-nav-container .swiper-nav-wrapper::-webkit-scrollbar {
        display: none;
    }

    .hmos-6-main .hmos-6-s5 .swiper-nav-container .nav-list li {
        padding: 3.194444vw 5.555556vw;
        font-size: 3.888889vw;
    }

    .hmos-6-main .hmos-6-s5 .mutually-swiper-container .swiper-descs-list {
        width: 77.777778vw;
        margin: 6.666667vw auto 0;
    }

    .hmos-6-main .hmos-6-s5 .mutually-swiper-container .swiper-descs-list p {
        font-size: 3.888889vw;
    }


    .hmos-6-main .hmos-6-s5 .nav-arrow {
        position: absolute;
        top: 50%;
        z-index: 2;
        width: 12.777778vw;
        height: calc(100% - 2.22222222223vw);
        display: flex;
        align-items: center;
        pointer-events: auto;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        transition: opacity 0.3s ease;
        -webkit-transition: opacity 0.3s ease;
        -moz-transition: opacity 0.3s ease;
    }

    .hmos-6-main .hmos-6-s5 .nav-arrow.hide {
        opacity: 0;
        pointer-events: none;
    }

    .hmos-6-main .hmos-6-s5 .nav-arrow img {
        width: 11.111111vw;
        height: 11.111111vw;
        flex-shrink: 0;
    }

    .hmos-6-main .hmos-6-s5 .nav-prev-arrow {
        left: 1.1111111111111112vw;
        border-radius: 999px 0vw 0vw 999px;
        -webkit-border-radius: 999px 0vw 0vw 999px;
        -moz-border-radius: 999px 0vw 0vw 999px;
        background: linear-gradient(270deg, rgba(226, 226, 226, 0) 3.42%, #e2e2e2 28.77%);
    }

    .hmos-6-main .hmos-6-s5 .nav-prev-arrow img {
        transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
    }

    .hmos-6-main .hmos-6-s5 .nav-next-arrow {
        justify-content: flex-end;
        right: 1.1111111111111112vw;
        border-radius: 0vw 999px 999px 0vw;
        -webkit-border-radius: 0vw 999px 999px 0vw;
        -moz-border-radius: 0vw 999px 999px 0vw;
        background: linear-gradient(90.13deg, rgba(226, 226, 226, 0) 3.42%, #e2e2e2 28.77%);
    }
}

/* s5 end */
/* s6 start */
.hmos-6-main .hmos-6-s6 {
    margin-top: 10.416667vw;
}

.hmos-6-main .hmos-6-s6 .deep-thinking-container {
    width: 67.5vw;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.hmos-6-main .hmos-6-s6 .content-wrap {
    width: 20.3125vw;
}

.hmos-6-main .hmos-6-s6 .content-wrap .common-desc {
    margin-top: 1.666667vw;
}

.hmos-6-main .hmos-6-s6 .right-video-wrap {
    flex-shrink: 0;
    width: 42.604167vw;
    height: 24.270833vw;
    position: relative;
    z-index: 1;
}

.hmos-6-main .hmos-6-s6 .computer-screen {
    position: absolute;
    width: 33.229167vw;
    height: 22.135417vw;
    z-index: -1;
    top: 0.572917vw;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
}

@media screen and (max-aspect-ratio:11/10) {
    .hmos-6-main .hmos-6-s6 {
        margin-top: 27.777778vw;
    }

    .hmos-6-main .hmos-6-s6 .deep-thinking-container {
        width: 100%;
        flex-direction: column;
        justify-content: flex-start;
    }

    .hmos-6-main .hmos-6-s6 .content-wrap {
        width: 77.777778vw;
    }

    .hmos-6-main .hmos-6-s6 .content-wrap .common-desc {
        margin-top: 5.555556vw;
    }

    .hmos-6-main .hmos-6-s6 .right-video-wrap {
        width: 82.2222223vw;
        height: 46.805556vw;
        margin-top: 11.111111vw;
    }

    .hmos-6-main .hmos-6-s6 .computer-screen {
        width: 64.027778vw;
        height: 42.777778vw;
        top: 1.111111vw;
    }
}

/* s6 end */
/* s7 start */
.hmos-6-main .hmos-6-s7 {
    margin-top: 10.416667vw;
}

.hmos-6-main .hmos-6-s7 .content-wrap {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.hmos-6-main .hmos-6-s7 .ai-fun-swiper-container {
    margin-top: 3.333333vw;
}

.hmos-6-main .hmos-6-s7 .ai-fun-swiper-container .fun-swiper-overflow {
    width: 100%;
    overflow: hidden;
}

.hmos-6-main .hmos-6-s7 .ai-fun-swiper-container .fun-swiper {
    width: 67.5vw;
    margin: 0 auto;
    overflow: visible;
}

.hmos-6-main .hmos-6-s7 .ai-fun-swiper-container .swiper-slide:nth-last-child(n+2) {
    margin-right: 1.25vw;
}

@media (pointer: fine) and (hover: hover) {
    .hmos-6-main .hmos-6-s7 .ai-fun-swiper-container .swiper-slide:not(.swiper-slide-active):hover {
        cursor: pointer;
    }
}

.hmos-6-main .hmos-6-s7 .ai-fun-swiper-container .fun-content {
    width: 100%;
    height: 36.458333vw;
    position: relative;
    border-radius: 2.083333vw;
    -webkit-border-radius: 2.083333vw;
    -moz-border-radius: 2.083333vw;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hmos-6-main .hmos-6-s7 .ai-fun-swiper-container .fun-content .common-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hmos-6-main .hmos-6-s7 .ai-fun-swiper-container .fun-content1 .computer-container {
    width: 29.375vw;
}

.hmos-6-main .hmos-6-s7 .ai-fun-swiper-container .fun-content2 .computer-container {
    width: 38.229167vw;
}

.hmos-6-main .hmos-6-s7 .ai-fun-swiper-container .fun-content3 .computer-container {
    width: 38.229167vw;
}

.hmos-6-main .hmos-6-s7 .ai-fun-swiper-container .fun-content4 .computer-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.hmos-6-main .hmos-6-s7 .ai-fun-swiper-container .fun-content4 .video-control-btn {
    width: 2.0833334vw;
    height: 2.0833334vw;
    position: absolute;
    right: 1.25vw;
    bottom: 1.25vw;
    z-index: 1;
}

.hmos-6-main .hmos-6-s7 .ai-fun-swiper-container .fun-desc {
    width: 40.78125vw;
    margin-top: 2.083333vw;
    margin-left: 0.833333vw;
}

.hmos-6-main .hmos-6-s7 .ai-fun-swiper-container .fun-swiper-nav-btns {
    width: 67.5vw;
    margin: 1.666667vw auto 0;
    display: flex;
    justify-content: flex-end;
}

.hmos-6-main .hmos-6-s7 .ai-fun-swiper-container .fun-swiper-nav-btns .btn-list {
    display: flex;
    align-items: center;
}

.hmos-6-main .hmos-6-s7 .ai-fun-swiper-container .fun-swiper-nav-btns .btn-list li {
    width: 2.5vw;
    height: 2.5vw;
    pointer-events: auto;
    transition: opacity 0.4s ease;
    -webkit-transition: opacity 0.4s ease;
    -moz-transition: opacity 0.4s ease;
}

.hmos-6-main .hmos-6-s7 .ai-fun-swiper-container .fun-swiper-nav-btns .btn-list li::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(ellipse 65.74% 65.74% at 71.91% 37.98%, #addbfc 0%, #3980e7 71%, #2766d0 100%);
    box-shadow: 2px -2px 4px rgba(131, 171, 235, 0.8) inset;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    overflow: hidden;
    transform: rotate(260deg);
    -webkit-transform: rotate(260deg);
    -moz-transform: rotate(260deg);
}

@media (pointer: fine) and (hover: hover) {
    .hmos-6-main .hmos-6-s7 .ai-fun-swiper-container .fun-swiper-nav-btns .btn-list li:hover {
        cursor: pointer;
    }
}

.hmos-6-main .hmos-6-s7 .ai-fun-swiper-container .fun-swiper-nav-btns .btn-list .btn-img,
.hmos-6-main .hmos-6-s7 .ai-fun-swiper-container .fun-swiper-nav-btns .btn-list .btn-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hmos-6-main .hmos-6-s7 .ai-fun-swiper-container .fun-swiper-nav-btns .btn-list .button-prev img {
    transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
}

.hmos-6-main .hmos-6-s7 .ai-fun-swiper-container .fun-swiper-nav-btns .btn-list .button-next {
    margin-left: 1.25vw;
}


.hmos-6-main .hmos-6-s7 .ai-fun-swiper-container .fun-swiper-nav-btns .btn-list li.swiper-button-disabled {
    opacity: 0.3;
    pointer-events: none;
}

@media screen and (max-aspect-ratio:11/10) {
    .hmos-6-main .hmos-6-s7 {
        margin-top: 27.777778vw;
    }

    .hmos-6-main .hmos-6-s7 .content-wrap {
        width: 77.777778vw;
        text-align: left;
    }

    .hmos-6-main .hmos-6-s7 .ai-fun-swiper-container {
        margin-top: 8.888889vw;
    }

    .hmos-6-main .hmos-6-s7 .ai-fun-swiper-container .fun-swiper {
        width: 86.666667vw;
        margin: 0 0 0 4.444444vw;
    }

    .hmos-6-main .hmos-6-s7 .ai-fun-swiper-container .swiper-slide:nth-last-child(n+2) {
        margin-right: 4.444444vw;
    }

    .hmos-6-main .hmos-6-s7 .ai-fun-swiper-container .fun-content {
        height: 97.222222vw;
        border-radius: 5.555556vw;
        -webkit-border-radius: 5.555556vw;
        -moz-border-radius: 5.555556vw;
    }

    
    .hmos-6-main .hmos-6-s7 .ai-fun-swiper-container .fun-content1 .computer-container {
        width: 63.75vw;
    }
    
    .hmos-6-main .hmos-6-s7 .ai-fun-swiper-container .fun-content2 .computer-container {
        width: 71.666667vw;
    }

    .hmos-6-main .hmos-6-s7 .ai-fun-swiper-container .fun-content3 .computer-container {
        width: 71.666667vw;
    }

    .hmos-6-main .hmos-6-s7 .ai-fun-swiper-container .fun-content4 .video-control-btn {
        width: 8.888889vw;
        height: 8.888889vw;
        right: 4.4444445vw;
        bottom: 4.4444445vw;
    }


    .hmos-6-main .hmos-6-s7 .ai-fun-swiper-container .fun-desc {
        width: 72.222222222222223vw;
        margin-top: 6.666667vw;
        margin-left: 6.666667vw;
    }

    .hmos-6-main .hmos-6-s7 .ai-fun-swiper-container .fun-desc .common-desc {
        font-size: 3.888888888888889vw;
    }

    .hmos-6-main .hmos-6-s7 .ai-fun-swiper-container .fun-swiper-nav-btns {
        width: 82.2222223vw;
        margin: 11.111111vw auto 0;
    }

    .hmos-6-main .hmos-6-s7 .ai-fun-swiper-container .fun-swiper-nav-btns .btn-list li {
        width: 11.111111vw;
        height: 11.111111vw;
    }

    .hmos-6-main .hmos-6-s7 .ai-fun-swiper-container .fun-swiper-nav-btns .btn-list .button-next {
        margin-left: 5.555556vw;
    }
}

/* s7 end */
/* s8 start */
.hmos-6-main .hmos-6-s8 {
    margin-top: 10.416667vw;
}

.hmos-6-main .hmos-6-s8 .content-wrap {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.hmos-6-main .hmos-6-s8 .content-wrap .common-desc {
    width: 38.229167vw;
    margin: 1.666667vw auto 0;
}

.hmos-6-main .hmos-6-s8 .set-content {
    margin-top: 3.333333vw;
}

.hmos-6-main .hmos-6-s8 .computer-container {
    width: 48.90625vw;
    height: 27.8125vw;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hmos-6-main .hmos-6-s8 .computer-screen {
    width: 38.072917vw;
    height: 25.416667vw;
    position: absolute;
    top: 0.625vw;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    z-index: -1;
}

.hmos-6-main .hmos-6-s8 .computer-screen video {
    height: 100%;
}

.hmos-6-main .hmos-6-s8 .video-contorl-container {
    width: 48.90625vw;
    display: flex;
    justify-content: center;
    margin: 2.083333vw auto 0;
}

.hmos-6-main .hmos-6-s8 .video-contorl-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.hmos-6-main .hmos-6-s8 .video-contorl-wrap .btn-item {
    display: none;
    align-items: center;
    justify-content: center;
}

@media (pointer: fine) and (hover: hover) {
    .hmos-6-main .hmos-6-s8 .video-contorl-wrap .btn-item:hover {
        cursor: pointer;
    }
}

.hmos-6-main .hmos-6-s8 .control-video[data-video-state="replay"] .replay-btn {
    display: flex;
}

.hmos-6-main .hmos-6-s8 .control-video[data-video-state="play"] .play-btn {
    display: flex;
}

.hmos-6-main .hmos-6-s8 .control-video[data-video-state="pause"] .pause-btn {
    display: flex;
}

.hmos-6-main .hmos-6-s8 .video-contorl-wrap .btn-item img {
    flex-shrink: 0;
    width: 1.4583334vw;
    height: 1.4583334vw;
}

.hmos-6-main .hmos-6-s8 .video-contorl-wrap .btn-item span {
    flex-shrink: 0;
    color: #6d6f72;
    font-size: 1.1458334vw;
    font-weight: 500;
    line-height: 1.25;
    margin-left: 0.2083334vw;
}

@media screen and (max-aspect-ratio:11/10) {
    .hmos-6-main .hmos-6-s8 {
        margin-top: 27.777778vw;
    }

    .hmos-6-main .hmos-6-s8 .content-wrap {
        width: 77.777778vw;
        text-align: left;
    }

    .hmos-6-main .hmos-6-s8 .content-wrap .common-desc {
        width: 100%;
        margin: 5.555556vw auto 0;
    }

    .hmos-6-main .hmos-6-s8 .set-content {
        margin-top: 11.111111vw;
    }

    .hmos-6-main .hmos-6-s8 .computer-container {
        width: 82.2222223vw;
        height: 46.805556vw;
    }

    .hmos-6-main .hmos-6-s8 .computer-screen {
        width: 63.888889vw;
        height: 42.638889vw;
        top: 1.111111vw;
    }

    .hmos-6-main .hmos-6-s8 .video-contorl-container {
        width: 82.2222223vw;
        margin: 5.555556vw auto;
    }

    .hmos-6-main .hmos-6-s8 .video-contorl-wrap .btn-item img {
        width: 5vw;
        height: 5vw;
    }

    .hmos-6-main .hmos-6-s8 .video-contorl-wrap .btn-item span {
        font-size: 4.444444vw;
        margin-left: 0.833333vw;
    }

}

/* s8 end */
/* s9 start */
.hmos-6-main .hmos-6-s9 {
    margin-top: 10.416667vw;
}

.hmos-6-main .hmos-6-s9 .common-title-wrap {
    margin-top: 1.458333vw;
}

.hmos-6-main .hmos-6-s9 .common-title-wrap .common-big-title {
    color: transparent;
    background: linear-gradient(180.09deg, #000000 0.06%, #000000 34.28%, #ffffff 49.11%, #679fff 70.61%, #776dd5 99.94%);
    background-clip: text;
    -webkit-background-clip: text;
    background-size: 100% 300%;
    background-position-y: 0%;
}

.hmos-6-main .hmos-6-s9 .common-title-wrap.animated .common-big-title {
    background-position-y: 100%;
}

.hmos-6-main .hmos-6-s9 .hmos-6-tap-to-share {
    margin-top: 5.208333vw;
    width: 100%;
    overflow: hidden;
}

.hmos-6-main .hmos-6-s9 .hmos-6-tap-to-share video {
    width: 100vw;
    height: 50vw;
}

@media screen and (max-aspect-ratio:11/10) {
    .hmos-6-main .hmos-6-s9 {
        margin-top: 27.777778vw;
    }

    .hmos-6-main .hmos-6-s9 .common-title-wrap {
        margin-top: 3.888889vw;
    }

    .hmos-6-main .hmos-6-s9 .hmos-6-tap-to-share {
        margin-top: 11.1111112vw;
    }

    .hmos-6-main .hmos-6-s9 .hmos-6-tap-to-share video {
        height: 90.833333333333334vw;
    }
}

/* s9 end */
/* s10 start */
.hmos-6-main .hmos-6-s10 {
    margin-top: 10.416667vw;
}

.hmos-6-main .hmos-6-s10 .content-wrap {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.hmos-6-main .hmos-6-s10 .interl-swiper-container {
    margin-top: 3.333333vw;
}

.hmos-6-main .hmos-6-s10 .interl-swiper-container .interl-swiper-overflow {
    width: 100%;
    overflow: hidden;
}

.hmos-6-main .hmos-6-s10 .interl-swiper-container .interl-swiper {
    width: 67.5vw;
    margin: 0 auto;
    overflow: visible;
}

.hmos-6-main .hmos-6-s10 .interl-swiper-container .swiper-slide:nth-last-child(n+2) {
    margin-right: 1.25vw;
}

@media (pointer: fine) and (hover: hover) {
    .hmos-6-main .hmos-6-s10 .interl-swiper-container .swiper-slide:not(.swiper-slide-active):hover {
        cursor: pointer;
    }
}

.hmos-6-main .hmos-6-s10 .interl-swiper-container .interl-content {
    width: 100%;
    height: 36.458333vw;
    position: relative;
    border-radius: 2.083333vw;
    -webkit-border-radius: 2.083333vw;
    -moz-border-radius: 2.083333vw;
    overflow: hidden;
    z-index: 1;
}

.hmos-6-main .hmos-6-s10 .interl-swiper-container .interl-content .video-container {
    width: 100%;
    height: 100%;
}

.hmos-6-main .hmos-6-s10 .interl-swiper-container .interl-content .video-container video {
    height: 100%;
}

.hmos-6-main .hmos-6-s10 .interl-swiper-container .interl-content .video-control-btn {
    width: 2.0833334vw;
    height: 2.0833334vw;
    position: absolute;
    right: 1.25vw;
    bottom: 1.25vw;
    z-index: 1;
}

.hmos-6-main .hmos-6-s10 .interl-swiper-container .interl-desc {
    width: 51.5625vw;
    margin-left: 0.833333vw;
    margin-top: 2.083333vw;
}

.hmos-6-main .hmos-6-s10 .interl-swiper-container .interl-swiper-nav-btns {
    width: 67.5vw;
    margin: 1.666667vw auto 0;
    display: flex;
    justify-content: flex-end;
}

.hmos-6-main .hmos-6-s10 .interl-swiper-container .interl-swiper-nav-btns .btn-list {
    display: flex;
    align-items: center;
}

.hmos-6-main .hmos-6-s10 .interl-swiper-container .interl-swiper-nav-btns .btn-list li {
    width: 2.5vw;
    height: 2.5vw;
    pointer-events: auto;
    transition: opacity 0.4s ease;
    -webkit-transition: opacity 0.4s ease;
    -moz-transition: opacity 0.4s ease;
}

.hmos-6-main .hmos-6-s10 .interl-swiper-container .interl-swiper-nav-btns .btn-list li::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(ellipse 65.74% 65.74% at 71.91% 37.98%, #addbfc 0%, #3980e7 71%, #2766d0 100%);
    box-shadow: 2px -2px 4px rgba(131, 171, 235, 0.8) inset;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    overflow: hidden;
    transform: rotate(260deg);
    -webkit-transform: rotate(260deg);
    -moz-transform: rotate(260deg);
}

@media (pointer: fine) and (hover: hover) {
    .hmos-6-main .hmos-6-s10 .interl-swiper-container .interl-swiper-nav-btns .btn-list li:hover {
        cursor: pointer;
    }
}

.hmos-6-main .hmos-6-s10 .interl-swiper-container .interl-swiper-nav-btns .btn-list .btn-img,
.hmos-6-main .hmos-6-s10 .interl-swiper-container .interl-swiper-nav-btns .btn-list .btn-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hmos-6-main .hmos-6-s10 .interl-swiper-container .interl-swiper-nav-btns .btn-list .button-prev img {
    transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
}

.hmos-6-main .hmos-6-s10 .interl-swiper-container .interl-swiper-nav-btns .btn-list .button-next {
    margin-left: 1.25vw;
}


.hmos-6-main .hmos-6-s10 .interl-swiper-container .interl-swiper-nav-btns .btn-list li.swiper-button-disabled {
    opacity: 0.3;
    pointer-events: none;
}

@media screen and (max-aspect-ratio:11/10) {
    .hmos-6-main .hmos-6-s10 {
        margin-top: 27.777778vw;
    }

    .hmos-6-main .hmos-6-s10 .content-wrap {
        width: 77.777778vw;
        text-align: left;
    }

    .hmos-6-main .hmos-6-s10 .interl-swiper-container {
        margin-top: 8.888889vw;
    }

    .hmos-6-main .hmos-6-s10 .interl-swiper-container .interl-swiper {
        width: 86.666667vw;
        margin-left: 4.444444vw;
    }

    .hmos-6-main .hmos-6-s10 .interl-swiper-container .swiper-slide:nth-last-child(n+2) {
        margin-right: 4.444444vw;
    }

    .hmos-6-main .hmos-6-s10 .interl-swiper-container .interl-content {
        height: 86.666667vw;
        border-radius: 5.555556vw;
        -webkit-border-radius: 5.555556vw;
        -moz-border-radius: 5.555556vw;
    }

    .hmos-6-main .hmos-6-s10 .interl-swiper-container .interl-content .video-control-btn {
        width: 8.888889vw;
        height: 8.888889vw;
        right: 4.444444vw;
        bottom: 4.444444vw;
    }

    .hmos-6-main .hmos-6-s10 .interl-swiper-container .interl-desc {
        width: 64.444444vw;
        margin-left: 6.666667vw;
        margin-top: 6.666667vw;
    }

    .hmos-6-main .hmos-6-s10 .interl-swiper-container .interl-desc .common-desc {
        font-size: 3.888888888888889vw;
    }

    .hmos-6-main .hmos-6-s10 .interl-swiper-container .interl-swiper-nav-btns {
        width: 82.2222223vw;
        margin: 11.111111vw auto 0;
    }

    .hmos-6-main .hmos-6-s10 .interl-swiper-container .interl-swiper-nav-btns .btn-list li {
        width: 11.111111vw;
        height: 11.111111vw;
    }

    .hmos-6-main .hmos-6-s10 .interl-swiper-container .interl-swiper-nav-btns .btn-list .button-next {
        margin-left: 5.555556vw;
    }

}

/* s10 end */
/* s11 start */
.hmos-6-main .hmos-6-s11 {
    padding: 10.416667vw 0;
    overflow: hidden;
}

.hmos-6-main .hmos-6-s11 .title-content {
    position: relative;
    z-index: 2;
}

.hmos-6-main .hmos-6-s11 .common-title-wrap {
    margin-top: 1.458333vw;
}

.hmos-6-main .hmos-6-s11 .common-title-wrap .common-big-title {
    color: transparent;
    background: linear-gradient(180.09deg, #000000 0.06%, #000000 34.28%, #ffffff 49.11%, #ffd080 60.61%, #fc8e3b 99.94%);
    background-clip: text;
    -webkit-background-clip: text;
    background-size: 100% 300%;
    background-position-y: 0%;
}

.hmos-6-main .hmos-6-s11 .common-title-wrap.animated .common-big-title {
    background-position-y: 100%;
}

.hmos-6-main .hmos-6-s11 .s11-desktop-container {
    margin-top: 8.333333vw;
}

.hmos-6-main .hmos-6-s11 .s11-desktop-container .content-wrap{
    width: 40.625vw;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hmos-6-main .hmos-6-s11 .s11-desktop-container .content-wrap .common-desc{
    margin-top: 1.666667vw;
}

.hmos-6-main .hmos-6-s11 .s11-desktop-container .computer-desktop-container{
    margin-top: 3.3333334vw;
}

.hmos-6-main .hmos-6-s11 .s11-desktop-container .computer-desktop-container .swiper-overflow{
    position: relative;
    width:67.5vw;
    height: 36.458333vw;
    z-index: 1;
    margin: 0 auto;
}

.hmos-6-main .hmos-6-s11 .s11-desktop-container .computer-desktop-container .common-bg{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    inset: 0;
    border-radius: 2.083333vw;
    -webkit-border-radius: 2.083333vw;
    -moz-border-radius: 2.083333vw;
    overflow: hidden;
}

.hmos-6-main .hmos-6-s11 .s11-desktop-container .computer-desktop-container .desktop-swiper{
    width: 100%;
    height: 100%;
    overflow: visible;
}

.hmos-6-main .hmos-6-s11 .s11-desktop-container .computer-desktop-container .desktop-swiper .swiper-slide{
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hmos-6-main .hmos-6-s11 .s11-desktop-container .computer-desktop-container .swiper-slide .desktop-content{
    width:44.0625vw;
    position: relative;
    z-index: 1;
}

.hmos-6-main .hmos-6-s11 .s11-desktop-container .computer-desktop-container .swiper-slide .video-wrap{
    width: 34.375vw;
    height: 22.96875vw;
    position: absolute;
    top: 0.572917vw;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    z-index: -1;
}

.hmos-6-main .hmos-6-s11 .s11-desktop-container .computer-desktop-container .swiper-slide .video-wrap video{
    height: 100%;
}

.hmos-6-main .hmos-6-s11 .s11-desktop-container .desktop-swiper .desktop-content1 .desktop-wrap{
    width: 100%;
    height: 100%;
    position: relative;
}

.hmos-6-main .hmos-6-s11 .s11-desktop-container .desktop-swiper .desktop-content1 .desktop-bg{
    width: 34.375vw;
    height: 22.96875vw;
    position: absolute;
    top: 0.572917vw;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    z-index: -1;
}

.hmos-6-main .hmos-6-s11 .s11-desktop-container .desktop-swiper .desktop-content1 .window-item{
    position: absolute;
    transition:transform 1s cubic-bezier(0, 0, 0.5, 1);
    -webkit-transition:transform 1s cubic-bezier(0, 0, 0.5, 1);
    -moz-transition:transform 1s cubic-bezier(0, 0, 0.5, 1);
}
.hmos-6-main .hmos-6-s11.will-change .desktop-content1 .window-item{
    will-change: transform;
}

.hmos-6-main .hmos-6-s11 .s11-desktop-container .desktop-swiper .desktop-content1 .window-item1{
    width: 23.072917vw;
    height: 15.989583vw;
    z-index: 1;
    top: 0.885417vw;
    left: 5.625vw;
    transform: translate(-60vw, -30vw);
    -webkit-transform: translate(-60vw, -30vw);
    -moz-transform: translate(-60vw, -30vw);
}
.hmos-6-main .hmos-6-s11 .s11-desktop-container .desktop-swiper .desktop-content1 .window-item2{
    width: 18.177083vw;
    height: 16.25vw;
    z-index: 2;
    top: 5.364583vw;
    left: 11.145833vw;
    transform: translate(-60vw, 20vw);
    -webkit-transform: translate(-60vw, 20vw);
    -moz-transform: translate(-60vw, 20vw);
}
.hmos-6-main .hmos-6-s11 .s11-desktop-container .desktop-swiper .desktop-content1 .window-item3{
    width: 22.96875vw;
    height: 15.208333vw;
    z-index: 3;
    top: 3.75vw;
    left: 14.53125vw;
    transform: translate(60vw, 15vw);
    -webkit-transform: translate(60vw, 15vw);
    -moz-transform: translate(60vw, 15vw);
}

.hmos-6-main .hmos-6-s11 .s11-desktop-container .desktop-swiper .desktop-content1.animated .window-item{
    transform: translate3d(0,0,0);
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
}

.hmos-6-main .hmos-6-s11 .s11-desktop-container .desktop-swiper .video-control-btn {
    width: 2.0833334vw;
    height: 2.0833334vw;
    position: absolute;
    right: 1.25vw;
    bottom: 1.25vw;
    z-index: 1;
    opacity: 0;
}

.hmos-6-main .hmos-6-s11 .s11-desktop-container .desktop-swiper .swiper-slide-active .video-control-btn {
    opacity: 1;
    transition-delay: 0.3s;
}

.hmos-6-main .hmos-6-s11 .s11-desktop-container .desktop-swiper-nav-btns {
    width: 67.5vw;
    margin: 1.666667vw auto 0;
    display: flex;
    justify-content: flex-end;
}

.hmos-6-main .hmos-6-s11 .s11-desktop-container .desktop-swiper-nav-btns .btn-list {
    display: flex;
    align-items: center;
}

.hmos-6-main .hmos-6-s11 .s11-desktop-container .desktop-swiper-nav-btns .btn-list li {
    width: 2.5vw;
    height: 2.5vw;
    pointer-events: auto;
    transition: opacity 0.4s ease;
    -webkit-transition: opacity 0.4s ease;
    -moz-transition: opacity 0.4s ease;
}

.hmos-6-main .hmos-6-s11 .s11-desktop-container .desktop-swiper-nav-btns .btn-list li::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(ellipse 65.74% 65.74% at 71.91% 37.98%, #addbfc 0%, #3980e7 71%, #2766d0 100%);
    box-shadow: 2px -2px 4px rgba(131, 171, 235, 0.8) inset;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    overflow: hidden;
    transform: rotate(260deg);
    -webkit-transform: rotate(260deg);
    -moz-transform: rotate(260deg);
}

@media (pointer: fine) and (hover: hover) {
    .hmos-6-main .hmos-6-s11 .s11-desktop-container .desktop-swiper-nav-btns .btn-list li:hover {
        cursor: pointer;
    }
}

.hmos-6-main .hmos-6-s11 .s11-desktop-container .desktop-swiper-nav-btns .btn-list .btn-img,
.hmos-6-main .hmos-6-s11 .s11-desktop-container .desktop-swiper-nav-btns .btn-list .btn-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hmos-6-main .hmos-6-s11 .s11-desktop-container .desktop-swiper-nav-btns .btn-list .button-prev img {
    transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
}

.hmos-6-main .hmos-6-s11 .s11-desktop-container .desktop-swiper-nav-btns .btn-list .button-next {
    margin-left: 1.25vw;
}


.hmos-6-main .hmos-6-s11 .s11-desktop-container .desktop-swiper-nav-btns .btn-list li.swiper-button-disabled {
    opacity: 0.3;
    pointer-events: none;
}


@media screen and (max-aspect-ratio:11/10) {
    .hmos-6-main .hmos-6-s11 {
        padding: 27.777778vw 0;
    }

    .hmos-6-main .hmos-6-s11 .common-title-wrap {
        margin-top: 3.888889vw;
    }

    .hmos-6-main .hmos-6-s11 .s11-desktop-container {
        margin-top: 27.777778vw;
    }

    .hmos-6-main .hmos-6-s11 .s11-desktop-container .content-wrap {
        width: 77.777778vw;
        text-align: left;
    }

    .hmos-6-main .hmos-6-s11 .s11-desktop-container .content-wrap .common-desc {
        width: 104%;
        margin-top: 5.555556vw;
    }

    .hmos-6-main .hmos-6-s11 .s11-desktop-container .computer-desktop-container {
        margin-top: 11.1111112vw;
    }

    .hmos-6-main .hmos-6-s11 .s11-desktop-container .computer-desktop-container .swiper-overflow {
        width: 91.1111112vw;
        height: 97.222222vw;
    }

    .hmos-6-main .hmos-6-s11 .s11-desktop-container .computer-desktop-container .common-bg {
        border-radius: 5.555556vw;
        -webkit-border-radius: 5.555556vw;
        -moz-border-radius: 5.555556vw;
    }
    .hmos-6-main .hmos-6-s11 .s11-desktop-container .computer-desktop-container .swiper-slide .desktop-content{
        width:82.2222223vw;
    }

    .hmos-6-main .hmos-6-s11 .s11-desktop-container .computer-desktop-container .desktop-swiper .swiper-slide .video-wrap {
        width: 64.166667vw;
        height: 42.91666666666667vw;
        top: 1.111111vw;
    }

    .hmos-6-main .hmos-6-s11 .s11-desktop-container .desktop-swiper .desktop-content1 .desktop-bg {
        width: 64.166667vw;
        height: 42.91666666666667vw;
        top: 1.111111vw;
    }

    .hmos-6-main .hmos-6-s11 .s11-desktop-container .desktop-swiper .video-control-btn {
        width: 8.888889vw;
        height: 8.888889vw;
        right: 4.444444vw;
        bottom: 4.444444vw;
    }

    .hmos-6-main .hmos-6-s11 .s11-desktop-container .desktop-swiper .desktop-content1 .window-item1 {
        width: 43.194444vw;
        height: 29.861111vw;
        top: 1.527778vw;
        left: 10.416667vw;
        transform: translate(-80vw, -25vw);
        -webkit-transform: translate(-80vw, -25vw);
        -moz-transform: translate(-80vw, -25vw);
}

    .hmos-6-main .hmos-6-s11 .s11-desktop-container .desktop-swiper .desktop-content1 .window-item2 {
        width: 33.888889vw;
        height: 30.277778vw;
        top: 10vw;
        left: 20.833333vw;
        transform: translate(-80vw, 33vw);
        -webkit-transform: translate(-80vw, 33vw);
        -moz-transform: translate(-80vw, 33vw);
}

    .hmos-6-main .hmos-6-s11 .s11-desktop-container .desktop-swiper .desktop-content1 .window-item3 {
        width: 42.916667vw;
        height: 28.333333vw;
        top: 6.944444vw;
        left: 27.083333vw;
        transform: translate(80vw, 35vw);
        -webkit-transform: translate(80vw, 35vw);
        -moz-transform: translate(80vw, 35vw);
}

    .hmos-6-main .hmos-6-s11 .s11-desktop-container .desktop-swiper-nav-btns {
        width: 82.2222223vw;
        margin: 11.111111vw auto 0;
    }

    .hmos-6-main .hmos-6-s11 .s11-desktop-container .desktop-swiper-nav-btns .btn-list li {
        width: 11.111111vw;
        height: 11.111111vw;
    }

    .hmos-6-main .hmos-6-s11 .s11-desktop-container .desktop-swiper-nav-btns .btn-list .button-next {
        margin-left: 5.555556vw;
    }

}


/* s11 end */
/* s12 start */
.hmos-6-main .hmos-6-s12 .content-wrap {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.hmos-6-main .hmos-6-s12 .ark-engine-video {
    position: relative;
    width: 67.5vw;
    height: 36.458333vw;
    margin: 3.333333vw auto 0;
    border-radius: 2.083333vw;
    -webkit-border-radius: 2.083333vw;
    -moz-border-radius: 2.083333vw;
    overflow: hidden;
}

.hmos-6-main .hmos-6-s12 .ark-engine-video video {
    height: 100%;
}

.hmos-6-main .hmos-6-s12 .ark-engine-video .video-control-btn {
    width: 2.0833334vw;
    height: 2.0833334vw;
    position: absolute;
    right: 1.25vw;
    bottom: 1.25vw;
    z-index: 1;
}

.hmos-6-main .hmos-6-s12 .desc-content {
    width: 67.5vw;
    margin: 2.083333vw auto 0;
    text-align: center;
}

@media screen and (max-aspect-ratio:11/10) {
    .hmos-6-main .hmos-6-s12 .content-wrap {
        width: 77.777778vw;
        text-align: left;
    }

    .hmos-6-main .hmos-6-s12 .ark-engine-video {
        width: 91.111111vw;
        height: 107.777778vw;
        margin: 8.888889vw auto 0;
        border-radius: 5.555556vw;
        -webkit-border-radius: 5.555556vw;
        -moz-border-radius: 5.555556vw;
    }

    .hmos-6-main .hmos-6-s12 .ark-engine-video .video-control-btn {
        width: 8.888889vw;
        height: 8.888889vw;
        right: 4.444444vw;
        bottom: 4.444444vw;
    }

    .hmos-6-main .hmos-6-s12 .desc-content {
        width: 80.555556vw;
        margin: 6.666667vw 0 0 11.1111112vw;
        text-align: left;
    }
}

/* s12 end */
/* s13 start */
.hmos-6-main .hmos-6-s13 {
    margin-top: 10.416667vw;
}

.hmos-6-main .hmos-6-s13 .gesture-container {
    width: 67.5vw;
    height: 30.625vw;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-flow: column wrap;
    overflow: hidden;
}

.hmos-6-main .hmos-6-s13 .gesture-container .gesture-swiper-nav {
    display: flex;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 3.333333vw;
}

.hmos-6-main .hmos-6-s13 .gesture-container .gesture-swiper-nav .nav-wrap {
    display: flex;
    flex-shrink: 0;
}

.hmos-6-main .hmos-6-s13 .gesture-container .gesture-swiper-nav .nav-scroll-inline {
    flex-shrink: 0;
    width: 0.2083334vw;
    background: #d8e6ff;
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    overflow: hidden;
}

.hmos-6-main .hmos-6-s13 .gesture-container .gesture-swiper-nav .scroll-inline {
    width: 100%;
    height: calc(var(--line-height) / var(--innerWidth) * 100vw);
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    overflow: hidden;
    background: linear-gradient(0deg, #90d3fd 0%, #2275db 100%);
    transform: translateY(calc(var(--offset-top) / var(--innerWidth) * 100vw));
    -webkit-transform: translateY(calc(var(--offset-top) / var(--innerWidth) * 100vw));
    -moz-transform: translateY(calc(var(--offset-top) / var(--innerWidth) * 100vw));
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    -moz-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hmos-6-main .hmos-6-s13.will-change .scroll-inline {
    will-change: height,width,transform;
}

.hmos-6-main .hmos-6-s13 .gesture-container .nav-btn-list {
    position: relative;
    flex-shrink: 0;
    width: fit-content;
    margin-left: 1.666667vw;
}

.hmos-6-main .hmos-6-s13 .gesture-container .nav-btn-list .btn-item+.btn-item {
    margin-top: 2.083333vw;
}

.hmos-6-main .hmos-6-s13 .gesture-container .nav-btn-list .btn-item h4 {
    color: rgba(0, 0, 0, .4);
    font-size: 1.666667vw;
    font-weight: 500;
    line-height: 1.25;
}

@media (pointer: fine) and (hover: hover) {
    .hmos-6-main .hmos-6-s13 .gesture-container .nav-btn-list .btn-item h4:hover {
        cursor: pointer;
    }
}


.hmos-6-main .hmos-6-s13 .gesture-container .nav-btn-list .btn-item.active h4 {
    color: rgba(0, 0, 0, 1);
    cursor: default;
}

.hmos-6-main .hmos-6-s13 .gesture-container .nav-btn-list .btn-item .desc-txt {
    width: 20.625vw;
    height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    -moz-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hmos-6-main .hmos-6-s13.will-change .desc-txt {
    will-change: height, opacity;
}

.hmos-6-main .hmos-6-s13 .gesture-container .nav-btn-list .btn-item.active .desc-txt {
    height: calc(var(--txt-height) / var(--innerWidth) * 100vw);
}

.hmos-6-main .hmos-6-s13 .gesture-container .nav-btn-list .btn-item p {
    color: #999;
    font-size: 1.145833vw;
    font-weight: 500;
    line-height: 1.6;
    padding-top: 0.833333vw;
}

.hmos-6-main .hmos-6-s13 .gesture-container .gesture-swiper-container {
    flex-shrink: 0;
    width: 44.0625vw;
    height: 30.625vw;
    margin-left: auto;
    overflow: hidden;
}

.hmos-6-main .hmos-6-s13 .gesture-container .gesture-swiper-container .gesture-swiper {
    width: 100%;
    height: 100%;
}


.hmos-6-main .hmos-6-s13 .gesture-container .gesture-swiper-container .gesture-swiper .gesture-content,
.hmos-6-main .hmos-6-s13 .gesture-container .gesture-swiper-container .gesture-swiper .gesture-content video {
    height: 100%;
}

@media screen and (max-aspect-ratio:11/10) {
    .hmos-6-main .hmos-6-s13 {
        margin-top: 27.777778vw;
    }

    .hmos-6-main .hmos-6-s13 .gesture-container {
        width: 100%;
        height: auto;
        align-items: center;
        justify-content: flex-start;
        overflow: hidden;
    }

    .hmos-6-main .hmos-6-s13 .gesture-container .content-wrap {
        width: 77.777778vw;
        margin: 0 auto;
        order: 0;
    }

    .hmos-6-main .hmos-6-s13 .gesture-container .gesture-swiper-nav {
        width: 100%;
        margin-top: 11.111111vw;
        order: 2;
    }

    .hmos-6-main .hmos-6-s13 .gesture-container .gesture-swiper-nav.tabnav-scrollable {
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .hmos-6-main .hmos-6-s13 .gesture-container .gesture-swiper-nav.tabnav-scrollable::-webkit-scrollbar {
        display: none;
    }

    .hmos-6-main .hmos-6-s13 .gesture-container .gesture-swiper-nav .nav-wrap {
        padding: 0 11.111111vw;
        flex-direction: column-reverse;
    }

    .hmos-6-main .hmos-6-s13 .gesture-container .gesture-swiper-nav .nav-scroll-inline {
        width: 100%;
        height: 4px;
        margin-top: 3.888889vw;
    }

    .hmos-6-main .hmos-6-s13 .gesture-container .gesture-swiper-nav .scroll-inline {
        width: calc(var(--line-width) * 1px);
        height: 100%;
        transform: translateX(calc(var(--offset-left) * 1px));
        -webkit-transform: translateX(calc(var(--offset-left) * 1px));
        -moz-transform: translateX(calc(var(--offset-left) * 1px));
        background: linear-gradient(270deg, #90d3fd 0%, #2275db 100%);
    }

    .hmos-6-main .hmos-6-s13 .gesture-container .nav-btn-list {
        display: flex;
        margin-left: 0;
    }

    .hmos-6-main .hmos-6-s13 .gesture-container .nav-btn-list .btn-item+.btn-item {
        margin: 0 0 0 11.111111vw;
    }

    .hmos-6-main .hmos-6-s13 .gesture-container .nav-btn-list .btn-item h4 {
        font-size: 5.555556vw;
        white-space: nowrap;
    }

    .hmos-6-main .hmos-6-s13 .gesture-container .nav-btn-list .btn-item .desc-txt {
        width: 100%;
        height: auto;
    }

    .hmos-6-main .hmos-6-s13 .gesture-container .gesture-swiper-container {
        width: 82.2222223vw;
        height: 57.083333vw;
        margin: 11.111111vw auto 0;
        order: 1;
    }

    .hmos-6-main .hmos-6-s13 .gesture-container .desc-container {
        width: 77.777778vw;
        margin: 5.555555555555556vw auto 0;
        order: 3;
    }

    .hmos-6-main .hmos-6-s13 .gesture-container .desc-wrap {
        width: 100%;
        display: flex;
    }

    .hmos-6-main .hmos-6-s13 .gesture-container .desc-wrap p {
        flex-shrink: 0;
        width: 100%;
        color: #999;
        font-size: 4.444444vw;
        font-weight: 500;
        text-align: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.5s ease;
        -webkit-transition: opacity 0.5s ease;
        -moz-transition: opacity 0.5s ease;
        transform: translate3d(0,0,0);
        -webkit-transform: translate3d(0,0,0);
        -moz-transform: translate3d(0,0,0);
}

    .hmos-6-main .hmos-6-s13 .gesture-container .desc-wrap p.active {
        opacity: 1;
        pointer-events: auto;
        transition-delay: 0.4s;
    }

    .hmos-6-main .hmos-6-s13 .gesture-container .desc-wrap p+p {
        margin-left: -100%;
    }
}

/* s13 end */

/* s14 start */
.hmos-6-main .hmos-6-s14 {
    margin-top: 10.416667vw;
}

.hmos-6-main .hmos-6-s14 .content-wrap {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.hmos-6-main .hmos-6-s14 .content-wrap .common-desc {
    width: 31.25vw;
    margin: 1.666667vw auto 0;
}

.hmos-6-main .hmos-6-s14 .design-swiper-container {
    margin-top: 3.33333333vw;
}

.hmos-6-main .hmos-6-s14 .design-swiper-container .design-swiper-overflow {
    width: 100%;
    overflow: hidden;
}

.hmos-6-main .hmos-6-s14 .design-swiper-container .design-swiper {
    width: 67.5vw;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hmos-6-main .hmos-6-s14 .design-swiper .design-container {
    position: relative;
    width: 100%;
    height: 36.458333vw;
    z-index: 1;
    border-radius: 2.083333vw;
    -webkit-border-radius: 2.083333vw;
    -moz-border-radius: 2.083333vw;
    overflow: hidden;
}

.hmos-6-main .hmos-6-s14 .design-swiper .design-container video {
    height: 100%;
}

.hmos-6-main .hmos-6-s14 .design-swiper .open-btn {
    width: 2.0833334vw;
    height: 2.0833334vw;
    position: absolute;
    right: 1.25vw;
    bottom: 1.25vw;
    z-index: 1;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    overflow: hidden;
}

.hmos-6-main .hmos-6-s14 .design-swiper .open-btn::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: rgba(128, 128, 128, 0.5);
    backdrop-filter: blur(2.5vw);
    -webkit-backdrop-filter: blur(2.5vw);
    overflow: hidden;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    transition: .3s ease;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
}

@media (pointer: fine) and (hover: hover) {
    .hmos-6-main .hmos-6-s14 .design-swiper .open-btn:hover {
        cursor: pointer;
    }

    .hmos-6-main .hmos-6-s14 .design-swiper .open-btn:hover::before {
        opacity: .6;
    }
}

.hmos-6-main .hmos-6-s14 .design-swiper .open-btn img {
    opacity: 1;
}

.hmos-6-main .hmos-6-s14 .swiper-nav-container {
    position: relative;
    margin: 2.5vw auto 0;
    width: fit-content;
    padding: 0.208333vw;
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    overflow: hidden;
    background: #e2e2e2;
}

.hmos-6-main .hmos-6-s14 .swiper-nav-container .swiper-nav-wrapper {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hmos-6-main .hmos-6-s14 .swiper-nav-container .nav-list {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hmos-6-main .hmos-6-s14 .swiper-nav-container .nav-list li {
    color: rgba(0, 0, 0, .3);
    flex-shrink: 0;
    padding: 0.729167vw 1.25vw;
    font-size: 0.9375vw;
    font-weight: 500;
    line-height: 1.25;
    text-align: center;
    transition: color 0.2s ease 0.2s;
    -webkit-transition: color 0.2s ease 0.2s;
    -moz-transition: color 0.2s ease 0.2s;
}

.hmos-6-main .hmos-6-s14 .swiper-nav-container .nav-list li.active {
    color: rgba(0, 0, 0, .8);
}

@media (pointer: fine) and (hover: hover) {
    .hmos-6-main .hmos-6-s14 .swiper-nav-container .nav-list li span:hover {
        cursor: pointer;
    }
}

.hmos-6-main .hmos-6-s14 .swiper-nav-container .nav-btn-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: calc(var(--nav-width) * 1px);
    height: 100%;
    transform: translateX(calc(var(--offset-dist) * 1px));
    -webkit-transform: translateX(calc(var(--offset-dist) * 1px));
    -moz-transform: translateX(calc(var(--offset-dist) * 1px));
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    overflow: hidden;
    z-index: -1;
    transition: width 0.5s linear, transform .5s ease-out;
    -webkit-transition: width 0.5s linear, transform .5s ease-out;
    -moz-transition: width 0.5s linear, transform .5s ease-out;
}

.hmos-6-main .hmos-6-s14.will-change .swiper-nav-container .nav-btn-bg{
    will-change:width,transform;
}

.hmos-6-main .hmos-6-s14 .swiper-nav-container .nav-btn-bg img {
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    overflow: hidden;
    height: 100%;
    object-fit: cover;
    filter: url(#blurFilter);
    -webkit-filter: url(#blurFilter);
}

.hmos-6-main .hmos-6-s14 .swiper-nav-container .nav-btn-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0.5px 0.5px 0px #fff inset, -0.5px -0.5px 0px #fff inset;
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    overflow: hidden;
}

@media screen and (max-aspect-ratio:11/10) {
    .hmos-6-main .hmos-6-s14 {
        margin-top: 27.777778vw;
    }

    .hmos-6-main .hmos-6-s14 .content-wrap {
        width: 77.77777777777778vw;
        text-align: left;
    }

    .hmos-6-main .hmos-6-s14 .content-wrap .common-desc {
        width: 100%;
    }

    .hmos-6-main .hmos-6-s14 .design-swiper-container {
        margin-top: 8.888889vw;
    }

    .hmos-6-main .hmos-6-s14 .design-swiper-container .design-swiper {
        width: 86.666667vw;
        margin-left: 4.4444444444444445vw;
        overflow: visible;
    }

    .hmos-6-main .hmos-6-s14 .design-swiper-container .design-swiper .swiper-slide:nth-last-child(n+2) {
        margin-right: 4.4444444444444445vw;
    }

    .hmos-6-main .hmos-6-s14 .design-swiper .design-container {
        height: 97.222222vw;
        border-radius: 5.555556vw;
        -webkit-border-radius: 5.555556vw;
        -moz-border-radius: 5.555556vw;
    }

    .hmos-6-main .hmos-6-s14 .design-swiper .open-btn {
        width: 8.888889vw;
        height: 8.888889vw;
        right: 4.444444vw;
        bottom: 4.444444vw;
    }

    .hmos-6-main .hmos-6-s14 .swiper-nav-container {
        margin: 11.111111vw auto 0;
        padding: 1.111111vw;
    }

    .hmos-6-main .hmos-6-s14 .swiper-nav-container .swiper-nav-wrapper.tabnav-scrollable {
        overflow-x: auto;
        overflow-y: hidden;
        justify-content: flex-start;
    }

    .hmos-6-main .hmos-6-s14 .swiper-nav-container .swiper-nav-wrapper::-webkit-scrollbar {
        display: none;
    }

    .hmos-6-main .hmos-6-s14 .swiper-nav-container .nav-list li {
        padding: 3.194444vw 5.555556vw;
        font-size: 3.888889vw;
    }

    .hmos-6-main .hmos-6-s14 .design-swiper-container .swiper-descs-list {
        width: 77.777778vw;
        margin: 5.555556vw auto 0;
    }

    .hmos-6-main .hmos-6-s14 .design-swiper-container .swiper-descs-list p {
        font-size: 4.444444vw;
        text-align: left;
    }
}

/* s14 end */

/* modal start */
.hmos-6-main .section-modal {
    overflow: hidden;
    position: fixed;
    width: 100vw;
    inset: 0;
    margin: auto;
    outline: 0;
    background-color: rgba(237, 238, 238, 0);
    backdrop-filter: blur(0vw) brightness(100%);
    -webkit-backdrop-filter: blur(0vw) brightness(100%);
    transition: -webkit-backdrop-filter 0.6s cubic-bezier(0.65, 0.05, 0.36, 1), backdrop-filter 0.6s cubic-bezier(0.65, 0.05, 0.36, 1), background-color 0.6s cubic-bezier(0.65, 0.05, 0.36, 1);
    -webkit-transition: -webkit-backdrop-filter 0.6s cubic-bezier(0.65, 0.05, 0.36, 1), backdrop-filter 0.6s cubic-bezier(0.65, 0.05, 0.36, 1), background-color 0.6s cubic-bezier(0.65, 0.05, 0.36, 1);
    -moz-transition: -webkit-backdrop-filter 0.6s cubic-bezier(0.65, 0.05, 0.36, 1), backdrop-filter 0.6s cubic-bezier(0.65, 0.05, 0.36, 1), background-color 0.6s cubic-bezier(0.65, 0.05, 0.36, 1);
    z-index: -1;
}

.hmos-6-main .section-modal.pop-out {
    background-color: rgba(237, 238, 238, 0.8);
    backdrop-filter: blur(50px) brightness(120%);
    -webkit-backdrop-filter: blur(50px) brightness(120%);
    overscroll-behavior: contain;
}

.hmos-6-main .section-modal.pop-outed {
    z-index: 200;
    overflow: auto;
    scrollbar-gutter: stable both-edges;
}

.hmos-6-main .section-modal.overflow .modal-common {
    overflow: hidden;
}

.hmos-6-main .section-modal .modal-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    transform: translate3d(0, 100vh, 0);
    -webkit-transform: translate3d(0, 100vh, 0);
    -moz-transform: translate3d(0, 100vh, 0);
    will-change: transform, opacity;
}

.hmos-6-main .section-modal.pop-out .modal-container {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transition: transform 0.6s cubic-bezier(0.65, 0.05, 0.36, 1);
    -webkit-transition: transform 0.6s cubic-bezier(0.65, 0.05, 0.36, 1);
    -moz-transition: transform 0.6s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.hmos-6-main .section-modal.modal-close .modal-container {
    opacity: 0;
    transition: opacity 0.6s ease;
    -webkit-transition: opacity 0.6s ease;
    -moz-transition: opacity 0.6s ease;
}

.hmos-6-main .section-modal .modal-container .modal-wrapper {
    width: 81.25vw;
    position: relative;
    margin: 3.333333vw 0;
    background-color: #fff;
    border-radius: 0.833333vw;
    -webkit-border-radius: 0.833333vw;
    -moz-border-radius: 0.833333vw;
}

.hmos-6-main .section-modal .modal-container .modal-close-container {
    position: absolute;
    top: 1.666667vw;
    right: 1.666667vw;
    bottom: 1.666667vw;
    width: 2.0833334vw;
    z-index: 2;
}

.hmos-6-main .section-modal .modal-close-container .modal-close-button {
    position: sticky;
    z-index: 10;
    top: 1.666667vw;
    width: 100%;
    height: 2.0833334vw;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: rgba(128, 128, 128, 0.5);
    backdrop-filter: blur(2.5vw);
    -webkit-backdrop-filter: blur(2.5vw);
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
}

@media (pointer: fine) and (hover: hover) {
    .hmos-6-main .section-modal .modal-close-container .modal-close-button:hover {
        cursor: pointer;
        background: rgba(128, 128, 128, 0.4);
    }

}

.hmos-6-main .section-modal .modal-close-button .modal-close-icon {
    pointer-events: none;
}

.hmos-6-main .section-modal .modal-container .modal-wrapper .modal-content {
    padding: 4.166667vw 0;
}

.hmos-6-main .section-modal .content-wrap {
    margin: 0 auto;
    text-align: center;
}

.hmos-6-main .section-modal .sub-title {
    color: rgba(0, 0, 0, .5);
    font-size: 1.145833vw;
    line-height: 1.25;
    font-weight: 400;
}

.hmos-6-main .section-modal .big-title {
    color: #000;
    font-size: 3.3333334vw;
    line-height: 1.25;
    font-weight: 700;
    margin-top: 1.25vw;
}

.hmos-6-main .section-modal .desc-txt {
    color: #999;
    font-size: 1.145833vw;
    font-weight: 400;
    line-height: 1.6;
    margin-top: 1.666667vw;
}

@media screen and (max-aspect-ratio:11/10) {
    .hmos-6-main .section-modal .modal-container .modal-wrapper {
        width: 95.555556vw;
        margin: 8.888889vw 0;
        border-radius: 5.555556vw;
        -webkit-border-radius: 5.555556vw;
        -moz-border-radius: 5.555556vw;
    }

    .hmos-6-main .section-modal .modal-container .modal-close-container {
        top: 3.333333vw;
        right: 3.333333vw;
        bottom: 3.333333vw;
        width: 11.111111vw;
    }

    .hmos-6-main .section-modal .modal-close-container .modal-close-button {
        top: 3.333333vw;
        height: 11.111111vw;
    }

    .hmos-6-main .section-modal .modal-container .modal-wrapper .modal-content {
        padding: 19.444444vw 0;
    }

    .hmos-6-main .section-modal .content-wrap {
        text-align: left;
        margin: 0 0 0 6.666667vw;
    }

    .hmos-6-main .section-modal .sub-title {
        font-size: 4.444444vw;
    }

    .hmos-6-main .section-modal .big-title {
        font-size: 11.111111vw;
        margin-top: 3.333333vw;
    }

    .hmos-6-main .section-modal .desc-txt {
        font-size: 4.444444vw;
        margin-top: 4.444444vw;
    }
}

/* modal end */


/* Theme start */
.hmos-6-main #PersonTheme .theme-swiper-container {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 58.33333333vw;
    transform: translate3d(0, 0, 0) rotate(0deg);
    margin: 4.166667vw auto 0;
}

.hmos-6-main #PersonTheme .theme-swiper-container>picture {
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.hmos-6-main #PersonTheme .theme-swiper {
    overflow: hidden;
    position: absolute;
    top: 0.67708333333vw;
    left: 50%;
    width: 45.57291666667vw;
    height: 30.520833333333334vw;
    z-index: -1;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
}

.hmos-6-main #PersonTheme .theme-swiper .design-screen {
    perspective: 41.666667vw;
    transform-style: preserve-3d;
}

.hmos-6-main #PersonTheme .theme-swiper .design-screen,
.hmos-6-main #PersonTheme .theme-swiper video {
    height: 100%;
}

.hmos-6-main #PersonTheme .swiper-nav-container {
    position: relative;
    margin: 3.33333333vw auto 0;
    width: fit-content;
    padding: 0.208333vw;
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    overflow: hidden;
    background: #e2e2e2;
}

.hmos-6-main #PersonTheme .swiper-nav-container .swiper-nav-wrapper {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hmos-6-main #PersonTheme .swiper-nav-container .nav-list {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hmos-6-main #PersonTheme .swiper-nav-container .nav-list li {
    color: rgba(0, 0, 0, .3);
    flex-shrink: 0;
    padding: 0.729167vw 1.25vw 0.677083vw;
    font-size: 0.9375vw;
    font-weight: 500;
    line-height: 1.25;
    text-align: center;
    transition: color 0.2s ease 0.2s;
    -webkit-transition: color 0.2s ease 0.2s;
    -moz-transition: color 0.2s ease 0.2s;
}

.hmos-6-main #PersonTheme .swiper-nav-container .nav-list li.active {
    color: rgba(0, 0, 0, .8);
}

@media (pointer: fine) and (hover: hover) {
    .hmos-6-main #PersonTheme .swiper-nav-container .nav-list li span:hover {
        cursor: pointer;
    }
}

.hmos-6-main #PersonTheme .swiper-nav-container .nav-btn-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: calc(var(--nav-width) * 1px);
    height: 100%;
    transform: translateX(calc(var(--offset-dist) * 1px));
    -webkit-transform: translateX(calc(var(--offset-dist) * 1px));
    -moz-transform: translateX(calc(var(--offset-dist) * 1px));
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    overflow: hidden;
    z-index: -1;
    transition: width 0.5s linear, transform .5s ease-out;
    -webkit-transition: width 0.5s linear, transform .5s ease-out;
    -moz-transition: width 0.5s linear, transform .5s ease-out;
}

.hmos-6-main #PersonTheme .swiper-nav-container .nav-btn-bg img {
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    overflow: hidden;
    height: 100%;
    object-fit: cover;
    filter: url(#blurFilter);
    -webkit-filter: url(#blurFilter);
}

.hmos-6-main #PersonTheme .swiper-nav-container .nav-btn-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0.5px 0.5px 0px #fff inset, -0.5px -0.5px 0px #fff inset;
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    overflow: hidden;
}

@media screen and (max-aspect-ratio: 11/10) {
    .hmos-6-main #PersonTheme .content-wrap {
        width: 82.0833334vw;
    }

    .hmos-6-main #PersonTheme .theme-swiper-container {
        width: 80.97222222vw;
        margin: 11.1111112vw auto 0;
    }

    .hmos-6-main #PersonTheme .theme-swiper {
        top: 1.027777777777778vw;
        width: 63.1944444444vw;
        height: 42.2222223vw;
    }

    .hmos-6-main #PersonTheme .swiper-nav-container {
        margin: 8.888889vw auto 0;
        padding: 1.111111vw;
    }

    .hmos-6-main #PersonTheme .swiper-nav-container .swiper-nav-wrapper.tabnav-scrollable {
        overflow-x: auto;
        overflow-y: hidden;
        justify-content: flex-start;
    }

    .hmos-6-main #PersonTheme .swiper-nav-container .swiper-nav-wrapper::-webkit-scrollbar {
        display: none;
    }

    .hmos-6-main #PersonTheme .swiper-nav-container .nav-list li {
        padding: 3.194444vw 5.555556vw 3.055556vw;
        font-size: 3.888889vw;
    }
}

/* Theme end */

/* yinli start */
.hmos-6-main #YinliMotion .content-wrap {
    width: 40.625vw;
}

.hmos-6-main #YinliMotion .yinli-video {
    position: relative;
    width: 58.333333vw;
    height: 32.291667vw;
    overflow: hidden;
    border-radius: 2.083333vw;
    -webkit-border-radius: 2.083333vw;
    -moz-border-radius: 2.083333vw;
    margin: 4.166667vw auto 0;
}

.hmos-6-main #YinliMotion .yinli-video video {
    height: 100%;
}

.hmos-6-main #YinliMotion .yinli-video .video-control-btn {
    position: absolute;
    width: 2.0833334vw;
    height: 2.0833334vw;
    right: 1.25vw;
    bottom: 1.25vw;
    z-index: 1;
}

@media screen and (max-aspect-ratio:11/10) {
    .hmos-6-main #YinliMotion .content-wrap {
        width: 80.9722223vw;
    }

    .hmos-6-main #YinliMotion .yinli-video {
        width: 80.9722223vw;
        height: 80.833333vw;
        border-radius: 5.555556vw;
        -webkit-border-radius: 5.555556vw;
        -moz-border-radius: 5.555556vw;
        margin: 11.1111112vw auto 0;
    }

    .hmos-6-main #YinliMotion .yinli-video video {
        height: 100%;
    }

    .hmos-6-main #YinliMotion .yinli-video .video-control-btn {
        width: 8.888889vw;
        height: 8.888889vw;
        right: 4.4444445vw;
        bottom: 4.4444445vw;
    }

}

/* yinli end */
/* lingdong start */
.hmos-6-main #CleverView .content-wrap {
    width: 36.09375vw;
}

.hmos-6-main #CleverView .clever-img {
    width: 58.333333vw;
    margin: 4.166667vw auto 0;
    border-radius: 2.083333vw;
    -webkit-border-radius: 2.083333vw;
    -moz-border-radius: 2.083333vw;
    overflow: hidden;
}

@media screen and (max-aspect-ratio:11/10) {
    .hmos-6-main #CleverView .content-wrap {
        width: 80.9722223vw;
    }

    .hmos-6-main #CleverView .clever-img {
        width: 80.972222vw;
        margin: 11.1111112vw auto 0;
        border-radius: 5.555556vw;
        -webkit-border-radius: 5.555556vw;
        -moz-border-radius: 5.555556vw;
    }
}

/* lingdong end */

/* s15 start */
.hmos-6-main .hmos-6-s15 {
    margin-top: 10.416667vw;
}

.hmos-6-main .hmos-6-s15 .common-title-wrap {
    margin-top: 1.458333vw;
}

.hmos-6-main .hmos-6-s15 .common-title-wrap .common-big-title {
    color: transparent;
    background: linear-gradient(180.23deg, #000000 0.37%, #000000 34.38%, #ffffff 49.13%, #90d3fd 66.51%, #2275db 99.65%);
    background-clip: text;
    -webkit-background-clip: text;
    background-size: 100% 300%;
    background-position-y: 0%;
}

.hmos-6-main .hmos-6-s15 .common-title-wrap.animated .common-big-title {
    background-position-y: 100%;
}

.hmos-6-main .hmos-6-s15 .privacy-banner {
    margin-top: 4.16666667vw;
}

@media screen and (max-aspect-ratio:11/10) {
    .hmos-6-main .hmos-6-s15 {
        margin-top: 27.77777778vw;
    }

    .hmos-6-main .hmos-6-s15 .common-title-wrap {
        margin-top: 3.88888889vw;
    }

    .hmos-6-main .hmos-6-s15 .privacy-banner {
        margin-top: 11.11111111vw;
    }
}

/* s15 end */

/* s16 start */
.hmos-6-main .hmos-6-s16 {
    margin-top: 10.416667vw;
}

.hmos-6-main .hmos-6-s16 .safety-swiper-container {
    margin-top: 3.333333vw;
}

.hmos-6-main .hmos-6-s16 .safety-swiper-container .safety-swiper-overflow {
    width: 100%;
    overflow: hidden;
}

.hmos-6-main .hmos-6-s16 .safety-swiper-container .safety-swiper {
    width: 67.5vw;
    margin: 0 auto;
    overflow: visible;
}

.hmos-6-main .hmos-6-s16 .safety-swiper-container .swiper-slide:nth-last-child(n+2) {
    margin-right: 1.25vw;
}

@media (pointer: fine) and (hover: hover) {
    .hmos-6-main .hmos-6-s16 .safety-swiper-container .swiper-slide:not(.swiper-slide-active):hover {
        cursor: pointer;
    }
}

.hmos-6-main .hmos-6-s16 .safety-swiper-container .safety-content {
    width: 100%;
    height: 36.4583334vw;
    position: relative;
    border-radius: 2.0833334vw;
    -webkit-border-radius: 2.0833334vw;
    -moz-border-radius: 2.0833334vw;
    overflow: hidden;
    z-index: 1;
}

.hmos-6-main .hmos-6-s16 .safety-swiper-container .safety-content .video-container {
    width: 100%;
    height: 100%;
}

.hmos-6-main .hmos-6-s16 .safety-swiper-container .safety-content .video-container video {
    height: 100%;
}

.hmos-6-main .hmos-6-s16 .safety-swiper-container .safety-content .video-control-btn {
    width: 2.0833334vw;
    height: 2.0833334vw;
    position: absolute;
    right: 1.25vw;
    bottom: 1.25vw;
    z-index: 1;
}

.hmos-6-main .hmos-6-s16 .safety-swiper-container .safety-desc {
    width: 42.7083334vw;
    margin-left: 0.83333333vw;
    margin-top: 2.08333333vw;
}

.hmos-6-main .hmos-6-s16 .safety-swiper-container .safety-swiper-nav-btns {
    width: 67.5vw;
    margin: 1.666667vw auto 0;
    display: flex;
    justify-content: flex-end;
}

.hmos-6-main .hmos-6-s16 .safety-swiper-container .safety-swiper-nav-btns .btn-list {
    display: flex;
    align-items: center;
}

.hmos-6-main .hmos-6-s16 .safety-swiper-container .safety-swiper-nav-btns .btn-list li {
    width: 2.5vw;
    height: 2.5vw;
    pointer-events: auto;
    transition: opacity 0.4s ease;
    -webkit-transition: opacity 0.4s ease;
    -moz-transition: opacity 0.4s ease;
}

.hmos-6-main .hmos-6-s16 .safety-swiper-container .safety-swiper-nav-btns .btn-list li::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(ellipse 65.74% 65.74% at 71.91% 37.98%, #addbfc 0%, #3980e7 71%, #2766d0 100%);
    box-shadow: 2px -2px 4px rgba(131, 171, 235, 0.8) inset;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    overflow: hidden;
    transform: rotate(260deg);
    -webkit-transform: rotate(260deg);
    -moz-transform: rotate(260deg);
}

@media (pointer: fine) and (hover: hover) {
    .hmos-6-main .hmos-6-s16 .safety-swiper-container .safety-swiper-nav-btns .btn-list li:hover {
        cursor: pointer;
    }
}

.hmos-6-main .hmos-6-s16 .safety-swiper-container .safety-swiper-nav-btns .btn-list .btn-img,
.hmos-6-main .hmos-6-s16 .safety-swiper-container .safety-swiper-nav-btns .btn-list .btn-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hmos-6-main .hmos-6-s16 .safety-swiper-container .safety-swiper-nav-btns .btn-list .button-prev img {
    transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
}

.hmos-6-main .hmos-6-s16 .safety-swiper-container .safety-swiper-nav-btns .btn-list .button-next {
    margin-left: 1.25vw;
}


.hmos-6-main .hmos-6-s16 .safety-swiper-container .safety-swiper-nav-btns .btn-list li.swiper-button-disabled {
    opacity: 0.3;
    pointer-events: none;
}

@media screen and (max-aspect-ratio:11/10) {
    .hmos-6-main .hmos-6-s16 {
        margin-top: 27.777778vw;
    }

    .hmos-6-main .hmos-6-s16 .safety-swiper-container {
        margin-top: 8.888889vw;
    }

    .hmos-6-main .hmos-6-s16 .safety-swiper-container .safety-swiper {
        width: 86.666667vw;
        margin-left: 4.444444vw;
    }

    .hmos-6-main .hmos-6-s16 .safety-swiper-container .swiper-slide:nth-last-child(n+2) {
        margin-right: 4.444444vw;
    }

    .hmos-6-main .hmos-6-s16 .safety-swiper-container .safety-content {
        height: 82.222222222222223vw;
        border-radius: 5.555556vw;
        -webkit-border-radius: 5.555556vw;
        -moz-border-radius: 5.555556vw;
    }

    .hmos-6-main .hmos-6-s16 .safety-swiper-container .safety-content .video-control-btn {
        width: 8.888889vw;
        height: 8.888889vw;
        right: 4.444444vw;
        bottom: 4.444444vw;
    }

    .hmos-6-main .hmos-6-s16 .safety-swiper-container .safety-desc {
        width: 72.222222222222223vw;
        margin-left: 6.666667vw;
        margin-top: 6.666667vw;
    }

    .hmos-6-main .hmos-6-s16 .safety-swiper-container .safety-desc .common-desc {
        font-size: 3.888888888888889vw;
    }

    .hmos-6-main .hmos-6-s16 .safety-swiper-container .safety-swiper-nav-btns {
        width: 82.2222223vw;
        margin: 11.111111vw auto 0;
    }

    .hmos-6-main .hmos-6-s16 .safety-swiper-container .safety-swiper-nav-btns .btn-list li {
        width: 11.111111vw;
        height: 11.111111vw;
    }

    .hmos-6-main .hmos-6-s16 .safety-swiper-container .safety-swiper-nav-btns .btn-list .button-next {
        margin-left: 5.555556vw;
    }

}

/* s16 end */
/* s18 start */
.hmos-6-main .hmos-6-s18 {
    width: 100%;
    overflow: hidden;
    padding: 10.416667vw 0 12.5vw;
}

.hmos-6-main .hmos-6-s18 .title-content {
    width: 23.02083333vw;
    margin: 0 auto;
    text-align: center;
}

.hmos-6-main .hmos-6-s18 .common-desc {
    margin-top: 2.5vw;
}

.hmos-6-main .hmos-6-s18 .common-title-wrap {
    margin-top: 1.458333vw;
}

.hmos-6-main .hmos-6-s18 .common-title-wrap .common-big-title {
    color: transparent;
    background: linear-gradient(180.23deg, #000000 0.36%, #000000 34.38%, #ffffff 49.13%, #f4ce93 70.51%, #ff6e95 99.66%);
    background-clip: text;
    -webkit-background-clip: text;
    background-size: 100% 300%;
    background-position-y: 0%;
}

.hmos-6-main .hmos-6-s18 .common-title-wrap.animated .common-big-title {
    background-position-y: 100%;
}

.hmos-6-main .hmos-6-s18 .preminumappimcon {
    display: flex;
    flex-direction: column;
    position: relative;
    align-self: flex-start;
    width: 100%;
    margin-top: 4.16666667vw;
}

.hmos-6-main .hmos-6-s18 .premiumappfir,
.hmos-6-main .hmos-6-s18 .premiumappsec,
.hmos-6-main .hmos-6-s18 .premiumappthi {
    flex-shrink: 0;
    width: 157.8125vw;
    height: 7.8125vw;
    filter: drop-shadow(0 3.75px 7.5px rgba(0, 0, 0, 0.25));
}

.hmos-6-main .hmos-6-s18 .preminumappimcon img.blur-up {
    filter: blur(0);
}

.hmos-6-main .hmos-6-s18 .premiumappthi:nth-child(1),
.hmos-6-main .hmos-6-s18 .premiumappfir:nth-child(1) {
    margin: 0 2.1875vw 0 0;
}

.hmos-6-main .hmos-6-s18 .premiumappsec:nth-child(2) {
    margin: 0 0 0 2.1875vw;
}

.hmos-6-main .hmos-6-s18 .promiumappfircon,
.hmos-6-main .hmos-6-s18 .premiumappseccon,
.hmos-6-main .hmos-6-s18 .premiumappthicon {
    will-change: transform;
    display: flex;
}

.hmos-6-main .hmos-6-s18 .premiumappseccon {
    justify-content: flex-end;
}

.hmos-6-main .hmos-6-s18 .promiumappfircon,
.hmos-6-main .hmos-6-s18 .premiumappthicon {
    margin: 0 0 0 0.9375vw;
}

.hmos-6-main .hmos-6-s18 .premiumappseccon {
    margin: 3.125vw 0;
}


@media screen and (max-aspect-ratio:11/10) {
    .hmos-6-main .hmos-6-s18 {
        padding: 27.77777778vw 0;
    }

    .hmos-6-main .hmos-6-s18 .title-content {
        width: 77.77777778vw;
    }

    .hmos-6-main .hmos-6-s18 .common-desc {
        margin-top: 6.66666667vw;
    }

    .hmos-6-main .hmos-6-s18 .common-title-wrap {
        margin-top: 4.44444444vw;
    }

    .hmos-6-main .hmos-6-s18 .preminumappimcon {
        margin-top: 11.11111111vw;
    }

    .hmos-6-main .hmos-6-s18 .premiumappfir,
    .hmos-6-main .hmos-6-s18 .premiumappsec,
    .hmos-6-main .hmos-6-s18 .premiumappthi {
        width: 420.8333334vw;
        height: 20.833333333vw;
        filter: drop-shadow(0px 0.26785714vw 0.53571428vw rgba(0, 0, 0, 0.25));
    }

    .hmos-6-main .hmos-6-s18 .premiumappthi:nth-child(1),
    .hmos-6-main .hmos-6-s18 .premiumappfir:nth-child(1) {
        margin: 0 5.833333333vw 0 0;
    }

    .hmos-6-main .hmos-6-s18 .premiumappsec:nth-child(2) {
        margin: 0 0 0 3vw;
    }

    .hmos-6-main .hmos-6-s18 .promiumappfircon,
    .hmos-6-main .hmos-6-s18 .premiumappthicon {
        margin: 0 0 0 1.92857142vw;
    }

    .hmos-6-main .hmos-6-s18 .premiumappseccon {
        margin: 8.33333333vw 0;
    }


}

/* s18 end */
/* s19 start */
.hmos-6-main .hmos-6-s19 .content-wrap {
    width: 30.20833333vw;
    margin: 0 auto;
    text-align: center;
}

.hmos-6-main .hmos-6-s19 .content-wrap .common-desc {
    margin-top: 1.66666667vw;
}

.hmos-6-main .hmos-6-s19 .compab-swiper-container {
    width: 100%;
    margin-top: 3.33333333vw;
    overflow: hidden;
}
.hmos-6-main .hmos-6-s19 .compab-swiper-container .swiper-box{
    position: relative;
    width: 48.90625vw;
    margin: 0 auto;
}

.hmos-6-main .hmos-6-s19 .compab-swiper {
    position: absolute;
    z-index: 1;
    width: 37.91666667vw;
    margin: 0 auto;
    top: 0.625vw;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
}

.hmos-6-main .hmos-6-s19 .computer-border {
    position: relative;
    top: 0;
    z-index: 2;
    pointer-events: none;
}

.hmos-6-main .hmos-6-s19 .swiper-nav-container {
    position: relative;
    margin: 3.33333333vw auto 0;
    width: fit-content;
    padding: 0.208333vw;
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    overflow: hidden;
    background: #e2e2e2;
}

.hmos-6-main .hmos-6-s19 .swiper-nav-container .swiper-nav-wrapper {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hmos-6-main .hmos-6-s19 .swiper-nav-container .nav-list {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hmos-6-main .hmos-6-s19 .swiper-nav-container .nav-list li {
    color: rgba(0, 0, 0, .3);
    flex-shrink: 0;
    padding: 0.729167vw 1.25vw;
    font-size: 0.9375vw;
    font-weight: 500;
    line-height: 1.25;
    text-align: center;
    transition: color 0.2s ease 0.2s;
    -webkit-transition: color 0.2s ease 0.2s;
    -moz-transition: color 0.2s ease 0.2s;
}

.hmos-6-main .hmos-6-s19 .swiper-nav-container .nav-list li.active {
    color: rgba(0, 0, 0, .8);
}

@media (pointer: fine) and (hover: hover) {
    .hmos-6-main .hmos-6-s19 .swiper-nav-container .nav-list li span:hover {
        cursor: pointer;
    }
}


.hmos-6-main .hmos-6-s19 .swiper-nav-container .nav-btn-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: calc(var(--nav-width) * 1px);
    height: 100%;
    transform: translateX(calc(var(--offset-dist) * 1px));
    -webkit-transform: translateX(calc(var(--offset-dist) * 1px));
    -moz-transform: translateX(calc(var(--offset-dist) * 1px));
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    overflow: hidden;
    z-index: -1;
    transition: width 0.5s linear, transform .5s ease-out;
    -webkit-transition: width 0.5s linear, transform .5s ease-out;
    -moz-transition: width 0.5s linear, transform .5s ease-out;
}

.hmos-6-main .hmos-6-s19.will-change .swiper-nav-container .nav-btn-bg{
    will-change: transform,width;
}

.hmos-6-main .hmos-6-s19 .swiper-nav-container .nav-btn-bg img {
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    overflow: hidden;
    height: 100%;
    object-fit: cover;
    filter: url(#blurFilter);
    -webkit-filter: url(#blurFilter);
}

.hmos-6-main .hmos-6-s19 .swiper-nav-container .nav-btn-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0.5px 0.5px 0px #fff inset, -0.5px -0.5px 0px #fff inset;
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    overflow: hidden;
}

@media screen and (max-aspect-ratio:11/10) {
    .hmos-6-main .hmos-6-s19 .content-wrap {
        width: 77.777777778vw;
        text-align: left;
    }

    .hmos-6-main .hmos-6-s19 .content-wrap .common-desc {
        margin-top: 5.55555556vw;
    }

    .hmos-6-main .hmos-6-s19 .compab-swiper-container {
        margin-top: 11.11111111vw;
    }
    
    .hmos-6-main .hmos-6-s19 .compab-swiper-container .swiper-box{
        width: 82.222222223vw;
    }

    .hmos-6-main .hmos-6-s19 .compab-swiper {
        width: 63.75vw;
        top: 1.11111111vw;
    }

    .hmos-6-main .hmos-6-s19 .swiper-nav-container {
        margin: 11.11111111vw auto 0;
        padding: 1.111111vw;
    }

    .hmos-6-main .hmos-6-s19 .swiper-nav-container .swiper-nav-wrapper.tabnav-scrollable {
        overflow-x: auto;
        overflow-y: hidden;
        justify-content: flex-start;
    }

    .hmos-6-main .hmos-6-s19 .swiper-nav-container .swiper-nav-wrapper::-webkit-scrollbar {
        display: none;
    }

    .hmos-6-main .hmos-6-s19 .swiper-nav-container .nav-list li {
        padding: 3.194444vw 5.555556vw;
        font-size: 3.888889vw;
    }

}

/* s19 end */
/* s20 start */
.hmos-6-main .hmos-6-s20 {
    margin-top: 10.41666667vw;
    position: relative;
}

.hmos-6-main .hmos-6-s20 .device-bg {
    width: 67.5vw;
    margin: 0 auto;
    border-radius: 2.08333333vw;
    overflow: hidden;
    transform: translate3d(0, 0, 0);
    position: relative;
}

.hmos-6-main .hmos-6-s20 .content-wrap {
    width: 40.625vw;
    position: absolute;
    top: 2.916667vw;
    left: 50%;
    text-align: center;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
}

.hmos-6-main .hmos-6-s20 .common-big-title2 {
    color: #fff;
}

.hmos-6-main .hmos-6-s20 .common-desc {
    color: rgba(255, 255, 255, .5);
    margin-top: 1.666667vw;
}

.hmos-6-main .hmos-6-s20 .view-more {
    display: inline-flex;
    align-items: center;
    color: #fff;
    line-height: 1.6;
    font-weight: 500;
    font-size: 1.04166667vw;
    transition: 0.3s ease-out;
    margin-top: 1.25vw;
}

.hmos-6-main .hmos-6-s20 .view-more img {
    display: inline-block;
    margin-left: 0.05208333vw;
    transition: 0.3s ease-out;
    width: 1.14583333vw;
}

@media (pointer: fine) and (hover: hover) {
    .hmos-6-main .hmos-6-s20 .view-more:hover {
        opacity: 0.8;
    }

    .hmos-6-main .hmos-6-s20 .view-more:hover img {
        transform: translateX(4px);
    }
}

@media screen and (max-aspect-ratio:11/10) {
    .hmos-6-main .hmos-6-s20 {
        margin-top: 27.77777778vw;
    }

    .hmos-6-main .hmos-6-s20 .device-bg {
        width: 91.11111111vw;
        border-radius: 5.55555556vw;
    }

    .hmos-6-main .hmos-6-s20 .content-wrap {
        width: 77.777777778vw;
        top: 13.88888888888889vw;
    }

    .hmos-6-main .hmos-6-s20 .common-desc {
        margin-top: 5.55555556vw;
    }

    .hmos-6-main .hmos-6-s20 .view-more {
        font-size: 3.88888889vw;
        margin-top: 5.55555556vw;
    }

    .hmos-6-main .hmos-6-s20 .view-more img {
        margin-left: 0;
        width: 4.166666666vw;
    }
}

/* s20 end */
/* footer start */
.hmos-6-main .footer-list {
    width: 67.5vw;
    margin: 0 auto;
    padding: 10.416667vw 0;
}

.hmos-6-main .footer-list ol {
    list-style-type: decimal;
    padding-left: 1.5em;
}

.hmos-6-main .footer-list ol li {
    color: #85858A;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.6;
}

.hmos-6-main .footer-list ol li.active {
    color: #2A2A2C;
}

.hmos-6-main .footer-list ol li a {
    color: inherit;
    line-height: inherit;
    text-decoration: underline;
    word-wrap: break-word;
}

.hmos-6-main .footer-list .footlast:not(.footlast~.footlast) {
    margin-top: 1.6em;
}

.hmos-6-main .footer-list .footlast1 {
    list-style-type: "*";
}

.hmos-6-main .footer-list .footlast2 {
    list-style-type: "**";
}

.hmos-6-main .footer-list .footlast3 {
    list-style-type: "***";
}

@media screen and (min-width: 1920px) {
    .hmos-6-main .footer-list ol li {
        font-size: 0.625vw;
    }
}

@media screen and (max-aspect-ratio:11/10) {
    .hmos-6-main .footer-list {
        width: 84.444444444444445vw;
        padding: 27.777777778vw 0;
    }

    .hmos-6-main .footer-list ol li {
        font-size: 3.333333334vw;
    }
}

/* footer end */

/* mob */
@media screen and (max-aspect-ratio:11/10) {
    .hmos-6-main .show-mob {
        display: block;
    }

    .hmos-6-main .show-pc,
    .hmos-6-main .show-pc-inline {
        display: none;
    }

    .hmos-6-main .show-mob-inline {
        display: inline-block;
    }

    .hmos-6-main .common-big-title {
        font-size: 13.3333334vw;
    }

    .hmos-6-main .common-big-title2 {
        font-size: 11.111111vw;
    }

    .hmos-6-main .common-sub-title {
        font-size: 4.444444vw;
    }

    .hmos-6-main .common-desc {
        font-size: 4.444444vw;
    }
}