@charset "UTF-8";

.page-top12 {
    background-color: var(--color-neutral-50);
}

.page-top12 .header {
    position: -webkit-sticky;
    position: sticky;
}

.header .header__top__menu,
.header .header__actions a,
.header .header__logo__svg,
.header .language-switch-wrap span {
    --un-text-opacity: 1;
    color: rgb(31 31 31 / var(--un-text-opacity));
}

.carousel {
    height: 100%;
}

.carousel__content {
    position: relative;
}

/* ===== 标题：英文 ===== */
.carousel__title[lang="en"] {
    text-align: center;
    font-size: var(--font-en-display);
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-family:
        Zalando Sans SemiExpanded,
        sans-serif;
    letter-spacing: 0.03em;
}

/* ===== 标题：中文 ===== */
.carousel__title[lang|="zh"] {
    margin-top: 1em;
    font-size: var(--font-zh-display);
    line-height: 1.32;
    font-weight: 400;
    letter-spacing: 0.07em;
    font-family: FZLTHProJ-Medium, sans-serif;
    letter-spacing: 0.07em;
}

/* ===== 副标题：中文 ===== */
.carousel__subtitle[lang|="zh"] {
    margin-top: 0.3rem;
    font-size: var(--font-zh-text);
    line-height: 1.6494;
    font-weight: 300;
    letter-spacing: 0.11em;
    font-family: FZLTHProJ-Regular, sans-serif;
    line-height: 1.6494;
    letter-spacing: 0.11em;
}

/* ===== 文本主题 ===== */
.carousel__title[theme="white"],
.carousel__subtitle[theme="white"] {
    color: var(--color-text-inverse);
}

.carousel__title[theme="black"],
.carousel__subtitle[theme="black"] {
    /* color: var(--color-text-primary); */
    color: #333;
}

/* slide 背景 */
.carousel__slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* 指示器 */
.carousel__pagination {
    position: absolute;
    bottom: 12% !important;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel__pagination .swiper-pagination-bullet {
    margin-left: 0 !important;
    margin-right: 0 !important;
    height: 2px;
    width: 0.2rem;
    border-radius: 0;
    --un-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--un-bg-opacity));
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.carousel__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 0.46rem;
    margin: 0 !important;
}

/* 左右导航 */
.carousel__next,
.carousel__prev {
    position: absolute;
    z-index: 10;
    width: 1rem;
    height: 1rem;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 99.99rem;
    background-color: rgb(0 0 0 / 0.6);
    --un-text-opacity: 1;
    color: rgb(255 255 255 / var(--un-text-opacity));
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
    top: calc(50% - 0.5rem);
}

.carousel__next {
    right: -15%;
}

.carousel__prev {
    left: -15%;
}

.carousel__next.is-active,
.carousel__prev.is-active {
    pointer-events: auto;
}

.carousel__next.swiper-button-disabled,
.carousel__prev.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
}

/* .carousel__next:hover,
.carousel__prev:hover {
    background: #fff;
    color: #000;
} */

.carousel__next::before,
.carousel__prev::before {
    font-size: 0.2rem;
    line-height: 1;
    font-family: "iconfont" !important;
}

.carousel__next::before {
    content: "\e60c";
}

.carousel__prev::before {
    content: "\e609";
}

/* ===== 序列号 ===== */
.carousel_serial {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 0.56rem;
    padding-right: 0.56rem;
    padding-top: 0.44rem;
    padding-bottom: 0.44rem;
}

.carousel_serial p {
    font-size: var(--font-en-text);
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0.03em;
    --un-text-opacity: 1;
    color: rgb(51 51 51 / var(--un-text-opacity));
    line-height: 1;
    font-family:
        Zalando Sans SemiExpanded,
        sans-serif;
}

.carousel_serial p:last-child {
    border-width: 1px;
    --un-border-opacity: 1;
    border-color: rgb(51 51 51 / var(--un-border-opacity));
    border-radius: 0.2em;
    border-style: solid;
    padding: 0.5em;
}

.swiper-cursor {
    position: absolute;
    z-index: 10;
    width: 1rem;
    height: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 99.99rem;
    background-color: rgb(0 0 0 / 0.6);
    --un-text-opacity: 1;
    color: rgb(255 255 255 / var(--un-text-opacity));
    left: 0;
    top: 0;
    opacity: 0;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    will-change: transform, opacity;
}

.swiper-cursor i {
    transition: transform 0.3s ease;
}

.swiper-cursor.is-next i {
    transform: scaleX(-1);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: FZLTHProJ-Regular, sans-serif;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
    transition-duration: 700ms;
    min-width: 1.86rem;
    height: 0.56rem;
    margin-top: 0.36rem;
    border-radius: 4px;
    font-size: 0.18rem;
    letter-spacing: 3px;
    transition: all 0.3s ease;
}

.button--primary {
    border: 1px solid var(--color-bg-inverse);
    background: var(--color-bg-inverse);
    color: var(--color-text-inverse);
}

.button--primary:hover {
    border-color: var(--color-bg-inverse);
    background: var(--color-text-inverse);
    color: var(--color-bg-inverse);
}

.button--outline {
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: var(--color-text-inverse);
}

.button--outline[theme="black"],
.button--outline[theme="black"] {
    border-color: var(--color-bg-inverse);
    color: var(--color-bg-inverse);
}

.button--outline:hover {
    border-color: var(--color-bg-inverse);
    background: var(--color-bg-inverse);
    color: var(--color-text-inverse);
}

