@charset "utf-8";

/*反白顏色*/
::-moz-selection{  background-color: #3d2b21;  color: #e5e5e5;}
::selection{  background-color: #3d2b21;  color: #e5e5e5;}
:root {
    --MainColor: #3d2b21;
    --SubColor:#282828 ;
    --SFont:"Noto Sans TC", sans-serif;
    --SFontEN: "Cormorant Garamond", serif;
    --logo-color:#231815;
    --title-color:#B97D59;
    --bg-surface: #262626;
    --accent_gold: #d4af37;
    --bg-dark: #1a1a1a;   
    --bg-light: #f2f2f2;   

    --footer_bg: #1e1e1e; 
    --border-color: rgba(166, 124, 82, 0.2);
    
    /* --- 皮革與木質色 --- */
    --leather-deep: #3d2b21;  
    --leather-brown: #a67c52;
    --leather-orange: #b85a31;
    --leather-nude: #c2a182;

    --accent-gold: #b2935b;   
    --marble-vein: #dcdcdc;  
    
    /* --- 文字 --- */
    --text-primary: #e5e5e5; 
    --text-body: #b5b5b5; 
    --text-muted: #737373;  
    --text-en: #b4b4b4; 
    
    /* --- 漸層 --- */
    --leather-gradient: linear-gradient(135deg, #a67c52 0%, #3d2b21 100%);
    --gold-gradient: linear-gradient(45deg, #b2935b 0%, #d4af37 50%, #b2935b 100%);

    --f56: 3.5rem; --f48: 3rem; --f42: 2.625rem; --f32: 2rem;
    --f24: 1.5rem; --f18: 1.125rem; --f16: 1rem;
    --pd80: 80px;
    --pd-section: clamp(60px, 10vw, 150px);
}

body {
    font-family: var(--SFont);
    letter-spacing: .1rem;
    color: var(--text-primary);
    background: var(--bg-dark);
    font-size: var(--f16);
}
.main_part {max-width: 1400px;padding: var(--pd80) 0;width: 94%;}
.path{display: none;}
#content_main {        background: var(--bg-dark);    }

/*★★★卷軸設定↓↓↓↓↓↓↓↓↓↓↓↓*/
/* 捲軸寬度及高度 */
::-webkit-scrollbar {  width: 6px;   height: 0px; }
/* 軌道背景底色 */
::-webkit-scrollbar-track {  background: #737373; }

/* 滑桿顏色 */
::-webkit-scrollbar-thumb {  background: #3d2b21; }
/* 滑桿滑鼠滑入時的顏色 */
::-webkit-scrollbar-thumb:hover {  background: var(--leather-gradient); }

/*
關於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 {
    background: #00000000;
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    transition: all .5s;
}
.header_area.sticky {    background: transparent;}
.pageIndex .header_area {    backdrop-filter: none; transition: all .5s;}
.pageIndex .header_area.sticky {    backdrop-filter: blur(10px);}
.main_header_area .container {    max-width: 1500px;}

.navigation {    grid-template-columns: 65px 1fr; align-items: center; }
.nav-header {    grid-row: 1 / span 1;}

/*上方選單右邊設定 臉書/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;}
*/
.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;
}
.linksBtn {
    width: 60px;
    height: 60px;
    background: #a67c521f;
    backdrop-filter: blur(5px);
}
.info_fix_links a {    color: var(--bg-light);}
.info_fix_links a:hover {
    background: linear-gradient(135deg, rgba(61, 43, 33, 0.95) 0%, rgba(166, 124, 82, 0.9) 100%);
}
.fa-lightbulb::before {    content: "\f075";}
a.info_fix_default.info_fix_phone, a.info_fix_default.info_fix_tel2, a.info_fix_default.info_fix_mail{display: none;}

.headerSticky .info_fix {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    pointer-events: auto;
}

/* TOP按鈕 */
#to_top {
    left: unset;
    right: 25px;
    height: auto;
    font-family: var(--SFont);
    font-size: 14px;
    color: transparent;
    background: transparent;
    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(--leather-brown);
    margin-bottom: 50px;
}
#to_top::after {
    content: 'PAGE TOP';
    display: block;
    bottom: 0;
    font-size: 12px;
    color: var(--leather-brown);
    text-align: left;
    line-height: 1;
    writing-mode: vertical-rl;
}
#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;}



/*電腦LOGO
.nav-brand {}
*/
.nav-brand img {    filter: invert(100%) sepia(7%) saturate(4%) hue-rotate(67deg) brightness(111%) contrast(73%);}
.pageIndex .nav-brand {
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
    animation: logo_down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 3.5s;
}
@keyframes logo_down{
    0%{        opacity: 0; top: -100px; }
    100%{        opacity: 1;  top: 0; }
}

/*第一層*/
.stellarnav > ul > li {position: relative;}
.stellarnav > ul > li:after {
content: '';
position: absolute;
width: 140%;
left: 50%;
bottom: -32px;
height: 220px;
transform: translateX(-50%) scale(0.92);

opacity: 0;
z-index: -1;
pointer-events: none;
transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);

background:
    radial-gradient(
        ellipse at 50% 0%,
        rgba(255, 240, 220, 0.18) 0%,  
        transparent 35%
    ),
    radial-gradient(
        ellipse at 50% 0%,
        rgba(185, 126, 89, 0.788) 0%,  
        rgba(185, 126, 89, 0.384) 25%,
        rgba(185, 126, 89, 0.37) 50%,
        rgba(185, 125, 89, 0.05) 65%,
        transparent 80%
    );
    filter: blur(14px);
}

/* --- hover --- */
.stellarnav > ul > li:hover:after {
opacity: 1;
transform: translateX(-50%) scale(1);
animation: lightBreath 5s ease-in-out infinite alternate;
}

@keyframes lightBreath {
0% {transform: translateX(-50%) scale(0.96);opacity: 0.8;}
100% {transform: translateX(-50%) scale(1.04);opacity: 1;}
}

.stellarnav > ul > li > a {
    color: var(--text-primary);
    transition: color 0.4s ease, letter-spacing 0.4s ease;
    font-size: 14px;
    padding: 0 12px;
    letter-spacing: 0.1rem;
}

.stellarnav > ul > li:hover > a {
    color: #ffffff; 
    letter-spacing: 0.15rem;
}

/*下拉線條箭頭*/
.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-muted) var(--text-muted) transparent;
    transition: 0.3s;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.stellarnav li.has-sub:hover > a:after {
    border-color: transparent var(--leather-nude) var(--leather-nude) transparent;
    transform: rotate(225deg); 
    top: 45%;
}

.pageIndex .stellarnav > ul > li {   opacity: 0;}
.pageIndex .stellarnav > ul > li:nth-of-type(1){
    animation: down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 2.2s;
}
.pageIndex .stellarnav > ul > li:nth-of-type(2){
    animation: down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 2.5s;
}
.pageIndex .stellarnav > ul > li:nth-of-type(3){
    animation: down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 2.8s;
}
.pageIndex .stellarnav > ul > li:nth-of-type(4){
    animation: down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 3s;
}
.pageIndex .stellarnav > ul > li:nth-of-type(5){
    animation: down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 3.2s;
}
.pageIndex .stellarnav > ul > li:nth-of-type(6){
    animation: down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 3.4s;
}

@keyframes down {
    0%{        opacity: 0;        transform: translate(0,-20px);    }
    100%{        opacity: 1;        transform: translate(0,0);    }
}


/*第二層*/
.stellarnav ul ul {
    background: #1a1a1aad;
    backdrop-filter: blur(5px);
}
.stellarnav li li {    border: none;}
.stellarnav li li > a, .stellarnav li li.has-sub > a {
    padding: 10px 15px;
    transition: all 0.3s;
    color: var(--text-primary);
}
.stellarnav li li:hover > a, .stellarnav li li.has-sub:hover > a {
    background: var(--leather-brown);
    padding-left: 18px;
}

/*下拉第二層箭頭
.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 {
    font-size: 14px;
    color: var(--text-body);
    position: relative;
    z-index: 5;
    border-top: 2px solid var(--leather-brown);
    padding: 80px 0 0;
    background: #141414;
    overflow: hidden; 
}

.footer::before {
    content: "";
    position: absolute;
    top: -150%;
    left: -150%;
    width: 400%;
    height: 400%;
        background: radial-gradient(
        circle at center, 
        rgba(61, 43, 33, 0.15) 0%,   
        rgba(61, 43, 33, 0.05) 30%, 
        rgba(20, 20, 20, 0) 70%    
    );
    
    filter: blur(100px); 
    z-index: -2;
    animation: softFlow 30s ease-in-out infinite alternate;
    pointer-events: none;
}

/* footer噪點紋理  */
.footer::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03; 
    /*mix-blend-mode: overlay; */
    z-index: -1;
    pointer-events: none;
}

