﻿
@media (max-width: 768px) {
    .container {
        padding: 0 0.4rem;
    }

    section {
        padding: 0.5rem 0;
    }
    .sub-menu-list {
        display: none;
    }
}



/* 详情 */
.slt .page-container {
    max-width: 84.35%;
    width: 84.35%;
    margin: 0 auto 1rem;
    background: #ffffff;
    border-radius: 28px;
    /* box-shadow: 9px 16px 6px -9px rgba(0, 0, 0, 0.1); */
    overflow: hidden;
    transition: all 0.2s ease;
}

.slt .split-layout {
    display: flex;
    flex-wrap: wrap;
}

.slt .image-area {
    flex: 2;  
    min-width: 200px; 
    background: #eef2f6;
    position: relative;
}

.slt .image-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.slt .image-area:hover img {
    transform: scale(1.02);
}

.slt .text-area {
    flex: 1;            
    padding: 0.5rem;
    background: #f8f8f8;
    display: flex;
    flex-direction: column;
    justify-content: center;   
}

.slt .main-title {
    font-size: 26px;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.slt .sub-title {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
    border-left: 3px solid #6b4c3b;
    padding-left: 12px;
    line-height: 1.4;
}

.slt .description {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.slt .extra-meta {
    margin-top: 1.5rem;
    font-size: 14px;
    color: #6c86a3;
    border-top: 1px solid #e9edf2;
    padding-top: 1.2rem;
    display: inline-block;
    width: 100%;
}

@media (max-width: 768px) {
    .slt .split-layout {
        flex-direction: column;  
    }
    .slt .image-area, 
    .slt .text-area {
        flex: auto;  
        width: 100%;
    }
    .slt .image-area {
        min-height: 260px; 
    }
    .slt .text-area {
        padding: 1.8rem 1.5rem;
    }
    .slt .main-title {
        font-size: 20px;
    }
    .slt .sub-title {
        font-size: 18px;
    }
    .slt .description {
        font-size: 16px;
    }
}

/* 对于极小设备 <= 480px，微调内边距和字体 */
@media (max-width: 480px) {
    .slt .page-container {
        width: 92%;       
    }
    .slt .text-area {
        padding: 1.5rem 1.2rem;
    }
    .slt .main-title {
        font-size: 19px;
    }
    .slt .sub-title {
        font-size: 17px;
    }
    .slt .description {
        font-size: 15px;
    }
}

@media (min-width: 1920px) {
    .slt .page-container {
        margin-bottom: 1rem;
    }
}

.slt .text-area *:last-child {
    margin-bottom: 0;
}



/* 收纳 */
.shouna {
    padding-top: 80px;
    border-top: solid 1px #eaeaea;
    width: 84.35%;
    margin: 0 auto;
    background-color: transparent;
}

.shouna .span {
    text-align: center;
    /* margin-bottom: 2.5rem; */
}

.shouna .main-title {
    font-size: clamp(0.5rem, 6vw, 0.5rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #3b2a1f;
    margin-bottom: 0.2rem;
    display: block;
    line-height: 1.2;
}

.shouna .main-title:after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: #d4af7a;
    margin: 0.2rem auto 0;
    border-radius: 2px;
}

.shouna .sub-title {
    font-size: clamp(0.16rem, 4vw, 0.16rem);
    font-weight: 500;
    color: #6b4e2e;
    /* margin-top: 1rem;
    margin-bottom: 1.2rem; */
    background: rgba(255, 248, 235, 0.5);
    padding: 0.2rem 0.2rem;
    border-radius: 40px;
    backdrop-filter: blur(2px);
    display: inline-block;
}

.shouna .desc-text {
    
    margin: 0.2rem auto 0;
    font-size: 0.16rem;
    color: #4a3b2c;
    font-weight: 450;
    line-height: 1.5;
}

.shouna .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 0.2rem;
    margin: 0.6rem 0 1rem;
}

.shouna .card {
    background: #ffffff;
    border-radius: 0.12rem;
    overflow: hidden;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: transform 0.25s ease, box-shadow 0.3s ease;
    cursor: default;
    border: 1px solid #efe3d2;
}

.shouna .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 36px -14px rgba(0, 0, 0, 0.12);
    border-color: #d9c2a6;
}

.shouna .img-wrapper {
    width: 100%;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background-color: #e7ddd0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.shouna .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.shouna .card:hover .img-wrapper img {
    transform: scale(1.03);
}