/* ===== 产品中心 第一个模块 ===== */
.top12-header {
    padding-top: 0.72rem;
    padding-bottom: 0.72rem;
}

.carousel__content--top12-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.carousel__content--top12-header .carousel__subtitle {
    text-align: center;
    line-height: 1.6667;
}

/* ===== top12 列表 ===== */
.top12-list {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 1.52rem;
}

.top12-list--container {
    display: flex;
    flex-direction: column;
    row-gap: 1.88rem;
}

@media (max-width: 767.9px) {
    .top12-list--container {
        row-gap: 1.52rem;
    }
}

.top12-list--box {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    padding-left: 1.14rem;
    padding-right: 1.14rem;
}

@media (max-width: 767.9px) {
    .top12-list--box {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        row-gap: 1.52rem;
        padding-left: 0.4rem;
        padding-right: 0.4rem;
    }
}

.top12-list--card {
    display: flex;
    flex-direction: column;
}

@media (max-width: 767.9px) {
    .top12-list--card {
        margin-bottom: 0.48rem;
    }
}

.top12-list--card[order="1"] {
    grid-column: span 5 / span 5;
}

@media (max-width: 767.9px) {
    .top12-list--card[order="1"] {
        grid-column: span 1 / span 1;
    }
}

.top12-list--card[order="2"] {
    grid-column: span 4 / span 4;
    grid-column-start: 9;
    margin-top: 3.1rem;
    padding-left: 0.74rem;
}

@media (max-width: 767.9px) {
    .top12-list--card[order="2"] {
        grid-column: span 1 / span 1;
        grid-column-start: 1;
        margin-top: 0;
        padding-left: 0;
    }
}

.top12-list--card[order="3"] {
    grid-column: span 5 / span 5;
    grid-column-start: 6;
    margin-top: 1.14rem;
    padding-left: 0.8rem;
}

@media (max-width: 767.9px) {
    .top12-list--card[order="3"] {
        grid-column: span 1 / span 1;
        grid-column-start: 1;
        margin-top: 0;
        padding-left: 0;
    }
}

.top12-list--card[order="4"] {
    grid-column: span 4 / span 4;
    margin-top: -3.72rem;
    padding-left: 0.72rem;
    padding-right: 0.42rem;
}

@media (max-width: 767.9px) {
    .top12-list--card[order="4"] {
        grid-column: span 1 / span 1;
        margin-top: 0;
        padding-left: 0;
        padding-right: 0;
    }
}

.top12-list--container .item-header {
    margin-bottom: 0.2rem;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.top12-list--container .item-header .item__header__title[lang|="zh"] {
    font-size: var(--font-zh-display);
    line-height: 1.32;
    font-weight: 400;
    letter-spacing: 0.07em;
    --un-text-opacity: 1;
    color: rgb(51 51 51 / var(--un-text-opacity));
    font-family: FZLTHProJ-Medium, sans-serif;
    letter-spacing: 0.09em;
}

.top12-list--container .item-header .item__header__title[lang="en"] {
    font-size: var(--font-en-display);
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    --un-text-opacity: 1;
    color: rgb(51 51 51 / var(--un-text-opacity));
    font-family:
        Zalando Sans SemiExpanded,
        sans-serif;
    letter-spacing: 0.03em;
    font-size: var(--font-zh-display);
}

.top12-list--container .item-card {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.top12-list--container .image-inner {
    position: relative;
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-bottom: 133.3%;
}

.top12-list--container .image-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.top12-list--container .image-img:first-child {
    opacity: 1;
}

.top12-list--container .image-img:last-child {
    opacity: 0;
}

.top12-list--container .card-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: rgb(0 0 0 / 0.3);
    padding-left: 0.18rem;
    padding-right: 0.18rem;
    padding-top: 0.14rem;
    padding-bottom: 0.14rem;
    opacity: 0;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.top12-list--container .card-content .head {
    /* @apply grid grid-cols-5; */
    display: flex;
    flex-direction: column;
}

.top12-list--container .card-content .siege {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    text-align: left;
    font-size: 0.16rem;
    --un-text-opacity: 1;
    color: rgb(255 255 255 / var(--un-text-opacity));
    font-family:
        Zalando Sans SemiExpanded,
        sans-serif;
    letter-spacing: 0.03em;
}

.top12-list--container .card-content .siege p {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
    transform: translateY(-6px);
}

.top12-list--container .card-content .siege p:first-child {
    grid-column: span 2 / span 2;
}

.top12-list--container .card-content .siege p:last-child {
    grid-column: span 2 / span 2;
    grid-column-start: 4;
    text-align: right;
}

.top12-list--container .item__card__button {
    margin-top: auto;
    width: 100%;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
    transform: translateY(6px);
}

.top12-list--container .button--view {
    position: relative;
    isolation: isolate;
    width: 100%;
    display: flex;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    align-items: center;
    justify-content: space-between;
    border-width: 0px;
    border-radius: 6px;
    background-color: transparent;
    --un-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--un-bg-opacity));
    padding-left: 0.16rem;
    padding-right: 0.16rem;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 0.16rem;
    --un-text-opacity: 1;
    color: rgb(51 51 51 / var(--un-text-opacity));
    letter-spacing: 0.02em;
    font-family: FZLTHProJ-Regular, sans-serif;
    text-transform: uppercase;
    transition-property: color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
    transition-duration: 0.4s;
    -webkit-tap-highlight-color: transparent;
}