@keyframes softFlow {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(10%, 5%) rotate(5deg); }
    100% { transform: translate(-5%, 10%) rotate(-5deg); }
}

.footer .center {    max-width: 1500px;}
.footer_info {
    display: grid;
    grid-template-columns: 160px 2fr 160px;
    grid-gap: 20px 60px;
    /* padding-right: 0; */
    padding: 0 30px;
}

/* --- Logo --- */
.footer_logo img {
    max-width: 100%;
    filter: invert(51%) sepia(6%) saturate(2999%) hue-rotate(349deg) brightness(99%) contrast(80%);
    transition: filter 0.3s ease;
    display: none;
}
.footer_logo > a {
    background: url(https://pic03.eapple.com.tw/jcinterior/logo.svg) no-repeat;
    display: inline-block;
    width: 100%;
    height: 125px;
    background-size: contain;
    opacity: .9;
}

/*  box_link */
.box_link {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: flex-start;
    max-width: 160px;
    top: 10px;
    opacity: .7;
    right: 60px;
}
.box_link a {
    display: flex;
    width: 140px;
    height: 35px;
    border-radius: 0;
    font-size: 14px;
    justify-content: flex-start;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(166, 124, 82, 0.3);
    background: linear-gradient(145deg, #1a1a1a, #222);
    color: #a67c52;
    padding: 5px 11px;
    gap: 10px;
}
.box_link a:hover {
    border-color: #a67c52;
    background: #a67c52;
    color: #141414;
    box-shadow: 0 0 15px rgba(166, 124, 82, 0.2);
}
.box_link a:after {
    font-size: 12px;
}
.box_link a.me_tp_fb:after {    content: "FACEBOOK";}
.box_link a.me_tp_line:after {    content: "0987293034";}
.box_link a.me_tp_mail:after {    content: "E-MAIL";}
.box_link a.me_tp_ig:after {    content: "INSTAGRAM";}

.box_link a.me_tp_call {    display: none;}

/* 聯絡資訊 */
.footer_info ul {
    display: flex;
    gap: 4vw;
    justify-content: flex-end;
    flex-wrap: wrap;
}
.footer_info li:nth-child(1) {
    /* display: grid; */
    /* grid-template-columns: repeat(2, 1fr); */
    display: flex;
    flex-direction: column;
}
.footer_info li p {
    line-height: 2;
    letter-spacing: 1px;
    color: var(--text-body);
    margin-bottom: 5px;
}

.footer_info li p a {
    color: var(--text-body);
    transition: color 0.3s;
}
.footer_info li p a:hover {    color: var(--leather-brown);}

.footer_info li p:before {
    color: var(--leather-brown);
    font-weight: 400;
    margin-right: 8px;
    opacity: .7;
}
.footer_info li p.tel2:before {    content: '驗屋部許先生：';}
.footer_info li p.phone:before {    content: '設計部許小姐：';}
.footer_info li p.add:before {    content: '桃園店：';
}.footer_info li p.add2:before {    content: '新竹店：';}

/*順序調整*/
.footer_info li p.tel {    order: 1;}
.footer_info li p.tel2 {    order: 2;}
.footer_info li p.phone {    order: 3;}
.footer_info li p.mail {    order: 4;}
.footer_info li p.add {    order: 5;}
.footer_info li p.add2 {    order: 6;}
.footer_info li p.line {    order: 7;}
.footer_info li p.taxid {    display: none;}

.footer_menu {    display: flex;    flex-direction: column;}
.footer_menu a {
    /* border: 1px solid var(--border-color); */
    padding: 8.5px 20px;
    font-size: 12px;
    color: var(--text-body);
    background: transparent;
    transition: color 0.4s ease;
    position: relative;
    border: none;
    display: inline-block;
    overflow: hidden;
    letter-spacing: 1px;
}
.footer_menu a:hover {
    background: var(--leather-deep);
    color: var(--leather-light);
    /* border-color: var(--leather-brown); */
    background: transparent;
    color: #ffffff;
}
.footer_menu a:before {
    content: "";
    position: absolute;
    background: linear-gradient(135deg, 
        rgba(61, 43, 33, 0.95) 0%, 
        rgba(166, 124, 82, 0.9) 100%);
    
    height: 1px; 
    width: 10px;  
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1; 
    transition: 
        width 0.4s cubic-bezier(0.23, 1, 0.32, 1), 
        height 0.3s cubic-bezier(0.23, 1, 0.32, 1) 0.1s, 
        opacity 0.3s ease;
    opacity: 0.6; 
}
.footer_menu a:hover:before {
    width: 100%;
    height: 100%;
    opacity: 1;
    box-shadow: inset 0 0 15px rgba(212, 175, 55, 0.1); 
}

.footer_menu a:first-child {    display: none;}

/* 版權 */
.copy { 
    text-align: center; 
    padding: 20px 0; 
    font-size: 12px; 
    color: var(--text-muted); 
    border-top: 1px solid rgba(255, 255, 255, 0.05); 
    margin-top: 40px;
}

.copy a { color: var(--text-muted); }
.copy a:hover { color: var(--leather-orange); }


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 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;}


/*相關推薦*/
.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) {
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 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 .swiper-banner {
    position: fixed;
    margin: 0;
    height: auto;
    height: inherit;
}
/*大圖切換*/
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: auto;
    top: var(--swiper-pagination-top, 83%);
    left: 2vw;
    width: 25px;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 3px 8px;
    width: 5px;
    height: 25px;
    background: var(--MainColor);
    border-radius: 2px;
}