.shouna .card-title {
    text-align: center;
    padding: 0.2rem;
    font-size: 0.16rem;
    color: #3e2a22;
    background: #ffffff;
    border-top: 1px solid #f7ede2;
}
.shouna .card-desc {
    text-align: left;
    padding: 0.2rem;
    font-size: 0.14rem;
    color: #666;
    background: #ffffff;
    border-top: 1px solid #f7ede2;
}
@media (max-width: 1300px) {
    .shouna .gallery {
        grid-template-columns: repeat(auto-fill, minmax(205px, 1fr));
    }
    .product1-tab-box .item{font-size: 14px;}
}
@media (max-width: 820px) {
    .product1-tab-box .item{font-size: 14px;}
    .shouna {
        width: 84.35%;
    }
    .shouna .gallery {
        gap: 0.2rem;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    .shouna .card-title {
        font-size: 0.16rem;
        padding: 0.2rem 0.2rem;
    }
    .shouna .card-desc {
        padding: 0.1rem 0.2rem;
        font-size: 0.12rem;

    }
}

@media (max-width: 580px) {
    .shouna .gallery {
        gap: 1rem;
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
    .shouna .card-title {
        font-size: 0.85rem;
        padding: 0.2rem 0.4rem;
    }
    .shouna .sub-title {
        font-size: 0.20rem;
        margin-top: 0.2rem;
    }
}

@media (max-width: 450px) {
    .shouna .gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.2rem;
    }
    .shouna .card-title {
        font-size: 0.25rem;
    }
}

.shouna .desc-text i {
    font-style: normal;
    background: #e9dbc9;
    padding: 0.1rem 0.3rem;
    border-radius: 12px;
    font-size: 0.2em;
}





/* 门板造型 */
.mbzx {
    max-width: 84.35%;
    width: 84.35%;
    margin: 0 auto;
    /* padding: 1rem 0 1rem; */
}

/* 头部 */
.mbzx .page-header {
    text-align: center;
    margin-bottom: 0.2rem;
}

.mbzx .page-header h1 {
    font-size: clamp(0.5rem, 6vw, 0.5rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #3b2a1f;
    margin-bottom: 0.2rem;
    display: block;
    line-height: 1.2;
}

.mbzx .page-header p {
    font-size: clamp(0.16rem, 4vw, 0.16rem);
    font-weight: 500;
    color: #6b4e2e;
    background: rgba(255, 248, 235, 0.5);
    padding: 0.2rem 0.2rem;
    border-radius: 40px;
    backdrop-filter: blur(2px);
    display: inline-block;
}

/* 卡片网格 */
.mbzx .style-grid {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

/* 风格卡片 */
.mbzx .style-card {
    background: #f8f8f8;
    border-radius: 0.12rem;
    overflow: hidden;
}

.mbzx .card-inner {
    padding: 0.5rem;
}

/* 标题 */
.mbzx .style-title {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.25rem;
    border-left: 4px solid;
    padding-left: 0.2rem;
}

.mbzx .style-title span {
    font-size: 0.26rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #333;
}

.mbzx .style-desc p {
    margin: 0;
    font-size: 0.16rem;
}

/* 三图区域 - 使用 img 标签 */
.mbzx .image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.3rem;
    margin: 0.3rem 0 0.8rem;
    justify-content: center;
}

.mbzx .gallery-item {
    position: relative;
    border-radius: 0.12rem;
    background-color: #f1f5f9;
    box-shadow: 0 6px 12px -6px rgba(0, 0, 0, 0.08);
}

.mbzx .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.mbzx .img-caption {
    padding: 0.2rem;
    font-size: 0.16rem;
    color: #5e5e5e;
    background: #ffffff;
    text-align: center;
    transition: background 0.2s;
}



/* 卡片左侧边线颜色 */
.mbzx .card-melamine .style-title { border-left-color: #6b4c3b; }
.mbzx .card-paint .style-title { border-left-color: #6b4c3b; }
.mbzx .card-glass .style-title { border-left-color: #6b4c3b; }
.mbzx .card-wood .style-title { border-left-color: #6b4c3b; }


@media (max-width: 820px) {
    .mbzx .image-gallery {
        gap: 0.2rem;
    }
    .mbzx .card-inner {
        padding: 0.2rem;
    }
    .shouna .gallery {
        display: grid;
        margin: 0.3rem 0 0.5rem;
    }
}


/* 响应式 */
@media (max-width: 680px) {
    .mbzx .image-gallery {
        grid-template-columns: 1fr;
        gap: 0.2rem;
    }
    .mbzx .style-desc {
        max-width: 100%;
    }
}

/* 脚标 */
.mbzx footer {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
    font-size: 0.35rem;
    color: #5f6c7a;
}

/* 保证文字严格缩放 */
.mbzx .style-desc,
.mbzx .style-desc p {
    font-size: 0.16rem !important;
}





/* 花色 */

.huase {
    max-width: 84.35%;
    width: 100%;
    margin: 0 auto;
}

.huase .brand-section {
    /* margin-bottom: 0.5rem; */
}

.huase .brand-section:last-child {
    margin-bottom: 0;
}
.huase .main-title {
    text-align: left;
    font-size: clamp(0.5rem, 6vw, 0.5rem);
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(135deg, #2F2A24 0%, #A77B55 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 0.3rem;
    letter-spacing: 0.02em;
}

/* 小标题样式 */
.huase .sub-title {
    text-align: center;
    font-size: 0.16rem;
    color: #4a3b2c;
    font-weight: 450;
    line-height: 1.5;
    background-color: #f5f5f5;
    /* max-width: 85%;
    margin: 0 auto 0.2rem auto; */
}


.brand-section {

}

/* .huase .main-title {
    font-size: 2.2rem;
    font-weight: 600;
    text-align: center;
    color: #2c3e2f;
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
} */

.huase .sub-title {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 0.5rem 0;
    max-width: 100%;
    text-align: left;
    background: transparent;
    padding: 0;
}

.huase .sub-title .video-col {
    flex: 1.1;
    min-width: 260px;
    /* border-radius: 0.12rem; */
    overflow: hidden;
    background: #e7dfd1;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}
.huase .sub-title .video-col:hover {
    transform: translateY(-3px);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background-color: #2f2c28;
}
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: 0;
}

.huase .sub-title .desc-col {
    flex: 0.9;
    min-width: 220px;
    font-size: 0.16rem;
    color: #4a3b2c;
    font-weight: 450;
    line-height: 1.5;
    background: transparent;
}

.huase .sub-title .desc-col p {
    margin-bottom: 0.75rem;
    text-align: left;
}
.huase .brand-note {
    display: inline-block;
    margin-top: 0.6rem;
    font-size: 0.13rem;
    color: #8e7a5f;
    background: #f8f4ec;
    padding: 0.2rem 0.8rem;
    border-radius: 30px;
}

@media (max-width: 780px) {
    .main-title {
        font-size: 1.8rem;
    }
    .sub-title {
        flex-direction: column;
        gap: 0.5rem;
    }
    .sub-title .video-col,
    .sub-title .desc-col {
        flex: auto;
        width: 100%;
    }
    .huase .main-title{padding: 0 0.2rem;}
    .sub-title .desc-col p {
        padding: 0.3rem 0.2rem;
        font-size: 16px;
    }
    .sub-title .desc-col p {
        margin-bottom: 0.25rem;
    }
}



















/* 图片网格: 一行8个，共3行 使用grid */
.huase .grid-gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.2rem;
    margin-top: 0.3rem;
}

/* 卡片样式 */
.huase .card {
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s;
    cursor: pointer;  /* 表示可点击放大 */
}

.huase .card:hover {
    transform: translateY(-4px);
}

/* 图片容器 强制3:1比例 */
.huase .img-wrapper {
    width: 100%;
    aspect-ratio: 1.5 / 1;
    overflow: hidden;
    border-radius: 0.02rem;
    background: #e9e2d8;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.02), 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s;
}

.huase .card:hover .img-wrapper {
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.huase .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.huase .card:hover img {
    transform: scale(1.02);
}

/* 图下文字 */
.huase .img-caption {
    margin-top: 0.2rem;
    font-size: 0.12rem;
    color: #333;
    display: inline-block;
}

/* 自适应 */
@media (max-width: 860px) {
    .huase .img-caption {
        font-size: 0.1rem;
        margin-top: 0.1rem;
    }
    .huase .grid-gallery {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.2rem;
    }
}

@media (max-width: 640px) {
    .huase {
        max-width: 94%;
    }
    .huase .grid-gallery {
        gap: 0.3rem 0.2rem;
    }
    .huase .img-caption {
        font-size: 0.09rem;
        white-space: normal;
        word-break: keep-all;
    }
    .huase .sub-title {
        font-size: 0.14rem;
        max-width: 100%;
    }
}

@media (max-width: 540px) {
    .huase .grid-gallery {
        gap: 0.2rem;
    }
    .huase .img-caption {
        font-size: 0.08rem;
    }
}

/* 装饰分割线 */
.huase .divider-light {
    height: 1px;
    background: linear-gradient(90deg, transparent, #d9c7b0, #b59272, #d9c7b0, transparent);
    margin: 0.5rem 0;
    width: 100%;
}

/* ---------- 模态框 (图片放大 + 左右切换 + 关闭) ---------- */
.huase-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: opacity 0.3s ease;
}

.huase-modal.active {
    display: flex;
}

/* 模态框内部容器 */
.modal-content {
    position: relative;
    max-width: 85vw;
    max-height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 放大的图片本身 */
.modal-img {
    max-width: 85vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 245, 235, 0.3);
    transition: transform 0.2s;
}

/* 关闭按钮 (X) */
.modal-close {
    position: absolute;
    top: -50px;
    right: -20px;
    font-size: 0.26rem;
    color: #fff5ea;
    background: rgba(30, 20, 15, 0.6);
    backdrop-filter: blur(8px);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 300;
    line-height: 1;
    border: 1px solid rgba(255, 220, 190, 0.4);
}

.modal-close:hover {
    background: #aa7b55;
    transform: scale(1.05);
    color: white;
}

/* 左右导航按钮 */
.modal-prev, .modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(40, 30, 25, 0.65);
    backdrop-filter: blur(12px);
    color: #f0e2d4;
    border: none;
    font-size: 0.16rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 300;
    z-index: 1010;
}

.modal-prev {
    left: -70px;
}

.modal-next {
    right: -70px;
}

.modal-prev:hover, .modal-next:hover {
    background: #b4835a;
    color: white;
    transform: translateY(-50%) scale(1.05);
}

/* 图片下方可选显示花色名称/索引 */
.modal-info {
    margin-top: 20px;
    text-align: center;
    color: #f0e1cf;
    font-size: 0.2rem;
    font-weight: 500;
    background: rgba(0,0,0,0.5);
    padding: 8px 20px;
    border-radius: 60px;
    backdrop-filter: blur(5px);
    letter-spacing: 1px;
}

@media (max-width: 780px) {
    .modal-prev {
        left: -20px;
    }
    .modal-next {
        right: -20px;
    }
    .modal-prev, .modal-next {
        width: 44px;
        height: 44px;
        font-size: 0.3rem;
        font-weight: normal;
    }
    .modal-close {
        top: -35px;
        right: -10px;
        width: 42px;
        height: 42px;
        font-size: 0.5rem;

    }
    .modal-info {
        font-size: 0.26rem;
    }
}

@media (max-width: 520px) {
    .modal-prev {
        left: -10px;
    }
    .modal-next {
        right: -10px;
    }
}




/* 特殊工艺 */
.teshu {
    padding-top: .6rem;
}
.teshu .page-container {
    max-width: 84.35%;
    width: 100%;
    margin: 0 auto;
}
.teshu .main-title {
    text-align: center;
    margin-bottom: clamp(0.333rem, 1.667vw, 0.6rem);
}
.teshu .main-title{
    text-align: center;
    font-size: clamp(0.5rem, 6vw, 0.5rem);
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(135deg, #2F2A24 0%, #A77B55 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 0.3rem;
    letter-spacing: 0.02em;
}
.teshu .title-underline {
    width: clamp(10px, 2.667vw, 16.67px);
    height: 0.667px;
    background: #c6a27a;
    margin: 0.133rem auto 0;
    border-radius: 0.667px;
}
.teshu .grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(0.267rem, 1vw, 0.5rem);
}
.teshu .card-group {
    background: #ffffff;
    border-radius: clamp(0.12rem, 1vw, 0.1rem);
    overflow: hidden;
    box-shadow: 0 2.67px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-wrap: wrap;
    transition: transform 0.2s ease, box-shadow 0.2s;
}
.teshu .card-group:hover {
    transform: translateY(-0.667px);
    box-shadow: 0 4px 7.33px rgba(0, 0, 0, 0.08);
}
.teshu .image-area {
    flex: 0 0 40%;
    background: #f2ede6;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.267rem, 0.833vw, 0.4rem);
}
.teshu .diagram-figure {
    width: 100%;
    /* max-width: 180px; */
    margin: 0 auto;
}
.teshu .aba-big-illustration {
    width: 100%;
    aspect-ratio: 3 / 5;
    border-radius: clamp(0.12rem, 1vw, 0.1rem);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e2d5c6;
    box-shadow: 0 1.33px 3.33px rgba(0, 0, 0, 0.05);
}
.teshu .aba-big-illustration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.teshu .info-area {
    flex: 0 0 60%;
    background: #ffffff;
    padding: clamp(0.267rem, 0.833vw, 0.4rem) clamp(0.267rem, 0.833vw, 0.4rem) clamp(0.267rem, 0.833vw, 0.4rem) clamp(0.267rem, 0.667vw, 0.333rem);
    display: flex;
    flex-direction: column;
    gap: clamp(0.167rem, 0.667vw, 0.3rem);
}

.teshu .info-area .tt{
    font-size: 20px;
    font-weight: 800;
    color: #3c2e24;
}

.teshu .info-card {
    border-bottom: 1px solid #ece3da;
    padding-bottom: clamp(0.233rem, 0.5vw, 1.333rem);
}
.teshu .info-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.teshu .card-title {
    font-size: clamp(0.18rem, 0.233vw, 0.183rem);
    letter-spacing: -0.01em;
    margin-bottom: clamp(0.0667rem, 0.5vw, 0.133rem);
    color: #333;
    display: inline-block;
    position: relative;
}
.teshu .card-title:after {
    content: '';
    display: block;
    width: clamp(6px, 9.333vw, 41.33px);
    height: 3px;
    background: #c6a27a;
    margin-top: 6px;
    border-radius: 0.667px;
}
.teshu .desc-text {
    font-size: clamp(0.15rem, 0.067vw, 0.233rem);
    line-height: 1.4;
    color: #666;
}
.teshu .desc-text p {
    margin-bottom: 0.0333rem;
}
@media (max-width: 780px) {
    .teshu .grid-container {
        grid-template-columns: 1fr;
        gap: 0.333rem;
    }
    .teshu .card-group {
        flex-direction: column;
    }
    .teshu .image-area {
        flex: auto;
        width: 100%;
        padding: 0.333rem;
    }
    .teshu .info-area {
        flex: auto;
        width: 100%;
        padding: 0.333rem;
    }
    .teshu .diagram-figure {
        max-width: 150px;
    }
}
.teshu .aba-big-illustration span,
.teshu .aba-big-illustration div:not(.abstract-layers) {
    display: none;
}



/* 详情咨询 */
.luxury-banner {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
    background-image: url('../image/zixun-bg.jpg');
    background-size: cover;
    background-position: center 35%;
    background-repeat: no-repeat;
    margin: 0.5rem 0 0 0;
}

@media (max-width: 768px) {
    .luxury-banner {
        background-image: url('../image/zixun-bg.jpg');
        background-size: cover;
        background-position: center 35%;
        background-repeat: no-repeat;
    }
}

.banner-overlay {
    position: relative;
  
    backdrop-filter: brightness(0.94) saturate(1.05);
    z-index: 1;
}

.luxury-banner .content-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.luxury-banner .two-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
    align-items: center;
}

.luxury-banner .left-col {
    flex: 1.2;
    min-width: 280px;
}

.luxury-banner .headline {
    font-size: 0.26rem;
    font-weight: 700;
    line-height: 1.25;
    color: #FFFFFF;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    margin: 0.4rem 0 0.2rem 0;
}

.luxury-banner .gold-text {
    background: linear-gradient(135deg, #F5DEB3, #E8C48A, #D4AF6A);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 800;
}

.luxury-banner .subhead {
    font-size: 0.26rem;
    font-weight: 500;
    color: rgba(255, 250, 240, 0.95);
    line-height: 1.4;
    margin-bottom: 0.5rem;
}


.luxury-banner .camera-symbol {
    font-size: 0.2rem;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

.luxury-banner .badge-caption {
    font-size: 0.2rem;
    font-weight: 500;
    color: #F7EDDA;
    letter-spacing: 0.2px;
}

.luxury-banner .badge-caption strong {
    font-weight: 700;
    color: #E8C48A;
}

.luxury-banner .right-col {
    flex: 0.9;
    transition: all 0.35s ease;
}

.luxury-banner .right-title {
    font-size: 0.2rem;
    font-weight: 700;
    color: #FFF7E8;
    margin-bottom: 0.375rem;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.luxury-banner .right-desc {
    font-size: 0.2rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.3rem;
    border-left: 2px solid #f1dfc2;
    padding-left: 0.1rem;
}

.luxury-banner .wa-button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #ffffffa8;
    padding: 7px 17px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.2rem;
    color: #6b4c3b;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid rgba(255, 245, 200, 0.6);
    backdrop-filter: blur(2px);
}
.luxury-banner .wa-button:hover {
    color: #fff;
    transform: scale(1.02);
    background: #6b4c3b8a;
    gap: 9px;
}
.luxury-banner .wa-icon {
    font-size: 0.2rem;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

.luxury-banner .wa-text {
    font-size: 0.16rem;
}

.luxury-banner .ornament {
    margin-top: 0.1rem;
    display: flex;
    gap: 4px;
}
@media (max-width: 1300px) {
    .luxury-banner .content-container {
        max-width: 1400px;
        margin: 0 2rem;
        position: relative;
        z-index: 2;
    }
}

@media (max-width: 1100px) {
    .luxury-banner .content-container {
        max-width: 1400px;
        margin: 0 2rem;
        position: relative;
        z-index: 2;
    }
    .content-container {
        padding: 1.75rem 1rem;
    }
    .headline {
        font-size: 0.2rem;
    }
    .subhead {
        font-size: 0.2rem;
    }
    .right-title {
        font-size: 0.2rem;
    }
    .right-desc {
        font-size: 0.2rem;
    }
}

@media (max-width: 860px) {
    .two-columns {
        flex-direction: column;
        gap: 0.5rem;
    }
    .right-col {
        width: 100%;
        text-align: left;
    }
    .headline {
        font-size: 0.2rem;
    }
    .luxury-banner .content-container {
        margin: 0;
    }
    .luxury-banner .two-columns{ gap: 0.5rem;    align-items: flex-start;}
}

@media (max-width: 560px) {
    .content-container {
        padding: 1.25rem 0.75rem;
    }
    .headline {
        font-size: 0.2rem;
    }
    .subhead {
        font-size: 0.2rem;
    }
    .right-title {
        font-size: 0.2rem;
    }
    .right-desc {
        font-size: 0.2rem;
    }
    .badge-caption {
        font-size: 0.2rem;
    }
    .wa-button {
        padding: 5px 12px;
    }
    .wa-icon {
        font-size: 0.2rem;
    }
    .wa-text {
        font-size: 0.2rem;
    }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.left-col, .right-col {
    animation: fadeSlideUp 0.6s ease forwards;
}


/* 产品列表下方 */

.lastshow {
    width: 84.35%;
    margin: 0 auto;
    background-color: #ffffff;
    overflow: hidden;
    transition: all 0.2s ease;
}

.lastshow .flex-container {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.lastshow .image-col {
    flex: 1.1;
    min-width: 280px;
    background-color: #e9e2d8;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.lastshow .kitchen-scene {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.lastshow .image-col svg {
    width: 100%;
    height: 100%;
    display: block;
}

.lastshow .text-col {
    flex: 1;
    min-width: 500px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
}

.lastshow .main-title {
    font-size: clamp(0.2rem, 5vw, 0.2rem);
    font-weight: 700;
    line-height: 1.25;
    /* letter-spacing: -0.01em; */
    background: linear-gradient(135deg, #2c5e2a 0%, #3f7e3a 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 0.35rem;
}

.lastshow .eco-badge {
    display: flex;
    flex-wrap: wrap;
    gap: 0.15rem;
    margin-bottom: 0.5rem;
}

.lastshow .badge {
    background: #f8f7f6;
    padding: 0.1rem 0.3rem;
    border-radius: 40px;
    font-size: 0.16rem;
    font-weight: 500;
    color: #333;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.lastshow .badge::before {
    content: "✓";
    font-weight: bold;
    font-size: 0.2rem;
}

.lastshow .desc-text {
    font-size: 0.16rem;
    line-height: 1.55;
    color: #3c3b38;
    margin-bottom: 0.25rem;
}


@media (max-width: 780px) {
    .lastshow .flex-container {
        flex-direction: column;
    }
    .lastshow .image-col {
        min-height: 260px;
    }
    .lastshow .text-col {
        padding: 1.8rem 1.5rem;
    }
    .lastshow .main-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
}

.lastshow .image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (min-width: 1024px) {
    .lastshow .text-col {
        padding: 0.5rem 0.1rem 0.2rem 0.5rem;
    }
}