.top12-list--container .button--view::before {
    position: absolute;
    inset: -1px;
    z-index: -1;
    border-radius: inherit;
    --un-bg-opacity: 1;
    background-color: rgb(10 10 10 / var(--un-bg-opacity));
    content: "";
    -webkit-clip-path: inset(0 0 100% round 6px);
    clip-path: inset(0 0 100% round 6px);
    transition: -webkit-clip-path 0.4s cubic-bezier(0.38, 0.005, 0.215, 1);
    transition: clip-path 0.4s cubic-bezier(0.38, 0.005, 0.215, 1);
    transition:
        clip-path 0.4s cubic-bezier(0.38, 0.005, 0.215, 1),
        -webkit-clip-path 0.4s cubic-bezier(0.38, 0.005, 0.215, 1);
}

.top12-list--container .button--view:focus-visible {
    outline: none;
    color: #fff;
}

.top12-list--container .button--view:focus-visible::before {
    -webkit-clip-path: inset(0 round 6px);
    clip-path: inset(0 round 6px);
}

.top12-list--container .button--view .icon-wrapper {
    position: relative;
    width: 0.16rem;
    height: 0.16rem;
    overflow: hidden;
    flex: 0 0 auto;
}

.top12-list--container .button--view .icon-wrapper > span {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    transition:
        transform 0.4s cubic-bezier(0.38, 0.005, 0.215, 1),
        opacity 0.4s cubic-bezier(0.38, 0.005, 0.215, 1);
}

.top12-list--container .button--view .icon-wrapper > span:first-child {
    transform: translateX(0);
    opacity: 1;
}

.top12-list--container .button--view .icon-wrapper > span:last-child {
    transform: translateX(-120%);
    opacity: 0;
}

.top12-list--container .button--view .icon-wrapper > span:first-child {
    transform: translateX(120%);
    opacity: 0;
}

.top12-list--container .button--view .icon-wrapper > span:last-child {
    transform: translateX(0);
    opacity: 1;
}

.top12-list--container .item-carousel {
    text-align: center;
}

.top12-list--container .item-carousel .carousel__title,
.top12-list--container .item-carousel .carousel__title,
.top12-list--container .item-carousel .carousel__subtitle {
    --un-text-opacity: 1;
    color: rgb(51 51 51 / var(--un-text-opacity));
}

@media (hover: hover) {
    .top12-list--container .item:hover .image-img {
        transform: scale(1.1);
    }

    .top12-list--container .item:hover .image-img:first-child {
        opacity: 0;
    }

    .top12-list--container .item:hover .image-img:last-child {
        opacity: 1;
    }

    .top12-list--container .item:hover .card-content {
        opacity: 1;
    }

    .top12-list--container .item:hover .item__card__button {
        transform: translateY(0);
    }

    .top12-list--container .item:hover .card-content .siege p {
        transform: translateY(0);
    }

    .top12-list--container .button--view:hover {
        color: #fff;
    }

    .top12-list--container .button--view:hover::before {
        -webkit-clip-path: inset(0 round 6px);
        clip-path: inset(0 round 6px);
    }

    .top12-list--container .button--view .icon-wrapper > span:first-child {
        transform: translateX(120%);
        opacity: 0;
    }

    .top12-list--container .button--view .icon-wrapper > span:last-child {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ===== top12 详情 ===== */
.top12-detail--main {
    background-color: var(--color-neutral-200);
}

/* 
.page-top12-detail {
    @apply bg-[var(--color-neutral-50)];
} */

/* ===== 分类列表 ===== */
.page-top12-detail .category-list {
    position: relative;
    z-index: 2;
}

.page-top12-detail .category-list .category-list--wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 3.72rem;
    padding-bottom: 0.76rem;
}

@media (max-width: 767.9px) {
    .page-top12-detail .category-list .category-list--wrapper {
        display: none;
    }
}

.page-top12-detail .category-list .category-list--wrapper li {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 0.2rem;
    padding-right: 0.2rem;
    font-size: var(--font-zh-text);
    line-height: 1.6494;
    font-weight: 300;
    letter-spacing: 0.11em;
    line-height: 0.25rem;
}

.page-top12-detail .category-list .category-list--wrapper li .line {
    position: absolute;
    left: 0;
    width: 1px;
    height: 1em;
    --un-rotate-x: 0;
    --un-rotate-y: 0;
    --un-rotate-z: 0;
    --un-rotate: 15deg;
    transform: translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z))
        rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotateZ(var(--un-rotate-z))
        skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y))
        scaleZ(var(--un-scale-z));
    --un-bg-opacity: 1;
    background-color: rgb(180 181 177 / var(--un-bg-opacity));
    font-size: var(--font-zh-text);
    line-height: 1.6494;
    font-weight: 300;
    letter-spacing: 0.11em;
}

.page-top12-detail .category-list .category-list--wrapper li:first-child .line {
    display: none;
}

.page-top12-detail .category-list .category-list--wrapper li img {
    position: absolute;
    bottom: 100%;
    left: 50%;
    width: 1.2rem;
    height: 1.6rem;
    max-width: none;
    --un-translate-x: -50%;
    transform: translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z))
        rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotateZ(var(--un-rotate-z))
        skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y))
        scaleZ(var(--un-scale-z));
    opacity: 0;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

@media (max-width: 767.9px) {
    .page-top12-detail .category-list .category-list--wrapper li img {
        display: none;
    }
}

.page-top12-detail .category-list .category-list--wrapper li.is-active img {
    bottom: calc(100% + 0.2rem);
    opacity: 1;
}

.page-top12-detail .category-list .category-list--wrapper li:has(a:hover) img {
    bottom: calc(100% + 0.2rem);
    opacity: 1;
}

