:root{
    --page-title-size:54px;
}
body{
    width: 100%;
    overflow-x: hidden;
}
.detalis-crumbs{
    max-width: 1430px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 15px;
}
.detalis-crumbs .crumbs ul li a{
    color: #111;
    font-size: 14px;
}
.detalis-crumbs .crumbs ul li span{
    color: #111;
    font-size: 14px;
}

.product-info{
    max-width: 1430px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    margin-bottom: var(--section-top);
}
.product-info .inner{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 80px;
}
.product-info .inner .info-left{
    flex: 1;
    position: sticky;
    top: calc(10px + var(--nav-height));
    overflow: hidden;
}
.mySwiper2 .swiper-slide {
    border-radius: var(--default-border-radius);
    overflow: hidden;
}
.mySwiper2 .swiper-slide img{
    aspect-ratio: 66/60;
    object-fit: cover;
    display: block;
}
.mySwiper-outer{
    position: relative;
    overflow: hidden;
    margin-top: 16px;
    padding: 2px 0;
}
.mySwiper-outer .mySwiper{
    display: flex;
	flex-direction: row;
	justify-content: flex-end;
    width: 100%;
    overflow: hidden;
}
.mySwiper-outer .mySwiper .swiper-wrapper{
    width: auto;
	max-width: 100%;
}
.mySwiper-outer .mySwiper .swiper-slide{
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #fff;
}
.mySwiper-outer .mySwiper .swiper-slide-thumb-active{
    border: 2px solid #285bdb;
}
.mySwiper-outer .mySwiper .swiper-slide img{
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
}
.mySwiper-outer .swiper-btn{
    position: absolute;
    top: 50%;
    z-index: 2;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    box-shadow: 0 2px 3px rgba(0, 0, 0, .2);
    cursor: pointer;
    margin-top: -15px;
}
.mySwiper-outer .swiper-btn.swiper-prev{
    left: 3px;
}
.mySwiper-outer .swiper-btn.swiper-next{
    right: 3px;
}