.pageIndex .bannerindex .swiper-slide {
    position: relative;
    overflow: hidden;
}
.pageIndex .bannerindex .swiper-slide {    transition-property: opacity; }

/* ==========================================
   SLIDE 1 — 基礎設定
========================================== */
.pageIndex .bannerindex .swiper-slide:nth-child(1) {
    isolation: isolate;
    box-shadow: inset -100px 0 150px -50px black;
    background: url(https://pic03.eapple.com.tw/jcinterior/01cover-1bg.jpg) center / cover no-repeat;
    --text-left: clamp(40px, 10vw, 160px);
    --cntext-left: clamp(35px, 14vw, 240px);
    --text-gap: 5px;
    --line-height-offset: -0.1em;
}

.pageIndex .bannerindex .swiper-slide:nth-child(1).swiper-slide-active {
  animation: vignetteBreath 6s cubic-bezier(0.25, 1, 0.35, 1) forwards;
}

@keyframes vignetteBreath {
  0%   { filter: brightness(0.4); }
  30%  { filter: brightness(0.4); }
  100% { filter: brightness(1); }
}

/* ==========================================
    SLIDE 1 — 圖片
========================================== */
.pageIndex .bannerindex .swiper-slide:nth-child(1) img {
    position: absolute;
    top: 52%;
    right: 0;
    width: clamp(60vw, 77vw, 1250px);
    aspect-ratio: 1250 / 700;
    height: auto;
    object-fit: cover;
    object-position: right center;
    z-index: 10;
    border-radius: 2px 0 0 2px;
    box-shadow: -30px 0 80px rgba(0,0,0,0.4);
    mask-image: radial-gradient(circle, black 70%, rgba(0,0,0,0.4) 100%);
    -webkit-mask-image: radial-gradient(circle, black 70%, rgba(0,0,0,0.4) 100%);
    transform: translateY(-50%) translateX(5%) scale(1.08);
    opacity: 0;
    will-change: transform, opacity, filter;
}

.pageIndex .bannerindex .swiper-slide:nth-child(1).swiper-slide-active img {
    animation: s1ImgReveal 5.5s cubic-bezier(0.25, 1, 0.35, 1) both;
}

@keyframes s1ImgReveal {
  0% {
    transform: translateY(-50%) translateX(5%) scale(1.08);
    opacity: 0;
    filter: brightness(0.6);
  }
  12% { opacity: 1; }
  100% {
    transform: translateY(-50%) translateX(0%) scale(1);
    opacity: 1;
    filter: brightness(1);
  }
}

/* ==========================================
   SLIDE 1 — 英文 ::after
========================================== */
.pageIndex .bannerindex .swiper-slide:nth-child(1):after {
  content: '“Art in Form \A     Legacy in Spirit.”';
  white-space: pre;
  position: absolute;
  left: var(--text-left);
  top: 60%;
  transform: translate(0, calc(-100% + var(--line-height-offset)));
  text-transform: uppercase;
  z-index: 20;
  font-family: var(--SFont);
  font-size: clamp(42px, 5vw, 75px);
  line-height: 1.1;
  padding: 0.1em 0;
  font-weight: 400;
  background: linear-gradient(135deg,
    #4D3B2C 0%, #B97D59 40%, #EAD9C9 50%, #B97D59 60%, #4D3B2C 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-font-smoothing: antialiased;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
}

/* ==========================================
   SLIDE 1 — 中文 ::before
========================================== */
.pageIndex .bannerindex .swiper-slide:nth-child(1):before {
  content: "佳作其形，傳承其境";
  position: absolute;
  left: var(--cntext-left);
  top: 60%;
  transform: translateY(calc(var(--text-gap) + 8px));
  z-index: 20;
  font-family: var(--SFont);
  font-size: clamp(0.9rem, 1vw, 1.15rem);
  color: #B97D59;
  letter-spacing: 1.2rem;
  font-weight: 300;
  white-space: nowrap;
 opacity: 0;
  -webkit-font-smoothing: antialiased;
}

/* ==========================================
   SLIDE 1 — Active 觸發
========================================== */
.pageIndex .bannerindex .swiper-slide:nth-child(1).swiper-slide-active:after {
  animation:
    s1RevealEN    3.2s cubic-bezier(0.19, 1, 0.22, 1) 0.6s  both,
    luxuryShimmer  14s ease-in-out                   5s    infinite;
}

.pageIndex .bannerindex .swiper-slide:nth-child(1).swiper-slide-active:before {
  animation: s1RevealCN 3s cubic-bezier(0.19, 1, 0.22, 1) 1.4s both;
}

@keyframes s1RevealEN {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transform: translate(20px, calc(-100% + var(--line-height-offset)));
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0% 0 0);
    transform: translate(0px, calc(-100% + var(--line-height-offset)));
  }
}