.page-top12-detail .category-list--wrapper:has(li a:hover) li.is-active img {
    bottom: 100%;
    opacity: 0;
}

.page-top12-detail .category-list .category-list--wrapper li a {
    display: block;
    font-size: var(--font-zh-text);
    line-height: 1.6494;
    font-weight: 300;
    letter-spacing: 0.11em;
    line-height: 0.25rem;
    letter-spacing: 0.08em;
    font-family: FZLTHProJ-Medium, sans-serif;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.category-list--mobile {
    display: none;
    padding-left: 0.2rem;
    padding-right: 0.2rem;
}

@media (max-width: 767.9px) {
    .category-list--mobile {
        display: block;
    }
}

.category-list--mobile .swiper-slide {
    position: relative;
    width: 70px;
}

@media (max-width: 767.9px) {
    .category-list--mobile .swiper-slide {
        overflow: hidden;
        border-radius: 5px;
    }
}

.category-list--mobile-image {
    width: 100%;
    height: 70px;
    overflow: hidden;
    border-radius: 6px;
    -o-object-fit: cover;
    object-fit: cover;
}

.category-list--mobile-link {
    margin-top: 0.5em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: var(--font-zh-text);
    line-height: 1.6494;
    font-weight: 300;
    letter-spacing: 0.11em;
    --un-text-opacity: 1;
    color: rgb(51 51 51 / var(--un-text-opacity));
    font-family: FZLTHProJ-Regular, sans-serif;
}

@media (max-width: 767.9px) {
    .category-list--mobile-link {
        position: absolute;
        top: 0;
        left: 0;
        margin-top: 0;
        width: 100%;
        height: 100%;
        background-color: rgb(0 0 0 / 0.6);
        --un-text-opacity: 1;
        color: rgb(255 255 255 / var(--un-text-opacity));
    }
}

.category-list--mobile .swiper-slide.swiper-slide-always-active .category-list--mobile-link {
}

@media (max-width: 767.9px) {
    .category-list--mobile .swiper-slide.swiper-slide-always-active .category-list--mobile-link {
        opacity: 0;
    }
}

/* ===== 顶部分类列表 ===== */
.page-top12-detail .category-list--header {
    /*border-b border-solid */
    background-color: var(--color-neutral-50);
    /*border-color: rgba(27, 28, 28, 0.3);*/
}
@media (max-width: 767.9px) {
    .page-top12-detail .category-list--header {
        padding-top: 1.4rem;
        padding-bottom: 0.4rem;
    }
}

.page-top12-detail .category-list--header ul li a {
    --un-text-opacity: 1;
    color: rgb(180 181 177 / var(--un-text-opacity));
}

.page-top12-detail .category-list--header ul li a:hover {
    --un-text-opacity: 1;
    color: rgb(51 51 51 / var(--un-text-opacity));
}

.page-top12-detail .category-list--header ul li.is-active a {
    --un-text-opacity: 1;
    color: rgb(51 51 51 / var(--un-text-opacity));
}

/* ===== 公共文本 ===== */
/* .page-top12-detail .carousel__content--top12-header {
    @apply pt-[114px] pb-[70px];
} */

.page-top12-detail .carousel__title[lang|="zh"] {
    margin-top: 8px;
}

.page-top12-detail .carousel__subtitle[lang|="zh"] {
    margin-top: 0.16rem;
}

/* ===== 大图 ===== */
.top12-detail--image {
    position: relative;
    overflow: hidden;
    background-color: var(--color-neutral-50);
}

.top12-detail--image .carousel__content {
    /* @apply flex flex-col flex-center pt-[114px] pb-[70px]; */
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    display: flex;
    flex-direction: column;
    --un-translate-x: -50%;
    --un-translate-y: -50%;
    transform: translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z))
        rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotateZ(var(--un-rotate-z))
        skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y))
        scaleZ(var(--un-scale-z));
    align-items: center;
    justify-content: center;
}

.top12-detail--image .carousel__content .carousel__subtitle[lang|="zh"] {
    text-align: center;
}

.top12-detail--image .image-inner .image-img {
    display: block;
    width: 100%;
    height: auto;
}

.top12-detail--image .video-inner .video {
    display: block;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
}

/* ===== 将更多的梦想变为现实 ===== */
.top12-detail--container {
}
@media (max-width: 767.9px) {
    .top12-detail--container {
        position: relative;
        z-index: 1;
        background-color: var(--color-neutral-200);
        padding-bottom: 0;
    }
}

.top12-detail--content {
    position: relative;
    overflow: hidden;
    background-color: var(--color-neutral-200);
    padding-top: 1.14rem;
    will-change: transform;
}

.top12-detail--color-cipher {
    /* @apply <md:hidden; */
}

.top12-detail--puzzle {
    /* pt-[70px] pb-[114px] */
    position: relative;
    margin-top: 0.5rem;
    overflow: hidden;
    background-color: var(--color-neutral-200);
    will-change: transform;
    --puzzle-stage-ratio: 1857 / 949;
}

@media (max-width: 767.9px) {
    .top12-detail--puzzle {
        display: none;
    }
}

.top12-detail--puzzle .carousel {
    height: auto;
}

.top12-detail--puzzle .carousel__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.top12-detail--puzzle .puzzle-container {
    height: 300vh;
}

@media (max-width: 767.9px) {
    .top12-detail--puzzle .puzzle-container {
        height: auto;
    }
}

