@charset "utf-8";

/*反白顏色*/
::-moz-selection{  background-color: var(--SubColor);  color: #fff;}
::selection{  background-color: var(--SubColor);  color: #fff;}
:root {
    --MainColor: #d1c4b2;
    --SubColor: #a39281;
    --SubColor02: #fff3da;
    --SFont: "Noto Sans TC", sans-serif;
    --SFontEN: "Philosopher", sans-serif;
    --ff: "Philosopher", "Noto Sans TC", sans-serif;
    --bg-primary: #f9f7f4;  
    --bg-secondary: #eee9e0;/* 淺燕麥色*/
    --bg-dark: #3b3936;
    --color-stone: #797c80;  
    --text-main: #2b2927; 
    --text-muted: #706a61; 
    --text-footer:#E6DFD3;
    --text-hover_footer:#D4B296;
    --color-accent: #ebdacf;  
    --border-light: 1px solid #e3ded5;
    --shadow-smooth: 0 4px 20px rgba(59, 57, 54, 0.04);
    --transition-ease: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);

    --f56: clamp(32px, 4vw + 1rem, 56px);  
    --f48: clamp(28px, 3.5vw + 1rem, 48px); 
    --f42: clamp(26px, 3.2vw + 1rem, 42px);
    --f40: clamp(24px, 3vw + 1rem, 40px); 
    --f36: clamp(22px, 2.8vw + 1rem, 36px);
    --f32: clamp(20px, 2.5vw + 1rem, 32px); 
    --f28: clamp(18px, 2.2vw + 1rem, 28px);
    --f24: clamp(18px, 1.8vw + 1rem, 24px); 
    --f22: clamp(17px, 1.5vw + 1rem, 22px);
    --f20: clamp(16px, 1.2vw + 1rem, 20px);
    --f18: clamp(15px, 1vw + 1rem, 18px);  
    --f17: clamp(15px, 0.8vw + 1rem, 17px);
    --f16: clamp(14px, 0.5vw + 1rem, 16px); 

    --pd80: clamp(40px, 5vw + 1rem, 80px); 
    --pd100:clamp(50px, 7vw + 1rem, 100px);
    --pd200: clamp(60px, 18vw, 200px);
    --header-top:clamp(120px, 6vw, 140px);
    --transition-smooth: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    --max-width:1600px;
}
body {
    font-family: var(--SFont);
    letter-spacing: .1rem;
    color: var(--text-main);
    background: var(--bg-primary);
}

.main_part {max-width: 1400px;padding: var(--pd80) 0;width: 94%;}
.path{display: none;}
#content_main {    background: transparent;}

/* TOP按鈕 */
#to_top {
    left: unset;
    right: 25px;
    height: auto;
    font-family: var(--SFont);
    font-size: 14px;
    color: #ffffff00;
    background: #00000000;
    border-radius: 0;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0);
    transition: cubic-bezier(0.25, 0.59, 0.85, 0.45) 250ms;
    bottom: 30px;
}
#to_top::before, #to_top::after {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
#to_top::before {
    content: '';
    position: relative;
    display: block;
    width: 1px;
    height: 50px;
    background: var(--MainColor);
    margin-bottom: 50px;
}

#to_top::after {
    content: 'PAGE TOP';
    display: block;
    bottom: 0;
    font-size: 12px;
    color: var(--MainColor);
    text-align: left;
    line-height: 1;
    writing-mode: vertical-rl;
    mix-blend-mode: luminosity;
}

#to_top i.top {    width: 15px;    height: 15px;}
#to_top i.top:before, #to_top i.top:after {    display: none;}
#to_top:hover {    opacity: .7;    transition: all .3s;}
/**/