@keyframes s1RevealCN {
  0% {
    opacity: 0;
    letter-spacing: 1.2rem;
    transform: translateY(calc(var(--text-gap) + 8px));
  }
  100% {
    opacity: 1;
    letter-spacing: 0.8rem;
    transform: translateY(var(--text-gap));
  }
}

/* ==========================================
   SLIDE 2
========================================== */
.pageIndex .bannerindex .swiper-slide:nth-child(2) {
  --s2-text-width: clamp(320px, 45vw, 500px);
  --s2-text-right: clamp(20px, 10vw, 250px);
  --s2-line-height-offset: -0.1em;
}

@keyframes s2ImgReveal {
  0% {
    clip-path: inset(0 0% 0 0);
    opacity: 0;
    filter: brightness(0.6);
  }
  15% {
    clip-path: inset(0 0% 0 0);
    opacity: 1;
    filter: brightness(0.65);
  }
  100% {
    clip-path: inset(0 32% 0 0);
    opacity: 1;
    filter: brightness(1);
  }
}


/* ==========================================
    SLIDE 2 — 英文 ::after
========================================== */
.pageIndex .bannerindex .swiper-slide:nth-child(2):after {
    content: 'HARMONIZING \A BEAUTY';
    white-space: pre;
    position: absolute;
    right: var(--s2-text-right);
    top: 89%;
    transform: translateY(calc(-100% + var(--s2-line-height-offset)));
    width: var(--s2-text-width);
    text-align: center;
    z-index: 20;
    font-family: var(--SFont);
    font-size: clamp(32px, 5vw, 60px);
    line-height: 1.05;
    /* padding: 0.1em 0; */
    font-weight: 400;
    background: #ffffff08;
    backdrop-filter: blur(6px);
    padding: 51px;
    border-radius: 10px;
    border: 1px solid #ffffff30;
    padding-bottom: 8vw;
    letter-spacing: 0;
}