.top12-detail--puzzle .puzzle-wrapper {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

@media (max-width: 767.9px) {
    .top12-detail--puzzle .puzzle-wrapper {
        display: block;
        height: auto;
    }
}

.top12-detail--puzzle .puzzle-stage {
    position: relative;
    flex: 0 0 auto;
    width: min(100%, calc(100vh * var(--puzzle-stage-ratio)));
    aspect-ratio: var(--puzzle-stage-ratio);
}

@media (max-width: 767.9px) {
    .top12-detail--puzzle .puzzle-stage {
        width: auto;
        aspect-ratio: auto;
    }
}

.top12-detail--puzzle .media {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform-origin: center;
}

@media (max-width: 767.9px) {
    .top12-detail--puzzle .media {
        position: static;
        margin-top: 0.32rem;
    }
}

.top12-detail--puzzle .media .image {
    position: absolute;
    display: block;
    overflow: hidden;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 767.9px) {
    .top12-detail--puzzle .media .image {
        position: static;
        width: 100% !important;
        height: auto !important;
        --un-translate-x: 0 !important;
        --un-translate-y: 0 !important;
        transform: translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z))
            rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotateZ(var(--un-rotate-z))
            skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y))
            scaleZ(var(--un-scale-z)) !important;
    }
}

.top12-detail--puzzle .media:first-child .image {
    top: 5%;
    left: 38.8%;
    width: 26.875%;
    height: 30.2713987473904%;
}

.top12-detail--puzzle .media:nth-child(2) .image {
    top: 19.83298538622129%;
    left: 21.5%;
    width: 16.04166666666667%;
    height: 42.79749478079332%;
}

.top12-detail--puzzle .media:nth-child(3) .image {
    top: 50%;
    left: 50%;
    width: 22.39583333333333%;
    height: 25.26096033402923%;
    transform: translate(-50%, -50%);
}

.top12-detail--puzzle .media:nth-child(4) .image {
    top: 37.4%;
    left: 62.29166666666667%;
    width: 22.39583333333333%;
    height: 25.26096033402923%;
}

.top12-detail--puzzle .media:nth-child(5) .image {
    top: 64.92693110647182%;
    left: 16.66666666666667%;
    width: 26.35416666666667%;
    height: 29.85386221294363%;
}

.top12-detail--puzzle .media:nth-child(6) .image {
    top: 64.92693110647182%;
    left: 44.27083333333333%;
    width: 14.89583333333333%;
    height: 29.85386221294363%;
}

.top12-detail--puzzle .media:nth-child(7) .image {
    top: 64.92693110647182%;
    left: 60.41666666666667%;
    width: 17.1875%;
    height: 19.41544885177453%;
}

.top12-detail--puzzle .media:nth-child(8) .image {
    display: none;
}

.top12-detail--puzzle-swiper {
    display: none;
    aspect-ratio: 4/3;
    background-color: var(--color-neutral-200);
    padding-top: 0.8rem;
}

@media (max-width: 767.9px) {
    .top12-detail--puzzle-swiper {
        display: block;
    }
}

.top12-detail--puzzle-swiper .swiper-container {
    height: 100%;
}

.top12-detail--puzzle-swiper .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.top12-detail--puzzle-swiper .swiper-slide .image-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.top12-detail--puzzle-swiper .swiper-slide .image-wrap .image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/* ===== 色彩密码 ===== */
.top12-detail--color-cipher {
    position: relative;
    min-height: 300vh;
    overflow: hidden;
    isolation: isolate;
}
@media (max-width: 767.9px) {
    .top12-detail--color-cipher {
        min-height: auto;
    }
}

.top12-detail--color-cipher .inset {
    position: relative;
    z-index: 1;
}

.top12-detail--color-cipher .row {
    position: relative;
    height: 100vh;
    background-color: var(--color-neutral-50);
    will-change: transform;
}

@media (max-width: 767.9px) {
    .top12-detail--color-cipher .row {
        height: auto;
        padding-top: 1.2rem;
        padding-bottom: 1.2rem;
    }
}

.top12-detail--color-cipher .pin-spacer:last-child .row {
    border-top-width: 1px;
    --un-border-opacity: 1;
    border-color: rgb(0 0 0 / var(--un-border-opacity));
    border-style: solid;
}

.top12-detail--color-cipher .inner {
    height: 100%;
    will-change: transform;
}

.top12-detail--color-cipher .columns {
    height: 100%;
    display: flex;
    padding-left: 1.1rem;
    padding-right: 1.1rem;
}

@media (max-width: 767.9px) {
    .top12-detail--color-cipher .columns {
        flex-direction: column;
        padding-left: 0.4rem;
        padding-right: 0.4rem;
    }
}

.top12-detail--color-cipher .columns .item {
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
    /* outline: 1px solid red; */
}

@media (max-width: 767.9px) {
    .top12-detail--color-cipher .columns .item {
        padding-top: 0;
        padding-bottom: 0;
    }
}

.top12-detail--color-cipher .columns .item .carousel {
    height: auto;
}

.top12-detail--color-cipher .columns .item .carousel__title {
    text-align: left;
}

.top12-detail--color-cipher .columns .item .carousel__subtitle {
    text-align: left;
}

.top12-detail--color-cipher .columns .item .pixel-stage {
    --cell: 0.22rem;
    --gap: 1px;
    --cols: 34;
    --rows: 25;

    position: relative;
    width: calc(var(--cols) * var(--cell) + (var(--cols) + 1) * var(--gap));
    height: calc(var(--rows) * var(--cell) + (var(--rows) + 1) * var(--gap));
    background-color: transparent;
    background-image:
        repeating-linear-gradient(
            to right,
            var(--color-neutral-200) 0 var(--gap),
            transparent var(--gap) calc(var(--cell) + var(--gap))
        ),
        repeating-linear-gradient(
            to bottom,
            var(--color-neutral-200) 0 var(--gap),
            transparent var(--gap) calc(var(--cell) + var(--gap))
        );
}