.product-info .inner .info-right{
    flex: 1;
}
.info-right .labels{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 16px;
    gap: 10px;
}
.info-right .category{
    padding: 4px 12px;
    border-radius: calc(infinity * 1px);
    background-color: #285bdb;
    font-size: 12px;
    color: #fff;
    display: inline-block;
}
.info-right .model{
    font-size: 12px;
    height: 26px;
    border-radius: 13px;
    padding: 0 15px;
    border: 1px solid #26425F;
    color: #26425F;
    display: flex;
    align-items: center;
    justify-content: center;
}
.info-right h1{
    font-size: 40px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 16px;
}
.info-right .smt{
    font-size: 18px;
    color: #666666;
    margin-bottom: 24px;
}
.info-right .sku{
    padding: 24px;
    margin-bottom: 24px;
    background-color: #f5f6f8;
    border-radius: var(--default-border-radius);
}
.info-right .sku h3{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 16px;
}
.info-right .sku ul{
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.info-right .sku ul li span{
    color: #888;
    font-size: 12px;
    margin-bottom: 4px;
}
.info-right .sku ul li p{
    color: #111;
    font-size: 14px;
}
.info-right .btns{
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-bottom: 24px;
}
.info-right .btns .btn{
    height: 56px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    gap: 10px;
    flex: 1;
    border: 1px solid #285bdb;
    color: #285bdb;
    font-size: 16px;
    font-weight: bold;
    opacity: .8;
    transition: all .2s;
} 
.info-right .btns .btn:hover{
    opacity: 1;
    transform: scale(1.05);
}
.info-right .btns .btn .fa{
    font-size: 20px;
}
.info-right .btns .btn2{
    border: 1px solid #20BA5A;
    background-color: #20BA5A;
    color: #fff;
}
.product-detail-inquiry-wrap{
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    margin-bottom: var(--section-top);
}
.product-detail-inquiry{
    margin-top: 10px;
    padding: 24px;
    background-color: #f7f9fc;
    border: 1px solid #e4eaf1;
    border-radius: var(--default-border-radius);
}
.product-detail-inquiry-head{
    margin-bottom: 16px;
}
.product-detail-inquiry-head h3{
    font-size: 18px;
    font-weight: bold;
    color: #111;
}
.product-detail-inquiry-head p{
    margin-top: 8px;
    font-size: 13px;
    color: #6b7788;
}
.product-detail-inquiry-form{
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.product-detail-inquiry-form .row{
    display: flex;
    gap: 14px;
}
.product-detail-inquiry-form .ipt,
.product-detail-inquiry-form .txt{
    background-color: #fff;
    border: 1px solid #dde5ee;
    border-radius: 10px;
    padding: 0 12px;
}
.product-detail-inquiry-form .ipt{
    flex: 1;
    height: 44px;
    display: flex;
    align-items: center;
}
.product-detail-inquiry-form .ipt input,
.product-detail-inquiry-form .txt textarea{
    width: 100%;
    font-size: 14px;
    color: #111;
    background-color: transparent;
    outline: none;
}
.product-detail-inquiry-form .ipt input::placeholder,
.product-detail-inquiry-form .txt textarea::placeholder{
    color: #8a97a8;
}
.product-detail-inquiry-form .txt{
    padding-top: 12px;
    padding-bottom: 12px;
}
.product-detail-inquiry-form .txt textarea{
    min-height: 100px;
    resize: vertical;
}
.product-detail-inquiry-form .sub{
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.product-detail-inquiry-form .sub button{
    height: 44px;
    padding: 0 22px;
    border-radius: 999px;
    background-color: #EF8201;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(239, 130, 1, 0.18);
}
.product-detail-inquiry-form .sub button:hover{
    background-color: #d07301;
}
.info-right .features{
    padding-top: 24px;
    border-top: 1px solid #e0e0e0;
}
.info-right .features h3{
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: bold;
}
.info-right .features ul li{
    position: relative;
    padding-left: 30px;
}
.info-right .features ul li .icon{
    position: absolute;
    left: 0;
    top: 3px;
    width: 20px;
    height: 20px;
    background-color: #23BE48;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    color: #fff;
}
.info-right .features ul li{
    color: #666;
    font-size: 14px;
    margin-bottom: 16px;
}

/* 九宫格 */
.grid-outer .pg-upacer{
    max-width: 1430px;
    width: 100%;
    padding: 0 15px;
    padding-top: 20px;
    padding-bottom: 80px;
    margin: 0 auto;
    text-align: center;
}
.grid-outer .pg-upacer h2{
    font-size: var(--page-title-size);
    font-weight: bold;
    margin-bottom: 16px;
    line-height: 1.3;
    color: #111;
}
.grid-outer .pg-upacer .p1{
    font-size: 24px;
    color: #285bdb;
    font-weight: bold;
    margin-bottom: 16px;
}
.grid-outer .pg-upacer .p2{
    font-size: 18px;
    color: #888;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}
.pg-spacer {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #666;
    font-size: 24px;
}
.pg-sticky-wrapper {
    position: sticky;
    top: var(--nav-height);
    width: 100%;
    height: calc(100vh - var(--nav-height));
    display: flex;
    justify-content: center;
    align-items: center;
}
/* 通栏大图 - 核心修改部分 */
.pg-hero-image {
    position: absolute;
    /* 取消全屏强制尺寸，改为自适应容器 */
    width: 100%; 
    height: auto;
    /* 加上和九宫格一样的比例 */
    aspect-ratio: 45.6 / 22.2; 
    border-radius: var(--default-border-radius);
    overflow: hidden;
    
    z-index: 10;
    will-change: transform, opacity; 
    transform-origin: center center;
    visibility: hidden;
}
.pg-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* 九宫格容器 */
.pg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
    width: 1400px;
    max-width: 100%;
    padding: 15px;
    box-sizing: border-box;
    z-index: 1;
    height: auto; 
}
.pg-grid-item {
    background-color: #333;
    border-radius: 12px;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s ease-out;
    aspect-ratio: 45.6 / 22.2; 
    visibility: hidden;
}
.pg-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.pg-grid-item.is-visible {
    opacity: 1;
}

.power{
    margin-top: 20px;
}
.power h2{
    font-size: var(--page-title-size);
    font-weight: bold;
    line-height: 1.3;
    color: #111;
    text-align: center;
}
.power-banner{
    margin-top: var(--section-top);
    position: sticky;
    top: var(--nav-height);
    height: calc(100vh - var(--nav-height));
}
.power-banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.power-banner .info{
    position: absolute;
    left: 0;
    bottom: 100px;
    z-index: 3;
    color: #fff;
    width: 100%;
    text-align: center;
    transition: all ease-in-out .2s .5s;
}
.power-banner .info h3{
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 16px;
}
.power-banner .info p{
    font-size: 24px;
}

.details{
    max-width: 1430px;
    padding: 0 15px;
    margin: 0 auto;
    margin-top: var(--section-top);
    width: 100%;
}
.details .item{
    margin-bottom: var(--section-top);
}
.details .item:nth-child(2n-2) dl{
    flex-direction: row-reverse;
}
.details .item dl{
    display: flex;
    flex-direction: row;
    gap: 80px;
}
.details .item dl dt{
    flex: 1;
}
.details .item dl dt .img-box{
    aspect-ratio: 63/50;
    border-radius: var(--default-border-radius);
    overflow: hidden;
}
.details .item dl dt .img-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.details .item dl dd{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center
}
.details .item dl h3{
    font-size: 40px;
    font-weight: bold;
    line-height: 1.3;
    color: #111;
    margin-bottom: 16px;
}
.details .item dl p{
    font-size: 20px;
    color: #888;
}

/* 文字镂空 */
.survive h2{
    font-size: var(--page-title-size);
    font-weight: bold;
    line-height: 1.3;
    color: #111;
    text-align: center;
    margin-bottom: var(--section-top);
}
.sticky-module {
    height: 100vh;
    position: relative;
}
.sticky-image-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sticky-image-wrapper>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.white-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    opacity: 0;
    pointer-events: none;
    will-change: opacity;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .3s;
}
.white-mask.active{
    opacity: 1;
}
.hollow-text {
    font-size: 50vw;
    transition: font-size 1s linear;
    font-weight: bold;
    white-space: nowrap;
    font-weight: 900;
    margin: 0;
    color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    -webkit-background-clip: text;
    background-clip: text;
}
.hollow-text.active {
    font-size: 10vw;
}

.default-view{
    max-width: 1430px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    margin-top: var(--section-top);
}
.default-view .img-box{
    aspect-ratio: 14/6.28;
    overflow: hidden;
    border-radius: var(--default-border-radius);
    margin-bottom: 60px;
}
.default-view .img-box img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.default-view .info{
    display: flex;
    flex-direction: row;
    gap: 80px;
}
.default-view .info2{
    flex-direction: row-reverse;
}
.default-view .info .text{
    flex: 6;
}
.default-view .info .text h2{
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 16px;
}
.default-view .info .text p{
    font-size: 18px;
    color: #888;
}
.default-view .info .icons{
    flex: 4;
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: flex-end;
}
.default-view .info2 .icons{
    justify-content: flex-start;
}
.default-view .info .icons .item{
    width: calc(25% - 16px * 3 / 4);
}
.default-view .info .icons .item img{
    aspect-ratio: 1/1;
    width: 100%;
    display: block;
    margin-bottom: 12px;
}
.default-view .info .icons .item span{
    display: block;
    text-align: center;
    font-size: 16px;
    color: #111;
}

.floor{
    max-width: 1430px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    margin-top: var(--section-top);
}
.floor ul{
    display: flex;
    flex-direction: row;
    gap: 24px;
}
.floor ul li{
    flex: 1 1 0%;
    position: relative;
    aspect-ratio: 32/50;
    border-radius: var(--default-border-radius);
    overflow: hidden;
    transition: all .3s;
}
.floor ul li.active{
    flex: 2 1 0%;
    aspect-ratio: 64/50;
}
.floor ul li.active .info p{
    display: block;
}
.floor ul li.active .banner-mask{
    background-color: rgba(0, 0, 0, 0);
}
.floor ul li .info{
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    z-index: 2;
    padding: 40px;
    color: #fff;
}
.floor ul li .info h3{
    font-size: 28px;
    margin-bottom: 8px;
    font-weight: bold;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .3);
}
.floor ul li .banner-mask{
    background: rgba(0, 0, 0, .3);
}
.floor ul li .info p{
    font-size: 18px;
    display: none;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .3);
}


