@charset "utf-8";

/*反白顏色*/
::-moz-selection{  background-color: #5C4F49;  color: #fff;}
::selection{  background-color: #5C4F49;  color: #fff;}
:root {
    --MainColor: #C9996B;
    --SubColor01:#EDE9E6;
    --SubColor02:#5C4F49;
    --SubColor03:#5C766D;
    --bgcolor:#F6F4F2;
    --logocolor01:#887900;
    --logocolor02:#B8A033;

/* 字體設定 */
  --SFont: "Noto Sans TC", sans-serif;
  --TitelFont-zh: "Noto Serif TC", serif;
  --TitelFont-EN: "Cardo", serif;
  --SFontEN: "Kulim Park", sans-serif;
  --FontColor: #221814;

  --f56: clamp(32px, 4.5vw, 56px);
  --f48: clamp(28px, 4vw, 48px);
  --f42: clamp(26px, 3.5vw, 42px);
  --f40: clamp(24px, 3.2vw, 40px);
  --f36: clamp(22px, 3vw, 36px);
  --f32: clamp(20px, 2.5vw, 32px);
  --f28: clamp(18px, 2.2vw, 28px);
  --f24: clamp(17px, 2vw, 24px);
  --f22: clamp(16px, 1.8vw, 22px);
  --f20: clamp(15px, 1.6vw, 20px);
  --f18: clamp(15px, 1.4vw, 18px);
  --f17: 17px;
  --f16: 16px;

  --pd80: clamp(40px, 6vw, 80px);
}

body {
    font-family: "Cardo", "Noto Sans TC", sans-serif;;
    letter-spacing: .1rem;
    color: var(--FontColor);
    font-weight: 400;
    background: var(--bgcolor);
}
.main_part {max-width: 1400px;padding: var(--pd80) 0;width: 94%;}
.path{display: none;}

/*★★★卷軸設定↓↓↓↓↓↓↓↓↓↓↓↓*/
/* 捲軸寬度及高度 */
::-webkit-scrollbar {
    width: 6px; /*右側捲軸寬度*/
    height: 0px; /*下方捲軸高度*/
}
/* 軌道背景底色 */
::-webkit-scrollbar-track {  background: #EDE9E6; }

/* 滑桿顏色 */
::-webkit-scrollbar-thumb {  background: #C9996B; transition: all .3s;}
/* 滑桿滑鼠滑入時的顏色 */
::-webkit-scrollbar-thumb:hover {  background: #5C4F49; }


#to_top {
    background: var(--SubColor02);
    width: 50px;
    height: 50px;
    color: var(--SubColor02);
    padding-top: 20px;
    border: 1px solid transparent;
    background-image: linear-gradient(#7d5a40, var(--SubColor01)), linear-gradient(135deg, rgba(197, 168, 128, 0.1) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(197, 168, 128, 0.1) 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background-size: 100% 100%, 300% 300%;
    animation: luxuryToTopFloat 4s ease-in-out infinite alternate, luxuryBorderGlow 8s linear infinite;
    display: inline-block;
    left: unset;
    right: 25px;
}

#to_top:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0px 4px 15px rgba(197, 168, 128, 0.2);
}

#to_top i:before, #to_top i:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    display: block;
    width: 1px;
    height: 8px;
    border-radius: 100px;
    background: var(--SubColor02);
    transform-origin: 50% 0%;
}
@keyframes luxuryToTopFloat {
    0% {        transform: translateY(0);    }
    100% {        transform: translateY(-4px);     }
}

@keyframes luxuryBorderGlow {
    0% {        background-position: center center, 0% 0%;    }
    100% {        background-position: center center, 300% 300%;    }
}


/*
關於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載入*/
.pageIndex .header_area{animation: header_show 2s both;    animation-delay: 2s;}

@keyframes header_show {
0% {    opacity: 0;}
100% {    opacity: 1;}
}

.header_area {
    position: fixed;
    top: 0;
    padding: 0;
    background: var(--SubColor01);
    transition: all 0.4s ease;
}
.main_header_area {    position: relative;}

.main_header_area .container {
    max-width: 90%;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}
.navigation {
    grid-template-columns: 300px 1fr 190px;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
    align-items: center;
}
.nav-header {    max-width: 200px;    grid-row: 1 / span 1;}
.nav-brand {    display: flex;}

.me_tp_features {order: 2;}

.pageIndex .header_area {
    background: transparent;
    transition: all 0.4s ease;
}
.pageIndex .main_header_area:after {
    content: "";
    position: absolute;
    width: 100%;
    background: linear-gradient(oklch(0.44 0.02 46.28 / 0.58), rgb(0 0 0 / 15%) 48%, transparent);
    transition: opacity .65s cubic-bezier(.39, .575, .565, 1) 0s;
    top: 0;
    height: 20rem;
    pointer-events: none;
}
.pageIndex .nav-header {
    max-width: 270px;
    grid-row: 1 / span 1;
    padding-top: 10px;
}
.pageIndex .nav-brand img {
    max-width: 100%;
    filter: brightness(0) invert(1) drop-shadow(1px 2px 5px black);
    transition: opacity 0.3s ease;
}

/*下滑-  .header_area.sticky   */
.pageIndex .header_area.sticky .main_header_area:after {    height: 0;}
.pageIndex .header_area.sticky .nav-header {    padding-top: 0;}
.pageIndex .header_area.sticky .nav-brand img {    filter: none;}

.header_area.sticky {
    width: 100%;
    background: var(--SubColor01);
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}
.header_area.sticky .main_header_area .container {    max-width: 1400px;}
.header_area.sticky .nav-header {    max-width: 200px;}


/*上方選單右邊設定 臉書/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}
*/
.tp_links {display: none;}

.box_search {    margin-bottom: 0;}
.box_search input[type=text] {    border-radius: 0;}
.shop_search_btn {
    background: var(--SubColor03);
    border-radius: 0;
}

/*浮動按鈕-展開*/
.info_fix_links {    display: flex !important;}
.linksBtn {    display: none;}
.info_fix {
    bottom: 120px;
    right: 15px;
}
.info_fix_links a:hover {
    background: var(--MainColor);
}
.info_fix_links a.info_fix_default {
    backdrop-filter: blur(10px);
    background: #c9996b80;
    border: 1px solid var(--MainColor);
}


/*電腦LOGO
.nav-brand {}
*/

/*手機LOGO
.nav-brand-m {}
*/


/*第一層*/
.stellarnav > ul > li {
    display: inline-block;
    padding: 17px 5px 10px;
}
.stellarnav > ul > li > a {
    transition: all 0.3s;
    color: var(--FontColor);
    font-family: var(--SFont);
    font-size: 15px;
}
.stellarnav > ul > li:hover > a {    color: var(--MainColor);}

.pageIndex .stellarnav > ul > li > a {    color: var(--bgcolor);}
.pageIndex .stellarnav > ul > li:hover > a {    color: var(--MainColor);}
.pageIndex .header_area.sticky .stellarnav > ul > li > a {    color: var(--FontColor);}
.pageIndex .header_area.sticky .stellarnav > ul > li:hover > a {color:  var(--MainColor);} 

/*下拉線條箭頭*/
.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(--FontColor) var(--FontColor) transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}


/*第二層*/
.stellarnav li li {    border: none;}

.stellarnav li li > a, .stellarnav li li.has-sub > a {
    padding: 15px 11px;
    transition: all 0.3s;
    font-size: 15px;
}
.stellarnav li li:hover > a, .stellarnav li li.has-sub:hover > a {
    color: var(--bgcolor);
    padding-left: 15px;
    background: var(--MainColor);
}

/*下拉第二層箭頭*/
.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(--MainCOlor) var(--MainCOlor) 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 {
    background-color: var(--SubColor02);
    color: var(--SubColor01);
    padding: clamp(40px, 5vw, 60px) 20px 20px;
    position: relative;
    z-index: 5;
}
.footer .center {    max-width: 90%;}
.footer_info {
    grid-template-columns: 1fr 135px;
    gap: 10px 40px;
    align-items: start;
}
.footer_logo {
    max-width: 130px;
    order: 2;
}
.footer_logo img {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.3s ease;
    display: none;
}

.footer_logo > a {
    background: url(https://pic03.eapple.com.tw/chumendesign/LOGO-ws.png) no-repeat;
    display: inline-block;
    width: 100%;
    height: 150px;
    background-size: contain;
    background-position: right;
}

.box_link {
    max-width: max-content;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    left: 10px;
    top: 85%;
    gap: 5px;
}

.box_link a {
    font-size: 14px;
    color: #f4f1eab5;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px #f4f1ea63 solid;
    transition: all .3s;
    margin: 0;
}
.footer .fa-phone-volume {    padding-top: 3px;}
.box_link a:hover {
    color: var(--SubColor01);
    border-color: var(--MainColor);
    background: var(--MainColor);
}

.footer_info ul {
    display: flex;
    gap: 12px 30px;
    order: 1;
    flex-direction: column-reverse;
    justify-content: flex-end;
}
.F_ul_Boxed li p, .F_ul_Boxed li p a {
    margin: 0;
    font-size: 15px;
    color: rgba(237, 233, 230, 0.7);
    letter-spacing: 1px;
    line-height: 1.8;
}
.footer_info li p:before {    color: var(--MainColor);}
.footer_info li p.add:after {    content: '(預約制) ';}

.footer_info li:nth-child(2) {
    border-bottom: 1px solid #c9996b30;
    padding: 0;
}
.footer_menu {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
}
.footer_menu a {
    text-decoration: none;
    letter-spacing: 1px;
    position: relative;
    padding: 15px 10px;
    opacity: 0.8;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
    color: var(--SubColor01);
    margin: 0;
}
.footer_menu a:hover {
    opacity: 1;
    color: var(--MainColor);
    background: transparent;
}
.footer_menu a:after {
    content: " ";
    position: absolute;
    left: 0;
    width: 0;
    height: 100%;
    height: 1px;
    top: auto;
    bottom: -1px;
    background-color: var(--MainColor);
    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;
}


.copy {
    text-align: center;
    padding-top: 20px;
    font-size: 12px;
    color: rgba(237, 233, 230, 0.4);
    border-top: 1px solid rgba(237, 233, 230, 0.1);
    letter-spacing: 1px;
    margin-top: 40px;
}
.privacyLinks a+a {    border-left: 1px solid rgba(237, 233, 230, 0.4);}
.privacyLinks a+a, .copy a {    color: rgba(237, 233, 230, 0.4);}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2025.12.18  */
.product_page .main_part { max-width:1800px;}

.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;}


/*相關推薦*/
.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: 600px) {
}


/* = = = 大圖-分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/* ==========================================
    Logo 開場動畫
   ========================================== */
/* 左門面板 (Left Door) */
body.pageIndex::before {
    content: '';
    pointer-events: none;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 50vw;
    height: 100vh;
    background: rgb(237, 233, 230); 
    backdrop-filter: blur(9px);
        -webkit-backdrop-filter: blur(9px);
    z-index: 999999;
    animation: door-open-left 2.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
    animation-delay: 1s;
    will-change: transform, opacity, backdrop-filter; 
}

/* 右門面板 (Right Door) */
body.pageIndex::after {
    content: '';
    pointer-events: none;
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 50vw;
    height: 100vh;
    background: rgb(237, 233, 230);
    backdrop-filter: blur(9px);
        -webkit-backdrop-filter: blur(9px);
    z-index: 999999;
    
    animation: door-open-right 2.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
    animation-delay: 1s;
    will-change: transform, opacity, backdrop-filter;
}

/* Logo 淡出動畫 */
body.pageIndex div#page::after {
    content: "";
    pointer-events: none;
    display: block;
    width: 150px;
    height: 150px;
    background-image: url('https://pic03.eapple.com.tw/chumendesign/load_logo.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000000;
    animation: logo-fade-out 2.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

/* RWD 手機版調整 */
@media screen and (max-width: 768px) {
    body.pageIndex::before,
    body.pageIndex::after {
        width: 50vw;
    }
    div#page::after {
        width: 90px;
        height: 90px;
    }
}

/* ==========================================
    開門與漸變模糊 Keyframes 定義
   ========================================== */
/* 左門 */
@keyframes door-open-left {
    0% {
        transform: translateX(0%);
        background: rgb(237, 233, 230);
        backdrop-filter: blur(9px);
        -webkit-backdrop-filter: blur(9px);
        opacity: 1;
    }
    60% {background: rgba(237, 233, 230, 0.95);
        opacity: 0.9;
    }
    100% {
        transform: translateX(-100%);
        background: rgba(237, 233, 230, 0);
        backdrop-filter: blur(0px);
        -webkit-backdrop-filter: blur(0px);
        opacity: 0;
        visibility: hidden;
    }
}

/* 右門 */
@keyframes door-open-right {
    0% {
        transform: translateX(0%);
        background: rgb(237, 233, 230);
        backdrop-filter: blur(9px);
        -webkit-backdrop-filter: blur(9px);
        opacity: 1;
    }
    60% {background: rgba(237, 233, 230, 0.95);
        opacity: 0.9;
    }
    100% {
        transform: translateX(100%);
        background: rgba(237, 233, 230, 0);
        backdrop-filter: blur(0px);
        -webkit-backdrop-filter: blur(0px);
        opacity: 0;
        visibility: hidden;
    }
}

/* Logo 放大與淡出 */
@keyframes logo-fade-out {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    60% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.05);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.95);
        visibility: hidden;
    }
}