/* ==========================================
    SLIDE 2 — 中文 ::before
========================================== */
.pageIndex .bannerindex .swiper-slide:nth-child(2):before {
    --s2-cnright: clamp(20px, 4vw, 80px);
    --s2-cntext-width: clamp(260px, 26vw, 420px);
    content: "在美感、機能與健康之間 \A 找到最舒適的生活尺度";
    white-space: pre;
    position: absolute;
    right: var(--s2-cnright);
    top: 77%;
    width: var(--s2-cntext-width);
    z-index: 20;
    font-family: var(--SFont);
    font-size: clamp(0.75rem, 0.85vw, 1rem);
    color: #fff;
    line-height: 1.5;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    opacity: 0;
    z-index: 21;
    text-align: center;
    letter-spacing: 0;
    right: var(--s2-text-right);
    transform: translateY(calc(-100% + var(--s2-line-height-offset)));
    width: var(--s2-text-width);
}
/* ==========================================
   SLIDE 2 — Active
========================================== */
.pageIndex .bannerindex .swiper-slide:nth-child(2).swiper-slide-active:after {
  animation:
    s2RevealEN    4s cubic-bezier(0.16, 1, 0.3, 1) 1s both,
    luxuryShimmer 16s ease-in-out 6s infinite;
}

.pageIndex .bannerindex .swiper-slide:nth-child(2).swiper-slide-active:before {
  animation: s2RevealCN 3.5s cubic-bezier(0.16, 1, 0.3, 1) 2s both;
}

@keyframes s2RevealEN {
  0% {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transform: translateY(calc(-100% + var(--s2-line-height-offset) + 16px));
    filter: brightness(0.5);
  }
  22% { opacity: 1; }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0% 0);
    transform: translateY(calc(-100% + var(--s2-line-height-offset)));
    filter: brightness(1);
  }
}

@keyframes s2RevealCN {
  0% {
    opacity: 0;
    letter-spacing: 0.8rem;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    letter-spacing: 0.4rem;
    transform: translateY(0);
  }
}

/* ==========================================
   共用動畫
========================================== */
@keyframes luxuryShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ==========================================
   RWD — 1250px（SLIDE 1 ）
========================================== */
@media (max-width: 1250px) {
  .pageIndex .bannerindex .swiper-slide:nth-child(1) img {
    aspect-ratio: 1250 / 700;
    height: auto;
  }
}

/* ==========================================
   RWD — 平板 1024px
========================================== */
@media (max-width: 1024px) {
  /* SLIDE 1 */
  .pageIndex .bannerindex .swiper-slide:nth-child(1):before {    top: 62%;  }

/*.pageIndex .bannerindex .swiper-slide:nth-child(2) img {
    width: 90vw;
  }*/

/* SLIDE 2 文字 */
  .pageIndex .bannerindex .swiper-slide:nth-child(2) {
    --s2-text-width: clamp(260px, 55vw, 580px);
    --s2-text-right: clamp(16px, 5vw, 80px);
  }

  /*.pageIndex .bannerindex .swiper-slide:nth-child(2):after  { top: 50%; }*/
    .pageIndex .bannerindex .swiper-slide:nth-child(2):before {
        letter-spacing: 0.3rem;
        text-align: center;
        margin: auto;
        width: var(--s2-text-width);
        top: 80%;
    }

  @keyframes s2ImgReveal {
    0% {
      clip-path: inset(0 0% 0 0);
      opacity: 0;
      filter: brightness(0.6);
    }
    15% {
      clip-path: inset(0 0% 0 0);
      opacity: 1;
      filter: brightness(0.65);
    }
    100% {
      clip-path: inset(0 32% 0 0);
      opacity: 1;
      filter: brightness(1);
    }
  }

}