/*★★★卷軸設定↓↓↓↓↓↓↓↓↓↓↓↓*/
/* 捲軸寬度及高度 */
::-webkit-scrollbar {
  width: 6px; /*右側捲軸寬度*/
  height: 0px; /*下方捲軸高度*/
}
/* 軌道背景底色 */
::-webkit-scrollbar-track {  background: #eee9e0; }
/* 滑桿顏色 */
::-webkit-scrollbar-thumb {  background: #a39281; }
/* 滑桿滑鼠滑入時的顏色 */
::-webkit-scrollbar-thumb:hover {  background: var(--SubColor); }

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/
.header_area, .header_area.sticky {
    position: fixed;
    background: rgb(238 233 224);
    top: 0;
    left: 0;
    padding: 0;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}
.header_area.sticky {
    background: var(--bg-secondary);
    background-color: rgba(238, 233, 224, 0.85);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(44, 37, 32, 0.03);
}

.header_area.sticky {    background: rgba(238, 233, 224, 0.85);}

/*.pageIndex .header_area {
    animation: header_show 3s both;
    animation-delay: 2.5s;
}
@keyframes header_show {
0% {    opacity: 0;}
100% {    opacity: 1;}
}
*/
.main_header_area .container {
    max-width: 100%;
    padding: 0 30px;
}
.navigation {    align-items: center;}

/*電腦LOGO
.nav-brand {}
*/
.nav-header {
    max-width: 180px;
    grid-row: 1 / span 1;
}
.nav-brand {    display: flex;    padding: 5px 0;}


/*上方選單右邊設定 臉書/LINE/電話/信箱
.tp_links a:before {寬高大小設定}
.tp_links a.me_tp_fb {}
.tp_links a.me_tp_fb:before {背景換圖/建議.SVG}
.tp_links a.me_tp_line {}
.tp_links a.me_tp_line:before {背景換圖/建議.SVG}
.tp_links a.me_tp_call {}
.tp_links a.me_tp_call:before {背景換圖/建議.SVG}
.tp_links a.me_tp_mail {}
.tp_links a.me_tp_mail:before {背景換圖/建議.SVG}
*/

.me_tp_features {    display: none;}

/*浮動按鈕-展開*/
.info_fix_links {    display: flex !important;}
.linksBtn {    display: none;}
a.info_fix_default.info_fix_mail  {    display: none;}

.info_fix {
    bottom: 180px;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    filter: blur(6px);
    pointer-events: none;
    transition: 
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.25, 1, 0.5, 1),
        filter 0.8s ease;
}

body.bodyDesktop.headerSticky .info_fix, body.bodyMobile.headerSticky .info_fix {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    pointer-events: auto;
}
.info_fix_links a.info_fix_default {
    background: #a39281c7;
    backdrop-filter: blur(5px);
    transition: var(--transition-smooth);
    border-radius: 0;
    margin-bottom: 0;
    width: 40px;
    height: 40px;
    font-size: 15px;
}
.info_fix_links a:hover {    background:var(--SubColor);}

/*第一層*/
.stellarnav > ul > li > a {
    transition: all 0.3s;
    font-family: "Philosopher", "Noto Sans TC", sans-serif;
    font-size: 15px;
    padding: 0 13px;
    color: var(--text-main); 
}
.stellarnav > ul > li:hover > a {
    color: var(--SubColor);
}
.stellarnav > ul > li > a b:nth-child(2) {    font-size: 14px;}


/*下拉線條箭頭*/
.stellarnav li.has-sub>a:after {
    position: absolute;
    top: 38%;
    right: 5px;
    height: 7px;
    width: 7px;
    display: block;
    border-style: solid;
    border-width: 0 1px 1px 0;
    border-color: transparent var(--text-main) var(--text-main) transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*第二層*/
.stellarnav ul ul {    background: var(--bg-primary);}
.stellarnav li li {
    border: none;
    border-bottom: 1px #ffffff78 solid;
}
.stellarnav li li > a, .stellarnav li li.has-sub > a {
    padding: 13px 15px;
    transition: all 0.3s;
    font-size: 15px;
    color: var(--SubColor);
}
.stellarnav li li:hover > a, .stellarnav li li.has-sub:hover > a {
    color: var(--text-muted);
    padding-left: 18px;
    background: var(--bg-secondary);
}

/*下拉第二層箭頭*/
.stellarnav li li.has-sub > a:after {
    position: absolute;
    top: 38%;
    right: 5px;
    height: 7px;
    width: 7px;
    display: block;
    border-style: solid;
    border-width: 0 1px 1px 0;
    border-color: transparent var(--SubColor) var(--SubColor) transparent;
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
}



/* 商品下拉超過30個變大 */
.stellarnav.desktop li.bigMenu>ul{display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); left: 0; width: 100%; position: fixed; padding: 20px;}
.stellarnav.desktop li.bigMenu ul ul{top: 100%; left: 0; width: 100%; background: #efefef; height: auto; max-height: 300px; overflow: auto;}
.stellarnav.desktop li.bigMenu ul ul li{margin: 0;} 
.stellarnav.hasBigMenu li.bigMenu li.has-sub > a:after{border-left: 6px solid transparent; border-bottom:unset; border-right: 6px solid transparent; border-top: 6px solid #898989; right: 5px;}
/* 主分類超過30個但次分類直接顯示 
.stellarnav.desktop li.bigMenu>ul{grid-gap: 10px;}
.stellarnav.desktop li.bigMenu li{border: 0;}
.stellarnav.desktop li.bigMenu>ul>li>a{border: 1px solid #ddd;}
.stellarnav.desktop li.bigMenu ul ul{display: block !important; position: relative; top: 0; background: unset; border: 0;}
.stellarnav.desktop li.bigMenu ul ul li{border: 0;}
 主分類超過30個但次分類直接顯示-結束 */

/* 商品下拉超過30個--結束 */


/* = = = footer分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

.footer {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding-top: var(--pd80);
    
    /*background: 
        linear-gradient(
            to bottom, 
            rgba(238, 233, 224, 0.05) 0%, 
            rgba(44, 37, 32, 0.4) 30%, 
            rgba(26, 22, 19, 0.95) 100%    
        ),
        url(https://pic03.eapple.com.tw/hcartdeco/footer_bg.jpg) no-repeat;
    
    background-position: center center; 
    background-size: cover;*/
    background: url(https://pic03.eapple.com.tw/hcartdeco/index_blog_bg.png), 
    linear-gradient(to bottom, rgb(163 146 129 / 90%) 0%, rgb(163 146 129) 30%, rgb(163 146 129 / 94%) 100%);
}
/*
.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.18; 
    -webkit-animation: noise 30s steps(12) infinite;
    animation: noise 30s steps(12) infinite;
    height: 300%;
    left: -100%;
    top: -100%;
    width: 300%;
    background: url(https://pic03.eapple.com.tw/hcartdeco/noise.png);
}
*/
.footer .center {    max-width: 90%;}
.footer_info {
    grid-template-columns: 1fr 250px;
    gap: 35px;
}
.footer_logo {    order: 2;}
/*.footer_logo > a {
    background: url(https://pic03.eapple.com.tw/hcartdeco/fblogo.png) no-repeat;
    display: inline-block;
    width: 100%;
    height: 170px;
    background-size: contain;
    background-position: top right;
}
.footer_logo img{display: none;}*/
.footer_info ul {
    order: 1;
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-end;
}
.footer_info li:nth-child(1) {    padding-top: 20px;}
.footer_info li p, .footer_info li p a {
    color: var(--FixHomeScrollColor01);
    font-size: 13px;
    line-height: 2.2;
    transition: all .3s;
}

.footer_info li:nth-child(2) {
    border-bottom: 1px solid #3b393645;
    padding: 0;
}
.footer_menu a {
    background: transparent;
    border: none;
    color: var(--FixHomeScrollColor01);
    margin: 0;
    padding: 25px 10px;
    position: relative;
    font-size: 13px;
}
.footer_menu:hover > a {    opacity: 0.4; transition: all 0.3s;}
.footer_menu a:hover {
    opacity: 1;
    color: var(--text-main);
    background: transparent;
}

.footer_menu a:after {
    content: " ";
    position: absolute;
    left: 0;
    width: 0;
    height: 100%;
    height: 1px;
    top: auto;
    bottom: -1px;
    background-color: var(--text-main);
    transition-duration: 1.5s;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    -ms-transition-duration: 1.5s;
    -ms-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transition-duration: 1.5s;
    -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    -moz-transition-duration: 1.5s;
    -moz-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.footer_menu a:hover:after {
    width: 100%;
    right: auto;
    left: 0;
}

.box_link {
    max-width: max-content;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    left: 10px;
    top: 100%;
    gap: 5px;
}
.box_link a {
    font-size: 14px;
    color: var(--text-main);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #a3928124;
    transition: all .3s;
}
.box_link a:hover {
    background: var(--text-main);
    border-color: var(--text-main);
    color: var(--text-footer);
}
.copy {
    border: none;
    font-size: 10px;
    color: var(--text-footer);
    color: var(--text-hover_footer);
    padding: 30px 10px 50px;
    justify-content: flex-start;
    width: 90%;
    margin: auto;
    margin-top: 85px;
    opacity: .5;
}
.copy a {    color: var(--text-hover_footer);}
.copy a:hover {    color: var(--bg-primary);}

@keyframes noise {
0%, 100% {    background-position: 0 0;}
10% {    background-position: -5% -10%;}
20% {    background-position: -15% 5%;}
30% {    background-position: 7% -25%;}
40% {    background-position: 20% 25%;}
50% {    background-position: -25% 10%;}
60% {    background-position: 15% 5%;}
70% {    background-position: 0 15%;}
80% {    background-position: 25% 35%;}
90% {    background-position: -10% 10%;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 2025.12.26 中間放大*/
.BannerHome02 .swiper-slide-active img { transform: scale(1);}
.BannerHome02 .swiperBan02 .swiper-slide img { transition: transform 5s ease-out; will-change: transform; transform: scale(1);}
.BannerHome02 .swiperBan02 .swiper-slide-active img { transform: scale(1.06);}

/* = = = 大圖-分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*.bannerindex {    position: relative;    height: auto;}*/
.bannerindex .swiper-banner {
    position: static;
    margin: 0;
    height: auto;
}

/* ══════════════════════════════════════════
    共用偽元素
══════════════════════════════════════════ */
.pageIndex .bannerindex .swiper-slide.swiper-slide:before,
.pageIndex .bannerindex .swiper-slide.swiper-slide:after {
    content: ""; position: absolute; z-index: 999; pointer-events: none;    font-family: var(--SFont); font-weight: 200;
}

/* ==========================================================================
大圖1
   ========================================================================== */

    .pageIndex .bannerindex .swiper-slide:nth-child(1).swiper-slide::before {
    content: "∣專注住宅設計∣老屋翻新∣商業空間與辦公室規劃∣";
    position: absolute;
    top: clamp(8rem, 34vw, 68%); 
    left: 50%;
    white-space: pre-wrap;
    line-height: 2.2;
    text-align: center;
    -webkit-text-stroke: 0;
    font-size: var(--f18);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #ffffff;
    letter-spacing: 0.1rem;
    text-shadow: 0 2px 10px rgba(44, 37, 32, 0.4), 
                0 4px 20px rgba(44, 37, 32, 0.2);
    opacity: 0;
    transform: translate(-50%, 30px);
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), 
                opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}


.pageIndex .bannerindex .swiper-slide:nth-child(1).swiper-slide::after {
    content: "協助屋主完整格局規劃、預算控管與施工執行 \A \A  \A ∣Residential Interiors∣Old House Renovation∣Commercial Spaces∣Strategic Office Planning∣";
    position: absolute;
    bottom: clamp(2rem, 7.5vw, 170px);
    left: 50%;
    white-space: pre-wrap;
    font-family: var(--ff);
    font-size: 15px; 
    color: rgba(255, 255, 255, 0.85); 
    letter-spacing: 0.05em;
    line-height: 1.8;
    text-align: center;
    letter-spacing: 0.1rem;
    text-shadow: 0 2px 12px rgba(44, 37, 32, 0.5);

    opacity: 0;
    transform: translate(-50%, 50px);
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.3s, 
                opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.3s;
    width: 100%;
}

/* ==========================================================================
    大圖1-active
   ========================================================================== */
.pageIndex .bannerindex .swiper-slide-active:nth-child(1).swiper-slide::before,
.pageIndex .bannerindex .swiper-slide-active:nth-child(1).swiper-slide::after {
    opacity: 1;
    transform: translate(-50%, 0); 
}

/* ==========================================================================
    大圖2
   ========================================================================== */

.pageIndex .bannerindex .swiper-slide:nth-child(2).swiper-slide:before, .pageIndex .bannerindex .swiper-slide:nth-child(2).swiper-slide::after {
    left: 8%;
    width: 345px;
    top: 25.5%;
    height: clamp(130px, 29.5vw, 550px);
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
}

.pageIndex .bannerindex .swiper-slide:nth-child(2).swiper-slide:before {
    background: url(https://pic03.eapple.com.tw/hcartdeco/ban02_1.png) no-repeat;
    background-size: contain;
    background-position: left center;
}
.pageIndex .bannerindex .swiper-slide:nth-child(2).swiper-slide::after {
    background: url(https://pic03.eapple.com.tw/hcartdeco/ban02_2.png) no-repeat;
    background-size: contain;
    background-position: left center;
}

/* ==========================================================================
    大圖2-active
   ========================================================================== */
.pageIndex .bannerindex .swiper-slide:nth-child(2).swiper-slide-active::before {
    animation: revealFromLeft 1.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.3s;
}

.pageIndex .bannerindex .swiper-slide:nth-child(2).swiper-slide-active::after {
    animation: revealFromTop 2.3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.6s; 
}

/* ＝ Clip-Path 動畫 ======================== */
@keyframes revealFromLeft {
    0% {
        clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    }
    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

/* 由上至下 */
@keyframes revealFromTop {
    0% {
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }
    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

/* ==========================================================================
    手機板主標題調整
   ========================================================================== */

@media (max-width: 1680px) {
.pageIndex .bannerindex .swiper-slide-active:nth-child(1).swiper-slide::after {
    bottom: 14%; 
    line-height: 1.5;
}
}

@media (max-width: 1440px) {
.pageIndex .bannerindex .swiper-slide-active:nth-child(1).swiper-slide::after {
    bottom: 12%; 
}
.bannerindex .swiper-banner {    height: 100vh;}
}


@media (max-width: 1200px) {
    .pageIndex .bannerindex .swiper-slide-active:nth-child(1).swiper-slide::after {
        line-height: 1.1;
    }
}

@media (max-width: 1100px) {
.pageIndex .bannerindex .swiper-slide-active:nth-child(1).swiper-slide::before {
    font-size: 15px; 
    transform: translate(-50%, -15px);
}
.pageIndex .bannerindex .swiper-slide-active:nth-child(1).swiper-slide::after {
    line-height: 1.2;
    font-size: 13px;
    bottom: 14.5%; 
}
.pageIndex .bannerindex .swiper-slide:nth-child(2).swiper-slide:before, .pageIndex .bannerindex .swiper-slide:nth-child(2).swiper-slide::after {
    top: 34%;
    height: 40vw;
}
}

@media (max-width: 768px) {
    #content_main {        margin-top: 100vh;    }
    .bannerindex .swiper-banner .swiper-slide img {        height: 100vh;    }

    .bannerindex {
        position: fixed;
        padding-bottom: 100%;
    }
    .pageIndex .bannerindex .swiper-slide:nth-child(1).swiper-slide::before {
        top: 50%;
        width: 90%; 
        letter-spacing: 0.02em;
    }
    
    .pageIndex .bannerindex .swiper-slide:nth-child(1).swiper-slide::after {
        bottom: 25%; 
        font-size: 12px;
        width: 85%;
        line-height: 1; 
    }
    
    .pageIndex .bannerindex .swiper-slide-active:nth-child(1).swiper-slide::before,
    .pageIndex .bannerindex .swiper-slide-active:nth-child(1).swiper-slide::after {
        transform: translate(-50%, 0);
    }
    .pageIndex .bannerindex .swiper-slide:nth-child(2).swiper-slide:before, .pageIndex .bannerindex .swiper-slide:nth-child(2).swiper-slide::after {
    top: 25%;
    height: 60vw;
}
.bannerindex .swiper-banner .swiper-slide:nth-child(2) img {
    object-position: 5% center;
}

}

@media (max-width: 600px) {
    #content_main {        margin-top: 38vh;    }
    .bannerindex .swiper-banner {        height: 55vh;    }
    .bannerindex .swiper-banner .swiper-slide img {        height: 55vh;    }
    .bannerindex {        padding-bottom: 100%;    }
    .pageIndex .bannerindex .swiper-slide:nth-child(1).swiper-slide::before {        top: 50%;    }
    .pageIndex .bannerindex .swiper-slide:nth-child(1).swiper-slide::after {        bottom: 20%;     }

    .pageIndex .bannerindex .swiper-slide:nth-child(2).swiper-slide:before, .pageIndex .bannerindex .swiper-slide:nth-child(2).swiper-slide::after {
        top: 32%;
        height: 50vw;
    }
    .pageIndex .bannerindex .swiper-slide:nth-child(2).swiper-slide:before {
    background: url(https://pic03.eapple.com.tw/hcartdeco/ban02_1-ph.png) no-repeat;
    background-size: contain;
    background-position: left center;
}
.pageIndex .bannerindex .swiper-slide:nth-child(2).swiper-slide::after {
    background: url(https://pic03.eapple.com.tw/hcartdeco/ban02_2-ph.png) no-repeat;
    background-size: contain;
    background-position: left center;
}
}
@media (max-width: 480px) {
    #content_main {        margin-top: 23vh;    }
    .pageIndex .bannerindex .swiper-slide:nth-child(1).swiper-slide::before {
        top: 40%;
        width: 90%;
        line-height: 1.4;
        font-size: 14px;
        letter-spacing: 0;
    }
    .pageIndex .bannerindex .swiper-slide:nth-child(1).swiper-slide::after {
        bottom: 38%;
        width: 90%;
        font-size: 11.5px;
    }

}

/*切換鈕
.bannerindex {--swiper-pagination-color: #fff;}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction
{bottom: auto;top: 50%;left: 2vw;width: 25px;transform: translateY(-50%)}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet
{margin: 5px 10px;width: 5px;height: 15px;border-radius: 2px;}
*/

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
    color: #fff;
    height: clamp(300px, 34vw, 620px);
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(https://pic03.eapple.com.tw/hcartdeco/ban.jpg) no-repeat;
    background-size: cover;
    background-position: top center;
    z-index: 0;
    will-change: transform;
    animation: breathing 20s ease-in-out infinite;
}

@keyframes breathing {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); } 
}

.banner h5 {
    font-family: var(--ff);
    position: relative;
    color: transparent;
}

.banner.banA {}
.banner.banB {}
.banner.banC {}
.banner.banD {}
.banner.banE {}
.banner.banblog::before {background: url(https://pic03.eapple.com.tw/hcartdeco/ban-blog.jpg) no-repeat center;}
.banner.banDesign, .banner.banDesign_c { background-color:#333; display: none;}



/* = = = 聯絡我們 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

.contact_content {
    max-width: 1600px;
    margin: auto;
    text-align: center;
}
.contact_content .information_left {    display: none;}
.contact_content .information_right {
    width: 95%;
    padding: 80px 20px;
    text-align: center;
}
.last .animated-arrow.otherSty {
    color: var(--SubColor);
    background: transparent;
    border: 1px solid var(--SubColor);
    border-radius: 25px;
    justify-content: center;
}

.contact_form li.last b {    padding: 0;}

.last .animated-arrow {
    background: var(--SubColor);
    border: 1px solid var(--SubColor);
    border-radius: 25px;
    color: var(--bg-primary);
    justify-content: center;
}
.last .animated-arrow:after {    background: var(--bg-primary);}
.last .animated-arrow.otherSty:after {    background: var(--SubColor);}
button.animated-arrow.otherSty.slowAnimation b {    color: var(--SubColor);}
button.animated-arrow.slowAnimation b {    color:var(--bg-primary);}

.last .animated-arrow.otherSty:hover b {    color: var(--bg-primary);}
.last .animated-arrow:hover b {    color: var(--SubColor);}
.last .animated-arrow:hover i.fa-solid.fa-arrow-right {    color: var(--SubColor);}

/*表單*/
.blank_letter {
    font-size: var(--f20);
    font-family: var(--SFont);
    color: var(--text-main);
    font-weight: 500;
}
.contact_form li input.noborder {    border: none;}
.contact_form li textarea.noborder {    border: none;}

.contact_form li {
    border-bottom: 1px #b0946a3d solid;
    padding: 12px 0;
    grid-template-columns: 125px 1fr;
}
.list_before.info li {    color: var(--text-main);}
.contact_form li:has(input[type=checkbox]) .form__insert, .contact_form li:has(input[type=radio]) .form__insert {
    grid-gap: 6px;
    grid-template-columns: repeat(5, 15px 1fr);
    justify-items: start;
}


.contact_form li .form__label {
    color: var(--text-main);
    max-width: 120px;
    text-align: left;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}
.contact_form li.last blockquote, .contact_form li.last cite {
    margin: 0 7px;
    border: 2px solid var(--SubColor03);
    position: relative;
    overflow: hidden;
    max-width: 200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate3d(0px, 0%, 0px);
    transition-delay: 0.6s;
}

.contact_form li.last cite:hover, .contact_form li.last blockquote:hover {
    border: 2px solid var(--MainColor);
}
.contact_form li.last blockquote {    color: var(--text-main);}
.contact_form li.last cite {    background: var(--SubColor03);}
.contact_form li.last blockquote:hover input {    color: #fff;}
.contact_form li.last input, .contact_form li.last i.fa-solid.fa-arrow-right {
    position: relative;
    z-index: 2;
}
.contact_form li.last cite:before, .contact_form li.last cite:after, .contact_form li.last blockquote:before, .contact_form li.last blockquote:after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    transition: all 0.6s ease;
}
.contact_form li.last cite:before, .contact_form li.last blockquote:before {
    background: var(--MainColor);
    transform: translateX(-100%) scaleX(0.5);
}
.contact_form li.last blockquote:after {    background: transparent;}
.contact_form li.last cite:hover:before, .contact_form li.last blockquote:hover:before {
    border-radius: 0;
    transform: translateY(0) scaleY(1);
    transition-delay: 0;
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*作品首頁*/
.module_i_projects {
    padding: var(--pd100) 5%;
    background: var(--bg-primary);
}
.module_i_projects .title_i_box {
    display: flex;
    justify-content: center;
    flex-direction: column-reverse;
}
.module_i_projects .title_i_box h6 {
    font-size: var(--f20);
    color: var(--text-main);
    font-weight: 500;
    line-height: 1.1;
}
.module_i_projects .title_i_box h4 {
    font-size: var(--f36);
    color: var(--SubColor);
    font-weight: 500;
    font-family: var(--SFontEN);
}

.ProjSwiper li > a {    padding: 0 0 70%;}
.ProjSwiper li img {
    top: 50%;
    transform: translate(-50%, -50%) scale(1.1);
}
.ProjSwiper li > a:hover img {
    transform: translate(-50%, -50%) scale(1.2);
}

.ProjSwiper li > a:after {
    background: #a3928178;
    backdrop-filter: blur(8px) sepia(0%);
}
.ProjSwiper li > a:hover:after {    background: #a392813b;}
.ProjSwiper li section h6 {    font-weight: 400;}
.ProjSwiper li section h6 strong {
    color: var(--bg-primary);
    font-weight: 300;
}

/*按鈕*/
.animated-arrow {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    background: transparent;
    color: var(--SubColor);
    border: none;
    height: 40px;
    margin-top: 45px;
    position: relative;
    width: 200px;
    justify-content: space-between;
    transition: all 500ms ease;
}
.animated-arrow b {
    font-weight: 500;
    color: var(--SubColor);
    padding-right: 30px;
    z-index: 1;
    position: relative;
}
.module_i_projects .i_projects_b a i.fa-solid.fa-arrow-right, .i_blog_b a i.fa-solid.fa-arrow-right {
    background: var(--SubColor);
    padding: 11px 33px;
    border-radius: 25px;
    color: var(--bg-secondary);
    z-index: 1;
    margin: 0;
}
.module_i_projects .i_projects_b a:hover i.fa-solid.fa-arrow-right, .i_blog_b a:hover i.fa-solid.fa-arrow-right {    margin: 0;}
.animated-arrow:after {
    content: "";
    background: var(--SubColor);
    width: 0;
    position: absolute;
    height: 100%;
    z-index: 0;
    border-radius: 25px;
    transition: all 500ms ease;
    left: 0;
}
.animated-arrow:hover b {    color: #fff;}
.animated-arrow:hover:after {    width: 100%;}

/*設計作品管理*/
.StoreProjsList {
    padding: var(--pd80) 60px;
    padding-top: var(--pd200);
}
.projsTabs li {    padding: 10px;}
.projsTabs li a, .projsTabs li.Now a {
    color: var(--text-main);
    font-size: var(--f16);
    font-weight: 500;
    border-bottom: 1px solid #2b221a2b;
    padding: 5px 10px;
}
.projsTabs li.Now a { border-bottom: 1px solid var(--text-main);}
.StoreProjs_Post li {
    border: none;
    background: transparent;
}
.StoreProjs_Post li > a:hover:after {
    background: #2b292796;
}

.StoreProjs_Post li section h6 strong {
    font-weight: 300;
    letter-spacing: .1rem;
}

.StoreProjs_Post li h4 {
    color: var(--text-main);
    font-weight: 400;
}

.StoreProjs_Post li img {
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
    filter: saturate(.6);
    -webkit-mask-image: linear-gradient(90deg, #f4f0ec 0, #f4f0ec 50%, transparent 100%);
    mask-image: linear-gradient(90deg, #f4f0ec 0, #f4f0ec 50%, transparent 100%);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 200% 100%;
    mask-size: 200% 100%;
    -webkit-mask-position: 200% 0;
    mask-position: 200% 0;
    animation: 2s cubic-bezier(0.65, 0.05, 0.36, 1) 0s 1 normal forwards maskFadeIn;
}
.StoreProjs_Post li > a:hover img {
    transform: translate(-50%, -50%) scale(0.8);
}

/*scroll*/
#Projs_scroll_down a em {    border: 1px solid #be996b29;    background: #be996b2e;}
#Projs_scroll_down a em::before {    background: var(--MainColor);}
#Projs_scroll_down a span:before {    color: var(--ENTitleColor);}

/*scroll箭頭*/
#Projs_scroll_down a i {    margin: 5px 0 13px;}
#Projs_scroll_down a i:before, #Projs_scroll_down a i:after {    background: var(--ENTitleColor);}


/*設計作品管理-內頁*/
.projects_detaild_page {
    padding-top: var(--header-top);
}

.StoreProjsDetail {    width: 95%;}
.ProjsDetail_Title p {
    color: var(--color-stone);
    font-size: 13px;
}
.ProjsDetail_Title p a {
    background: transparent;
    width: 30px;
    border-radius: 0;
    height: 25px;
    color: var(--SubColor);
}
.ProjsDetail_Title p a.Btn_Share_FB {    width: 15px;}

.ProjsDetail_Title p a::before {
    background: transparent;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
    transition: all .5s;
}
.ProjsDetail_Title p a.Btn_Share_FB::before {    content: "FB";}
.ProjsDetail_Title p a.Btn_Share_LINE::before {    content: "LINE";}
.ProjsDetail_Title p a:hover:before {
    color: var(--text-hover_footer);
}

.ProjsDetail_Title p span {    background: #2b221a30;    height: 15px;} /*分享∣*/

.ProjsDetail_Title h4 {
    font-size: var(--f24);
    color: var(--text-main);
    font-weight: 400;
    font-family: var(--SFont);
}
.ProjsDetail_Intro h6 strong, .ProjsDetail_Intro h6 {
    color: var(--text-main);
    font-weight: 300;
    font-size: 14px;
}

/*設計作品管理-內頁圖片*/
.ProjsDetail_Viewpoint {    height: calc(100dvh - var(--top-total) - 230px);}

/*設計作品-scroll bar*/
.ProjsDetail_Viewpoint {
    scrollbar-color: rgba(168, 159, 145, 0.4) transparent; /* 滾動條滑塊顏色、軌道背景色 */
    scrollbar-width: thin; 
}
.ProjsDetail_Viewpoint::-webkit-scrollbar {    width: 2px; }

/* 定義滾動條的軌道（背景） */
.ProjsDetail_Viewpoint::-webkit-scrollbar-track {    background: transparent; }

/* 滾動條的滑塊 */
.ProjsDetail_Viewpoint::-webkit-scrollbar-thumb {
    background-color: rgba(168, 159, 145, 0.3);
    border-radius: 10px; 
    transition: background-color 0.3s ease;
}

/* 滾動條（Hover） */
.ProjsDetail_Viewpoint::-webkit-scrollbar-thumb:hover {
    background-color: rgba(168, 159, 145, 0.6); 
}

.ProjsDetail_ImgView {    padding: 0;}
.ProjsDetail_ImgView ul li:first-child {    padding-top: 0;}
.ProjsDetail_Bottom {    background: transparent; padding: 40PX 0; }
.ProjsDetail_Bottom a {    font-weight: 400;}

.ProjsDetail_Bottom a.ProjsBtn_Next {    background: var(--SubColor);}
.ProjsDetail_Bottom a.ProjsBtn_Prev, .ProjsDetail_Bottom a.ProjsBtn_Back {
    background: #a3928185;
    color: var(--text-main);
}

.ProjsDetail_ImgView ul li a {    overflow: hidden;}
.ProjsDetail_ImgView ul li a:hover:before {opacity: 1;}
.ProjsDetail_ImgView ul li a:hover img {    transition: all .5s;}
.ProjsDetail_Viewpoint {
    color: var(--text-main);
    font-size: 14px;
    font-weight: 400;
    padding-right: 20px;
}

.ProjsDetail_ImgView li img {    transform: scale(1);    transition: all .5s; }
.ProjsDetail_ImgView ul li a:hover img {    transform: scale(1.1);}

/*設計作品管理-內頁-相關*/
.ProjsDetail_OtherObjs {
    width: 90%;
    max-width: 1700px;
}
.ProjsDetail_OtherObjs > h6:after {
    width: 100%;
    background: var(--MainColor);
}
.ProjsDetail_OtherObjs li h6 {    color: var(--MainColor);}
.ProjsDetail_OtherObjs li h6:before {    background: var(--MainColor);}
.ProjsDetail_OtherObjs li h6:after {    width: 100%;    background: #be996b73;}
.ProjsDetail_OtherObjs li > a {    padding: 0 0 235px;}

@media screen and (max-width: 1024px) {
.ProjsDetail_info_2_5 {        padding: 20px 30px;    }
.ProjsDetail_info_3_5 {        padding: 20px 40px;    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2025.12.18  */
.product_page .main_part { max-width:1500px;}

.product_page .show_content,
.product_info_page .show_content { display: flex; justify-content: space-between; flex-wrap: wrap; align-items: flex-start; align-content: flex-start; width: 100%;}
ul.page { width: 100%;}

.ProdFilter_Item_Show { width: 100%;}
.Prods_Menulists { width: 100%; padding: 0;}
.Prods_Wrap { width: calc(100% - 270px);}

/* 篩選器-左手邊 / 產品分類-上面*/
.ProdFilter_ { order: 2;}
.Prods_Menulists { order: 1;}
.Prods_Wrap { order: 3;}
.ProdFilter_ { width: 250px; letter-spacing: 1px;}
.ProdFilter_ li { width: 100%;}
.ProdFilter_ li > a { background: #f3f3f3; border: none; border-bottom: 3px #ddd solid;}
.ProdFilter_ dl { position: static; width: 100%; display: block;}

/* 產品分類-左手邊 / 篩選器-上面 
.ProdFilter_ { order: 1; margin-bottom: 25px;}
.Prods_Menulists { order: 2;}
.Prods_Wrap { order: 3;}
.Prods_Menulists { width: 250px; letter-spacing: 1px;}
.Prods_Menulists ul {}
.Prods_Menulists > ul > li { width: 100%; flex-wrap: wrap;}
.Prods_Menulists ul ul { position: static; border: none;}
.Prods_Menulists ul li ul li {}
.Prods_Menulists li.has-sub.open > a { background: #f0f0f0;}

.product_info_page .half_box { width: 100%; float: none; padding-right: 0;}
.product_info_page .half_box li.btn_blankTop { margin-top: 50px; justify-content: space-between; display: flex;}
.product_info_page .half_box li.btn_blankTop input { width: calc(50% - 10px); background-image: none; padding: 0; text-align: center;}
*/

/*購物車-版面調整*/
.Prods_Menulists ul {
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2vw;
    gap: 10px;
}
.Prods_Wrap {    width: 100%;}
.Prods_Menulists > ul > li {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--MainColor);
}
.Prods_Menulists li a {    color: var(--text-muted);}
.Prods_Menulists li a:hover {
    background: var(--SubColor);
    color: var(--bg-primary);
}

.Prods_Menulists > ul > li.active > a {    background: var(--SubColor);}

.Prods_path {    margin-bottom: 40px;    font-size: 14px; justify-content: flex-end;}
.Prods_path dd {    justify-content: flex-end;}
.Prods_path dd > a:hover {    color: var(--bg-dark);    font-weight: bold;}
.Prods_path dd > a {
    font-size: 14px;
    color: var(--SubColor);
    padding: 0 5px;
}

.Prods_lists ul {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 35px;
}

.Pd_ViewThunbs {
    aspect-ratio: 3 / 2;
    padding: 0 0 70%;
    overflow: hidden;
}
.Prods_Wrap .Prods_lists dl.State {
    height: auto;
    padding: 5px 20px;
}
dl.State h5 {
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 5px;
}
dl.State .MoreDets {
    /* display: none; */
    top: 5px;
    opacity: 0;
}/*詳細資料*/

.Pd_ViewThunbs.show-main .Pd_ImgMain {
    width: 110%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    filter: grayscale(0.5);
    transition: all .5s;
}

.Pd_ViewThunbs.show-main .Pd_ImgMain:hover {
    transform: translate(-50%, -50%) scale(1.1);
    filter: grayscale(0);
}

.Pd_ViewThunbs img {
    filter: saturate(.6);
    -webkit-mask-image: linear-gradient(90deg, #f4f0ec 0, #f4f0ec 50%, transparent 100%);
    mask-image: linear-gradient(90deg, #f4f0ec 0, #f4f0ec 50%, transparent 100%);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 200% 100%;
    mask-size: 200% 100%;
    -webkit-mask-position: 200% 0;
    mask-position: 200% 0;
    animation: 2s cubic-bezier(0.65, 0.05, 0.36, 1) 0s 1 normal forwards maskFadeIn;
}
@keyframes maskFadeIn {
    0% {
        -webkit-mask-position: 200% 0;
        mask-position: 200% 0
    }

    100% {
        -webkit-mask-position: 0 0;
        mask-position: 0 0
    }
}

/*購物車-內頁*/
.product_main {    display: none;}
.pd_tabTitle li {    display: none;}  /*商品資訊bar*/
.sidebarBtn {
    width: 100%;
    background: transparent;
    border: none;
    padding: 0;
}

.product_info {    display: none;}
.sidebarBtn .Pd_Line_Boxed {    display: none;}
.prod_tabs {    margin-top: 20px;}
.sidebarBtn h2 {
    font-size: var(--f28);
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 8px;
}

/*相關推薦*/
.prod_related {
    padding: 60px 20px;
    background-color: var(--SubColor);
}
.prod_related h6 {    margin-bottom: 30px;}
.prod_related h6 span:before {
    font-size: var(--f24);
    color: var(--titlecolor);
}
.related_list li a {
    padding: 11px;
    background: var(--SubColor);
    box-shadow: #f1b1b130 0px 10px 50px;
}


@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 1024px) {
.product_main { display: block; width: 100%;}    
.sidebarBtn { display: block; width: 100%;}
}
@media screen and (max-width: 980px) {
}
@media screen and (max-width: 768px) {
/* 篩選器-左手邊 / 產品分類-上面
.Prods_Wrap { width: 100%;}
.ProdFilter_ { width: 100%;}
.ProdFilter_Item_Show { width: calc(100% - 110px);}
.ProdFilter_ { order: 1;}
.Prods_Menulists { order: 2;}
.ProdFilter_ li > a span { color: #333;}
*/

.Prods_Wrap { width: 100%; margin-top: 20px;}
.ProdFilter_ { width: 100%;}
.Prods_Menulists { opacity: 0; display: none;}

}
@media screen and (max-width: 480px) {
    .ProjsDetail_ImgView ul li a {
        padding: 0 0 100px;
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*文章首頁*/
.module_i_news {
    padding: var(--pd100) 20px;
    /*backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);*/
    background: url(https://pic03.eapple.com.tw/hcartdeco/index_blog_bg.png), linear-gradient(to bottom, rgb(249 247 244) 0%, rgb(249 247 244) 30%, rgb(249 247 244) 100%);
}
.module_i_news section {    max-width: 1400px;}
.module_i_news .title_i_box {
    display: flex;
    justify-content: center;
    flex-direction: column-reverse;
}
.module_i_news .title_i_box h6 {
    font-size: var(--f22);
    /* color: var(--text-main); */
    line-height: 1;
    color: var(--bg-secondary);
    letter-spacing: 2px;
    font-weight: 400;
}
.module_i_news .title_i_box h4 {
    font-size: var(--f48);
    /* color: var(--SubColor); */
    font-family: var(--SFontEN);
    color: var(--MainColor);
}
.i_blog_b {    display: flex;    justify-content: center;}

.module_i_news ul {    grid-template-columns: repeat(4, 1fr);}
.module_i_news li {    background: #fff; box-shadow: 0 9px 49px 3px rgba(140, 140, 140, .1); }
.module_i_news li a {    grid-template-columns: 1fr;}
.module_i_news li a:before {
    font-family: var(--SFontEN);
    letter-spacing: 0;
    color: var(--text-muted);
    right: 25px;
    bottom: 8px;
    opacity: 1;
}
.module_i_news li a:hover:before{    color: var(--SubColor);}

.module_i_news li a:after {
    background: transparent;
    border: none;
    bottom: 10px;
    height: 1px;
    top: 97%;
    border-bottom: 1px dashed var(--SubColor);
    width: 0;
    left: 25px;
}
.module_i_news li a:hover:after {
    opacity: 1;
    transition: all .5s;
    width: 50%;
}

.i_blog_ri {    padding: 0 20px 40px;}
.i_blog_ri h5 {
    color: var(--text-main);
    -webkit-line-clamp: 2;
    font-size: var(--f18);
    transition: all .3s;
}
.module_i_news li a:hover .i_blog_ri h5 {color: var(--SubColor);}
.i_blog_ri p {
    height: 80px;
    color: var(--text-muted);
    transition: all .3s;
}
.module_i_news li a:hover .i_blog_ri p {
    color: var(--bg-dark);
}

/*文章-按鈕*/
.i_blog_b .animated-arrow:hover b {    color: var(--bg-secondary);}


/*文章設定*/
/*一排呈現*/
.blog_subbox {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
}
.subbox_item a {
    grid-template-columns: 1fr;
    grid-gap: 5px;
    -webkit-box-shadow: 4vw 4vw 4vw -3vw rgb(140 125 111 / 30%);
    box-shadow: 4vw 4vw 4vw -3vw rgb(140 125 111 / 30%);
}
.blog_page.article_a .main_part {    max-width: 1600px;}
.subbox_item a::before {
    font-family: var(--SFontEN);
    letter-spacing: 0;
    color: var(--text-muted);
    right: 25px;
    bottom: 18px;
    opacity: 1;
}
.subbox_item a:after {
    background: transparent;
    border: none;
    bottom: 10px;
    height: 1px;
    top: 95%;
    border-bottom: 1px dashed var(--SubColor);
    width: 0;
    left: 25px;
}
.subbox_item a:hover:before{    color: var(--SubColor);}
.subbox_item a:hover:after {
    opacity: 1;
    transition: all .5s;
    width: 60%;
}
.blog_list_le {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.blog_list_ri {
    display: block;
    height: 220px;
    padding: 20px 7% 55px;
    transition: transform .6s cubic-bezier(.215, .61, .355, 1), opacity .6s linear, -webkit-transform .6s cubic-bezier(.215, .61, .355, 1);
}

.blog_list_le img {
    transform: scale(1);
    transition: transform 1500ms cubic-bezier(0.19, 1, 0.22, 1);
}
.subbox_item a:hover .blog_list_le img {    transform: scale(1.3);}
.blog_list_ri h5 { 
    color: var(--text-main);
    font-size: var(--f18);
    transition: all .3s;
}
.subbox_item a:hover .blog_list_ri h5 {color: var(--SubColor);}
.blog_list_ri p {     color: var(--text-muted);    transition: all .3s;}
.subbox_item a:hover .i_blog_ri p {    color: var(--bg-dark);}
/*
.blog_list_ri:before {
    content: "MORE";
    position: absolute;
    bottom: 20px;
    left: 8.3%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100px;
    height: 40px;
    font-family: var(--SFont);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    border-bottom: 1px solid var(--color-stone);
    transition: .6s cubic-bezier(.215, .61, .355, 1);
    padding-left: 6px;
    color: var(--color-stone);
}
.blog_list_ri:after {
    content: "→";
    position: absolute;
    bottom: 20px;
    left: 8.3%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100px;
    height: 40px;
    font-family: var(--SFont);
    font-size: 12px;
    font-weight: 700;
    transition: .6s cubic-bezier(.215, .61, .355, 1);
    padding-right: 6px;
}
.subbox_item a:hover .blog_list_ri:before, .subbox_item a:hover .blog_list_ri:after {    width: 120px;}
*/


/*文章-側邊選單*/
.blog_le {
    position: sticky;
    top: var(--header-top);
}
h5.blog_le_t {
    font-size: var(--f22);
    color: var(--text-main);
    line-height: 1;
    font-weight: 400;
    margin-bottom: 20px;
}
h5.blog_le_t em {
    font-size: var(--f36);
    color: var(--SubColor);
    font-weight: 500;
    font-family: var(--SFontEN);
    display: block;
    line-height: 1.2;
}
.blog_search input[type=search] {
    border: none;
    border-radius: 0;
}
.blog_le .accordion {
    border: none;
    border-radius: 0;
}
.accordion li .link a {
    color: var(--text-main);
    font-weight: 500;
    font-size: 15px;
}
.accordion li+li .link {    border-top: none;}
.blog_le .accordion li .link:last-child:before {
    content: " ";
    width: 100%;
    height: 1px;
    background: #d1c4b29c;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 0.2s;
}
.blog_le .accordion li .link:last-child:hover:before {
    animation-name: line_move;
    animation-duration: 0.5s;
    background: var(--SubColor);
}
@keyframes line_move{
    30%{left:100%;width:0}
    40%{width:0;left:0}
    100%{left:0;width:100%}
}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {    background: #fff3da00 !important;}
.blog_le .accordion > li:hover .link a, .blog_le .accordion > li.on_this_category .link a {    color: var(--SubColor) !important;}
/**/


/*文章-內頁*/
h4.blog_category_title {
    color: var(--text-main);
    font-size: var(--f28);
    font-weight: 500;
}
.articel_mainPic img{display: none;}

/*文章-相關推薦*/
.news_related {
    padding: var(--pd80) 15px;
    margin-top: 50px;
    background: var(--bg-secondary);
    background: url(https://pic03.eapple.com.tw/hcartdeco/blog_bg.jpg) no-repeat;
    background-position: bottom center;
}
.news_related h6{    margin-bottom: 30px;}
.news_related h6 span:before {
    font-size: var(--f24);
    color: var(--SubColor);
    font-weight: 400;
}
.news_related_list li > a {
    padding: 11px;
    background: var(--bgwhite);
    box-shadow: #c5a58575 0px 10px 50px;
}

.news_related_list li > a p {
    color: var(--text-main);
    line-height: 1.5;
    text-align: left;
    padding-top: 8px;
}
.lastPage {
    background: var(--SubColor);
    border-radius: 30px;
}

.blog_back a.article_btn_back {    background: var(--SubColor);}
.blog_back a.article_btn_next {    background: var(--bg-dark);}
.blog_back a.article_btn_prev {    background: var(--bg-dark);}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

.show-list, .pic-list {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}

.show-list .show_pic img, .pic-list .show_pic img {
    transition: transform 1500ms cubic-bezier(0.19, 1, 0.22, 1);
    transform: scale(1);
}
.show-list .item a:hover .show_pic img, .pic-list .item a:hover .show_pic img  {
    transform: scale(1.2);
}

/*相本分類全版面 ( 限制最寬2000px
.work_page .main_part { max-width:2000px;}
.work_page .show_content { padding:0; width:100%;}
.work_page .show-list .item { width:33%; display:inline-block; float:none; margin:0; padding:0;}
@media screen and (max-width: 768px) {
.work_page .show-list .item { width:49%;}
}
@media screen and (max-width: 570px) {
.work_page .show-list .item { width:100%;}
}
.work_page .show-list .item a { max-width:100%;}
.work_page .show-list .show_pic { height:auto; line-height:0;}
.work_page .show-list .show_pic img { max-width:100%; max-height:100%;}
.work_page .show-list .show_name { position:absolute; top:50%; right:10%; width:80%; height:auto; line-height:160%; font-size: 20px; color: #FFFFFF !important; border: solid 1px #fff; text-align: center; margin: -20px 0 0 -120px; padding:5px 20px; transition:all ease-in .3s; opacity:0;}
.work_page .show-list .item:hover .show_name {opacity:1;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本列表
.work_info_page .main_part { max-width:2000px;}
.work_info_page .show_content { padding:0; width:100%;}
.work_info_page .subalbum-menu { text-align:center;}
.work_info_page .subalbum-menu h2 { float:none;}
.work_info_page .pic-list .item { margin:0; padding:10px; width:49%; float:none; display:inline-block;}
@media screen and (max-width: 768px) {
.work_info_page .pic-list .item { width:100%;}
}
.work_info_page .pic-list .show_pic { height:auto; line-height:0;}
.work_info_page .pic-list .show_pic img { max-width:100%; max-height:100%;}
.work_info_page .pic-list .item a { max-width:100%; pointer-events: none; cursor: default; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

@media (max-width:1024px) {
    :root {
        --f54: 48px;
        --f48: 40px;
        --f42: 38px;
        --f40: 36px;
        --f36: 32px;
        --f32: 28px;
        --f28: 24px;
        --f24: 22px;
        --f22: 20px;
        --pd80:60px;
    }
    .blog_subbox {    grid-template-columns: repeat(2, 1fr);}

    /*聯絡我們表單*/
    .contact_form li:has(input[type=checkbox]) .form__insert, .contact_form li:has(input[type=radio]) .form__insert {    text-align: left;}
.contact_form li:has(input[type=checkbox]) .form__insert, .contact_form li:has(input[type=radio]) .form__insert {
    grid-template-columns: repeat(4, 15px 1fr);
}

}



@media screen and (max-width: 768px) {
    :root {
        --f54: 36px;
        --f48: 32px;
        --f42: 30px;
        --f40: 28px;
        --f36: 26px;
        --f32: 24px;
        --f28: 20px;
        --f24: 20px;
        --f20: 18px;
        --f18: 17px;
        --f17: 16px;
        --pd200: clamp(60px, 10vw, 200px);
    }
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu {}
.footer.with_shopping_mode { padding:50px 0 70px; }
#to_top { bottom:60px;}
.box_link {display: none;}
.copy {    margin-top: 50px;}
.footer_menu a {    padding: 15px 10px;}
.footer_info li:nth-child(2) {    border-bottom: none;}

.header_area {    position: sticky;}
.header_area.sticky {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.main_header_area .container {    padding: 0 10px;}

/*漢堡選單*/
    .stellarnav.mobile {
        top: 8px;
        right: 0;
        left: unset;
    }
    .stellarnav.mobile.left > ul {
    left: unset;
    right: 0;
}
.stellarnav .menu-toggle:after {    color: var(--bg-dark);}
.stellarnav .menu-toggle span.bars span {    background: var(--bg-dark);}
.stellarnav.mobile.left > ul {    border: none;}
.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {    background: var(--MainColor); color: #fff;}
.stellarnav .icon-close:before, .stellarnav .icon-close:after {    border-bottom: solid 2px #ffffff;}
.stellarnav a.dd-toggle .icon-plus:before, .stellarnav a.dd-toggle .icon-plus:after {    border-bottom: solid 2px var(--text-main);}/*下拉關掉*/
.stellarnav.mobile li.open {    background:#f3f3f3;} /*下拉*/
.stellarnav > ul > li > a {        color: var(--text-main);    }
.stellarnav li li > a, .stellarnav li li.has-sub > a {    color: var(--bg-dark);}
.stellarnav > ul > li:hover > a {    color: var(--bg-dark);}

/*聯絡我們表單*/
.contact_form li:has(input[type=checkbox]) .form__insert, .contact_form li:has(input[type=radio]) .form__insert {
        grid-template-columns: repeat(2, 15px 1fr);
    }

/*文章*/
.blog_le {    position: unset;}
.module_i_news ul {    grid-template-columns: repeat(2, 1fr);}
}


@media (max-width:600px) {
    :root {
        --f54: 32px;
        --f48: 28px;
        --f42: 26px;
        --f40: 24px;
        --f36: 22px;
        --f32: 20px;
        --f28: 18px;
        --f24: 18px;
        --f22: 18px;
        --f20: 17px;
        --f18: 16px;
        --f17: 15px;
        --f16: 15px;
        --pd80:40px;
    }
    .footer_info {    grid-template-columns: 1fr;}
    .footer_logo {    order: 1;}
    .footer_logo > a {    height: 130px;    background-position: left;}
    .footer_info ul {    flex-direction: column;}
    .footer_info li:nth-child(1) {    padding-top: 0;}
    .footer_info li+li {                margin-top: 0;            }
    .footer_menu a {    padding: 10px;}
        .copy {
        margin-top: 30px;
        justify-content: center;
        padding: 10px;
    }

    body.pageIndex.bodyMobile div#page {    background: #f9f1e4;}

    ul.show-list, .pic-list {    grid-template-columns: 1fr;}
    .module_i_news ul, .blog_subbox  {    grid-template-columns: 1fr;}
    .StoreProjsList {    padding: 30px;}

    /*聯絡我們表單*/
    .contact_form li {        padding: 4px 0;        grid-template-columns: 1fr;    }
    .contact_form li .form__label {                    background: transparent;       max-width: 135px;         }
    .contact_form li:has(input[type=checkbox]) .form__insert, .contact_form li:has(input[type=radio]) .form__insert {
        grid-template-columns: repeat(1, 15px 1fr);
    }

}

@media (max-width:375px) {
    :root {
        --f54: 28px;
        --f48: 24px;
        --f42: 22px;
        --f40: 20px;
        --f36: 18px;
        --f32: 18px;
        --f28: 17px;
        --f24: 17px;
        --f22: 17px;
        --f20: 16px;
        --f18: 15px;
    }
}