/*大圖-設計老爹 想直接等比例縮放 不想要背景輪播被裁圖*/
/*背景輪播*/
.bannerindex { position: relative; height: auto;}
.bannerindex .swiper-banner { position: relative;}
.bannerindex ~ #content_main { margin-top: 0;}
@media screen and (max-width: 768px) {
.bannerindex { padding:  0 0;}
}

/*滑動輪播*/
.BannerHome02 { height: auto;}
.BannerHome02 .swiperBan02 { position: static; margin: 0;}
.BannerHome02 .swiperBan02 .swiper-slide img { height: auto;}

/* 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);}
@media (max-width:1400px) { 
	.BannerHome02 { height: auto;}
}
@media (max-width:1024px) { 
	.BannerHome02 { height: auto;}
}
@media (max-width:768px) { 
	.BannerHome02 { height: auto;}
}

/*縮圖輪播*/
.BannerHome03 .thumbs03 .swiper-slide img { height: 100%;}
@media (max-width:1400px) { 
 .BannerHome03 .swiperBan03 .swiper-slide img { height: 100%;}
}
@media (max-width:1024px) { 
 .BannerHome03 .swiperBan03 .swiper-slide img { height: 100%;}
}
@media (max-width:768px) { 
 .BannerHome03 .swiperBan03 .swiper-slide img { height: 100%;}
}


