	@font-face {
		font-family: "MinionProMediumIt";
        src: url("../media/files/MinionPro-MediumIt.woff2") format("woff2");
        font-display: swap;
	}
    .font-MinionProMediumIt {
      font-family: "MinionProMediumIt", Arial, sans-serif !important;
    }
	.font-MinionPro{
        font-family: Minion Pro,
        sans-serif;
    }
    .font-kozuka {
      font-family:
        Kozuka Gothic Pr6N,
        sans-serif;
    }
    .text-shadow {
        text-shadow: 0px 0px 6px #000000;
    }
    .text-shadow2 {
        text-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
    }
    .textcolor-white {
        color: rgb(255 255 255);
    }
    .textcolor-blue {
        color: #003b4d;
    }
    .textcolor-lightblue {
        color: #5799AF;
    }
    .textcolor-orange {
        color: #d39c79;
    }
    .textcolor-content {
        color: rgb(51, 51, 51);
    }
    .textcolor-grey {
        color: rgb(128, 128, 128);
    }
    .textcolor-red {
        color: red;
    }
    .v-texttitile {
        font-size: 40px;
        font-size: 2.5rem;
        line-height: 1.5;
    }
    .v-texttitile-big {
        font-size: 46px;
        font-size: 2.875rem;
        line-height: 1.8;
    }
    .v-texttitile-small {
        font-size: 34px;
        font-size: 2.125rem;
        line-height: 1.8;
    }
    .v-textcontent-big {
        font-size: 27px;
        font-size: 1.6875rem;
        line-height: 1.8;
    }
    .v-textcontent {
        font-size: 22px;
        font-size: 1.375rem;
        line-height: 1.8;
    }
    .v-textcontent-small {
        font-size: 18px;
        font-size: 1.125rem;
        line-height: 1.8;
    }
    .v-textcontent-verysmall {
        font-size: 16px;
        font-size: 1.0rem;
        line-height: 1.8;
    }
    .pc {
        display: flex;
    }
    .mobile {
        display: none;
    }
    .arrow {
        display: inline-block;
        width: 7px;
        height: 7px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        transform: rotate(45deg);
        margin-left: 12px;
    }
    .v-common-headimg {
        width: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
        min-height: 650px;
		overflow: hidden;
    }
    .v-common-headcontent{
        position: absolute;
        left: 5%;
        bottom: 5%;
    }
    .v-common-fullimgarea{
        position: relative;
        width: 100%;
        min-height: 650px;
        overflow: hidden;
    }
    .v-common-staticheight672area{
        width: 100%;
        height: 672px;
        pointer-events: auto;
    }
    .v-common-reservation-needcover{
        pointer-events: auto;
        transition: all 0.5s ease !important;
    }
    .v-common-reservation-needcover:hover{
        transform: scale(1.04);
    }
    .v-common-reservation-needcover:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.85); /* 白色半透明遮罩 */
    }
    .v-common-reservation-textarea{
        position: relative;
        text-align: center;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-content: center;
        align-items: center;
        flex-direction: column;
        max-width: 1200px;
        margin-right: auto;
        margin-left: auto;
        pointer-events: none;
        padding: 100px 30px 0px 30px;
    }
    .v-common-backgroud{
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    .v-common-changewrapperarea{
        position: relative;
        width: 100%;
        max-width: 1410px; /* 可根据需求调整 */
        overflow: hidden;
        margin: 0 auto;
    }
    .v-common-changewrapper-slides{
        display: flex;
        gap: 24px;
        transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1); /* 更丝滑的动画 */
    }
    .v-common-changewrapper-slide{
        flex: 0 0 calc(50% - 12px); /* 50% - 间距的一半（24px/2） */
        border-radius: 30px; /* 整体圆角，和示例一致 */
        overflow: hidden; /* 裁剪内部元素，保证圆角生效 */
        max-width: 445px;
        height: 100%;
		display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: #f7f7f7;
        transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    }

    .v-common-changewrapper-slide:hover {
        transform: scale(1.02);
    }

    .v-common-changewrapper-image {
        width: 100%;
        height: 450px; /* 固定图片高度，可根据需求调整 */
        flex-shrink: 0; /* 防止图片被压缩 */
    }

    .v-common-changewrapper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* 保持图片比例，填充容器 */
    }

    .v-common-changewrapper-slide-text {
        padding: 24px 20px 32px; /* 上下内边距，适配整体圆角 */
        text-align: center;
        align-items: center;
    }

        /* 切换按钮容器 - 右下角定位 */
    .v-common-changewrapper-controls {
        display: none;
        gap: 16px;
        padding-right: 10px;
        margin-top: 20px;
        justify-content: flex-end;
    }

    .v-common-changewrapper-btn {
        top: 50%;
        transform: translateY(-50%);
        width: 60px;
        height: 60px;
        background: rgba(255, 255, 255, 0.9);
        border: none;
        border-radius: 50%;
        cursor: pointer;
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    .prev-btn::after {
        content: "";
        width: 12px;
        height: 2px;
        background-color: #333;
        position: absolute;
        transform: rotate(45deg);
        right: 24px;
        bottom: 25px;
    }
    .prev-btn::before {
        content: "";
        width: 12px;
        height: 2px;
        background-color: #333;
        position: absolute;
        transform: rotate(-45deg);
        right: 24px; /* 水平位置微调（与向左箭头相反） */
        top: 25px;
    }

    .next-btn::after {
        content: "";
        width: 12px;
        height: 2px;
        background-color: #333;
        position: absolute;
        transform: rotate(-45deg);
        left: 24px;
        bottom: 25px;
    }

    .next-btn::before {
        content: "";
        width: 12px; /* 箭头线条长度 */
        height: 2px; /* 箭头线条粗细 */
        background-color: #333; /* 箭头颜色，可自定义 */
        position: absolute;
        transform: rotate(45deg);
        left: 24px; /* 水平位置微调 */
        top: 25px; /* 垂直位置微调 */
    }
    
    .v-common-wrapperarea{
        width: 100%;
        padding: 0px 20px;
        box-sizing: border-box;
    }
    .v-common-wrapper-carousel-container{
        width: 90%;
        max-width: 1400px;
        margin: 0px auto;
        position: relative;
    }
    .v-common-wrapper-carousel-wrapper{
        overflow: hidden;
        border-radius: 4px;
        position: relative;
        width: 100%;
        user-select: none;
        touch-action: pan-y; /* 只允许横向拖拽 */
    }
    .v-common-wrapper-carousel-dots{
        justify-content: center;
        margin-top: 20px;
        gap: 8px;
    }
    .prev {
        left: -20px;
    }
    .prev::after {
        content: "";
        width: 12px;
        height: 2px;
        background-color: #333;
        position: absolute;
        transform: rotate(45deg);
        right: 24px;
        bottom: 25px;
    }
    .prev::before {
        content: "";
        width: 12px;
        height: 2px;
        background-color: #333;
        position: absolute;
        transform: rotate(-45deg);
        right: 24px; /* 水平位置微调（与向左箭头相反） */
        top: 25px;
    }
    .next {
        right: -20px;
    }

    .next::after {
        content: "";
        width: 12px;
        height: 2px;
        background-color: #333;
        position: absolute;
        transform: rotate(-45deg);
        left: 24px;
        bottom: 25px;
    }

    .next::before {
        content: "";
        width: 12px; /* 箭头线条长度 */
        height: 2px; /* 箭头线条粗细 */
        background-color: #333; /* 箭头颜色，可自定义 */
        position: absolute;
        transform: rotate(45deg);
        left: 24px; /* 水平位置微调 */
        top: 25px; /* 垂直位置微调 */
    }
    .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #ddd;
        cursor: pointer;
        transition: background 0.3s;
    }
    .dot.active {
        width: 20px !important;
        margin: 0 4px !important;
        border-radius: 30px;
        background: #333;
    }
    .v-common-wrapper-carousel-list{
        display: flex;
		transition: transform 0.5s;
    }
    .v-common-wrapper-carousel-3item{
        aspect-ratio: 520 / 600; /* 與 A01 統一比例 */
        flex: 0 0 33.333%;
        padding: 0 10px;
        max-width: 520px;
        position: relative;
    }
    .v-common-wrapper-carousel-3item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px;
        display: block;
    }
    .v-common-wrapper-carousel-3item p{
        text-align: center;
        position: absolute;
        bottom: 25px;
        transform: translateX(0);
        width: 100%;
        text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
        font-weight: 600;
    }
    .v-common-wrapper-carousel-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 60px;
        height: 60px;
        background: rgba(255, 255, 255, 0.9);
        border: none;
        border-radius: 50%;
        cursor: pointer;
        font-size: 18px;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }
    .v-common-fullimgbg{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    .v-common-fullimgcover{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.85);
    }
    .v-common-fullimgminbg{
        width: 100%;
        height: 95vh;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
        display: flex;
        align-items: center;
        min-height: 650px;
    }
    .v-common-btn{
        display: inline-flex;
		justify-content: center;
        align-items: center;
        background-color: #d39c79;
        color: #ffffff;
        border-radius: 30px;
        transition: background-color 0.3s ease;
        pointer-events:auto;
    }
    .v-common-btn:hover{
        background-color: #003b4d;
    }
    .v-common-m-0-auto{
        margin: 0 auto;
    }
    .v-common-gap-50{
        gap: 50px;
    }
    .v-common-gap-2rem{
        gap: 2rem;
    }
    .v-common-p-15-5{
        padding: 15px 5px;
    }
    .v-common-p-15-40{
        padding: 15px 40px;
    }
    .v-common-p-10-10{
        padding: 10px 10px;
    }
    .v-common-p-10-30{
        padding: 10px 30px;
    }
    .v-common-p-10-50{
        padding: 10px 50px;
    }
	.v-common-p-5-40{
		padding: 5px 40px;
	}
    .v-common-p-15{
        padding: 15px;
    }
	.v-common-ls-5 {
	  letter-spacing: 5px;
	}
	.v-common-br-25 {
	  border-radius: 25px;
	}
	.v-common-br-30 {
	  border-radius: 30px;
	}
    .v-common-fullimgwithcover{
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        transition: all 0.5s ease !important;
        position: absolute; 
        top: 0; 
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events:auto;
    }
    .v-common-fullimgwithcover:before{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.85); /* 白色半透明遮罩 */
    }
    .v-common-fullimgminbg-lefttextarea{
        width: 100%;
        max-width: 1400px;
        padding: 40px 60px;
        flex-direction: column;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        box-sizing: border-box;
        position: absolute;
        bottom: 40px;
        left: 40px;
    }
    .v-common-fullimgminbg-centertextarea{
        width: 100%;
        max-width: 1400px;
        /* 内边距，让文字不贴边 */
        padding: 40px 60px;
        margin: auto auto 0px auto;
        /* 让内容垂直排列 */
        flex-direction: column;
        display: flex;
        box-sizing: border-box;
        align-items: center;
        text-align: center;
    }
	.v-height-120{
		height: 120px;
	}
    .v-height-180{
        height: 180px;
    }
	.v-height-900{
		height: 900px;
	}
    .v-width-120{
        width: 120px;
    }
    .v-width-130{
        width: 130px;
    }
    .v-width-150{
        width: 150px;
    }
    .v-width-170{
        width: 170px;
    }
    .v-width-200{
        width: 200px;
    }
    .v-width-225{
        width: 225px;
    }
    .v-width-240{
        width: 240px;
    }
    .v-width-300{
        width: 300px;
    }
    .v-width-500{
        width: 500px;
    }
    .v-common-fullwidthwrapper{
        display: flex;
        position: relative;
        width: 100%;
        overflow: hidden;
        padding: 15px;
    }

    /* 通用滚动显示动画基础 */
    .v-common-animate {
        opacity: 0;
        transition: all 0.8s ease-out;
    }

    .v-common-animate-yup50 {
        transform: translateY(50px);
    }

    .v-common-animate-xleft50 {
        transform: translateX(-50px);
    }

    .v-common-animate-ydown50 {
        transform: translateY(-50px);
    }

    .v-common-animate-xright50 {
        transform: translateX(50px);
    }

    .v-common-animate.active {
        opacity: 1;
        transform: translateY(0);
        transform: translateX(0);
        transform: translateZ(0);
    }

    /* shadeautostart */

    .shadeauto-area2-slidelist{
        display: flex;
        justify-content: center;
        gap: 50px; /* 固定相等间距 */
        align-items: center;
        width: 100%;
    }

    .shadeauto-area2-slideitem{
        width: 100%;
        max-width: 510px; /* 最大不超过原来的510px */
        /* 👇 用比例维持高度，不写死 height，移动端不变形 */
        aspect-ratio: 510 / 650;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .shadeauto-area2-slide{
        width: 100%;
        max-width: 510px; /* 最大不超过原来的510px */
        /* 👇 用比例维持高度，不写死 height，移动端不变形 */
        aspect-ratio: 1/1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .shadeauto-area2-slide:hover .shadeauto-area2-slide-default img{
        transform: scale(1.05);
    }


    .shadeauto-area2-slide-default {
        opacity: 1;
        position: absolute;
        top:0;
        width: 100%;
        max-width: 500px; /* 你可改最大宽度 */
        aspect-ratio: 1 / 1; /* ✅ 强制正方形 */
        overflow: hidden;
        transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease ,opacity 0.6s ease;
    }
    
    .shadeauto-area2-slide-change {
        opacity: 0;
        position: absolute;
        top:0;
        width: 100%;
        max-width: 500px; /* 你可改最大宽度 */
        aspect-ratio: 1 / 1; /* ✅ 强制正方形 */
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;   
        flex-direction: column;
        text-align: center;
        transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease ,opacity 0.6s ease;
        /* opacity: 0;
        background-color: #5799AF;
        background-blend-mode: normal;
        width: 100%;
        height: 510px;
        text-align: center;
        top:0;
        position: absolute;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        display: flex;
        align-items: center;
        justify-content: center;   
        flex-direction: column;
        overflow: hidden; */
    }
    .shadeauto-area2-slide-change-img{
        opacity: 0;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease ,opacity 0.6s ease;
    }

    .shadeauto-area2-slide:hover .shadeauto-area2-slide-change-img { opacity: 1.5; }
    .shadeauto-area2-slide:hover .shadeauto-area2-slide-default { opacity: 0; }
    .shadeauto-area2-slide:hover .shadeauto-area2-slide-change { opacity: 1; }

    .shadeauto-area2-slide img{
        position: absolute;
        top: 0;
        left: 0;
        object-fit: cover; /* 保持图片比例，填充容器 */
        transform: scale(1);
        transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease ,opacity 0.6s ease;
    }
    
    .shadeauto-area2-slide-change-text{
        position: relative;
        padding: 0 20px;
    }

    .shadeauto-area2-slidetext{
        padding: 15px 5px; 
    }

    .shadeauto-area4-bg{
        background-image: url('../media/images/台湾本社WEB改修/Shade%20Auto/area4bg.webp');
    }

    /* shadeautoend */

    /* standardstart */

    .standard-area3-bg{
        background-image: url('../media/images/台湾本社WEB改修/電動標準/area3bg.webp');
    }

    .standard-area4-bg{
        background-image: url('../media/images/台湾本社WEB改修/電動標準/area4bg.webp');
    }

    .standard-area5-bg{
        background-image: url('../media/images/台湾本社WEB改修/電動標準/area5bg.webp');
    }

    /* standardend */

    @media (max-width: 1024px) {
        /* shadeautostart */

        .shadeauto-area2-slidelist{
            flex-direction: column;
            gap: 30px;
        }

        /* shadeautoend */
    }

    /* estickstart */

    .e-stick-area5-bg{
        background-image: url('../media/images/台湾本社WEB改修/e-stick/e-stick-5bg.webp');
    }

    .e-stick-area6-bg{
        background-image: url('../media/images/台湾本社WEB改修/e-stick/e-stick-6bg.webp');
    }

    /* estickend */

    /* smartfoldstart */
    
    .smartfold-area2-img{
        position: absolute;
        width: 130px;
        right: 4%;
        bottom: 5%;
    }

    .smartfold-area5{
        position: relative;
        width: 100%;
        min-height: 800px;
        overflow: hidden;
    }

    .smartfold-area5-contentarea{
        position: relative;
        display: flex;
        width: 100%;
        height: 100%;
        min-height: 600px;
    }

    .smartfold-area5-item{
        flex: 1; /* 三等分 */
        display: flex;
        flex-direction: column;
        justify-content: center; /* 垂直居中 */
        align-items: center;     /* 水平居中 */
        padding: 2rem;
        box-sizing: border-box;
        text-align: center;
    }

    .smartfold-area5-item img{
        max-width: 80%;
        height: auto;
        margin-bottom: 1.5rem;
        aspect-ratio:420/490;
        width: 420px;
    }

    .smartfold-area6{
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .smartfold-area6-grid{
        display: flex;
        gap: 35px;
        justify-content: center;
    }

    .smartfold-area6-item{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .smartfold-area6-img-wrapper {
        width: 100%;
        aspect-ratio: 520 / 600;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        background-color: #f0f0f0;
        max-width: 520px;
    }

    .smartfold-area6-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .smartfold-area6-caption-container {
        margin-top: 20px;
        display: flex;
        align-items: baseline;
        justify-content: center;
        gap: 8px;
    }

    /* smartfoldend */

	/* motorizedstart */

	.motorized-area1 {
	  padding: 60px 20px;
	  display: flex;
	  justify-content: center;
	  gap: 36px;
	}

	.motorized-area1-item {
	  flex-direction: column;
	  align-items: center;
	  text-align: center;
	}

	.motorized-area1-img {
	  width: 100%;
	  aspect-ratio: 520 / 600;
	  overflow: hidden;
	  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
	  transition:
		transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
		box-shadow 0.4s ease;
	  max-width: 520px;
	}

	.motorized-area1-img:hover {
	  transform: scale(1.03);
	  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
	}

	.motorized-area2 {
	  background-color: #f7f7f7;
	  padding: 80px 20px;
	}

	.motorized-area2-grid {
	  display: flex;
	  justify-content: center;
	  gap: 36px;
	}

	.motorized-area2-item {
	  aspect-ratio: 520 / 600;
	  position: relative;
	  overflow: hidden;
	  border-radius: 20px;
	  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
	  max-width: 520px;
	}

	.motorized-area2-item-text {
	  position: absolute;
	  bottom: 25px;
	  left: 50%;
	  transform: translateX(-50%);
	  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
	  width: 90%;
	}

	.motorized-area2-item img {
	  width: 100%;
	  height: 100%;
	  object-fit: cover;
	}

	.motorized-area3 {
	  padding: 80px 20px;
	}

	.motorized-area3-grid {
	  display: flex;
	  justify-content: center;
	  gap: 35px;
	}

	.motorized-area3-item {
	  display: flex;
	  flex-direction: column;
	  align-items: center;
	}

	.motorized-area3-img-wrapper {
	  aspect-ratio: 520 / 600;
	  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	  max-width: 520px;
	}

	.motorized-area3-img-wrapper img {
	  width: 100%;
	  height: 100%;
	  object-fit: cover;
	}

	.motorized-area3-caption-container {
	  margin-top: 20px;
	  display: flex;
	  align-items: baseline;
	  justify-content: center;
	  gap: 8px;
	}

	.motorized-area4-position {
	  width: 100%;
	  display: flex;
	  align-items: center;
	}

	.motorized-area4-container {
	  max-width: 1200px;
	  margin: 0 auto;
	  width: 100%;
	  padding: 0 20px; /* 縮減 padding，讓文字更貼近左側 */
	}

	.motorized-area4-textarea {
	  max-width: 500px;
	  text-align: left;
	  margin-left: 20px;
	}

	.motorized-area5-awardimg {
	  width: 130px;
	  margin-top: 25px;
	  float: right;
	}

	.motorized-area5-leftcontent {
	  position: absolute;
	  left: 0 !important;
	  top: 45%;
	  transform: translateY(-50%);
	  display: flex;
	  align-items: flex-start;
	}

	.motorized-area5-leftimg {
	  width: 480px;
	  transform: translateX(-100%);
	  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
	}

	.motorized-area5-lefttext {
	  margin-left: 50px;
	  padding-top: 60px;
	  max-width: 350px;
	  opacity: 0;
	  transition: opacity 1s ease 0.8s;
	}

	.motorized-area5-rightcontent {
	  position: absolute;
	  right: 0 !important; /* 強制貼邊 */
	  bottom: 80px;
	  display: flex;
	  align-items: flex-end;
	}

	.motorized-area5-rightimg {
	  width: 526px;
	  transform: translateX(100%);
	  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
	}

	.motorized-area5-righttext {
	  margin-right: 50px;
	  margin-bottom: 120px;
	  max-width: 350px;
	  opacity: 0;
	  transition: opacity 1s ease 0.8s;
	  text-align: left;
	}

	.motorized-area5-bottomcontent {
	  position: absolute;
	  bottom: 100px;
	  left: 530px;
	}

	#motorized-area5.active .motorized-area5-leftimg,
	#motorized-area5.active .motorized-area5-rightimg {
	  transform: translateX(0);
	}

	#motorized-area5.active .motorized-area5-lefttext,
	#motorized-area5.active .motorized-area5-righttext {
	  opacity: 1;
	}

	.motorized-area6-wrapper {
	  max-width: 1400px;
	  height: 100%;
	  margin: 0 auto;
	  position: relative;
	  display: flex;
	  align-items: center;
	  padding: 0 10%;
	}

	.motorized-area6-img {
	  position: absolute;
	  right: 5%;
	  bottom: -60px;
	  width: 40%;
	  transform: translateX(100%);
	  transition:
		transform 1.2s cubic-bezier(0.25, 1, 0.5, 1),
		bottom 1.2s cubic-bezier(0.25, 1, 0.5, 1);
	  align-items: flex-end;
	}

	.motorized-area6-content {
	  opacity: 0;
	  transform: translateY(30px);
	  transition: all 1s ease 0.3s;
	}

	.motorized-area6-btn {
	  padding: 5px 40px;
	  width: 150px;
	  letter-spacing: 5px;
	  float: right;
	  margin-right: 40%;
	  margin-top: 30px;
	}

	#motorized-area6.active .motorized-area6-content {
	  opacity: 1;
	  transform: translateY(0);
	}

	#motorized-area6.active .motorized-area6-img {
	  transform: translateX(0);
	  bottom: 0;
	}

	.motorized-area7{
		width: 100%;
		background-color: #f7f7f7;
		padding: 40px 10px;
	}

	/* motorizedend */

    @media (max-width: 1380px)
    {
        .v-common-changewrapper-slide{
            max-width: 100%;
            flex: 0 0 49% !important;
        }
        .v-common-changewrapper-controls {
            display: flex;
            padding-top: 10px;
        }
    }

    /* 響應式設定：手機版垂直排列 */
    @media (max-width: 768px) {
        .v-texttitile {
            font-size: 28px;
            font-size: 1.75rem;
        }
        .v-texttitile-big {
            font-size: 32px;
            font-size: 2rem;
        }
        .v-texttitile-small {
            font-size: 17px;
            font-size: 1.0625rem;
        }
        .v-textcontent {
            font-size: 17px;
            font-size: 1.0625rem;
        }
        .v-textcontent-small {
            font-size: 17px;
            font-size: 1.0625rem;
        }
        .pc {
            display: none;
        }
        .mobile {
            display: flex;
        }

        .v-common-changewrapper-slide {
            max-width: 100%;
            flex: 0 0 100% !important;
        }
		.v-common-changewrapper-slide:hover {
	  		transform: scale(1);
		}
        .v-common-changewrapper-controls {
            padding-top: 0px;
        }

        .v-common-changewrapper-btn {
          width: 40px;
          height: 40px;
        }

        /* 适配箭头内部线条，与缩小后的箭头匹配 */
        .prev-btn::after {
          width: 10px; /* 箭头线条缩短 */
          transform: rotate(-45deg);
          left: 15px;
          bottom: 22px;
        }

        .prev-btn::before {
          width: 10px; /* 箭头线条缩短 */
          transform: rotate(45deg);
          left: 15px;
          top: 22px;
        }

        .next-btn::after {
          width: 10px; /* 箭头线条缩短 */
          transform: rotate(45deg);
          left: 15px;
          bottom: 22px;
        }

        .next-btn::before {
          width: 10px; /* 箭头线条缩短 */
          transform: rotate(-45deg);
          left: 15px; /* 水平位置微调（与向左箭头相反） */
          top: 22px;
        }

        .v-common-wrapper-carousel-container {
            width: 95%; /* 提高容器占比，减少左右留白 */
        }

        /* 核心适配：手机端一行只显示1个轮播项 */
        .v-common-wrapper-carousel-3item {
            flex: 0 0 100% !important; /* 占满容器宽度，替换33.333% */
            padding: 0 5px; /* 减少左右内边距 */
            max-width: 100%; /* 取消最大宽度限制，适配手机屏幕 */
            position: relative; /* 给绝对定位的文字加父级相对定位（关键！原有代码缺失） */
        }

        /* 修复：手机端绝对定位文字的适配（核心，原有代码未改） */
        .v-common-wrapper-carousel-3item p {
            bottom: 20px; /* 减少底部距离，适配手机 */
            transform: translateX(0); /* 取消偏移，居中显示 */
            width: 100%; /* 占满轮播项宽度 */
            font-size: 1rem; /* 适当缩小字体 */
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8); /* 增强文字阴影，适配手机显示 */
        }

        /* 适配：手机端箭头缩小、位置调整（避免超出屏幕） */
        .v-common-wrapper-carousel-arrow {
            width: 40px;
            height: 40px; /* 箭头缩小，适配手机 */
        }
        .prev {
            left: 5px; /* 左箭头移到屏幕内，避免超出 */
        }
        .next {
            right: 5px; /* 右箭头移到屏幕内，避免超出 */
        }
        /* 适配箭头内部线条，与缩小后的箭头匹配 */
        .prev::after {
            width: 10px; /* 箭头线条缩短 */
            transform: rotate(-45deg);
            left: 15px;
            bottom: 22px;
        }

        .prev::before {
            width: 10px; /* 箭头线条缩短 */
            transform: rotate(45deg);
            left: 15px;
            top: 22px;
        }

        .next::after {
            width: 10px; /* 箭头线条缩短 */
            transform: rotate(45deg);
            left: 15px;
            bottom: 22px;
        }

        .next::before {
            width: 10px; /* 箭头线条缩短 */
            transform: rotate(-45deg);
            left: 15px; /* 水平位置微调（与向左箭头相反） */
            top: 22px;
        }

        /* 适配：指示器圆点缩小 */
        .dot {
          width: 10px;
          height: 10px;
        }
        .v-common-fullimgminbg-lefttextarea{
            left: 0px;
            bottom: 10px;
            padding-left: 30px;
        }
        /* shadeautostart */

        .shadeauto-area4-bg{
            background-image: url('../media/images/台湾本社WEB改修/Shade%20Auto/area4bg-mobile.webp');
        }

        /* shadeautoend */
		
        /* standardstart */

        .standard-area3-bg{
            background-image: url('../media/images/台湾本社WEB改修/電動標準/area3bg-mobile.webp');
        }

        .standard-area4-bg{
            background-image: url('../media/images/台湾本社WEB改修/電動標準/area4bg-mobile.webp');
        }

        .standard-area5-bg{
            background-image: url('../media/images/台湾本社WEB改修/電動標準/area5bg-mobile.webp');
        }
        /* standardend */
		
		/* estickstart */

        .e-stick-area5-bg{
            background-image: url('../media/images/台湾本社WEB改修/e-stick/e-stick-5bg-mobile.webp');
        }
        
        .e-stick-area6-bg{
            background-image: url('../media/images/台湾本社WEB改修/e-stick/e-stick-6bg-mobile.webp');
        }

        /* estickend */
		
        /* smartfoldstart */
        
        .smartfold-area2-img{
            bottom: 100px;
            left: 50%;
            transform: translate(-50%);
        }
		
		.smartfold-area2-content {
			margin-bottom: 80px;
		}
		
		.smartfold-area5{
			height: 1400px
		}
		
		.smartfold-area5-item{
			margin-top: 0px;
			margin-bottom: 0px;
		}
		
        .smartfold-area5-contentarea{
            flex-direction: column;
        }

        .smartfold-area6-grid {
            flex-direction: column;
        }

        /* smartfoldend */
		
	  	/* motorizedstart */

		.motorized-area1 {
			flex-direction: column;
		}

		.motorized-area2-grid {
			flex-direction: column;
		}

		.motorized-area3-grid {
			flex-direction: column;
		}
		
		.motorized-area4 {
			height: 80vh;
		}
		
		.motorized-area5-awardimg{
			float: left;
			margin-left: 28%;
		}
		
		.motorized-area5-leftimg img{
			width: 300px;
		}
		
		.motorized-area5-rightimg img{
			width: 300px;
		}

		.motorized-area5-leftcontent,
		.motorized-area5-rightcontent {
			position: relative;
			top: 0;
			bottom: 0;
			flex-direction: column;
			align-items: center;
			margin: 40px auto;
			transform: none;
		}
		.motorized-area5-lefttext,
		.motorized-area5-righttext {
			margin: 20px 0;
			text-align: center;
			padding: 0;
		}
		.motorized-area5-bottomcontent {
			position: relative;
			left: 0;
			margin-right: 10px;
			text-align: center;
			margin-top: 120px;
		}
		#motorized-area5 {
			width: 100%;
			left: 0;
			margin-left: 0;
			height: auto;
		}

		.motorized-area6-wrapper {
			flex-direction: column;
			padding: 0 20px;
		}

		.motorized-area6-img {
			position: relative;
			width: 75%;
			right: 0;
			margin-top: 40px;
			transform: none;
			bottom: 0;
			opacity: 0;
		}
				
		.motorized-area6-btn {
			margin-right: 0;
		}
		
		#motorized-area6 {
			height: auto;
			padding: 60px 0;
		}
		
		#motorized-area6.active .motorized-area6-img {
			opacity: 1;
			transform: translateY(0);
		}

		/* motorizedend */
}