.top12-detail--color-cipher .columns .item .pixel-stage-box {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5.98rem;
    height: 4.36rem;
    --un-translate-x: -50%;
    transform: translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z))
        rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotateZ(var(--un-rotate-z))
        skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y))
        scaleZ(var(--un-scale-z));
    --un-translate-y: -50%;
    transform: translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z))
        rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotateZ(var(--un-rotate-z))
        skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y))
        scaleZ(var(--un-scale-z));
    overflow: hidden;
}

.top12-detail--color-cipher .columns .item .pixel-foreground {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.top12-detail--color-cipher .columns .item:first-child {
    margin-right: 0.8rem;
    width: 3.8rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

@media (max-width: 767.9px) {
    .top12-detail--color-cipher .columns .item:first-child {
        margin-right: 0;
        width: 100%;
    }
}

.top12-detail--color-cipher .columns .item:nth-child(2) {
    display: flex;
    flex: 1 1 0%;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767.9px) {
    .top12-detail--color-cipher .columns .item:nth-child(2) {
        padding-top: 0.8rem;
        padding-bottom: 0.8rem;
    }
}

.top12-detail--color-cipher .columns .item:nth-child(2) .pixel-stage {
    display: none;
}

@media (max-width: 767.9px) {
    .top12-detail--color-cipher .columns .item:nth-child(2) .pixel-stage {
        display: block;
    }
}

.top12-detail--color-cipher .columns .item:nth-child(3) {
    margin-left: 0.8rem;
    width: 3.8rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

@media (max-width: 767.9px) {
    .top12-detail--color-cipher .columns .item:nth-child(3) {
        margin-left: 0;
        width: 100%;
    }
}

.top12-detail--color-cipher .canvas {
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

@media (max-width: 767.9px) {
    .top12-detail--color-cipher .canvas {
        display: none;
    }
}

.top12-detail--color-cipher .canvas-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 5.7rem;
    padding-right: 5.7rem;
    will-change: clip-path;
}

.top12-detail--color-cipher .canvas-inner:first-child {
    z-index: 1;
}

.top12-detail--color-cipher .canvas-inner:not(:first-child) {
    z-index: 2;
    -webkit-clip-path: inset(100% 0 0 0);
    clip-path: inset(100% 0 0 0);
}

.top12-detail--color-cipher .canvas-inner .image-wrap {
    width: 100%;
}

.top12-detail--color-cipher .canvas-inner .image-wrap .image {
    width: 100%;
    height: auto;
}

.top12-detail--color-cipher .canvas-inner .pixel-stage {
    --cell: 0.2rem;
    --gap: 1px;
    --cols: 36;
    --rows: 26;

    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(var(--cols) * var(--cell) + (var(--cols) + 1) * var(--gap));
    height: calc(var(--rows) * var(--cell) + (var(--rows) + 1) * var(--gap));
    background-color: transparent;
    background-image:
        repeating-linear-gradient(
            to right,
            var(--color-neutral-200) 0 var(--gap),
            transparent var(--gap) calc(var(--cell) + var(--gap))
        ),
        repeating-linear-gradient(
            to bottom,
            var(--color-neutral-200) 0 var(--gap),
            transparent var(--gap) calc(var(--cell) + var(--gap))
        );
}

.top12-detail--color-cipher .canvas-inner:not(:first-child) .pixel-stage {
    background-image: none;
}

.top12-detail--color-cipher .canvas-inner .pixel-stage-box {
    width: 5.98rem;
    height: 4.36rem;
}

.top12-detail--color-cipher .canvas-inner .pixel-foreground {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/* ===== 轮播/文本 - 轮播 ===== */
.top12-detail--module-text {
    position: relative;
    z-index: 10;
    height: 9.88rem;
    display: flex;
}
@media (max-width: 767.9px) {
    .top12-detail--module-text {
        height: auto;
        display: flex;
        flex-direction: column-reverse;
    }
}

.top12-detail--module-text .module-text-wrap {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767.9px) {
    .top12-detail--module-text .module-text-wrap {
        aspect-ratio: 8/9;
        width: 100%;
        height: auto;
    }
}

.top12-detail--module-text.module-two {
    flex-direction: row-reverse;
}

@media (max-width: 767.9px) {
    .top12-detail--module-text.module-two {
        flex-direction: column-reverse;
    }
}

.top12-detail--module-text-1 .module-text-wrap,
.top12-detail--module-text-4 .module-text-wrap,
.top12-detail--module-text-7 .module-text-wrap,
.top12-detail--module-text-10 .module-text-wrap {
    background-color: var(--color-neutral-200);
}

.top12-detail--module-text-2 .module-text-wrap,
.top12-detail--module-text-5 .module-text-wrap,
.top12-detail--module-text-8 .module-text-wrap,
.top12-detail--module-text-11 .module-text-wrap {
    background-color: var(--color-neutral-300);
}

.top12-detail--module-text-3 .module-text-wrap,
.top12-detail--module-text-6 .module-text-wrap,
.top12-detail--module-text-9 .module-text-wrap,
.top12-detail--module-text-12 .module-text-wrap {
    background-color: var(--color-neutral-500);
}

.top12-detail--module-text .module-text-wrap .carousel__subtitle {
    text-align: center;
}

.top12-detail--module-text .module-swiper-wrap {
    width: 50%;
}

@media (max-width: 767.9px) {
    .top12-detail--module-text .module-swiper-wrap {
        aspect-ratio: 8/9;
        width: 100%;
        height: auto;
    }
}

.top12-detail--module-text .swiper-container {
    height: 100%;
}

.top12-detail--module-swiper {
    position: relative;
    z-index: 10;
    height: 9.88rem;
}

@media (max-width: 767.9px) {
    .top12-detail--module-swiper {
        aspect-ratio: 4/3;
        height: auto;
    }
}

.top12-detail--module-swiper .swiper-container {
    height: 100%;
}

/* ===== 底部 上文下图轮播 ===== */
.top12-detail--footer-swiper {
    position: relative;
    z-index: 11;
    background-color: var(--color-neutral-200);
    padding-left: 1.1rem;
    padding-right: 1.1rem;
    padding-top: 1.9rem;
    padding-bottom: 1.14rem;
}
@media (max-width: 767.9px) {
    .top12-detail--footer-swiper {
        padding-left: 0.4rem;
        padding-right: 0.4rem;
        padding-top: 0.4rem;
        padding-bottom: 0.4rem;
    }
}

.footer-swiper__text-wrap .footer-swiper__text {
    font-size: var(--font-zh-text);
    line-height: 1.6494;
    font-weight: 300;
    letter-spacing: 0.11em;
    --un-text-opacity: 1;
    color: rgb(51 51 51 / var(--un-text-opacity));
    line-height: 1.6494;
    font-family: FZLTHProJ-Regular, sans-serif;
}

@media (max-width: 767.9px) {
    .footer-swiper__text-wrap .footer-swiper__text {
        font-size: 14px;
    }
}

.footer-swiper__swiper-wrap {
    margin-top: 0.84rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

@media (max-width: 767.9px) {
    .footer-swiper__swiper-wrap {
        flex-direction: column;
    }
}

.swiper-wrap__navigation {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    -moz-column-gap: 0.16rem;
    column-gap: 0.16rem;
}

.swiper-wrap__navigation .swiper-wrap__btn {
    position: relative;
    width: 0.56rem;
    height: 0.56rem;
    cursor: pointer;
    overflow: hidden;
    border-width: 1px;
    --un-border-opacity: 1;
    border-color: rgb(51 51 51 / var(--un-border-opacity));
    border-radius: 99.99rem;
    border-style: solid;
    --un-text-opacity: 1;
    color: rgb(51 51 51 / var(--un-text-opacity));
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

@media (max-width: 767.9px) {
    .swiper-wrap__navigation .swiper-wrap__btn {
        margin-bottom: 0.4rem;
        width: 32px;
        height: 32px;
    }
}

.swiper-wrap__navigation .swiper-wrap__btn:hover {
    --un-bg-opacity: 1;
    background-color: rgb(51 51 51 / var(--un-bg-opacity));
    --un-text-opacity: 1;
    color: rgb(255 255 255 / var(--un-text-opacity));
}

.swiper-wrap__navigation .swiper-wrap__btn .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1em;
    height: 1em;
    --un-translate-x: -50%;
    --un-translate-y: -50%;
    transform: translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z))
        rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotateZ(var(--un-rotate-z))
        skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y))
        scaleZ(var(--un-scale-z));
    overflow: hidden;
    font-size: 0.14rem;
}

@media (max-width: 767.9px) {
    .swiper-wrap__navigation .swiper-wrap__btn .icon {
        font-size: 16px;
    }
}

.swiper-wrap__navigation .swiper-wrap__btn .icon::before,
.swiper-wrap__navigation .swiper-wrap__btn .icon::after {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    --un-translate-x: -50%;
    --un-translate-y: -50%;
    transform: translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z))
        rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotateZ(var(--un-rotate-z))
        skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y))
        scaleZ(var(--un-scale-z));
    font-family: "iconfont" !important;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
    transition-duration: 700ms;
}

