.button-root-MFn {
    padding-top: calc(0.5rem + 1px); /* TODO @TW: review */
    padding-bottom: calc(0.5rem - 1px); /* TODO @TW: review */
    min-height: 2.5rem;
    transition-duration: 256ms;
    transition-property: background-color, border-color, color;
    transition-timing-function: var(--venia-global-anim-standard);
}

.button-root-MFn:active {
    transition-duration: 128ms;
}

/**
 * Some browsers retain the :hover state after a click, this ensures if a button becomes disabled after
 * being clicked it will be visually disabled.
 */
.button-root-MFn:hover:disabled {
    /* TODO @TW: cannot compose. This may not be possible with two variants. */
    pointer-events: none;
}

.button-root_lowPriority-Qoh {
}

.button-root_normalPriority-1E0 {
}

.button-root_highPriority-UpE {
}

.button-root_lowPriorityNegative-uax,
.button-root_normalPriorityNegative-x-d {
}

.button-root_highPriorityNegative-gwK {
}

.button-content-TD8 {
}

.checkbox-root-hF1 {
    --stroke: var(--venia-global-color-gray-600);
    grid-template-areas: 'input label';
    grid-template-columns: min-content 1fr;
}

.checkbox-input-WEy {
    grid-area: input;

    /* TODO @TW: review, replaces input:disabled. Check if working. */
}

.checkbox-icon-eiW {
    grid-area: input;
}

.checkbox-icon-eiW svg {
    stroke: rgb(var(--stroke));
}

.checkbox-label-wHh {
    grid-area: label;
}

/* When the input is disabled, update the cursor on the sibling label element. */
/* TODO @TW: cannot compose */
.checkbox-input-WEy:disabled ~ .checkbox-label-wHh {
    cursor: default;
}

.checkbox-input-WEy:checked:enabled + .checkbox-icon-eiW {
    --stroke: var(--venia-brand-color-1-700);
}

/* TODO @TW: cannot compose, needs "checked" variant enabled. Cannot combine variants. */
.checkbox-input-WEy:active:enabled,
.checkbox-input-WEy:focus:enabled {
    /* composes: active_shadow-radioActive from global; */
    /* composes: focus_shadow-radioFocus from global; */
    box-shadow: -3px 3px rgb(var(--venia-brand-color-1-100));
    outline: none;
}

.checkbox-input_shimmer-yEr {
}

.radio-root-Mbw {
    grid-template-areas: 'input label';
    grid-template-columns: min-content 1fr;
}

.radio-input-Mgy {
    grid-area: input;
}

.radio-icon-QeD {
    grid-area: input;
}

/* TODO @TW: cannot compose */
.radio-icon-QeD svg {
    /* composes: stroke-gray-600 from global; */
    stroke: rgb(var(--venia-global-color-gray-600));
}

.radio-label-n0x {
    grid-area: label;
}

/* TODO @TW: cannot compose */
.radio-input-Mgy:checked + .radio-icon-QeD svg {
    /* composes: stroke-brand-base from global; */
    stroke: rgb(var(--venia-brand-color-1-700));
}

.radio-input_shimmer-1vi {
}

.field-root-fSe {
}

.field-label-zVe {
    min-height: 2.125rem;
}

.field-input-2Mu {
    padding: calc(0.375rem - 1px) calc(0.625rem - 1px); /* TODO @TW: review */
}

.field-input-2Mu:disabled {
    background: rgb(var(--venia-global-color-gray-100));
    border-color: rgb(var(--venia-global-color-gray-400));
    color: rgb(var(--venia-global-color-gray-darker));
}

.field-optional-EDv {
}

.textArea-input-Rk3 {
}

.textArea-input_shimmer-SJm {
    font-size: 1rem;
}

.textInput-input-PzO {
}

.textInput-input_error-2j1 {
}

.textInput-input_shimmer-BRC {
    font-size: 1rem;
    padding: calc(0.375rem - 1px) calc(0.625rem - 1px);
}

.shimmer-root-N6z {
}

/* TODO @TW: cannot compose */
.shimmer-root-N6z::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: var(
        --venia-global-maxWidth
    ); /* TODO @TW: review. this should use TW theme value "maxWidth.site" */
    height: 100%;
    background-image: linear-gradient(
        to right,
        rgb(var(--venia-global-color-gray-50) / 0%) 0%,
        rgb(var(--venia-global-color-gray-50)) 40%,
        rgb(var(--venia-global-color-gray-50) / 0%) 80%,
        rgb(var(--venia-global-color-gray-50) / 0%) 100%
    );
    /* composes: bg-no-repeat from global; */
    background-repeat: none;
    background-size: var(--venia-global-maxWidth) 100%;
    -webkit-animation-name: shimmer-shimmerAnimation-rGT;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-fill-mode: forwards;
    will-change: transform;
}

.shimmer-root_rectangle-Hcb {

    min-height: 1rem;
}

.shimmer-root_button-AUG {
}

.shimmer-root_checkbox-Reu {
}

.shimmer-root_radio-y1q {
}

.shimmer-root_textArea-H8r {

    min-height: 6.75rem;
}

