@charset "utf-8";

/*
關於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;}
*/


/*上方選單右邊設定 臉書/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}
*/


#content_main,#content{
    background-color:#F5F3F0;
}

/*Logo/＝＝＝＝＝*/
.nav-brand {width: 100%;max-width: 90px;transition:all 0.3s;}
.header_area .nav-brand {
    transition: all 0.3s;
    margin-top: 5px;
    /* filter: invert(100%) brightness(1000%); */
}

.nav-header {max-width: 180px;}
.header_area.sticky .nav-header{display:none;}

/* 使用白色 logo */
.pageIndex .header_area:not(.sticky) .nav-brand img {
    content: url('https://pic03.eapple.com.tw/thinkingdesign/LOGO_white-01.png');
}
/* .pageIndex .header_area.sticky .nav-brand img {
    content: url('https://pic03.eapple.com.tw/thinkingdesign/LOGO_white-01.png');
    max-width: 110px;
    transition:all 0.3s;
} */

/*Footer Logo/＝＝＝＝＝*/
/* .footer_logo img {
    content: url('https://pic03.eapple.com.tw/thinkingdesign/LOGO_white-01.png');
} */

@media screen and (max-width: 768px) {
    .pageIndex .header_area:not(.sticky) .nav-brand img {
    content: unset;
}
.header_area.sticky .navigation{padding:0;}
.header_area.sticky  .main_header_area .container{height:0;}
.stellarnav.mobile{padding:15px;}
    
.header_area.sticky .stellarnav.mobile{background: #A64D38;border-radius: 0 0 15px;}
.stellarnav .menu-toggle span.bars span{width: 30px;margin: 0 auto 6px;}
.header_area.sticky .stellarnav .menu-toggle span.bars span{background: #fff;}
.header_area.sticky .stellarnav .menu-toggle:after{color: #fff;}
    
.header_area.sticky .stellarnav > ul > li:before{display:none;}

}

/*Main/＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/*Slogan/＝＝＝＝＝*/
/* 英文主標 */
.bannerindex::after{
    content: "Inspired by the details of \A Everyday Living";
    white-space: pre-line;
    position: absolute;
    left: 8%;
    bottom: 22%;
    z-index: 999;
    color: #ffffff;
    font-size: 32px;
    line-height: 1.3;
    letter-spacing: 2px;
    font-weight: 300;
    font-family: "Cormorant Garamond", serif;
    text-align: left;
    max-width: 700px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s ease-out forwards;
    animation-delay: 0.4s;
    text-shadow: 0 2px 10px rgba(0,0,0,.38);
    pointer-events: none;
}

/* 中文副標 */
.bannerindex::before{
    content: "設計源於生活的細節，凝聚成最真實的體現";
    position: absolute;
    left: 8%;
    bottom: 14%;
    z-index: 999;
    color: #ffffff;
    font-size: 13px;
    line-height: 1.9;
    letter-spacing: 4px;
    font-weight: 350;
    font-family: "Noto Sans TC", sans-serif;
    text-align: left;
    max-width: 700px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s ease-out forwards;
    animation-delay: 0.8s;
    text-shadow: 0 2px 10px rgba(0,0,0,.38);
    pointer-events: none;
}

/* 往上淡入 */
@keyframes fadeInUp{
    from{
        opacity: 0;
        transform: translateY(30px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}


@media screen and (max-width: 768px){
    .bannerindex::after{
        left: 7%;
        right: 7%;
        bottom: 24%;
        font-size: 23px;
        line-height: 1.3;
        letter-spacing: 1px;
        max-width: none;
    }

    .bannerindex::before{
        left: 7%;
        right: 7%;
        bottom: 11%;
        font-size: 12px;
        line-height: 1.8;
        letter-spacing: 2px;
        max-width: none;
    }
}

/*Banner/＝＝＝＝＝*/
/* 漸層磨砂遮罩 */
.pageIndex .swiper-wrapper::before {
    content: "";
    position: absolute;
    z-index: 997;
    pointer-events:none;
    background-size: contain;
    background-repeat: no-repeat;
    height: 100%;
    background-image: linear-gradient(to left, rgba(0 0 0/30%) 0%, rgba(0 0 0 /10%) 90%);
    right:0px;
    top: 0px;
    width: 100%;
    /* backdrop-filter: blur(8px); */
}

/*Header/＝＝＝＝＝*/
.pageIndex .header_area {
    background: rgb(0 0 0 / 0%);
    /* position: relative; */
    position: sticky;
    padding: 10px;
    /* background: rgba(0 0 0/60%); */
    width: 100%;
    top: 0px;
    padding: 0px;
    border-bottom: none;
}
/* .pageIndex .header_area.sticky {
    background: rgba(0 0 0/60%);
    top: 0px;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
    padding: 0px;
} */
.header_area {
    /* position: relative; */
    position: sticky;
    padding: 10px;
    background: rgb(249 249 249);
    width: 100%;
    top: 0px;
    padding: 0px;
    border-bottom: 1px solid rgb(214 213 208);
}
/* .header_area.sticky {
    background: rgb(249 249 249);
    top: 0px;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
    padding: 0px;
    border-bottom: 1px solid rgb(214 213 208);
} */
.main_header_area .container:before {
    content: "";
    width: 100%;
    height: 0%;
    position: absolute;
    top: 0;
    left: 0%;
    /* transform: translateX(-50%); */
    background: transparent;
    transition: all .5s;
}
.header_area.sticky{background: transparent;position: fixed;border: 0;}
.header_area.sticky .container:before {
    width: 100%;
    height: 100%;
    background: rgb(249 249 249);
    transition: all .5s;
    /* backdrop-filter: blur(5px); */
    border-bottom: 1px solid rgb(214 213 208);
}
.main_header_area .container {
    max-width: 1500px;
    margin: auto;
}
/*控制LOGO跟主選單的距離 */
.navigation {
    display: flex;
    align-items: center;
    /* 將原本的 center 改為 space-between，讓子元素自然貼齊左右兩側 */
    justify-content: space-between; 
    padding: 7px 0;
    width: 100%; /* 確保外層容器佔滿可用寬度 */
    transition: all .5s;
}
.header_area.sticky .navigation{justify-content:center;padding: 2px 0;}
.stellarnav {
    width: auto !important; /* 確保選單寬度是根據內容計算，不要撐開 */
}

/* 底線 */
/* .main_header_area::before{
    content: "";
    width: 100%;
    height: 1px;
    background: rgba(255 255 255/30%);
    position: absolute;
    bottom: 0;
    left:   0;
}
 */
/*主選單/＝＝＝＝＝*/
/* 只要 a 連結的 href 中包含 "news" 字眼，就隱藏它後面的子選單 */
a[href*="news"] + .news_classes,
a[href*="news"] ~ .dd-toggle {
    display: none !important;
}


/*第一層*/
.pageIndex .stellarnav > ul > li > a {
    margin: 5px 15px;
    transition: all 0.3s;
    font-size: 13px;
    color: #e1e1e1;
    padding: 0 20px;
    font-family: "Noto Sans TC", sans-serif;
    letter-spacing: 2px;
    text-shadow: 0 0 3px #0000005c;
}

.stellarnav > ul > li > a {
    margin: 5px 15px;
    transition: all 0.3s;
    font-size: 13px;
    color: #585858;
    padding: 0 20px;
    font-family: "Noto Sans TC", sans-serif;
    letter-spacing: 2px;
    text-shadow: 0 0 3px #00000000;
}
.stellarnav > ul > li > a b {    font-weight: normal;    letter-spacing: 1px;}
.pageIndex .stellarnav > ul > li:hover > a{color: #f0f0f0;  text-shadow:none;}
.stellarnav > ul > li:hover > a{color: #A64D38;  text-shadow:none;}
.sticky .stellarnav > ul > li > a {color: #585858;text-shadow: none;}
.sticky .stellarnav > ul > li:hover > a {
    color: #A64D38; 
    /* text-shadow: 0 0 3px #0000005c; */
}

/* .stellarnav>ul>li.has-sub>a {padding-right: 0px} */
.stellarnav li.has-sub>a:after {display: none;}

/* 分隔線 */
/* 修改分隔線 */
.stellarnav > ul > li:before {
    content: "";
    display: inline-block; /* 讓它變成一個實體區塊，跟著文字排版 */
    vertical-align: middle; /* 讓線條與旁邊的 a 連結垂直置中對齊 */
    width: 0.5px;
    height: 10px;
    background: #585858;
    
    /* ⚠️ 以下這些請務必「全部刪除或註解掉」 ⚠️ */
    /* position: absolute; */
    /* left: 0; */
    /* top: 50%; */
    /* transform: translateY(-50%); */
}

/* 確保 a 連結也是 inline-block，這樣兩者才會完美平齊 */
.stellarnav > ul > li > a {
    display: inline-block;
    vertical-align: middle;
    margin: 5px 15px;
    transition: all 0.3s;
    font-size: 13px;
    color: #585858;
    padding: 0 20px;
    font-family: "Noto Sans TC", sans-serif;
    letter-spacing: 2px;
}

/* PageIndex (白色線條) 的部分也跟著改掉絕對定位 */
.pageIndex .stellarnav > ul > li:before {
    background: #e1e1e1;
    /* 同樣不要加 position: absolute */
}

.header_area.sticky .stellarnav > ul > li:before {
    background: #585858;
    /* 同樣不要加 position: absolute */
}
/* 隱藏主選單第一個項目的線條 */
.stellarnav > ul > li:first-of-type:before {
    display: none !important;
    content: none !important;
}

/*第二層*/
/* 整個下拉的外框 */
.stellarnav ul ul{
    border: solid 1px rgba(255 255 255/20%);
    border-top: none;
    width: 180px;
    background: transparent;
}

.stellarnav li.has-sub li {
    border: none;
    border-bottom: solid 1px rgba(255 255 255/20%);
    background: rgba(0 0 0/50%);  
}

.stellarnav li.has-sub li:last-of-type {
    border-bottom: none;
}

.stellarnav li.has-sub li:hover {
    background: rgba(0 0 0/70%);
    transition: all 0.3s;
}

/* 下拉選單文字 */
.stellarnav li.has-sub li a,
.stellarnav.mobile li li.has-sub a {
    font-size: 13px;
    padding: .75rem 1rem;
    color: #c9c9c9;
    font-family: "Noto Sans TC", sans-serif;
    letter-spacing: 2px;
}

@media screen and (max-width: 768px) {
.stellarnav > ul > li:before{display:none;}
.pageIndex .stellarnav > ul > li > a{padding: 12px;}
.pageIndex .stellarnav > ul > li > a {text-shadow: none;}
}

/*主選單icon/＝＝＝＝＝*/

/*Footer/＝＝＝＝＝*/
/* .footer {
    padding: 45px 0 0;
    font-size: 14px;
    font-family: "Noto Sans TC", sans-serif;
    letter-spacing: 2px;
    transition: all 0.3s;
    font-weight:400;
    background: #f4f4f4;
    background-size: cover;
}

.footer .center {
    max-width: 1500px;
}

.footer_info {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    transition: all 0.3s;
}

.footer_logo {
    width: 200px;
    text-align: center;
    z-index: 1;
}

.footer_info ul {
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
} */

/* 資訊 ----------*/
/* .footer_info li:nth-child(1) {
    display: flex;
    flex-direction: column;
}
.footer_info li p,
.footer_info li p a {
    letter-spacing: .15rem;
    line-height: 200%;
} */

/* 按鈕 ---------- */
/* .footer_info li:nth-child(2) {
}

.footer_menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 32px;
}

.footer_menu a {
    position: relative;
    padding: 0;
    margin: 0;
    background: none;
    border: none;
    line-height: 200%;
    text-transform: uppercase;
    transition: all 0.3s;
    color:#585858;
    letter-spacing: .15rem;
}

.footer_menu a:hover {
    color:#A64D38;
    background: none;
    transition: all 0.3s;
}

.footer_info li p {color: #585858;}
.footer_info li p a {    color: #585858;transition: all 0.5s ease;}
.footer_info li p:hover a {color: #A64D38;} */

.path {display:none;}

/* 隱藏回首頁 */
/* .footer_menu a:first-child {
    display: none;
}

.copy {
    text-align: center;
    padding: 10px;
    margin: auto;
    border-top: 1px #dddddd00 solid;
    align-items: center;
    color: #b8b7b6;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    justify-content: center;
    font-family: "Noto Sans TC", sans-serif;
    font-size: 10px;
    line-height: 2;
    letter-spacing: 2px;
    font-weight: 350;
    background-color: transparent;
    transition: all 0.3s;
}
.copy a {color: #b8b7b6;transition:all 0.3s;} 
.copy a:hover { color:#999998;}

.privacyLinks a+a {border-left: 1px solid #b8b7b6;} */

/* icon ---------- */
/* .box_link {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    max-width: 100%;
    bottom: 0;
    position: relative;
    right: 0;
    z-index: 1;
    transition: all 0.3s;
    display:none;
}

.box_link a {
    color: #585858;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: none;
    font-size: 16px;
    margin: 5px;
    padding: 0px;
    background: transparent;
    transition: all 0.3s;
}

.box_link a:hover i{
    color:#CD532A;
    transition: all 0.3s;
}
 */
/*滾動條/＝＝＝＝＝*/
/* 捲軸寬度及高度 */
/* ::-webkit-scrollbar {
    width: 5px;
    height: 0px;
} */
/* 軌道背景底色 */
::-webkit-scrollbar-track {
    background-color:#fcfcfc;
}
/* 滑桿顏色 */
::-webkit-scrollbar-thumb {
    background-color: #d3d3d3;
}
/* 滑桿滑鼠滑入時的顏色 */
::-webkit-scrollbar-thumb:hover {
    background: #CD532A;
}

/*反白/＝＝＝＝＝*/
/* 反白顏色 -------------------- */
::-moz-selection {
    background-color:#CD532A;
    color: #ffffff;
}

::selection {
    background-color:#CD532A;
    color: #ffffff;
}

/*暫時:footer示意圖/＝＝＝＝＝*/

/* .footer { */
    /* position: relative;
    display: flex;
    flex-direction: column;
    padding: 0px 0 0; */
    /* background: #F4F4F4;
    padding: 0px;
} */

/* .footer::before {
    content: "";
    display: block;
    width: 100%;
    aspect-ratio: 2000 / 202;
    background: url(https://pic03.eapple.com.tw/thinkingdesign/footer.jpg) no-repeat center bottom;
    background-size: 100% auto;
    z-index: -2;
} */

/* 隱藏 footer_info 內的所有區塊，但保留 .fix_ri */
/* .footer_info > :not(.fix_ri) {
    display: none;
}
.copy {display: none;}
 */

/*footer/＝＝＝＝＝*/
.footer{background: #f5f3f0;border-top: 1px #ddd solid;}
.footer_logo a{display: none;}
.footer .center, .copy {width: 96%;max-width: 1680px;}
.footer_info {position: relative;grid-template-columns: 1fr;z-index: 3;padding: 0;margin-bottom: 20px;}
.footer_info ul { padding-top: 22px; width: calc(100% - 300px);}
.footer_info li{padding: 0;}
.footer_info li:nth-child(1) {width: 100%;max-width: 800px;position: relative;display: grid;grid-template-columns: 1fr 1fr;}
.footer_info li:nth-child(2) {width: 100%;margin: 20px 0;}


/*footer info*/
.footer_info li p {color: #666;line-height: 2;/* display: inline-block; */margin-bottom: 15px;/* width: 49%; */}
.footer_info li p a {color: #666;}
.footer_info li p:hover a{color: #888;}
/*footer menu*/
.footer_menu {display: grid;grid-template-columns: repeat(5, 1fr);gap: 10px;width: 95%;max-width: 800px;}
.footer_menu a {margin: 0;text-align: center;padding: 8px;line-height: initial;background: #ebebe9;color: #666;letter-spacing: 1px;border: 0;/* border: 1px solid #ddd; */transition: all 0.3s;}
.footer_menu a:first-child { display: none;}
.footer_menu a:hover {background: #A64D38;border: 0;color: #fff;}

/*icon*/
.box_link {display: grid;grid-template-columns: repeat(1,1fr);grid-gap: 3px 10px;width: max-content;top: 30px;max-width: 100%;}

.box_link a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 150px;
  color: #aaa;
  border-radius: 0;
  padding: 12px 10px;
  margin-bottom: 0px;
  font-size: 16px;
  border: none;
  border-bottom: 1px solid #ddd;
  transition: all 0.3s;
}
.box_link a:hover { background: transparent; opacity: .5; transition: all 0.3s;}
.box_link a:hover i::after{letter-spacing:2px;}
.box_link i {display: flex;flex-direction: row;width: max-content;align-items: center;color: #aaa;}

/*box_link圖片設定*/
/* .box_link i::before {
  content: '';
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.box_link i.fa-facebook-f:before { background-image: url(https://pic03.eapple.com.tw/wejoymusic/icon_fb.png);}
.box_link i.fa-line:before { background-image: url(https://pic03.eapple.com.tw/wejoymusic/icon_line.png);}
.box_link i.fa-instagram:before { background-image: url(https://pic03.eapple.com.tw/wejoymusic/icon_ig.png);}
.box_link i.fa-mobile-screen-button::before { background-image: url(https://pic03.eapple.com.tw/wejoymusic/icon_phone.png);}
.box_link i.fa-phone-volume::before { background-image: url(https://pic03.eapple.com.tw/wejoymusic/icon_tel.png);}
.box_link i.fa-envelope::before { background-image: url(https://pic03.eapple.com.tw/wejoymusic/icon_mail.png);} */
.footer_info li p:before {
    display: block;
    color:#222;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 4%;
    font-family: "Roboto", sans-serif;
    margin-bottom: -6px;
}
.footer_info li p:hover:before{color: #A64D38;}
p.line,p.fax{ display: none;}
.footer_info li p.tel:before {content: 'TEL';}
.footer_info li p.tel2:before {content: 'TEL';}
.footer_info li p.mail:before{content: 'MAIL';}
.footer_info li p.add:before{content: 'ADDRESS';}

/*box_link文字設定*/
.box_link i::after {
  content: "";
  font-size: 13px;
  color: #aaa;
  letter-spacing: 1.5px;
  padding-left: 8px;
  font-family: "Roboto", sans-serif;
  transition: all 0.3s;
}
.box_link i.fa-phone-volume::after { content: "CALL US";}
.box_link i.fa-mobile-screen-button::after { content: "PHONE";}
.box_link i.fa-facebook-f::after { content: "FACEBOOK";}
.box_link i.fa-instagram::after { content: "INSTAGRAM"; }
.box_link .fa-envelope::after { content: "E-Mail";}
.box_link .fa-line::after { content: "LINE";}

/*box_link順序調整*/

.box_link a.me_tp_fb { order: 1;}
.box_link a.me_tp_ig { order: 2;}
.box_link a.me_tp_line { order: 3;}
.box_link a.me_tp_call { order: ;display: none;}
.box_link a.me_tp_mail { order: ; display: none;}
.box_link a.me_tp_threads{  display: none;}

/*版權*/
.copy {position: relative;justify-content: right;z-index: 2;color: #aaa;border: none;padding: 30px 0 60px;text-align: right;margin: 0 auto;border-top: 1px #ddd solid;}
.copy a { color: #aaa; transition: var(--Transition);}
.copy a:hover { color: var(--SubColor_1); opacity: .6; transition: var(--Transition);}

@media screen and (max-width: 768px) {
    .footer_info ul{width:100%;padding: 0 15px;}
.footer_info li:nth-child(1){
    grid-template-columns: 1fr;
}
.footer_menu{
    grid-template-columns: repeat(2, 1fr);
}
.footer_logo{display:none;}
.copy {
    justify-content: center;
    text-align: center;
    }
}

/*其他/＝＝＝＝＝*/
.me_tp_features {display:none;}

/* .box_link {display:none;} */

/* .footer_info .line { display: none;}

.box_link .me_tp_line { display: none;}
.box_link .me_tp_mail { display: none;}
.box_link .me_tp_call { display: none;}

.footer_logo img {display:none;} */

/*其他調整/＝＝＝＝＝*/
/* 1. 讓資訊容器重新回到排版流，並撐開滿版寬度 */
/* .footer_info ul {
    position: relative !important; 
    display: flex;
    justify-content: space-between; 
    align-items: flex-start;
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0px 0 0 0;
}
 */
/* 2. 移除已經隱藏的 Logo 區塊殘留的空間 */
/* .footer_logo {
    display: none; 
} */

/* 3. 手機版微調：當寬度不夠時，自動轉為上下堆疊 */
/* @media screen and (max-width: 768px) {
    .footer_info ul {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 0;
    }
    
    .footer_menu {
        margin-top: 20px;
        gap: 10px 30px;
    }
} */


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/* 商品下拉超過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個--結束 */


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 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%;gap: 10px;}
.page li a, .page li, .page li strong{width: fit-content !important;}
.page li a span{/* width:80px !important; */}
.page li strong,.page li a, .page li.next_page a{height: auto;border: 1px #ddd solid;padding: 2px 10px;border-radius: 50px;}
.page li strong{
    background: #555;
    color: #fff;
}

.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 {}

.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;}

@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: 600px) {
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 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);}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */




/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {    
    justify-content: flex-start;align-content: flex-end;
    background: transparent;
    display: block;
    width: 100%; 
    max-width: 1200px;
    padding: 20px 25px;
    margin: 0 auto; 
    position: relative;
    min-height: 200px; 
}
.banner h5 {
    color:#585858;
    text-align: center;
}
.banner.banB  h5 {display:none;}
.banner.banA {}
.banner.banB {display:none;}
.banner.banC {display:none;}
.banner.banD {}
.banner.banE {}
.banner.banblog {}
.banner.banDesign {}
.banner.banDesign_c {display:none;}

.projects_detaild_page .banner h5{display:none;}

.projects_page .banner::after {
    background-image: url(https://pic03.eapple.com.tw/thinkingdesign/bn_5.png);
}

.blog_box {/* margin-top:-130px; */}
.article_a .main_part{
    padding: 0 20px;
}
/*內頁BANNER 設定*/
.banner {
        background: transparent;
        justify-content: flex-start;
        align-content: flex-end;
        min-height: 270px;
        transition: 1s;
        padding: 20px 105px;
        width: 100%;
        max-width: 1366px;
        margin: 0 auto;
        position: relative;
        }

.contact_page .banner , .services_page .banner {max-width: 1460px;}

.banner h5 {font-family: "Noto Sans TC", sans-serif;font-size: 50px;font-weight: 300;color: #525252;position: relative;letter-spacing: 3px;animation: slide-top 1.5s 0.5s both;padding-bottom: 100px;}
.banner h5:before {display: block;left: 3px;bottom: 70px;position: absolute;width: 100%;font-size: 18px;text-align: center;font-weight: 500;animation: slide-top 1.5s 0.7s both;}


.banner.banDesign h5:before { content: "設計案例"; }
.banner.banblog h5:before { content: "媒體報導"; }

/* 將設計案例改為 Portfolio */
.banner h5 {
    font-size: 0; /* 隱藏原本的中文字 */
}

.banner h5::after {
    content: "PORTFOLIO";
    font-size: 40px;
    display: block;
    font-family: "Roboto", sans-serif;
    font-weight:400;
    color: #525252;
}

.banner.banDesign h5::after {
    content: "PORTFOLIO"; /* 插入英文 */
}
.banner.banblog h5::after {
    content: "MEDIA "; /* 插入英文 */
}

/* ＝＝＝ 【【  版型設定(動畫圖+線條) ↓↓↓  】】 ＝＝＝ */
/* .banner {
    background-color:#333;;
    width: 100%;
    min-height: 450px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: column;
}

.banner::after {
    content: '';
    animation: bgScroll 30s linear infinite;
    width: 110%;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    background-size: cover;
    background-image: url(https://pic03.eapple.com.tw/thinkingdesign/bn_1.png);
    background-repeat: no-repeat;
    background-position: center;
}

.services_page .banner::after {
    background-image: url(https://pic03.eapple.com.tw/thinkingdesign/bn_2.png);
}

.other_page .banner::after {
    background-image: url(https://pic03.eapple.com.tw/thinkingdesign/bn_3.png);
}

.contact_page .banner::after {
    background-image: url(https://pic03.eapple.com.tw/thinkingdesign/bn_4.png);
}

.projects_page .banner::after {
    background-image: url(https://pic03.eapple.com.tw/thinkingdesign/bn_5.png);
}

.blog_page .banner::after {
    background-image: url(https://pic03.eapple.com.tw/thinkingdesign/bn_6.png);
}

.blog_in_page .banner::after {
    background-image: url(https://pic03.eapple.com.tw/thinkingdesign/bn_6.png);
}

@keyframes bgScroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(-5%);
        transform: translateX(-5%);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
 */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/
.articel_mainPic img {display:none;}

.subbox_item {
    background: #fff;
    /* padding: 0 0 10px 0; */ /* 增加一點留白感 */
    border: 1px solid #efefef; /* 極細的邊框 */
    transition: all 0.4s ease;
}

.blog_list_le {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative
}

.subbox_item .blog_list_ri h5 {
    position: relative;
    display: inline-block; /* 讓底線長度跟隨文字 */
}

.blog_list_ri {padding: 20px 30px 30px 30px;}

.blog_list_le img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.3) brightness(0.9);
    transition: transform 0.8s ease, filter 0.8s ease;
    will-change: transform;
}

.subbox_item:hover .blog_list_le img {
    /* filter: grayscale(0) brightness(1.05); */
    transform: scale(1.1);
}

.subbox_item:hover {
    border-color: #dcdcdc;
}
.subbox_item a {grid-template-columns: 1fr;grid-gap: 5px;}
.blog_list_le {    aspect-ratio: 4 / 3;}
.subbox_item a:before, .subbox_item a::after{display: none;}
.blog_list_ri h5 {color: #332C2C;font-size: 18px;font-family: "Noto Sans TC", sans-serif;letter-spacing: 0.5px;}
.blog_list_ri em, .blog_list_ri p {color: #666;font-family: "Noto Sans TC", sans-serif;letter-spacing: 0.5px;}

.blog_list_ri p {
    font-size: 14px;
    color: #8c8c8c;
    font-weight: 400;
}

/*文章-首頁*/
.module_i_news {/* padding: 80px 20px; */}
.module_i_news section {    max-width: 1400px;}
.module_i_news .title_i_box h6 {
    font-family: "Noto Sans TC", sans-serif;
    text-transform: uppercase;
    font-size: 56px;
    font-weight: 500;
}
.module_i_news .title_i_box h4 {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 20px;
    color: #332C2C;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 2px;
    display:none;
}

.module_i_news ul {grid-template-columns: repeat(4, 1fr);}
.blog_subbox {grid-template-columns: repeat(auto-fill,minmax(320px, 1fr));grid-gap: 30px;}

.blog_search input[type=submit] {
    /* 清除瀏覽器預設的按鈕樣式 (特別是 Safari/iOS 容易受影響) */
    -webkit-appearance: none;
    appearance: none;
    
    /* 加上 !important 強制套用黑白濾鏡 */
    filter: grayscale(100%) !important;
    -webkit-filter: grayscale(100%) !important;
}

.blog_search input[type="search"]::placeholder {
    color: transparent;
}
.blog_search form::before {
    content: "Search";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
    transition: opacity 0.2s ease;
    font-family: "Roboto", sans-serif;
    font-weight:300;
}

/* 4. 當使用者開始打字時（原本的 placeholder 消失時），把假的 "Search" 也隱藏 */
.blog_search form:has(input[type="search"]:not(:placeholder-shown))::before {
    opacity: 0;
}

/*文章側邊選單*/
.blog_le, .blog_ri {padding: 7px 0 25px;/* margin-bottom: 4vw; */}
.blog_le {width: 100%;display: flex;flex-direction: row;/* border-bottom: 1px solid var(--maineolor); */margin-bottom: 0;flex-wrap: wrap;justify-content: space-between;}
.blog_search {order: 1;}
.blog_search input[type=search]{ border-radius: 0px;}
.blog_search input[type=submit] {filter: hue-rotate(45deg);}
.blog_le .accordion {
    border: none;
    border-bottom: 1px solid #A64D3824;
    border-radius: 0;
}

.blog_le .accordion > li {    transition: all 0.3s;}

.accordion {display:none;}

h5.blog_le_t em{display:none;}

.blog_ri {width: 100%;}

.accordion li+li .link {    border-top: 1px solid #A64D3824;}
.blog_le .accordion li .link:last-child:before {
    content: " ";
    width: 100%;
    height: 1px;
    background: #A64D3824;
    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: #A64D38;
}
.accordion li .link a {    font-weight: 400;font-family: "Noto Sans TC", sans-serif;letter-spacing: 1px;}
.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: #A64D38 !important;}

/*文章內層/ = = = = */
.blog_in_page h5.blog_le_t em { }
.blog_in_page .blog_ri { }
.blog_in_page h4.blog_category_title {
    width: 100%;
    font-size: 24px;
    letter-spacing: 0.08em;
    margin-bottom: 0;
    text-align: center;
    padding: 30px 0 0;
    font-size: 20px;
    display: block;
    /* background-color: #fff; */
    padding: 30px 60px 20px;
    text-align: left;
    line-height: 1.5;
    letter-spacing: 1px;
    font-weight: 400;
    font-family: "Noto Sans TC", sans-serif;
    color: #A64D38;
    font-weight: 500;
    border-top: 1px solid #d5d5d5;
    border-left: 1px solid #d5d5d5;
    border-right: 1px solid #d5d5d5;
    border-bottom: 1px solid #dfdfdf;
}

.blog_shareData {
    border-left: 1px solid #d5d5d5;
    border-right: 1px solid #d5d5d5;
    padding: 6px 0;
}

.toShareNews a i {
    filter: grayscale(1);
    transition: all 0.3s;
}
.toShareNews a:hover i {
    filter: none;
}

/* 文章編輯器 */
.blog_box_edit {
    /* background: #fff; */
    padding: 0;
    margin: 0;
    font-size: 16px;
    color: #333;
    line-height: 2;
    padding: 30px 60px 50px;
    letter-spacing: 0.04em;
    border-top: 1px solid #d5d5d5;
    border-left: 1px solid #d5d5d5;
    border-right: 1px solid #d5d5d5;
    border-bottom: 1px solid #d5d5d5;
}
.blog_box_edit *{
    line-height: 1.8;
    padding: 0;
    font-family: "Noto Sans TC", sans-serif;
    color: #332C2C;
}

/* 上下篇按鈕 */
.blog_back {position: relative;z-index: 1;justify-self: flex-end;width: 100%;max-width: 500px;display: grid;grid-template-columns: 1fr 1fr 1fr;grid-gap: 5px;margin: auto;/* margin-top: 0; */text-align: center;/* margin-right: 0; *//* padding: 17px 50px; */justify-items: start;justify-content: center;}
.blog_back:before {content: '';display: block;position: absolute;width: calc(100% - 40px);height: 1px;left: 20px;}
.blog_back a {font-size: 13px;letter-spacing: 2px;}
.blog_back a.article_btn_back {border: 1px solid #5E5854;color:#5E5854;background: #a7a9ac00;transition: .4s ease;font-family: "Noto Sans TC", sans-serif;}
.blog_back a.article_btn_back:hover {background-color: #A64D38;border-color: #A64D38;color:#fff;}
.blog_back a.article_btn_prev, .blog_back a.article_btn_next {color: #938C88;transition: .3s ease;width: fit-content;min-width: 110px;background: transparent;font-size: 0;border: 1px solid #938C88;padding: 7px 0;}
.blog_back a.article_btn_next {justify-self: end;}
a.article_btn_prev:before, a.article_btn_next:after {content: '< Previous';padding: 8px;font-size: 13px;text-decoration: none;color: #938C88;letter-spacing: 1px;font-weight: 600;}
a.article_btn_next:after {content: 'Next >';}
.blog_back a.article_btn_prev:hover, .blog_back a.article_btn_next:hover {background-color: #A64D38;border-color: #A64D38;}
a.article_btn_prev:hover:before, a.article_btn_next:hover:after {color: #fff;}

h4.blog_category_title {
    color:  #A64D38;
    font-size: 30px;
    /* border-bottom: 1px #ccc solid; */
    padding: 10px 0;
    margin-bottom: 20px;
}

/* ==========================================================================
   相關文章區塊 (news_related) 整合樣式
   ========================================================================== */

.news_related {
    max-width: 1146px;
    margin: 30px auto 0; /* 增加上方間距，讓視覺呼吸 */
    padding: 60px 100px 60px 100px;
    position: relative;
    background: transparent;
}

/* 標題區：裝飾性的「相關文章」標題 */
.news_related h6 {
    text-align: left;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    border-bottom: 1px solid #A64D38; /* 延續你的主色調線條 */
}

.news_related h6 span::before {
    content: "RELATED ARTICLES"; /* 加上英文標題提升國際質感 */
    display: block;
    font-family: "Roboto", sans-serif;
    font-size: 28px;
    color: #BDB7B2;
    letter-spacing: 2px;
    margin-bottom: 5px;
    font-weight: 400;
}

.news_related h6 span::after {
    content: "相關文章";
    font-family: "Noto Sans TC", sans-serif;
    font-size: 16px;
    color: #A64D38;
    letter-spacing: 4px;
    font-weight: 400;
}

/* 列表容器：改為 Grid 佈局 */
.news_related_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 預設一排三格 */
    gap: 30px;
    padding: 0;
    list-style: none;
}

/* 列表單個項目 */
.news_related_list li {
    position: relative;
    overflow: hidden;
    background: #ffffff00;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.news_related_list li > a{background: #ffffff00;}
/* 圖片外框：控制比例 */
.news_related_list figure {
    margin: 0;
    overflow: hidden;
    aspect-ratio: 4 / 3; /* 固定比例讓畫面整齊 */
    background: #f0f0f0;
}

.news_related_list figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

/* 滑過圖片縮放效果 */
.news_related_list li:hover figure img {
    transform: scale(1.1);
}

/* 文章標題文字 */
.news_related_list p {
    /* margin-top: 10px; */
    font-size: 16px;
    /* margin-bottom: 10px; */
    color: #332C2C;
    line-height: 1.6;
    font-weight: 400;
    font-family: "Noto Sans TC", sans-serif;
    letter-spacing: 1px;
    transition: all 0.3s;
    padding: 10px;
}

.news_related_list li:hover p {
    color: #A64D38; /* 滑過時文字變主色 */
}

.lastPage {
    font-size: 13px;
    color: #938C88;
    background: #938c8800;
    border:1px solid #938C88;
    padding: 10px 20px;
    margin: 40px auto;
    width: 130px;
    transition: all 0.3s;
    font-family: "Noto Sans TC", sans-serif;
    font-weight:400;
    letter-spacing: 2px;
}
.lastPage:hover {
    font-size: 13px;
    color: #ffffff;
    background: #A64D38;
    border:1px solid #938C88;
}

/* ==========================================================================
   手機版響應式微調
   ========================================================================== */
@media screen and (max-width: 991px) {
    .news_related_list {
        grid-template-columns: repeat(2, 1fr); /* 平板改兩格 */
    }
}

@media screen and (max-width: 767px) {
    .news_related {
        margin-top: 60px;
        padding: 0 20px;
    }
    .news_related_list {
        grid-template-columns: 1fr; /* 手機改一格滿版 */
        gap: 40px;
    }
    .news_related h6 span::before {
        font-size: 22px;
    }
    .blog_le{
    display: unset;
}
    .blog_back a.article_btn_prev, .blog_back a.article_btn_next{width:100%;}
}


/* ==========================================================================
   首頁文章區塊
   ========================================================================== */

/* 讓原本的文章清單變成橫向捲動，且一次一格 */
.pageIndex .module_i_news_list ul {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 0 !important;
    padding: 0 !important;
}

/* 每一篇都要佔滿 100% 寬度 */
.pageIndex .module_i_news_list li {
    flex: 0 0 100% !important; 
    width: 100% !important;
    scroll-snap-align: start;
    padding: 10px !important;
    box-sizing: border-box;
}

/* 隱藏原生捲軸 (讓畫面乾淨) */
.pageIndex .module_i_news_list ul::-webkit-scrollbar {
    display: none;
}

/* 強制讓圖片和文字左右排版 */
.pageIndex .module_i_news_list li a {
    display: flex !important;
    align-items: center;
    background: #fff;
}

/* 手機版改成上下排 */
@media screen and (max-width: 768px) {
    .pageIndex .module_i_news_list li a {
        flex-direction: column;
    }
}

/* --- 新增左右按鈕的樣式 --- */
.nav_btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.nav_btns a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #A64D38;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/*首頁-文章樣式/＝＝＝＝＝*/

.pageIndex .module_i_news {
    /* background-color: #ffffff; */
    padding: 0px 30px 120px;
    padding-top: 0px;
}

.pageIndex .module_i_news section {
    max-width: 1150px; /* 稍微放寬一點點，讓文字更舒展 */
    margin: 0 auto;
}

.pageIndex .module_i_news_list li {
    flex: 0 0 100% !important;
    padding: 0 50px; /* 這裡預留給左右按鈕的空間 */
    box-sizing: border-box;
}

.pageIndex .module_i_news_list li a {
    display: flex !important;
    background: #f3f2f2;
    background: #fff;
    /* box-shadow: 0 15px 45px rgba(0,0,0,0.03); */
    transition: all 0.4s ease;
}

/* 圖片區 55% */
.pageIndex .i_blog_le {
    flex: 0 0 55%;
    aspect-ratio: 4 / 3; /* 讓圖片比例更像專業攝影集 */
    overflow: hidden;
}

/* 文字區 45% */
.pageIndex .i_blog_ri {
    /* flex: 0 0 45%; */
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* background: #f3f2f2; */
    position: relative;
}

.pageIndex .i_blog_ri h5 {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 18px;
    color: #333;
    line-height: 1.5;
    margin-bottom: 12px;
    letter-spacing: 1.5px;
    font-weight: 500;
    /* 取消可能存在的省略號設定 */
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    display: block !important;
}

/* 標題上方的英文小標 (手札感) */
.pageIndex .i_blog_ri h5::before {
    content: "NEWS /";
    display: block;
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    color: #A64D38;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 400;
}

/* 日期優化與下方裝飾線 */
.pageIndex .i_blog_ri em {
    font-size: 12px;
    color: #999;
    letter-spacing: 1px;
    margin-bottom: 30px;
    display: block;
    font-style: normal;
    position: relative;
    padding-bottom: 15px;
    font-family: "Noto Sans TC", sans-serif;
}

/* 日期下方的精緻細線 */
.pageIndex .i_blog_ri em::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px; /* 線條長度 */
    height: 1px;
    background-color: #ddd; /* 淺灰色線條更有高級感 */
}

.pageIndex .i_blog_ri p {
    font-size: 14px;
    color: #8c8c8c;
    line-height: 1.8;
    text-align: justify;
    font-family: "Noto Sans TC", sans-serif;
    letter-spacing: 0.5px;
}

.pageIndex .i_blog_le img {
    transition: transform 0.8s ease, filter 0.8s ease; 
}

/* 滑過效果 */
.pageIndex .module_i_news_list li a:hover .i_blog_le img {
    transform: scale(1.05);
}

/* 手機版微調 */
@media screen and (max-width: 768px) {
    .pageIndex .module_i_news_list li { padding: 0 15px; }
    .pageIndex .module_i_news_list li a { flex-direction: column; }
    .pageIndex .i_blog_ri { padding: 40px 25px; }
    .pageIndex .i_blog_ri h5 { font-size: 20px; }
}

.module_i_news li a:after {
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 8;
    background: #f8f8f800;
    opacity: 0;
    border: 1px #dddddd00 solid;
    transition: all .6s;
}


/*聯絡我們/＝＝＝＝＝*/

.contact_page .main_part {max-width: 100%;padding: 0;}
/* 上編輯區 */
.contact_editbox {padding: 0;}

/* 將包含圖片的區塊排到最前面 */
.contact_editbox {
    order: -1 !important; 
}

/* 確保表單區塊在圖片下方 */
.contact_content {
    order: 1; 
}

/* 下表單 */
.contact_content {padding: 0;width: 100%;max-width: 1400px;}
.contact_content > form{display: flex;flex-direction: column;}
.contact_content .information_left {display: none;}
.contact_content .information_right {width: 100%;margin: 0 auto;padding: 60px 100px;}
.blank_letter {font-family: "Noto Sans TC", sans-serif;padding-top: 40px;font-size: 18px;color: #A64D38;font-weight: 400;display: flex;justify-content: left;flex-direction: column;flex-wrap: nowrap;align-items: left;letter-spacing: 2.5px;}
.blank_letter:before {font-size: 40px;content: 'FORM';font-family: "Roboto", sans-serif;font-weight: 400;letter-spacing: 0.1em;/* padding-left: 5px; */color: #332E2C;color: #494440;}
.red {color: #d7653c;}
.note {display: none;}
/* 表單欄 */
.contact_form {margin-top: 20px;padding-top: 40px;grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);gap: 30px 20px;color:#332E2C;}
.contact_form li {display: grid;grid-template-columns: 1fr;grid-template-rows: 25px 1fr;grid-gap: 8px;align-items: center;}
.contact_form li:nth-last-of-type(1), .contact_form li:nth-last-of-type(2), .contact_form li:nth-last-of-type(3),
.contact_form li:nth-last-of-type(4) {grid-column: 1 / -1;}
.contact_form li .form__label {display: block;max-width: 100%;text-align: left;font-size: 15px;letter-spacing: 1px;color: #332E2C;font-weight: 400;background: transparent;font-family: "Noto Sans TC", sans-serif;height: fit-content;}
.contact_form li input.noborder, .contact_form li textarea.noborder {border: 1px #ddd solid;color: #666666;border: none;background-color: #f9f9f9;padding: 10px;font-size: 12px;min-height: 36px;}
.contact_form li:has(input[type=checkbox]) .form__insert, .contact_form li:has(input[type=radio]) .form__insert {font-family: "Noto Sans TC", sans-serif;grid-gap: 5px;grid-template-columns: repeat(auto-fit, minmax(13px, 13px) minmax(100px, 1fr));align-items: center;background: #f9f9f9;padding: 8px;font-size: 14px;font-weight: 400;color: #666;/* letter-spacing: 1px; */}
.contact_form .checknumBox input#checknum {border-bottom: 1px #ddd solid;color: #666666;}

.contact_form li:nth-of-type(9)::after {
    content: "客變設計案件無須提供交屋日期";
	color: #7e7e7e;
    letter-spacing: 1px;
    font-size:14px;
    font-family: "Noto Sans TC", sans-serif;
    font-weight:350;
}

.contact_form li:nth-of-type(9) {
    grid-template-rows: 25px auto auto;
    align-content: flex-start;
}

.contact_form li:nth-of-type(10)::after {
    content: "請簡單描述您的需求或想法，例如空間類型(小孩房、長輩房、中島廚房)、生活習慣、喜愛風格或常用家電，也歡迎其他特殊需求。";
	color: #7e7e7e;
    letter-spacing: 1px;
    font-size:14px;
    font-family: "Noto Sans TC", sans-serif;
    font-weight:350;
}

.contact_form li:nth-of-type(12)::after {
    content: "若選擇以LINE聯繫，請先加入官方LINE，以利後續通知與聯繫。";
	color: #7e7e7e;
    letter-spacing: 1px;
    font-size:14px;
    font-family: "Noto Sans TC", sans-serif;
    font-weight:350;
}

.contact_form li:has(#item1339) .form__insert {
    position: relative;
}

/* 正常狀態：給它一個超級長的延遲時間 */
.contact_form li:has(#item1339) .form__insert::before {
    content: "例如：週末下午 14:30";
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 12px;
    font-family: "Noto Sans TC", sans-serif;
    pointer-events: none;
    z-index: 1;
    
    /* 關鍵在這裡：失焦時，等600秒（約10分鐘）才讓字體浮現 */
    opacity: 1;
    transition: opacity 0s 600s; 
}

/* 聚焦狀態：瞬間消失，沒有延遲 */
.contact_form li:has(#item1339:focus) .form__insert::before {
    opacity: 0;
    transition: opacity 0.1s 0s; 
}

/*讓所有表單列的內容物往頂部對齊 */
.contact_form li {align-items: flex-start; }

/* BTN */
.i_blog_b a {display:none;}

.animated-arrow {
    background: #5E5854;
    color: #ffffff;
    border: 1px #5E5854 solid;
    margin-top: 20px;
    width: 250px;
    height: 50px;
    line-height: 50px;
    letter-spacing: 2px;
}
.animated-arrow:hover {background: #999;border: 1px #b4b4b4 solid;}
.last .animated-arrow.otherSty {
    color: #777;
    background: #fff;
    border: 1px #b4b4b4 solid;
}
.last .animated-arrow.otherSty:hover {
    background: #f1f0f0;
}
.contact_form li.last button i {display: none;}


@media screen and (max-width: 1200px) {
.contact_content .information_right {padding: 100px 25px;}
.contact_form {grid-template-columns: 1fr;margin-top: 0;gap: 20px;}
.blank_letter {font-size: 14px;padding-top: 20px;}
}

@media screen and (max-width: 768px) {
.blank_letter:before {font-size: 32px;}
.contact_content .information_right {padding: 80px 20px 100px;width: 95%;}
.blank_letter {font-size: 16px;}
.contact_form {padding-top: 25px;}
.contact_form li {grid-gap: 5px;}
.contact_form li .form__label {font-size: 14px;letter-spacing: 1px;}
.contact_form li input.noborder, .contact_form li textarea.noborder {padding: 6px;font-size: 12px;min-height: 35px;}
.contact_form li.last {margin-top: 25px;flex-wrap: wrap;}
.contact_form li.last input {font-size: 14px;padding: 12px 20px;min-width: 180px;}
}

@media screen and (max-width: 600px) {
.contact_content .information_right {padding: 60px 20px 80px;width: 100%;}
.contact_form li.last {gap: 5px;flex-direction: column;}
.contact_form li:has(input[type=checkbox]) .form__insert, .contact_form li:has(input[type=radio]) .form__insert {font-size: 13px;}
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本分類全版面 ( 限制最寬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;}
*/

/*設計作品管理*/
.module_i_projects .title_i_box {
    display: none;
}

animated-arrow {
    background: #333333;
    border: 1px #333333 solid;
}

.ProjSwiper li section,
.ProjSwiper li>a:after {
    height: 50px;
}

.ProjSwiper li section h6 {
    font-weight: 400;
    letter-spacing: 1px;
}

.ProjSwiper li>a:hover section h6 {
    line-height: 35px;
}

.ProjSwiper li>a:hover:after {
    background: rgb(0 0 0 / 60%);
}

.ProjsDetail_Intro dd {
    display: inline-block;
}

.StoreProjsList {
    /* width: 90%; */
    /* padding: var(--pd80) 20px; */
}

.projsTabs li {
    padding: 10px;
}

.projsTabs li a,
.projsTabs li.Now a {
    color: #575757;
    font-weight: 400;
    border-bottom: 1px solid #2b221a2b;
    padding: 5px 10px;
    font-family: "Noto Sans", "Noto Sans TC", sans-serif;
    letter-spacing: 1px;
}

.projsTabs li.Now a {
    border-bottom: 1px solid #2b221a;
}

.StoreProjs_Post li {
    border: none;
    background: transparent;
    text-align: center;
}

.StoreProjs_Post li>a:hover:after {
    background: #2b221a82;
}

.StoreProjs_Post li section h6 strong {
    font-weight: 300;
    letter-spacing: .1rem;
}


.StoreProjs_Post li h4 {
    color: #575757;
    font-weight: 400;
    animation: slide-top 1.5s 0.6s both;
    padding: 20px 0 0;
    height: 40px;
    font-family: "Noto Sans TC", sans-serif;
    letter-spacing: 1px;
}

@keyframes maskFadeIn {
    0% {
        -webkit-mask-position: 200% 0;
        mask-position: 200% 0
    }

    100% {
        -webkit-mask-position: 0 0;
        mask-position: 0 0
    }
}
/*scroll箭頭*/
#Projs_scroll_down a i {
    margin: 5px 0 13px;
}

.StoreProjs_Md {width: 98%;max-width: 1520px;margin: auto;padding: 100px 0;padding-top: 10px;}

/*設計作品管理-內頁*/
.StoreProjsDetail {
    width: 95%;
}

.StoreProjs_Post li img {filter: none;width: 100%;}

.ProjsDetail_Title p span {
    background: #2b221a30;
    height: 23px;
}

.ProjsDetail_Title h4 {
    font-family: "Noto Sans", "Noto Sans TC", sans-serif;
    color: #505050;
    letter-spacing: 2px;
    font-size: 17px;
    font-weight:400;
}

/*設計作品管理-內頁圖片*/
.ProjsDetail_ImgView {
    padding: 0;
    margin-bottom: 30px;
}

.ProjsDetail_ImgView ul li:first-child {
    padding-top: 0;
}

.ProjsDetail_ImgView ul li a {
    position: relative;
    overflow: hidden;
}

.ProjsDetail_ImgView li img {
    transform: scale(1);
    transition: all .7s;
    transition: all 5000ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ProjsDetail_ImgView ul li a:hover img {
    transition: all .7s;
    transform: scale(1.1);
    transition: all 5000ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
}
.ProjsDetail_OtherObjs li > a img{
    width: 100%;
    height: 100%;
    object-fit: cover;

}

@media screen and (max-width: 1024px) {
    .ProjsDetail_info_2_5 {
        padding: 20px 30px;
    }

    .ProjsDetail_info_3_5 {
        padding: 20px 40px;
    }
}

@media screen and (max-width: 768px) {
    .ProjsDetail_OtherObjs {
        padding: 50px 0 50px;
        gap: 5px 0px;
    }
    .StoreProjs_Md{padding:0 0 60px;}
}
@media screen and (max-width: 640px) {
    .ProjsDetail_ImgView ul li a {
        padding: 0;
        height: auto;
        aspect-ratio: 3 / 2;
    }
    .ProjsDetail_ImgView ul{gap:5px;}
}
@media screen and (max-width: 480px) {
    .ProjsDetail_OtherObjs li>a {
        padding: 0 0 120px;
    }
}

/* ==========================================================================
   設計作品內頁 - 垂直簡約排版修正
   ========================================================================== */

.ProjsDetail_Title p {display:none;}
.ProjsDetail_Intro {/* display:none; *//* justify-content: center; */border-top: 1px #d6d5d07a solid;}
.ProjsDetail_info_2_5 .ProjsDetail_Bottom {
    display: none !important;
}
.ProjsDetail_Intro dt{text-align:left;padding:10px;}
.ProjsDetail_info_2_5 {
    width: 100% !important;
    float: none !important;
    text-align: center !important;
    padding: 0 0 50px 0 !important;
}

.ProjsDetail_Title {
    padding-bottom: 50px;
    width: 100%;
}

.ProjsDetail_info_3_5 {
    width: 100% !important;
    max-width: 1000px; 
    margin: 0 auto !important;
    float: none !important;
    padding: 0 !important;
}

.ProjsDetail_info_3_5 .ProjsDetail_Bottom {
    margin-top: 50px !important;
    display: flex !important;
    gap: 5px;
    background: transparent;
    justify-content: space-between;
}
.ProjsDetail_Bottom a.ProjsBtn_Prev img,.ProjsDetail_Bottom a.ProjsBtn_Next img{display:none;}
.ProjsDetail_Bottom a {
    border: 1px solid #ddd !important;
    padding: 10px 20px !important;
    background: transparent !important;
    color: #938C88 !important;
}

.ProjsDetail_Bottom a:hover {
    background: #f5f5f5 !important;
}

.sidebar__inner {
    width: 100%;
    height: 100vh;
    padding: 200px 0 0;
    position: sticky;
    max-width: 1000px;
    margin: auto;
    top: 0;
}

/* 強制讓父容器不要撐開高度 */
.ProjsDetail_info_2_5, 
.sidebar__inner, 
.ProjsDetail_infoBox {
    height: auto !important;
    min-height: 0 !important;
}

/* 針對目標區塊，強制解除高度限制 */
.ProjsDetail_Viewpoint {
    height: auto !important;
    min-height: 0 !important;
    max-height: 400px !important;
    overflow-y: auto !important;
    padding-bottom: 20px !important;
    font-size: 14px;
    font-family: "Noto Sans TC", sans-serif;
    color: #444;
    line-height: 200%;
    padding: 10px;
    margin: 0 0;
    width: 100%;
    letter-spacing: .5px;
    text-align:left;
    font-weight: 300;
}

/* 手機版微調 */
@media screen and (max-width: 768px) {
    .ProjsDetail_info_3_5 {
        max-width: 95%;
    }
    .ProjsDetail_Title h4 {
        font-size: 20px !important;
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本列表
.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 screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu {
    display: none;
}
.footer.with_shopping_mode {padding: 30px 0 20px;}
#to_top { bottom:60px;}
}

@media screen and (max-width: 600px) { 
}