.swiper-wrap__navigation .swiper-wrap__prev .icon::before,
.swiper-wrap__navigation .swiper-wrap__prev .icon::after {
    content: "\e609";
}

.swiper-wrap__navigation .swiper-wrap__next .icon::before,
.swiper-wrap__navigation .swiper-wrap__next .icon::after {
    content: "\e60c";
}

.swiper-wrap__navigation .swiper-wrap__prev .icon::before {
    left: 150%;
}

.swiper-wrap__navigation .swiper-wrap__next .icon::before {
    left: -100%;
}

.swiper-wrap__navigation .swiper-wrap__prev:hover .icon::before {
    left: 50%;
}

.swiper-wrap__navigation .swiper-wrap__prev:hover .icon::after {
    left: 0;
}

.swiper-wrap__navigation .swiper-wrap__next:hover .icon::before {
    left: 50%;
}

.swiper-wrap__navigation .swiper-wrap__next:hover .icon::after {
    left: 100%;
}

.swiper-wrap__content {
    width: 13.28rem;
    height: 7.48rem;
    overflow: hidden;
}

@media (max-width: 767.9px) {
    .swiper-wrap__content {
        aspect-ratio: 4/3;
        width: 100%;
        height: auto;
    }
}

.swiper-wrap__content .swiper-container {
    height: 100%;
    overflow: hidden;
}

.swiper-wrap__content .swiper-slide {
    overflow: hidden;
}