.pageIndex .bannerindex .swiper-slide:nth-child(1)::before {
    content: "空間美學×現代建材×高端住宅設計";
    position: absolute;
    z-index: 999;
    pointer-events: none;
    bottom: 25%;
    left: 13%;
    width: 29%;
    aspect-ratio: 500 / 38;
    font-size: var(--f18);
    font-family: var(--SFont);
    color: var(--SubColor03);
    font-weight: 500;
    padding: 7px 13px;
    background: rgba(237, 233, 230, 0.88); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: justify;
    text-align-last: justify;
    mix-blend-mode: hard-light;
    opacity: 0; 
    will-change: transform, opacity, filter;
}

.pageIndex .bannerindex .swiper-slide:nth-child(1)::after {
    content: "";
    position: absolute;
    z-index: 999;
    pointer-events: none;
    bottom: 6%;
    left: 0;
    background-image: url('https://pic03.eapple.com.tw/chumendesign/00_cover-ban01.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    aspect-ratio: 1300 / 280;
    width: 75%;
    opacity: 0;
    will-change: transform, opacity;
}
.pageIndex .bannerindex .swiper-slide-active:nth-child(1):before {     animation: slide-in-left-blur 1.4s cubic-bezier(0.25, 1, 0.5, 1) 1.8s forwards;}
.pageIndex .bannerindex .swiper-slide-active:nth-child(1)::after {         animation: slide-up-fade 1.6s cubic-bezier(0.25, 1, 0.5, 1) 2.1s forwards;}


/* ==========================================
    動畫 Keyframes 
   ========================================== */

/* 由左至右 */
@keyframes slide-in-left-blur {
    0% {
        opacity: 0;
        transform: translateX(-40px);
        filter: blur(12px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0px);
    }
}

/* 由下往上升起 + 淡入 */
@keyframes slide-up-fade {
    0% {
        opacity: 0;
        transform: translateY(35px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ==========================================
   RWD 響應式調整 (Tablet & Mobile)
   ========================================== */

@media screen and (max-width: 1440px) {
   .pageIndex .bannerindex .swiper-slide:nth-child(1)::before {
    bottom: 24%;
}
}

/* 平板尺寸 (1024px 以下) */
@media screen and (max-width: 1024px) {
    .pageIndex .bannerindex .swiper-slide:nth-child(1)::before {
        bottom: 25%;
        left: 16%;
        width: 35%;
        font-size: var(--f16);
    }
    .pageIndex .bannerindex .swiper-slide:nth-child(1)::after {
        bottom: 5%;
        width: 88%;
    }
}

/* 大型手機 / 橫向手機 (768px 以下) */
@media screen and (max-width: 768px) {
    .pageIndex .bannerindex .swiper-slide:nth-child(1)::before {
        letter-spacing: 0.5px;
        aspect-ratio: auto;
        bottom: 25%;
        left: 16%;
        width: 35%;
        padding: 5px 7px;
    }
}

/* 直向手機 (480px 以下) */
@media screen and (max-width: 480px) {
    .pageIndex .bannerindex .swiper-slide:nth-child(1)::before {
        bottom: 18%;
        left: 5%;
        width: 80%;
        padding: 5px 10px;
        font-size: 13px;
        text-align: center;
        text-align-last: center; 
    }
}
/*
.pageIndex .bannerindex .swiper-slide.swiper-slide:before, 
.pageIndex .bannerindex .swiper-slide.swiper-slide:after {
    content: "";
    position: absolute;
    z-index: 999;
    pointer-events: none;
}
.pageIndex .bannerindex .swiper-slide-active:before,
.pageIndex .bannerindex .swiper-slide-active:after {}

.pageIndex .bannerindex .swiper-slide:nth-child(1):before,
.pageIndex .bannerindex .swiper-slide:nth-child(1):after {}

.pageIndex .bannerindex .swiper-slide:nth-child(2):before, .pageIndex .bannerindex .swiper-slide:nth-child(2):after {
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    top: 75%;
}
*/

/*切換鈕*/
.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 {
    padding: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    min-height: 240px;
    width: 100%;
    height: 45vh;
    background: #fff;
    position: relative;
    overflow: hidden;
}
.banner h5 {}
.banner.banA {}
.banner.banB {}
.banner.banC {}
.banner.banD {}
.banner.banE {}
.banner.banblog {}
.banner.banDesign { background-color:#333;}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
.blog_subbox {
    grid-template-columns: repeat(3, 1fr);
}
.subbox_item a {
    grid-template-columns: 1fr;
}

*/

/*文章-相關推薦*/
.news_related {
    padding: 80px 15px;
    margin-top: 50px;
    background: var(--SurfaceBg);
}
.news_related h6{    margin-bottom: 30px;}
.news_related h6 span:before {
    font-size: var(--f24);
    color: var(--MainColor);
    font-weight: 400;
}
.news_related_list li > a {
    padding: 11px;
    background: var(--bgwhite);
    box-shadow: #c5a58575 0px 10px 50px;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*設計作品管理*/
.StoreProjsList {    width: 90%;    padding: var(--pd80) 20px;}
.projsTabs li {    padding: 10px;}
.projsTabs li a, .projsTabs li.Now a {
    color: var(--FontColor);
    font-size: var(--f16);
    font-weight: 500;
    border-bottom: 1px solid #2b221a2b;
    padding: 5px 10px;
}
.projsTabs li.Now a { border-bottom: 1px solid #2b221a;}
.StoreProjs_Post li {    border: none;}
.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: var(--FontColor);
    font-weight: 400;
}

/*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);}


/*設計作品管理-內頁*/
.StoreProjsDetail {    width: 95%;}
.ProjsDetail_Title p {
    color: var(--FontColor);
}
.ProjsDetail_Title p a {
    background: #be996bba;
    width: 25px;
    border-radius: 4px;
    /* border: 1px solid #2b221a52; */
    height: 25px;
}
.ProjsDetail_Title p a.Btn_Share_LINE {
    background: #fff;
}
.ProjsDetail_Title p a::before {
    color: #fff;
    background: transparent;
    font-family: var(--SFontEN);
    font-weight: 300;
}
.ProjsDetail_Title p a.Btn_Share_LINE::before {
    content: "\f3c0";
    font-family: 'Font Awesome 6 Brands';
    font-size: 25px;
    color: #be996bba;
}
.ProjsDetail_Title p a.Btn_Share_FB::before {
    content: "\f39e";
    font-family: 'Font Awesome 6 Brands';
    font-size: 15px;
    color: #fff;
}

.ProjsDetail_Title p span {
    background: #2b221a30;
    height: 23px;
}
.ProjsDetail_Title h4 {
    font-size: var(--f24);
    color: var(--FontColor);
    font-weight: 400;
    font-family: var(--SFont);
}
.ProjsDetail_Intro h6 strong, .ProjsDetail_Intro h6 {
    color: var(--FontColor);
    font-weight: 300;
    font-size: 14px;
}


/*設計作品管理-內頁圖片*/
.ProjsDetail_ImgView {    padding: 0;}
.ProjsDetail_ImgView ul li:first-child {    padding-top: 0;}
.ProjsDetail_Bottom a.ProjsBtn_Next {    background: var(--MainColor);}

.ProjsDetail_Bottom a.ProjsBtn_Prev, .ProjsDetail_Bottom a.ProjsBtn_Back {    background: #be996ba1;}

.ProjsDetail_ImgView ul li a {    position: relative;}
/*.ProjsDetail_ImgView ul li a:before {
    content: "Detail";
    background: #be996b4f; 
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all .5s;
    color: #fff;
    font-family: var(--SFontEN);
    font-size: 15px;

    text-transform: uppercase;
    z-index: 1;
}*/
.ProjsDetail_ImgView ul li a:hover:before {opacity: 1;}
.ProjsDetail_ImgView ul li a:hover img {
    filter: grayscale(0.5);
    transition: all .5s;
}
.ProjsDetail_Viewpoint {
    color: var(--FontColor);
    font-size: 14px;
    font-weight: 300;
    padding-right: 20px;
}


/*設計作品管理-內頁-相關*/
.ProjsDetail_OtherObjs li h6 {    color: var(--MainColor);}
.ProjsDetail_OtherObjs li h6:before {    background: var(--MainColor);}
.ProjsDetail_OtherObjs li h6:after {    width: 100%;    background: #be996b73;}

@media screen and (max-width: 1024px) {
.ProjsDetail_info_2_5 {        padding: 20px 30px;    }
.ProjsDetail_info_3_5 {        padding: 20px 40px;    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

.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) {}

@media screen and (max-width: 768px) {
  :root {
    --f17: 15px;
    --f16: 14px;
  }
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu {}
.footer.with_shopping_mode { padding:30px 0 70px; }
#to_top { bottom:60px;}

/*漢堡選單*/
.stellarnav .menu-toggle:after {    color: var(--MainColor);}
.stellarnav .menu-toggle span.bars span {    background: var(--MainColor);}
.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(--MainColor);}/*下拉關掉*/
.stellarnav.mobile li.open {    background: var(--bgcolor);}/*下拉*/
.stellarnav > ul > li > a {        color: var(--MainColor);    }
}


@media (max-width:600px) {

    ul.show-list, .pic-list {    grid-template-columns: 1fr;}
    .module_i_news ul, .blog_subbox  {    grid-template-columns: 1fr;}
}

@media (max-width:375px) {}