/* ==========================================
    RWD — 平板 768px ~ 1024px 
========================================== */
@media (max-width: 900px) {
    .pageIndex .bannerindex .swiper-slide:nth-child(2) img {
        width: 70vw;
    }

    @keyframes s2ImgReveal {
    0% {
      clip-path: inset(0 0% 0 0);
      opacity: 0;
      filter: brightness(0.6);
    }
    18% {
      clip-path: inset(0 0% 0 0);
      opacity: 1;
      filter: brightness(0.6);
    }
    100% {
      clip-path: inset(0 35% 0 0);
      opacity: 1;
      filter: brightness(1);
    }
    }

    @keyframes s2ImgReveal {
    0% {
      clip-path: inset(0 0% 0 0);
      opacity: 0;
      filter: brightness(0.6);
    }
    15% {
      clip-path: inset(0 0% 0 0);
      opacity: 1;
      filter: brightness(0.65);
    }
    100% {
      clip-path: inset(0 35% 0 0);
      opacity: 1;
      filter: brightness(1);
    }
    }
}

/* ==========================================
    RWD — 手機 768px
========================================== */
@media (max-width: 768px) {
    .bannerindex {        padding-bottom: 0;        height: 70vh;    }
    .bannerindex .swiper-banner .swiper-slide img {        height: 70vh;    }

/* SLIDE 1 圖片 */
.pageIndex .bannerindex .swiper-slide:nth-child(1) img {
        /* position: relative; */
        /* top: 10%; */
        transform: none !important;
        /* width: 80%; */
        /* height: 80vw; */
        object-position: center;
        /* margin-left: auto; */
        /* display: block; */
        width: 100vw;
        height: 75vw;
        top: 0;
}
.pageIndex .bannerindex .swiper-slide:nth-child(1).swiper-slide-active img {
    animation: none !important;
    opacity: 1;
}
.pageIndex .bannerindex .swiper-slide:nth-child(1):after {
    white-space: normal;
    width: 85%;
}

/* SLIDE 2 圖片 */
.pageIndex .bannerindex .swiper-slide:nth-child(2) img {
    animation: none !important;
    opacity: 1;
    clip-path: none !important;
    transform: translateY(-50%);
    transform: none;
}
.pageIndex .bannerindex .swiper-slide:nth-child(2) img {
        width: 100vw;
        height: 75vw;
        top: 0;
}

/* SLIDE 2 文字 */
.pageIndex .bannerindex .swiper-slide:nth-child(2) {
    --s2-text-width: 85vw;
    --s2-text-right: 7.5vw;
}
        .pageIndex .bannerindex .swiper-slide:nth-child(2):after {
        top: 92%;
        text-align: left;
        width: 55%;
        padding: 35px;
        left: 7%;
        padding-bottom: 11vw;
    }

    .pageIndex .bannerindex .swiper-slide:nth-child(2):before {
        top: 80%;
        right: 7.5vw;
        margin: unset;
        left: 12%;
        letter-spacing: 0.2rem;
        white-space: normal;
        font-size: clamp(0.75rem, 3.2vw, 0.9rem);
        text-align: left;
        width: 43%;
    }
}