.floor ul li img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.control{
    margin-top: var(--section-top);
}
.control h2{
    font-size: var(--page-title-size);
    font-weight: bold;
    margin-bottom: 16px;
    line-height: 1.3;
    color: #111;
    text-align: center;
    margin: 0 auto;
    width: 100%;
    max-width: 1430px;
    padding: 0 15px;
    margin-bottom: 50px;
}
/* --- 核心模块样式开始 --- */
.scale-scroll-track {
    /* height: 300vh;  */
    position: relative;
}
.scale-sticky-wrapper {
    /* position: sticky;
    top: var(--nav-height);
    height: calc(100vh - var(--nav-height)); */
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.scale-hero-module {
    width: 100%;
    max-width: 1400px; /* 实际内容宽度 */
    aspect-ratio: 14/6;
    position: relative;
    border-radius: var(--default-border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    /* 初始 transform 交由 JS 动态设置 */
    will-change: transform;
}
.scale-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.scale-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}
.scale-hero-title {
    font-size: 24px;
    margin: 0 0 8px 0;
    font-weight: bold;
}
.scale-hero-subtitle {
    font-size: 40px;
    font-weight: bold;
    margin: 0;
}
.control .smt-list{
    max-width: 1430px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.control .smt-list .smt{
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}
.control .smt-list ul{
    font-family: 'Inter';
    font-size: 18px;
    color: #888;
}
.control .smt-list ul li{
    margin-bottom: 8px;
}

.mapping{
    max-width: 1430px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    margin-top: var(--section-top);
}
.mapping .inner ul{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
}
.mapping .inner ul li{
    position: relative;
    border-radius: var(--default-border-radius);
    overflow: hidden;
    width: calc(50% - 40px / 2);
}
.mapping .inner ul li:first-child{
    width: 100%;
    aspect-ratio: 14/6.28;
}
.mapping .inner ul li .banner-mask{
    background-color: rgba(0, 0, 0, .3);
}
.mapping .inner ul li:hover .banner-mask{
    background-color: rgba(0, 0, 0, 0);
}
.mapping .inner ul li .pic{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.mapping .inner ul li .info{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 3;
    padding: 5%;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.mapping .inner ul li .info h3{
    font-size: 28px;
    font-weight: bold;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .3);
}
.mapping .inner ul li .info p{
    font-size: 18px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .3);
}
.mapping .inner ul li:first-child .info{
    justify-content: flex-start;
}
.mapping .inner ul li:first-child .info h3{
    max-width: 40%;
}
.mapping .inner ul li:first-child .info p{
    max-width: 40%;
}

.what{
    max-width: 1430px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    margin-top: var(--section-top);
}
.what h2{
    font-size: var(--page-title-size);
    font-weight: bold;
    line-height: 1.3;
    color: #111;
    text-align: center;
}
.what ul{
    margin-top: var(--section-top);
    display: flex;
    flex-direction: row;
    gap: 60px;
    flex-wrap: nowrap;
}
.what ul li{
    width: calc(50% - 60px / 2);
}
.what ul li .img-box{
    aspect-ratio: 67/52.5;
    border-radius: var(--default-border-radius);
    overflow: hidden;
    margin-bottom: 24px;
}
.what ul li .img-box img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.what ul li .info{
    text-align: center;
}
.what ul li .info h3{
   font-size: 28px;
   font-weight: bold;
   margin-bottom: 8px;
   color: #111;
}
.what ul li .info p{
    font-size: 20px;
    color: #888;
}

.pic-list{
    margin-top: var(--section-top);
}
.pic-list .inner{
    max-width: 1920px;
    width: 100%;
    margin: 0 auto; 
}
.pic-list .inner h2{
    text-align: center;
    font-size: 32px;
    font-weight: bold;
}
.mySwiper3{
    margin-top: 50px;
    overflow: hidden;
    width: 100%;
}
.mySwiper3 .swiper-slide{
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
}
.mySwiper3 .swiper-slide img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.more{
    max-width: 1430px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    margin-top: var(--section-top);
}
.more .inner{
    border-top: 1px solid #e0e0e0;
    padding-top: var(--section-top);
}
.more .inner h2{
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 32px;
}
.more .inner ul{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
}
.more .inner ul li{
    border-radius: var(--default-border-radius);
    overflow: hidden;
    border: 1px solid #e0e0e0;
    width: calc(33% - 24px * 2 / 3);
    transition: all .2s;
}
.more .inner ul li:hover{
    border: 1px solid #285bdb;
    transform: translateY(-8px);
}
.more .inner ul li .img-box{
    aspect-ratio: 4/3;
    overflow: hidden;
}
.more .inner ul li .img-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.more .inner ul li h3{
    padding: 16px;
    font-size: 16px;
    font-weight: bold;
    color: #111;
}

@media screen and (max-width: 1400px) {
    :root{
        --page-title-size:43px;
    }

    .product-info .inner{
        gap: 40px;
    }

    .info-right h1{
        font-size: 32px;
    }
    .info-right .smt{
        font-size: 14px;
    }

    .grid-outer .pg-upacer .p1{
        font-size: 19px;
    }
    .grid-outer .pg-upacer .p2{
        font-size: 14px;
    }

    .details .item dl{
        gap: 60px;
    }
    .details .item dl h3{
        font-size: 32px;
    }
    .details .item dl p{
        font-size: 16px;
    }
}

@media screen and (max-width: 1024px) {
    :root{
        --page-title-size:34px;
    }

    .detalis-crumbs{
        padding: 20px 15px;
    }

    .info-right h1{
        font-size: 25px;
    }

    .grid-outer .pg-upacer .p1{
        font-size: 16px;
    }
    .grid-outer .pg-upacer{
        padding: 50px 15px;
        padding-top: 20px;
    }
    .pg-grid{
        gap: 15px;
    }
    .pg-hero-image{
        display: none;
    }
    .pg-sticky-wrapper{
        position: static;
        height: auto;
    }
    .pg-grid-item{
        opacity: 1;
        visibility: visible;
        transform: scale(1);
        transition: none;
    }
    .pg-spacer{
        height: 0;
    }

    .power-banner .info h3{
        font-size: 32px;
    }
    .power-banner .info p{
        font-size: 19px;
    }

    .details .item dl{
        gap: 40px;
    }
    .details .item dl h3{
        font-size: 25px;
    }
    .details .item dl p{
        font-size: 13px;
    }

    .sticky-module{
        height: auto;
    }
    .sticky-image-wrapper{
        position: static;
        height: auto;
    }
    .white-mask{
        display: none;
    }

    .default-view .info{
        gap: 40px;
    }
    .default-view .info .text h2{
        font-size: 25px;
    }
    .default-view .info .text p{
        font-size: 13px;
    }
    .default-view .info .icons .item span{
        font-size: 12px;
    }
    .default-view .img-box{
        margin-bottom: 30px;
    }

    .floor ul{
        gap: 16px;
    }
    .floor ul li .info h3{
        font-size: 22px;
    }
    .floor ul li .info p{
        font-size: 14px;
    }

    .scale-scroll-track{
        height: auto;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    .scale-sticky-wrapper{
        height: auto;
        margin-top: 30px;
    }
    .scale-hero-module{
        transform: scale(1) !important;
    }

    .scale-hero-title{
        font-size: 19px;
    }
    .scale-hero-subtitle{
        font-size: 32px;
    }

    .mapping .inner ul{
        gap: 15px;
    }
    .mapping .inner ul li{
        width: calc(50% - 15px / 2);
    }
    .mapping .inner ul li .info h3{
        font-size: 22px;
    }
    .mapping .inner ul li .info p{
        font-size: 14px;
    }

    .what ul{
        gap: 15px;
    }
    .what ul li{
        width: calc(50% - 15px / 2);
    }
    .what ul li .info h3{
        font-size: 22px;
    }
    .what ul li .info p{
        font-size: 16px;
    }

    .pic-list .inner h2{
        font-size: 25px;
    }

    .more .inner h2{
        font-size: 25px;
    }
    .more .inner ul li{
        width: calc(50% - 24px / 2);
    }
}

@media screen and (max-width: 768px) {
    :root{
        --page-title-size:26px;
    }

    .product-info .inner{
        flex-direction: column;
    }
    .product-info .inner .info-left{
        flex: none;
        position: static;
        width: 100%;
    }
    .product-detail-inquiry-form .row{
        flex-direction: column;
    }

    .grid-outer .pg-upacer .p1{
        font-size: 14px;
    }
    .grid-outer .pg-upacer .p2{
        font-size: 12px;
    }
    .pg-grid{
        grid-template-columns: 1fr 1fr;
    }
    .pg-grid-item{
        border-radius: 6px;
    }
    .pg-grid-item:last-child{
        border-radius: 12px;
        grid-column: 1 / -1;
    }

    .power-banner .info{
        transition: none;
    }
    .power-banner .info h3{
        font-size: 25px;
    }
    .power-banner .info p{
        font-size: 15px;
    }
    .power-banner .info{
        bottom: 10%;
    }
    .details .item dl{
        flex-direction: column;
        gap: 20px;
    }
    .details .item:nth-child(2n-2) dl{
        flex-direction: column;
    }
    .details .item dl h3{
        margin-bottom: 10px;
    }

    .default-view .info{
        flex-direction: column;
        gap: 30px;
    }
    .default-view .info .icons{
        justify-content: flex-start;
    }
    .default-view .info .icons .item{
        max-width: 80px;
    }

    .floor ul{
        flex-direction: column;
        gap: 24px;
    }
    .floor ul li{
        flex: none !important;
        aspect-ratio: auto !important;
    }

    .scale-hero-title{
        font-size: 15px;
    }
    .scale-hero-subtitle{
        font-size: 25px;
    }
    .control .smt-list .smt{
        font-size: 19px;
    }
    .control .smt-list ul{
        font-size: 14px;
    }

    .mapping .inner ul li{
        width: 100%;
    }
    .mapping .inner ul li .info{
        justify-content: flex-start;
    }
    .mapping .inner ul li .info h3{
        max-width: 50%;
    }
    .mapping .inner ul li .info p{
        max-width: 50%;
    }
    .mapping .inner ul li:first-child .info h3{
        max-width: 50%;
    }
    .mapping .inner ul li:first-child .info p{
        max-width: 50%;
    }

    .what ul{
        gap: 30px;
        flex-direction: column;
    }
    .what ul li{
        width: 100%;
    }
    .what ul li .img-box{
        margin-bottom: 16px;
    }
    .pic-list .inner h2{
        font-size: 20px;
    }

    .more .inner ul li h3{
        font-size: 14px;
    }
}

@media screen and (max-width: 620px) {
    .more .inner ul{
        flex-direction: column;
    }
    .more .inner ul li{
        width: 100%;
    }
}

@media screen and (max-width: 580px) {
    .power-banner .info h3{
        font-size: 18px;
        margin-bottom: 10px;
    }
    .power-banner .info p{
        font-size: 12px;
    }

    .scale-hero-title{
        font-size: 13px;
        margin-bottom: 4px;
    }
    .scale-hero-subtitle{
        font-size: 18px;
    }

    .mapping .inner ul li .info h3{
        font-size: 18px;
        line-height: 1.3;
        margin-bottom: 10px;
    }
    .mapping .inner ul li .info p{
        font-size: 12px;
        line-height: 1.3;
    }

    .pic-list .inner{
        padding: 0 15px;
    }
    .pic-list .inner h2{
        font-size: 16px;
    }
}