.swiper-wrap__content .swiper-slide .slide-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ===== 底部分类列表 ===== */
.page-top12-detail .category-list--footer {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 1.02rem;
}

.page-top12-detail .category-list--footer .module-text-wrap {
    text-align: center;
}

.page-top12-detail .category-list--footer .category-list--wrapper {
    margin-top: 0.5rem;
    padding-top: 1.96rem;
}

.page-top12-detail .category-list--footer .category-list--wrapper li a {
    color: rgb(255 255 255 / 0.6);
}

.page-top12-detail .category-list--footer .category-list--wrapper li a:hover {
    --un-text-opacity: 1;
    color: rgb(255 255 255 / var(--un-text-opacity));
}

.page-top12-detail .category-list--footer .category-list--wrapper li.is-active a {
    --un-text-opacity: 1;
    color: rgb(255 255 255 / var(--un-text-opacity));
}

.page-top12-detail .category-list--footer .category-list--mobile {
}

@media (max-width: 767.9px) {
    .page-top12-detail .category-list--footer .category-list--mobile {
        padding-top: 0.6rem;
        padding-bottom: 0.4rem;
    }
}

.page-top12-detail .category-list--footer .category-list--mobile-link {
    --un-text-opacity: 1;
    color: rgb(255 255 255 / var(--un-text-opacity));
}

/* ===== 其他案例 ===== */
.top12-detail--other-case {
    background-color: var(--color-neutral-200);
    padding-left: 1.1rem;
    padding-right: 1.1rem;
    padding-top: 1.1rem;
    padding-bottom: 1.52rem;
}
@media (max-width: 767.9px) {
    .top12-detail--other-case {
        padding-left: 0.4rem;
        padding-right: 0.4rem;
    }
}

.top12-detail--other-case .carousel__title {
    text-align: center;
}

.top12-detail--other-case .case-list {
    /* @apply grid grid-cols-3 gap-x-[58px] justify-between mt-[50px]; */
    margin-top: 0.5rem;
}

.top12-detail--other-case .case-list .swiper-container {
    padding-bottom: 0.5rem;
}

.top12-detail--other-case .case-list .swiper-container:hover .carousel__prev {
    left: 5%;
}

.top12-detail--other-case .case-list .swiper-container:hover .carousel__next {
    right: 5%;
}

.top12-detail--other-case .case-list .swiper-scrollbar {
    left: 0;
    width: 100%;
    height: 2px;
    cursor: grab;
}

.top12-detail--other-case .case-list .swiper-slide-card {
    position: relative;
    display: block;
    font-size: 0;
}

.top12-detail--other-case .img-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.top12-detail--other-case .img-card {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-bottom: 133.7%;
}

.top12-detail--other-case .img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    --un-translate-x: -50%;
    --un-translate-y: -50%;
    transform: translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z))
        rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotateZ(var(--un-rotate-z))
        skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y))
        scaleZ(var(--un-scale-z));
    -o-object-fit: cover;
    object-fit: cover;
}

.top12-detail--other-case .text-wrap {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.top12-detail--other-case .text-wrap::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 0.7);
    opacity: 0;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
    transition-property:
        color,
        background-color,
        border-color,
        fill,
        stroke,
        opacity,
        box-shadow,
        transform,
        filter,
        -webkit-text-decoration-color,
        -webkit-backdrop-filter;
    transition-property:
        color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform,
        filter, backdrop-filter;
    transition-property:
        color,
        background-color,
        border-color,
        text-decoration-color,
        fill,
        stroke,
        opacity,
        box-shadow,
        transform,
        filter,
        backdrop-filter,
        -webkit-text-decoration-color,
        -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 600ms;
    content: "";
}

.top12-detail--other-case .text-wrap .carousel {
    position: absolute;
    top: 70%;
    z-index: 2;
    width: 100%;
    height: auto;
    overflow: hidden;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.top12-detail--other-case .text-wrap .carousel__content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.top12-detail--other-case .text-wrap .button {
    --un-translate-y: 100%;
    transform: translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z))
        rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotateZ(var(--un-rotate-z))
        skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y))
        scaleZ(var(--un-scale-z));
    opacity: 0;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
    transition-property:
        color,
        background-color,
        border-color,
        fill,
        stroke,
        opacity,
        box-shadow,
        transform,
        filter,
        -webkit-text-decoration-color,
        -webkit-backdrop-filter;
    transition-property:
        color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform,
        filter, backdrop-filter;
    transition-property:
        color,
        background-color,
        border-color,
        text-decoration-color,
        fill,
        stroke,
        opacity,
        box-shadow,
        transform,
        filter,
        backdrop-filter,
        -webkit-text-decoration-color,
        -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 600ms;
}

.top12-detail--other-case .text-wrap .button.button--outline:hover {
    border-color: var(--color-text-inverse);
    background: var(--color-text-inverse);
    color: var(--color-bg-inverse);
}

.top12-detail--other-case .case-list .swiper-slide-card:hover .text-wrap::before {
    z-index: 1;
    opacity: 1;
}

.top12-detail--other-case .case-list .swiper-slide-card:hover .text-wrap .carousel {
    top: 50%;
    --un-translate-y: -50%;
    transform: translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z))
        rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotateZ(var(--un-rotate-z))
        skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y))
        scaleZ(var(--un-scale-z));
}

.top12-detail--other-case .case-list .swiper-slide-card:hover .text-wrap .button {
    --un-translate-y: 0;
    transform: translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z))
        rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotateZ(var(--un-rotate-z))
        skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y))
        scaleZ(var(--un-scale-z));
    opacity: 1;
}