@media (max-width: 600px) {
    .bannerindex {       height: 40vh;    }
    .pageIndex .bannerindex .swiper-slide:nth-child(1) img, .pageIndex .bannerindex .swiper-slide:nth-child(2) img {        height: 41vh;    }
    
.pageIndex .bannerindex .swiper-slide:nth-child(1):before {    font-size: 12px;letter-spacing: 0 !important;}
.pageIndex .bannerindex .swiper-slide:nth-child(1)::after {    font-size: inherit;}

.pageIndex .bannerindex .swiper-slide:nth-child(2):before {    font-size: 12px; letter-spacing: 0 !important;}
    .pageIndex .bannerindex .swiper-slide:nth-child(2):after {
        top: 95%;
        width: 50%;
        padding: 16px;
        padding-bottom: 13vw;
        font-size: inherit; 
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {
    /* background: var(--bg-dark); */
    height: 30vw;
    /* padding-top: 15vw; */
    padding-top: clamp(9rem, 22.5vw, 200px);
    color: var(--title-color);
    font-size: clamp(3rem, 8vw, 7.5rem);
    font-weight: 300;
    position: relative;
    overflow: hidden;
    background: url(https://pic03.eapple.com.tw/jcinterior/DSC_2715.jpg) no-repeat;
    background-position: center;
    background-attachment: fixed;
}
.banner:after {
    content: "";
    background: linear-gradient(to bottom, rgb(26 26 26 / 60%) 8%, rgb(26 26 26) 96%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.banner h5 {
    position: relative;
    display: inline-block;
    margin: 0;
    /*font-size: clamp(42px, 7vw, 120px);*/
    font-size: clamp(32px, 3.9vw, 75px);
    font-weight: 300;
    line-height: 1;
    letter-spacing: .02em;
    background: linear-gradient(135deg, #4D3B2C 0%, #B97D59 40%, #EAD9C9 50%, #B97D59 60%, #4D3B2C 100%);
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-font-smoothing: antialiased;
    z-index: 1;
    
    opacity: 0;
    transform: translateY(-80px) scale(1.02);
        will-change: transform, opacity, background-size;
    animation: bannerRevealDown 3.6s cubic-bezier(0.19, 1, 0.22, 1) .3s both, luxuryShimmer 14s ease-in-out 3.5s infinite;
}

.album_class_page.album_a  .banner h5, .album_info_page.album_a .banner h5 {
    font-size: var(--f32);
    letter-spacing: 0.2rem;
    opacity: 0;
    animation: none;
}
.blog_in_page.article_a .banner h5 {
    font-size: var(--f32);
    letter-spacing: 0.2rem;
    opacity: 0;
    animation: none;
}

/* ========================= banner h5動畫 ========================= */
@keyframes bannerRevealDown {
    0% {
        opacity: 0;
        background-size: 0% auto;
        transform: translateY(-80px) scale(1.02);
        filter: brightness(.8);
    }

    60% {
        opacity: 1;
        background-size: 160% auto;
        filter: brightness(1);
    }

    100% {
        opacity: 1;
        background-size: 200% auto;
        transform: translateY(0) scale(1);
        filter: brightness(1);
    }
}


.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;
    grid-gap: 10px;
}

.module_i_news li, .subbox_item{position: relative;}
.module_i_news li:before, .subbox_item:before {
    content: "→";
    position: absolute;
    color: var(--text-muted);
    right: 10px;
    font-size: 13px;
    bottom: 9px;
}
.module_i_news li:hover::before, .subbox_item:hover::before {
    animation: mo_arrow 800ms cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
    color: var(--leather-brown);
}
@keyframes mo_arrow{
    40%,50%{opacity:0}
    43%{transform:translateX(105%) scaleY(0.1)}
    44%,50%{transform:translateX(-145%) scaleY(0.1)}
    100%{transform:translateX(0) scaleY(1)}
}
.module_i_news li:after, .subbox_item:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: var(--border-color);
    border: none;
    left: 0;
    transition: 0.2s;
    opacity: 1;
    bottom: 0;
}
.module_i_news li:hover:after, .subbox_item:hover:after {
    animation-name: line_move;
    animation-duration: 0.5s;
    background: var(--leather-gradient);
}
.module_i_news li a, .subbox_item a {
    grid-template-columns: 1fr;
    gap: 10px;
    overflow: hidden;
    animation: blogin 2s cubic-bezier(0.65, 0.05, 0.36, 1) 0s 1 normal forwards;
    padding: 10px;
    padding-bottom: 35px;
}
.module_i_news li a:before, .subbox_item a:before {
    color: var(--text-muted);
    opacity: 1;
    text-align: left;
    left: 10px;
    font-size: 13px;
    letter-spacing: 2px;
    transform: translateY(0%);
    overflow: hidden;
    height: 16px;
}
.module_i_news li a:hover:before,  .subbox_item a:hover:before {
    transform: translateY(-100%);
    transition: all .3s cubic-bezier(0.215, 0.61, 0.355, 1);
    opacity: 0;
}
.module_i_news li a::after, .subbox_item a:after {
    background: transparent;
    opacity: 1;
    top: 100%;
    border: none;
    color: var(--leather-brown);
    opacity: 1;
    text-align: left;
    left: 10px;
    font-size: 13px;
    letter-spacing: 2px;
    content: 'READ MORE';
    overflow: hidden;
    box-sizing: border-box;
    bottom: 0;
    height: 16px;
}
.module_i_news li a:hover:after, .subbox_item a:hover:after {
    transform: translateY(-151%);
}

@keyframes line_move{
    30%{left:100%;width:0}
    40%{width:0;left:0}
    100%{left:0;width:100%}
}
@keyframes blogin {
    0% {    border-top-right-radius: 200px;}
    100% {    border-top-right-radius: 0px;  }
}

@keyframes img-in {
    0% {    filter: blur(10px);}
    100% {  filter: blur(0px); }
}
.module_i_news li a, .i_blog_le img {animation-delay: 3s;}
.fa-caret-down::before {    color: var(--ENTitleColor);}

.i_blog_le, .blog_list_le {    aspect-ratio: 4 / 3; overflow: hidden;}
.i_blog_le img, .blog_list_le img{ 
    transition: opacity 450ms, transform 900ms cubic-bezier(0.215, 0.61, 0.355, 1);
    animation: img-in 2s cubic-bezier(0.65, 0.05, 0.36, 1) 0s 1 normal forwards ; 
}
.module_i_news li a:hover img, .subbox_item a:hover img {    transform: scale(1.2) translate3d(0, 0, 0);}
.blog_list_ri, .i_blog_ri {
    padding: 0;
    height: 145px;
}

.blog_list_ri h5 {
    color: var(--text-primary);
    font-weight: 300;
    font-size: var(--f18);
}
.blog_list_ri p {
    color: var(--text-en);
    font-weight: 200;
    line-height: 1.4;
}

/*文章-側邊欄*/
h5.blog_le_t {
    font-family: var(--SFont);
    color: var(--text-primary);
    font-weight: 300;
    font-size: var(--f24);
    margin-bottom: 10px;
}
.blog_search input[type=search] {
    border-radius: 0;
    background: #99999936;
    border-color: #737373;
}
.blog_le .accordion {    border: none; border-radius:0; }
.accordion li .link a {
    color: var(--text-primary);
    font-weight: 300;
}
.accordion li+li .link {    border-top: none;}
.accordion li .link {    border-bottom: 1px #b97d5926 solid;}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {
    background: var(--leather-gradient) !important;
}

/*文章內層*/
.articel_mainPic img{display: none;}
h4.blog_category_title {
    color: var(--text-primary);
    font-size: var(--f32);
    font-weight: 400;
}

.toShareNews .Boxed.PushTar a {    filter: grayscale(1); transition: all .3s;}
.toShareNews .Boxed.PushTar a:hover {    filter: grayscale(1);}
.blog_back a.article_btn_back {    background: #a67c5242;}

/*文章-相關推薦*/
.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(--text-body);
    font-weight: 400;
}
.news_related_list li > a {
    padding: 11px;
    position: relative;
    z-index: 5;
    /* background: #141414; */
    overflow: hidden;
    padding: 0;
    background: transparent;
}

.news_related_list li > a:after {
    content: "";
    position: absolute;
    top: -150%;
    left: -150%;
    width: 400%;
    height: 400%;
    background: radial-gradient(circle at center, rgba(61, 43, 33, 0.15) 0%, rgba(61, 43, 33, 0.05) 30%, rgba(20, 20, 20, 0) 70%);
    filter: blur(100px);
    z-index: 0;
}
.news_related_list li > a p {
    color: var(--text-body);
    text-align: left;
    padding-top: 6px;
}
.lastPage {
    background: var(--leather-gradient);
    font-size: 15px;
    color: var(--leather-nude);
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

.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);
    ransition: .4s ease;
    filter: grayscale(0.5);
    transform: scale(1);
    -webkit-mask-image: linear-gradient(90deg, #1a1a1a 0, #1a1a1a 50%, transparent 100%);
    mask-image: linear-gradient(90deg, #1a1a1a 0, #1a1a1a 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;
}
.show-list .item a:hover .show_pic img, .pic-list .item a:hover .show_pic img  {
    transform: scale(1.2);
    filter:none
}
@keyframes maskFadeIn {
    0% {
        -webkit-mask-position: 200% 0;
        mask-position: 200% 0
    }

    100% {
        -webkit-mask-position: 0 0;
        mask-position: 0 0
    }
}
.show-list .show_name, .other_subalbum li a p {
    color: var(--text-body);
    font-weight: 300;
    font-size: var(--f16);
    text-align: center;
}

.subalbum-menu h2 {    font-size: 20px; display: none;}
.other_subalbum li {    background: transparent;}

.album_fixed_title {
    background: transparent;
    color: var(--text-body);
    display: none;
}

/*觀看更多*/
.other_album {    margin-top: 5%;}
.album_fixed_title {
    background: transparent;
    color: var(--text-body);
    display: none;
}
.other_album_choice li a i.fa-solid.fa-right-from-bracket {    display: none;}
.other_album_choice li {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(166, 124, 82, 0.3);
    border-radius: 0;
    margin-right: 8px;
}
.other_album_choice li a {
    color: var(--text-muted);
    color: rgba(166, 124, 82, 0.3);
}

/*相本分類全版面 ( 限制最寬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;
    }

    .nav-header {    max-width: 120px;}
}



@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;
}
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu {        background: #151514;    }
#bottom_menu li {    border-right: 1px solid #dddddd08;}
#bottom_menu li a {    color: var(--text-muted);}
.footer.with_shopping_mode { padding:50px 0 70px; }
#to_top { bottom:60px;}
.footer_info ul {    flex-direction: column; gap: 0vw; }
.footer_info {    grid-template-columns: 160px 2fr;}
.info_fix {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    pointer-events: auto;
    bottom: 210px;
}

/*header*/
.pageIndex .header_area.sticky, .header_area {    backdrop-filter: none;}
.nav-header {    max-width: 70px;}
.header_area.sticky {    background: #1a1a1ae3;}

.pageIndex .stellarnav > ul > li {
    animation: none !important;
    opacity: 1;
}

/*漢堡選單*/
.stellarnav.mobile.left > ul {
        border: none;
        background: #0d0d0de6;
        backdrop-filter: blur(9px);
}
.stellarnav.mobile > ul > li > a {    color: var(--text-muted);}
.stellarnav.mobile > ul > li {    border-bottom: none;}
.stellarnav.mobile li a {    border-bottom: 1px solid #a67c520f;}

.stellarnav .menu-toggle:after {    color: var(--leather-brown);}
.stellarnav .menu-toggle span.bars span {    background: var(--leather-brown);}
.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-muted);
}
.stellarnav.mobile ul {    background: var(--leather-brown);}
.stellarnav.mobile li.open {    background: var(--bgcolor);}/*下拉*/
.stellarnav.mobile > ul > li:hover > a {    color: var(--leather-nude);}
.stellarnav > ul > li:after {
    left: 50%;
    bottom: 0;
    height: 3px;
    filter: blur(3px);
    top: 100%;
}
}


@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*/
.footer_info {
    grid-template-columns: 1fr;
}
.box_link{display: none;}
.footer_menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

    ul.show-list, .pic-list {    grid-template-columns: 1fr;}
    .module_i_news ul, .blog_subbox  {    grid-template-columns: 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;
    }
}