.shimmer-root_textInput-X-e {
}

.column-root-syg {
}

@media only screen and (max-width: 960px) {
    .column-root-syg {
        background-attachment: scroll !important;
        flex-basis: 100%;
    }
}

@media only screen and (max-width: 960px) {
    .columnLine-root-mGa {
        flex-wrap: wrap;
    }
}

.noProductsFound-root-oiK {
}

.noProductsFound-title-9AP {
}

.noProductsFound-categories-M7- {
}

.noProductsFound-list-7Hy {
}

.noProductsFound-listItem-ssL {
}

.noProductsFound-imageContainer-oSu {
}

.noProductsFound-image-Wvy {
}

.gallery-root-MY9 {
    grid-template-areas:
        'items'
        'actions';

    padding-top: 40px;
    min-height: 200px;
}

.gallery-items-kMz {
    /* composes: gap-xs from global; */
    width: 100%;
    gap: 2rem;
    grid-area: items;
    grid-template-columns: repeat(4, 1fr);
}

.gallery-items4-ij1 {
    grid-template-columns: repeat(4, 1fr);
}

.gallery-items3-N2M {
    grid-template-columns: repeat(3, 1fr);
}

.gallery-comparebox-VvP {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    position: fixed;
    padding: 0 40px;
    background: #fff;
    z-index: 30;
    bottom: 0;
    right: 0;
    left: 0;
    height: 80px;
    box-sizing: border-box;
}

.gallery-comparebox-VvP ul {
    flex: 1;
    display: flex;
    align-items: center;
    overflow-x: auto;
    height: 100%;
    overflow-y: visible;
}

