@charset "UTF-8";

/* ===== 标题：英文 ===== */
.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"] {
    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"] {
    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 {
    pointer-events: none;
    position: absolute;
    top: 50%;
    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));
}

.carousel__next {
    right: -15%;
    --un-text-opacity: 1;
    color: rgb(255 255 255 / var(--un-text-opacity));
}

.carousel__prev {
    left: -15%;
    --un-text-opacity: 1;
    color: rgb(255 255 255 / var(--un-text-opacity));
}

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

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

.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";
}

.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);
}

.carousel__video--controls {
    position: absolute;
    left: 5%;
    bottom: 12%;
    z-index: 2;
    display: flex;
    align-items: center;
    font-size: 0;
    color: #fff;
}

.carousel__video--controls .controls,
.carousel__video--controls .muted {
    position: relative;
    width: 1em;
    height: 1em;
    cursor: pointer;
    font-size: 0.24rem;
}

@media (max-width: 767.9px) {
    .carousel__video--controls .controls,
    .carousel__video--controls .muted {
        font-size: 20px;
    }
}

.carousel__video--controls .muted {
    margin-left: 1em;
}

.carousel__video--controls i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: inherit;
}

.controls--on {
    opacity: 1;
}

.controls--off {
    opacity: 0;
}

.muted--on {
    opacity: 1;
}

.muted--off {
    opacity: 0;
}

.carousel__video--controls .controls.is-play .controls--on {
    opacity: 0;
}

.carousel__video--controls .controls.is-play .controls--off {
    opacity: 1;
}

.carousel__video--controls .muted.is-muted .muted--on {
    opacity: 0;
}

.carousel__video--controls .muted.is-muted .muted--off {
    opacity: 1;
}

.page-quality-service-main {
    --un-bg-opacity: 1;
    background-color: rgb(242 239 231 / var(--un-bg-opacity));
}

/* ===== 大图 + 文本 ===== */
.quality-service-big-picture {
    --current-bg: var(--bg-pc);
    position: relative;
    height: 10.82rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: var(--current-bg);
}
@media (max-width: 767.9px) {
    .quality-service-big-picture {
        aspect-ratio: 3 / 4;
        height: auto;
    }
}

@media (max-width: 767.9px) {
    .quality-service-big-picture {
        --current-bg: var(--bg-mobile);
    }
}

.quality-service-big-picture .carousel {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: auto;
    --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));
    text-align: center;
}

.quality-service-big-picture .carousel .carousel__title[lang|="zh"] {
    margin-top: 10px;
}

.quality-service-big-picture .carousel .carousel__subtitle[lang|="zh"] {
    margin-top: 0.2rem;
}

/* ===== 图文 ===== */
.quality-service--module-text {
    background-color: var(--bg-color);
}

.quality-service--module-text-1 {
    --bg-color: #f2efe7;
}

.quality-service--module-text-2 {
    --bg-color: #dacdc3;
}

.quality-service--module-text-3 {
    --bg-color: #e6e4dd;
}

.quality-service--module-text-4 {
    --bg-color: #b09b86;
}

.quality-service--module-text .wrapper {
    position: relative;
    display: flex;
    background-color: var(--bg-color);
}

@media (max-width: 767.9px) {
    .quality-service--module-text .wrapper {
        display: flex;
        flex-direction: column;
    }
}

/* 
.quality-service--module-text-1,
.quality-service--module-text-1 .wrapper {
    @apply bg-[var(--bg-color)];
}

.quality-service--module-text-2,
.quality-service--module-text-2 .wrapper {
    @apply bg-[var(--bg-color)];
}

.quality-service--module-text-3,
.quality-service--module-text-3 .wrapper {
    @apply bg-[var(--bg-color)];
}

.quality-service--module-text-4,
.quality-service--module-text-4 .wrapper {
    @apply bg-[var(--bg-color)];
} */

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

@media (max-width: 767.9px) {
    .quality-service--module-text .module-text-wrap {
        width: 100%;
    }
}

.quality-service--module-text.reverse .wrapper {
    flex-direction: row-reverse;
}

@media (max-width: 767.9px) {
    .quality-service--module-text.reverse .wrapper {
        flex-direction: column-reverse;
    }
}

.quality-service--module-text .module-text-wrap {
    text-align: center;
    aspect-ratio: 1 / 1.126;
}

.quality-service--module-text .module-text-wrap .carousel__title[lang|="zh"] {
    margin-top: 10px;
}

.quality-service--module-text .module-text-wrap .carousel__subtitle[lang|="zh"] {
    margin-top: 0.3rem;
}

.quality-service--module-text .module-image-wrap {
    position: relative;
    width: 50%;
    overflow: hidden;
}

@media (max-width: 767.9px) {
    .quality-service--module-text .module-image-wrap {
        display: none;
    }
}

.quality-service--module-text .module-image-wrap .image {
    width: 100%;
}

.quality-service--module-text .module-image-wrap .module-video {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.126;
}

.quality-service--module-text .module-image-wrap .carousel__video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/* .module-image-wrap-video-cursor {
    @apply absolute top-0 left-0 flex flex-center w-[100px] h-[100px] rounded-full bg-black/60 scale-0 cursor-pointer will-change-transform;
    @apply <md:top-1/2 <md:left-1/2 <md:-translate-1/2 <md:scale-100;
}

.module-image-wrap-video-cursor-text {
    @apply font-en-display text-en-text text-white;
} */

/* ===== 视频介绍 ===== */
.quality-service-video-introduction {
    position: relative;
    aspect-ratio: 1/0.562;
    overflow: hidden;
}
@media (max-width: 767.9px) {
    .quality-service-video-introduction {
        aspect-ratio: auto;
        height: auto;
    }
}

/* .quality-service-video-introduction-cursor {
    @apply absolute top-0 left-0 flex flex-center w-[100px] h-[100px] rounded-full bg-black/60 scale-0 cursor-pointer will-change-transform;
    @apply <md:top-1/2 <md:left-1/2 <md:-translate-1/2 <md:scale-100;
}

.quality-service-video-introduction-cursor-text {
    @apply font-en-display text-en-text text-white;
} */

.quality-service-video-introduction .module-video {
    position: relative;
    width: 100%;
    height: 100%;
}

@media (max-width: 767.9px) {
    .quality-service-video-introduction .module-video {
        aspect-ratio: 4/3;
        height: auto;
    }
}

.quality-service-video-introduction .carousel__video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.quality-service-video-introduction-image {
    width: 100%;
    height: auto;
}