.gallery-comparebox-VvP ul li {
    width: 81px;
    height: 40px;
    border-radius: 20px;
    margin-right: 15px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gallery-comparebox-VvP ul li img {
    /* max-height: 36px; */
    max-height: 30px;
    max-width: 57px;
    margin-top: -7px;
}

.gallery-comparebox-VvP ul li b {
    background: url(/eu/close1.svg) no-repeat 50% 50%;
    background-size: auto 20px;
    width: 20px;
    height: 20px;
    position: absolute;
    right: -10px;
    top: -8px;
    z-index: 2;
    cursor: pointer;
}

.gallery-comparebox-VvP ul li b:hover {
    opacity: 0.7;
}

.gallery-list-vFY {
    display: none
}

.gallery-comparelist-P0o {
    width: 100%;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    direction: ltr;
}

.gallery-comparelist-P0o .gallery-name-eXG {
    /* width: 101px; */
    display: inline-block;
    font-size: 20px;
    color: #000;
    padding: 0 10px 0 0;
}

.gallery-comparelist-P0o .gallery-btn-LZu {
    cursor: pointer;
    width: 153px;
    height: 40px;
    border-radius: 20px;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5px;
}

.gallery-comparelist-P0o .gallery-desc-SXc {
    padding-right: 20px;
}

.gallery-comparelist-P0o .gallery-num--wA {
    display: none
}


/*  分页，加载更多 */
.gallery-pLoadMore-t9h{
    display: flex; align-items: center; flex-direction: column; text-align: center; padding: 40px 0;
}
.gallery-pLoadMore-t9h .gallery-text-vG-{
}
.gallery-pLoadMore-t9h .gallery-progress--Mv{
    height: 4px; background-color: #ccc; width: 200px; margin: 20px auto 30px auto; font-size: 12px;
}
.gallery-pLoadMore-t9h .gallery-progress--Mv b{
    display: block; height: 100%; width: 2px; background: #000;border: none; box-shadow: none; transition: all 0.5s ease 1s;
}
.gallery-pLoadMore-t9h .gallery-btn-LZu{
    width: 300px; color: #fff; background: #ccc; line-height: 40px;height: 40px; margin: 0 auto; border-radius: 40px; cursor: pointer;padding: 0;
}
.gallery-pLoadMore-t9h.gallery-active-FMk .gallery-btn-LZu{
    background-color: #000;
}



@media (max-width: 961px) {
    .gallery-items-kMz {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .gallery-comparelist-P0o {
        justify-content: space-between;
        height: 40px;
    }

    .gallery-comparelist-P0o .gallery-name-eXG {
        width: auto;
    }

    .gallery-comparelist-P0o .gallery-num--wA {
        display: inline-block;
        padding-left: 5px
    }

    .gallery-desc-SXc {
        display: none;
    }

    .gallery-comparebox-VvP {
        padding: 0 10px 20px;
        height: 140px
    }

    .gallery-comparebox-VvP .gallery-list-vFY {
        display: block;
    }

    .gallery-comparebox-VvP ul.gallery-pc-PSI {
        display: none;
    }

    .gallery-comparebox-VvP .gallery-list-vFY {
        display: flex;
        width: 100%;
        height: 80px;
    }
}

@media (max-width: 375px) {
    .gallery-items-kMz {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}
.item-root-NyK {
    /* composes: content-start from global; */
    /* composes: grid from global; */
    /* composes: gap-y-2xs from global; */
    background-color: #F6F4F3;
    position: relative;
}
.item-tag-VJq{
    display:flex; gap:5px;
}
.item-leaf-VXi {
    width: 10px;
    height: 10px;
    background: url(/eu/leaf1.svg) no-repeat 50% 50%;
    background-size: 100% 100%;
}

.item-images-Or3 {
    grid-template-areas: 'main';
    position: relative;
    /* width: 310px; */
}

.item-imageContainer-teU {
    grid-area: main;
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.item-image-dX0 {
    transition: opacity 512ms ease-out;
}

.item-imageLoaded-jug {
}

.item-imageNotLoaded-6cK {
}

.item-imagePlaceholder-B8S {
}

.item-actionsContainer-KmW {
    /* composes: gap-x-xs from global;
    composes: grid from global;
    composes: pl-2xs from global;
    grid-template-columns: auto auto; */
    position: absolute;
    left: 16px; right:16px;
    bottom: 24px;
    /* width: 200px; */
    display: flex; 
    gap:10px;
}
/* TODO @TW: cannot compose */
.item-actionsContainer-KmW:empty {
    display: none;
}



.item-unavailableContainer-dxI {
}

.item-proItem-4EC {
    position: relative;
    z-index: 0;
}

.item-proItem-4EC .item-itemLink-q1z {
    display: block;
    width: 100%;
    padding-bottom: 10px;
}
.item-proItem-4EC .item-btnBuy-Meg {
    /* width: 80px; */
    display: inline-block;
    padding: 0 10px;
    height: 2.2em;
    line-height: 1em;
    text-align: center;
    font-size: 11px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    cursor: pointer;
}

.item-proItem-4EC .item-btnBuy-Meg:hover {
    background-color: #000;
    color: #fff;
}

.item-proItem-4EC .item-circle-VQY {}

.item-proItem-4EC .item-circle-VQY ul {
    display: flex;
    width: 100%;
}

.item-proItem-4EC .item-circle-VQY ul li {
    cursor: pointer;
    width: 16px;
    height: 16px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}


.item-proItem-4EC .item-circle-VQY ul li span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #fff;
    box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.1);
}

.item-proItem-4EC .item-circle-VQY ul li span:hover,.item-proItem-4EC .item-circle-VQY ul li.item-active-j9l span {
    box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.5);
}

.item-proItem-4EC .item-imgBox-I-F {
    padding-bottom: 116%;
    /* width: 100%; */
}

.item-proItem-4EC .item-image0-6Wg {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 60px;
    top: 0;
    z-index: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: flex; align-items: center; justify-content: center;
}
.item-proItem-4EC .item-image0-6Wg img{
    max-width: 100%; max-height: 100%;
}
.lazy-load{
    transform: scale(0.99);
}

@media (min-width: 641px) {
    .item-proItem-4EC {
        position: relative;
        z-index: 1;
    }

    .item-proItem-4EC .item-tag-VJq {
        background-color: #fff;
        padding: 0 10px;
        line-height: 25px;
        color: #000;
        position: absolute;
        right: 24px;
        top: 24px;
        z-index: 10;
        border-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .item-proItem-4EC .item-mobile-HIS {
        display: none;
    }

    .item-proItem-4EC .item-btnBuy-Meg {
        /* margin-right: 10px; */
        cursor: pointer;
    }

    .item-proItem-4EC .item-pCtrl-38Z {
        background: transparent;
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        height: calc(100% - 54px);
        z-index: 9;
        cursor: pointer;
    }

    .item-proItem-4EC .item-pCtrl-38Z .item-bj-HA5 {
        display: none;
        width: 100%;
        height: 100%;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

    .item-proItem-4EC .item-circle-VQY {
        position: absolute;
        bottom: 10px;
        right: 10px;
        z-index: 10;
    }

    .item-proItem-4EC .item-circle-VQY ul {
        display: flex;
        justify-content: flex-end;
        width: 100%;
    }

    .item-proItem-4EC .item-circle-VQY li {
        cursor: pointer;
        width: 20px;
        height: 20px;
        display: flex;
        justify-content: center;
        align-items: flex-end;
    }

    .item-proItem-4EC .item-circle-VQY li span {
        width: 10px;
        height: 10px;
        border-radius: 50%;
    }


    .item-proItem-4EC .item-name-suo {
        bottom: 43px;
        font-size: 14px;
        font-weight: bold;
    }

    .item-proItem-4EC .item-name-suo,
    .item-proItem-4EC .item-price-QdV {
        min-height: 1rem;
        position: absolute;
        z-index: 2;
        left: 25px; 
    }

    .item-proItem-4EC .item-price-QdV {
        bottom: 20px;
        color: #696969;display:flex; gap:5px;
    }

    .item-proItem-4EC .item-price1-88j {
        text-decoration: line-through;
        padding-right: 12px;
    }
}

@media (min-width: 1440px) {
    .item-proItem-4EC .item-pCtrl-38Z:hover {
        left: 0;
        top: 0;
        right: 0;
        height: 100%;
        background: #F6F4F3;
    }

    .item-proItem-4EC .item-pCtrl-38Z:hover .item-bj-HA5 {
        display: block;
    }

    .item-proItem-4EC .item-pCtrl-38Z:hover .item-imgLink-3eR {
        display: block;
        width: 100%;
        height: calc(100% - 54px);
    }

    .item-proItem-4EC .item-pCtrl-38Z:hover .item-btn-Qjv {
        position: absolute;
        bottom: 28px;
        left: 12px;
        display: flex;
    }

    .item-proItem-4EC .item-pCtrl-38Z:hover .item-btnactive-Fi4 {
        background: #000;
        color: #fff;
    }
}

@media (max-width: 640px) {
    .item-proItem-4EC {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0
    }


    .item-proItem-4EC .item-imgBox-I-F {
        padding-bottom: 90%;
    }

    .item-proItem-4EC .item-btnBuy-Meg {
        z-index: 2;
        position: absolute;
        left: 50%;
        margin-left: -40px;
    }


    .item-pc-Tu8 {
        display: none;
    }

    .item-mobile-HIS {
        display: block;
    }

    .item-btnBuy-Meg {
        margin-top: 20px
    }

    .item-circle-VQY {
        padding-top: 20px;
        height: 28px;
        display: flex;
        align-items: flex-end;
    }

    .item-circle-VQY ul {
        justify-content: center;
    }

    .item-pInfo-R31 {
        display: flex;
        padding-top: 12px;
    }

    .item-subItem-Bhn {
        display: flex;
        flex-direction: column;
        font-size: 14px;
        font-weight: normal;
        padding: 0;
        width: 100%;
    }

    .item-subItem-Bhn .item-name-suo {
        -webkit-line-clamp: 2;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.2;
    }

    .item-name-suo,
    .item-price-QdV {
        text-align: center;
    }

    .item-price-QdV {
        padding-top: 4px;
        color: #696969;
    }

    .item-price1-88j {
        text-decoration: line-through;
        padding-right: 3px;
    }

    .item-imageLoaded-jug {
        margin-top: -5px;
    }
}

/* 新增了pro_label */
.item-pro_label-qws {
    background-color: #fff;
    color: #000;
    border-radius: 10px;
    position: absolute;
    left: 20px;
    top: 24px;
    z-index: 20;
    padding: 0 10px;
    font-size: 16px;
    line-height: 25px;
}
.item-pro_label-qws:hover{
    background-color: #000;
    color: #fff;
}

@media (max-width: 640px) {
    .item-pro_label-qws {
        left: 4px;
        top: 3px;
        font-size: 8px;padding: 0 5px;
        line-height: 14px;
        z-index: 0;
    }
}
.addToCartButton-root-Ahc {

    /* composes: min-w-[6.125rem] from global; */
    /* composes: -ml-2xs from global;
    composes: px-2xs from global;
    composes: py-0 from global;
    composes: self-center from global;
    min-height: 2rem;

    composes: sm_min-w-[8rem] from global; */
    /* composes: md_min-w-0 from global; */
    background: #fff;
    color: #000;
    font-size: 11px;
    min-width: 90px;
    width: 80px;
    height: 25px;
    padding: 0;
    border: none;
    margin-right: 10px;
}

.addToCartButton-icon-7J7 {
}

.addToCartButton-text-I30 {
}

.addToCartButton-btnBuy-Eb1 {
    width: 100px;
    height: 2.2em;
    line-height: 1em;
    text-align: center;
    font-size: 11px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
     /* margin-right: 10px;  */
    cursor: pointer;
    border: none;
}
.addToCartButton-btnBuy-Eb1:hover {
    background-color: #000;
    color: #fff;
}
.addToCartButton-btnBuy-Eb1:active {
    background-color: #ccc;
    color: #000; 
}
.addToCartButton-btnBuyOut-Tre{   
    width: auto; padding: 0 10px;
    background: #ccc; color: #fff; cursor: auto;
}
.addToCartButton-btnBuyOut-Tre:hover{
    background: #ccc; color: #fff;
}
.button-root-3iv {
    /* composes: min-w-[10rem] from global; */
    min-height: 2.5rem;
    transition-duration: 256ms;
    transition-property: background-color, border-color, color;
    transition-timing-function: var(--venia-global-anim-standard);
    min-width:200px;

    /* composes: focus_shadow-inputFocus from global; */
}

.button-root-3iv:active {
    transition-duration: 128ms;
}

/**
 * Some browsers retain the :hover state after a click, this ensures if a button becomes disabled after
 * being clicked it will be visually disabled.
 */
.button-root-3iv:hover:disabled {
    /* TODO @TW: cannot compose. This may not be possible with two variants. */
    pointer-events: none;
}

.button-root_lowPriority-xHk {
}

.button-root_normalPriority-Z4b {
}

.button-root_highPriority-sM1 {
    background: #000;color: #fff;
}
.button-root_highPriority-sM1:hover{
    background: #000;color: #fff; opacity: 0.7;
}

.button-root_lowPriorityNegative-KqK,
.button-root_normalPriorityNegative-DHO {
}

.button-root_highPriorityNegative-inZ {
   
}

.button-content-ouv {
}

/* 新样式 */
.button-root-new-0dl {
    /* composes: min-w-[10rem] from global; */
    min-height: 2.5rem;
    transition-duration: 256ms;
    transition-property: background-color, border-color, color;
    transition-timing-function: var(--venia-global-anim-standard);
    width: 100%;
    background: #000;
    height: 2.5rem;
    border-radius: 20px;
    color: #fff;
    min-width:200px;
}
.button-root-black--4a{
    /* composes: min-w-[10rem] from global; */
    /* TODO @TW: review */
    line-height: 2.5rem;
    transition-duration: 256ms;
    transition-property: background-color, border-color, color;
    transition-timing-function: var(--venia-global-anim-standard);
    width: 100%;
    background: #000;
    height: 2.5rem;
    border-radius: 9999px;
    color: #fff;
    min-width:200px;
}
.button-root-white-toR{
    /* composes: min-w-[10rem] from global; */
    min-height: 2.5rem;
    transition-duration: 256ms;
    transition-property: background-color, border-color, color;
    transition-timing-function: var(--venia-global-anim-standard);
    width: 100%;
    border:1px solid #000;
    height: 2.5rem;
    border-radius: 9999px;
    color: #000;
    min-width:200px;
}
.button-root-new-0dl:active,.button-root-black--4a:active {
    transition-duration: 128ms;
}

.button-root-new-0dl:hover:disabled,.button-root-black--4a:hover:disabled{
    /* TODO @TW: cannot compose. This may not be possible with two variants. */
    pointer-events: none;
}
/* autoBlack */
.button-root-autoBlack-ex0{
    background: #000;
    color: #fff;
    height: 40px;
    line-height: 40px;
    padding: 0 12px;
    border-radius: 4px; font-size: 16px;
    width: 100%;
}
.button-root-autoBlack-ex0:disabled{
    pointer-events: none;
    opacity: 0.3;
}
@media (max-width: 960px) {
    .button-root-3iv,.button-root-white-toR,.button-root-black--4a,.button-root-new-0dl{
        min-width:100px;
    }
}

.room-banner-lFd{
    position: relative;z-index: 0;
    width: 100%;
    height: 800px;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("https://www.polette.com/media/wysiwyg/homepage/showrooms_banner.webp"); 
}
.room-banner-lFd:before{
    position: absolute;z-index: 0;left: 0;top: 0;right: 0;bottom: 0;
    content: ''; display: block;height: 800px; background-color: rgba(0,0,0,0.2);
}
.room-secHead-0m-{
    position: relative;z-index: 2;height: 800px;
    display: flex; align-items: center; justify-content: center; flex-direction: column;
}
.room-secHead-0m- .room-title-3oc{
    font-size: 130px;font-weight: 600;width: 100%;
    line-height: 90%;letter-spacing: -2.6px;  color: #fff; text-align: center; padding: 0 10px;
    min-height: 90px;
}
.room-secHead-0m- .room-desc-maK{
    width: 560px; box-sizing: border-box;
    min-height: 100px;
    font-size: 20px; padding-top: 40px; line-height: 120%; color: #fff; text-align: center;
}
.room-secHead-0m- .room-search-yGr{
    margin-top: 40px; border-radius: 30px;
    width: 558px;height: 55px;  background-color: #fff;
    display: flex; align-items: center; justify-content: space-between;
}
.room-secHead-0m- .room-search-yGr .room-input-4g-{
    border: none; flex: 1; font-size: 14px; overflow: hidden; padding: 0 0 0 10px;
}
.room-secHead-0m- .room-search-yGr .room-btn-USG{
    width: 50px; height: 100%; display: flex; align-items: center; text-align: center;font-size: 14px; cursor: pointer;
}
.room-secConst--nt{
    height: 0;position: relative;width: 560px;margin: 0 auto;z-index: 2;
}
.room-secConst--nt ul{
    position: absolute; top: -50px; left: 0;right: 0; 
    border-radius: 70px; background-color: #fff;
    height: 100px;box-sizing: border-box;
    display: flex; align-items: center; justify-content: space-around; 
    border: 1px solid rgba(0,0,0,0.05); 
    padding: 10px 0;
}
.room-secConst--nt ul li{
   text-align: center; padding:5px 10px;font-size: 11px;
}
.room-secConst--nt ul li:before{
    display: block; content: ""; width: 14px;height: 14px; margin: 0 auto 10px auto;
    background: url(/eu/store_1.svg) no-repeat 50% 50% /  contain;
}
.room-secConst--nt ul li.room-li1-09u:before{
    background-image: url(/eu/store_1.svg);
}
.room-secConst--nt ul li.room-li2--Wb:before{
    background-image: url(/eu/note1.svg);
}
.room-secConst--nt ul li.room-li3-fFK:before{
    background-image: url(/eu/store_3.svg);
}
/* main */
.room-secMain-IkM{
    background-color: #fff;position: relative;z-index: 0; box-sizing: border-box;
    padding:40px; overflow: hidden; 
}
/************ 详情 ***************/
.room-storeWrap-RYn{
    position: relative;
}
.room-secHead2-N8V{
    height: 465px;display: flex; align-items: center; justify-content: center; flex-direction: column;
}
.room-secHead2-N8V .room-title-3oc{
    font-size: 130px;font-weight: 600; line-height: 90%;  
}
.room-secHead2-N8V .room-desc-maK{
    font-size: 16px;font-weight: 400;padding-top: 40px;line-height: 140%;
}
.room-storeWrap-RYn .room-secMain-IkM{padding: 0 40px ;}
.room-rateBox-x9r{
    display: flex; align-items: center; justify-content: flex-start; border: 1px solid rgba(0,0,0,0.05); border-radius: 20px;
    padding:0 10px 0 20px;
    width: 250px;height: 40px;
}
.room-rateBox-x9r ul{
    margin:0; padding: 0 10px 0 0;display: flex; align-items: center; 
}
/* block的样式纠正 */



















@media (max-width: 960px) {
    .room-banner-lFd,.room-banner-lFd:before,.room-secHead-0m-{
        height: 580px;
    }
    .room-secHead-0m- .room-title-3oc{
        font-size: 50px;
    }
    .room-secHead-0m- .room-desc-maK{
        font-size: 16px; padding: 40px 22px 0 22px; width: 333px;
    }
    .room-secHead-0m- .room-search-yGr{
        width: 256px;height: 40px;
    }
    .room-secHead-0m- .room-search-yGr .room-input-4g-{
        font-size: 11px;
    }
    .room-secHead-0m- .room-search-yGr .room-btn-USG{
        font-size: 11px; height: 40px;width: 40px;
    }
    .room-secConst--nt{
        width: 340px;
    }
    .room-secConst--nt ul li{
        font-size: 9px;
    }
    .room-secHead2-N8V{
        height: 264px;
    }
    .room-secHead2-N8V .room-title-3oc{
        font-size: 50px;
    }
    .room-secHead2-N8V .room-desc-maK{
        font-size: 14px;padding: 15px 0; 
    }
    .room-secMain-IkM{padding:20px 0 0 0;}
    .room-storeWrap-RYn .room-secMain-IkM{padding: 0;}
    .room-rateBox-x9r{
        width: 192px;
        padding:0 10px 0 10px;
    }
}
.showroom1108_item {
    padding-top: 40px;
}
.showroom1108_item>div{
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}
.showroom1108_item h2 {
    font-size: 195px;
    line-height: 80%;
    padding: 60px 0;
    word-break: break-word; /* 允许单词整体换行 */
    white-space: normal; /* 允许文本换行 */
    overflow-wrap: break-word; /* 避免单词被强制拆开 */
}

.showroom1108_item_h5 {
    font-size: 35px;
}

.showroom1108_item .pagebuilder-column {
    padding-right: 24px;
}
.showroom1108_item .pagebuilder-column p{
    margin: 0;
}

.showroom1108_history_tr {
    font-size: 16px;
}

.showroom1108_history_tr .historyTr {
    /* padding: 50px 0; 无效 */
}

.showroom1108_history_tr .tdText {
    flex: 1;
    padding: 0 20px;
    display: flex;
    text-align: left;
}

.showroom1108_history_tr .tdImage {
    width: auto !important;
}

.showroom1108_history_tr .tdImage .historyPic {
    width: 680px;
    padding: 50px 0;
}

.showroom1108_history_tr .tdImage .historyPic img {
    max-height: 100%;
    width: 680px;
    margin: 0;
}

.showroom1108_history_h3{
}
.showroom1108_history_h3 p{
    font-size: 130px;
    line-height: 90%;
    letter-spacing: -2.6px;
    padding: 100px 0;margin: 0;
}

.showroom1108_history_tr h5 {
    font-size: 50px;
}

.showroom1108_downApp {
    padding: 50px 0; margin-top: 50px; border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.showroom1108_downApp img{width: 100%;margin: 0;}

/* showroom1108_searchList 隐藏掉，转化为搜索的列表 */
.showroom1108_keywords {
    display: none;
}

/* 详情页面 */
.roomdetail1108_banner {
    height: 465px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.roomdetail1108_title {
    font-size: 130px !important;
    font-weight: 600 !important;
    line-height: 90% !important;
    margin: 0 !important;
    padding: 0;
    text-align: center;
}

.roomdetail1108_desc {
    font-size: 16px;
    font-weight: 400;
    padding-top: 40px;
    line-height: 140%;
}

.roomdetail1108_const {
    height: 0;
    position: absolute;
    width: 560px;
    top: 465px;
    left: 50%;
    margin-left: -280px;
    z-index: 2;
}

.roomdetail1108_pic1 {
    position: relative;
    padding:0 0 62.5% 0;
}

.roomdetail1108_pic1 img {
    position: absolute;
    width: 100%; height: 100%;left: 0;top: 0;
    max-width: 100%;
    margin: 0;
}

.roomdetail1108_text1 {
    padding: 100px 0 0 0;
    font-size: 30px;
    max-width: 640px;
    margin: 0 auto;
}

.roomdetail1108_link1 {
    margin: 20px auto 100px auto;
    padding: 8px 36px 8px 60px;
    font-size: 14px;
    line-height: 24px;
    border: 1px solid rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    background: url(/eu/eye1.svg) no-repeat 30px 50% / auto 12px;
}

.roomdetail1108_link1 a {
    text-decoration: none;
}

.roomdetail1108_swiper .slick-dots {
    margin-top: -50px;
}

.roomdetail1108_swiper .slick-dots li {
    width: 5px;
}

.roomdetail1108_swiper .slick-dots li button {
    width: 5px;
    height: 5px;
}

.roomdetail1108_text2 {
    padding: 100px 0 28px 0;
    font-size: 30px;
    max-width: 640px;
    margin: 0 auto;
}

.roomdetail1108_link2 {
    text-align: center;
    padding-bottom: 50px;
}

.roomdetail1108_link2 a {
    padding: 8px 36px 8px 60px;
    font-size: 14px;
    line-height: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    background: url(/eu/gps1.svg) no-repeat 30px 50% / auto 12px;
    display: inline-block;
    text-decoration: none;
}
.roomdetail1108_pic3{
    padding: 0 20px;
}
.roomdetail1108_pic3 img {
    margin: 0;width: 100%;
}

.roomdetail1108_text3 {
    padding: 100px 0;
    font-size: 30px;
    line-height: 120%;
    letter-spacing: -0.6px;
    margin: 0 auto;
    max-width: 640px;
    text-align: center;
}

.roomdetail1108_opendate {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 32px 0;
    width: 960px; margin: 0 auto; box-sizing: border-box;
}
.roomdetail1108_opendate_title {
    font-size: 75px;
    font-weight: 600;
    letter-spacing: -1.5px;
    line-height: 100%;
}

.roomdetail1108_opendate_title p {
    margin: 0;
    line-height: 1;
}

.roomdetail1108_opendate_star {
    margin-top: 40px;
}

.roomdetail1108_opendate_table {
    margin: 20px 0;height: 410px;  overflow: hidden; transition: all 0.5s;
}
.roomdetail1108_opendate_table.flodup{
    height: 190px;
}

.roomdetail1108_opendate_table tr {
    background: url(/eu/point1.svg) no-repeat 10px 50% / auto 20px;
    padding-left: 40px;
}
.roomdetail1108_opendate_table tr.close {
    background: url(/eu/point2.svg) no-repeat 10px 50% / auto 20px;
}

.roomdetail1108_opendate_table td {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

.roomdetail1108_opendate_table tr td:nth-child(1) {
    padding-left: 40px;
}

.roomdetail1108_opendate_today {
    background: url(/eu/clock1.svg) no-repeat 10px 50% / auto 20px;
    padding-left: 40px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left; cursor: pointer;
}

.roomdetail1108_opendate_today:after {
    display: block;
    content: '';
    width: 10px;
    height: 10px;
    background: url(/eu/arrow_up.svg) no-repeat 100% 50% / auto 6px;
    transition: all 0.5s;
}
.roomdetail1108_opendate_today.flodup:after{
    transform: rotateZ(180deg);
}
.roomdetail1108_discover {
    position: relative; padding-bottom: 50px;
}

.roomdetail1108_discover_pic img{width: 100%; margin: 0;}
.roomdetail1108_discover_cnt1{
    position: absolute;
    z-index: 1;
    left: 0;right: 0;top: 0;bottom: 0;
    display: flex; align-items: center; justify-content: center;
}
.roomdetail1108_discover_text1 {
    color: #fff;
    font-size: 130px;
    font-style: normal;
    font-weight: 600;
    line-height: 90%;
    letter-spacing: -2.6px;
}
.roomdetail1108_discover_text1 p{
    line-height: 90%;
    margin: 0;
}
.roomdetail1108_discover_text2 {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.32px; padding: 30px 0;
}

.roomdetail1108_discover_link {
}
.roomdetail1108_discover_link a{
    background-color: #fff; display: inline-block; border-radius: 20px;
    text-decoration: none;
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.28px;
    padding: 8px 31px;
}

/* 新增/修改：移除 Ant Design AutoComplete/Select 无边框模式下的焦点和悬停外框 */
.showroom_search .ant-select-selector {
  box-shadow: none !important; 
  border-color: transparent !important; 
}

/* 确保输入框本身在聚焦或悬停时也没有轮廓线 */
.showroom_search .ant-select-borderless .ant-select-selection-search-input:focus,
.showroom_search .ant-select-borderless .ant-select-selection-search-input:hover { /* 新增 hover 状态 */
  outline: none !important;
  box-shadow: none !important; /* 以防万一，也移除输入框的阴影 */
}

@media (max-width: 960px) {
    .showroom1108_item{
        padding-top: 70px; padding-left: 20px; padding-right: 20px; border: none;
    }
    .showroom1108_item>div{
    }
    .showroom1108_item h2 {
        font-size: 50px;
        padding:0 0 10px 0;margin: 0;
    }
    .showroom1108_item_h5 {
        font-size: 30px; padding:20px 0 15px 0;
    }
    .showroom1108_item .pagebuilder-column{
        padding: 0 0 0 24px; font-size: 14px;
    }
    .showroom1108_history_tr{
    }
    .showroom1108_history_h3 p{
        font-size: 50px;
        line-height: 90%;
        letter-spacing: -2.6px;
        padding:50px 0 30px 0;margin: 0 20px;
    }
    .showroom1108_history_tr h5 {
        font-size: 20px;font-weight: 400;
    }
    .showroom1108_history_tr p{
        font-size: 16px; color: #696969;
    }
    .showroom1108_history_tr .tdImage{
        width: 100vw;
    }
    .showroom1108_history_tr .tdImage .historyPic{
        width: 100vw;
    }
    .showroom1108_history_tr .tdImage .historyPic img{
        width: 100vw;
    }
    .showroom1108_history_tr_byReverse>div>div>div{
        flex-wrap: wrap-reverse;
    }
    /* 详情 */
    .roomdetail1108_banner{
        height: 264px;
    }
    .roomdetail1108_title{
        font-size: 50px !important;
    }
    .roomdetail1108_desc{
        padding: 12px 0 40px 0;
    }
    .roomdetail1108_const{
        top: 264px;width: auto; margin: 0;left: 20px; right: 20px;
    }
    .roomdetail1108_text1{
        font-size: 25px; padding: 50px 20px 0 20px;font-weight: 600;
    }
    .roomdetail1108_text1 p{
        line-height: 120%; 
    }
    .roomdetail1108_link1{
        background-position: 20px 50%;
        padding-left: 50px;
        padding-right: 20px;
        margin-bottom: 58px;
    }
    .roomdetail1108_swiper{
        padding: 0 20px;
    }
    .roomdetail1108_text2{
        padding: 50px 20px 30px 20px;font-size: 25px;font-weight: 600;
    }
    .roomdetail1108_text2 p{
        line-height: 120%; 
    }
    .roomdetail1108_link2{
        padding-bottom: 50px;
    }
    .roomdetail1108_text3{
        padding: 50px 20px; font-size: 25px;font-weight: 600;
    }
    .roomdetail1108_opendate{
        padding: 50px 20px 50px 20px;
    }
    .roomdetail1108_opendate_title{
        font-size: 50px;
    }
    .roomdetail1108_opendate_star{
        margin-bottom: 40px;font-size: 11px;
    }
    .roomdetail1108_opendate_table{
        margin: 0;
    }
    .roomdetail1108_opendate_today{
        font-size: 16px;
    }
    .roomdetail1108_opendate_table td{
        font-size: 14px;
    }
    .roomdetail1108_opendate{
        width: 100%;
    }
    .roomdetail1108_discover{
        margin: 0 -20px;width: 100%;
    }
    .roomdetail1108_discover_text1{
        font-size: 50px;
    }
    .showroom1108_history_tr .tdText {
        padding: 0 24px;
    }

}

.breadcrumbs-root-UAJ {
    display: flex; align-items: center; line-height: 1;
}

.breadcrumbs-text-lAa {
}

.breadcrumbs-divider-pqT {
    font-size:30px;
}
html.jyLang_ae_ar .breadcrumbs-divider-pqT{
    transform: rotateZ(-180deg);
}
.breadcrumbs-link-mHX {
    font-size:30px;
    color:#696969;
}

.breadcrumbs-currentCategory-isJ {
    font-size:30px;
    min-height: 40px; 
    color:#000;
    display: inline-block;
}

@media (max-width: 960px) {
    .breadcrumbs-root-UAJ {
        text-align: center;
    }
}
.filterSidebar-root-7mG {
    /* composes: max-w-modal from global; */
    /* grid-template-rows: 1fr 7rem; */
    /* composes: lg_grid from global; */
    /* display: grid;    */

    /* composes: bg-white from global;
    composes: bottom-0 from global;
    composes: hidden from global;
    composes: w-full from global;
    composes: z-foreground from global; */
}

.filterSidebar-body-dMq {
}

.filterSidebar-header-L8D {
}

.filterSidebar-headerTitle-dti {
}

.filterSidebar-action-9SY {
    position: relative;z-index: 2;
    height: 0; display:flex; justify-content: flex-end; overflow: visible;
}

/* TODO @TW: cannot compose */
.filterSidebar-action-9SY button {
    /* composes: text-sm from global; */
    font-size: 0.875rem;
    /* composes: no-underline from global; */
    text-decoration: none;
}

.filterSidebar-blocks-UkA {
    /* composes: pt-xs from global; */
    /* composes: px-xs from global; */
}

/* TODO @TW: cannot compose */
.filterSidebar-blocks-UkA>li:last-child {
    /* composes: border-b-2 from global; */
    /* composes: border-solid from global; */
    /* composes: border-subtle from global; */
    /* border-bottom: 2px solid rgb(var(--venia-global-color-border)); */
}

.filterSidebar-sortBox-2AI {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 20px;
}

.filterSidebar-sortBox-2AI .filterSidebar-title-WGx {
    font-size: 20px;
    font-weight: 600;
    padding: 0 0 10px 0;
}

.filterSidebar-btnClear-VEx {
    /* position: absolute; */
    /* right: 0; */
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    display: inline-block;
    line-height: 30px;height: 30px; padding: 0 12px;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
}

.filterSidebar-btnClear-VEx:hover {
    background-color: #000;
    color: #fff;
}
