@charset "utf-8";
/* *************豐凡室內設計****************** */
/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/
/* "Noto Sans TC" */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200;300;400;500;600;700;900&display=swap');
/* "Noto Serif TC" */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');


/* 英文黑體 Albert Sans */
@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&display=swap');
/* 英文字體-符號 Fira Sans Extra Condensed */
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans+Extra+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* 英文字體 Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');




/*網站全域設定/＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
:root {
  /* --Color: #1c3459; */
  --MainColor: #faf6f3; /*網站主要色系*/
  --SubColor: #3c3835; /*網站文字色*/
  --SubColor1: #ECECEA; /*網站輔助色系1*/
  --SubColor2: #53565A; /*網站輔助色系2*/
  --SubColor3: #F0F0EF; /*網站輔助色系3*/
  --SubColor4: #97999B; /*網站輔助色系4*/  
  --SubColor5: #d4b779; /*網站輔助色系5*/ 
  --SubColor6: #aeaaa7; /*網站輔助色系6*/ 
  --SFontE: "Inter", "Noto Sans TC",sans-serif;/*英文字體-無襯線*/
  --SFontEN: "Albert Sans", "Noto Sans TC", serif,sans-serif, system-ui;/*英文標字體*/  
  /*--SFontCH: "Shippori Mincho", "Noto Serif TC", serif,sans-serif, system-ui;中文標字體*/  
  --SFont: "Noto Sans TC", sans-serif;/*內文字體*/
  --pd100:100px 0;
  --m100:100px;
  --m50:50px;
  --m30:30px;
  --f80:80px;
  --f60:60px;
  --f52:52px;
  --f48:48px;
  --f44:44px;
  --f40:40px;
  --f36:36px;
  --f32:32px;
  --f28:28px;
  --f24:24px;
  --f22:22px;
  --f20:20px;
  --f18:18px;
  --f17:17px;
  --f16:16px;
}
@media (min-width:1520px) {
  :root{
    /* --f52:60px;
    --f28:32px; */
  }
}
@media (max-width:1024px) {
:root{
  --f80:70px;
  --m50:40px;
  --m30:25px;
  --f52:48px;
  --f48:40px;
  --f44:38px;
  --f40:36px;
  --f36:32px;
  --f32:28px;
  --f28:24px;
  --f24:22px;
  --f22:20px;
  --f20:18px;
  --f18:17px;
}
}
@media (max-width:768px) {
:root{
  --pd100:70px 0;
  --m100:70px;
  --f80:60px;
  --m50:30px;
  --m30:20px;
  --f52:44px;
  --f48:32px;
  --f44:30px;
  --f40:28px;
  --f36:26px;
  --f32:24px;
  --f28:22px;
  --f24:20px;
  --f20:17px;
  --f18:16px;
  --f17:16px;   
  --f16:15px;
}
}
@media (max-width:600px) {
:root{
  --pd100:50px 0;
  --m100:50px;
  --m50:25px;
  --f80:52px;
  --f52:36px;
  --f48:28px;
  --f44:26px;
  --f40:24px;
  --f36:22px;
  --f32:20px;
  --f28:20px;
  --f24:18px;
  --f18:16px;
  --f17:15px;  
}
}
@media (max-width:380px) {
:root{
  --f80:48px;
  --f52:32px;
  --f48:24px;
  --f44:22px;
  --f40:20px;
  --f36:18px;
  --f32:18px;
  --f28:18px;
  --f24:17px;
  --f22:17px;
  --f20:16px;
  --f18:15px;  
  --f16:14px;
}
}
/*網站全域設定/＝＝＝＝＝*/


/*反白顏色*/
::-moz-selection { background-color: #060303; color: #fff; }
::selection { background-color: #060303; color: #fff; }



/*卷軸*/
&::-webkit-scrollbar {
    background: #f1f1f1;
    width: 7px;
}
&::-webkit-scrollbar-button {
    display: none;
    background: #f1f1f1;
    border-radius: 0;
}
&::-webkit-scrollbar-track-piece {
    background: #f1f1f1;
}
&::-webkit-scrollbar-thumb {
    /* border-radius: 4px; */
    background-color: #c1c1c1;
}
&::-webkit-scrollbar-track {
    box-shadow: transparent;
}



/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/* .header_area */

.header_area {position: fixed;z-index: 9999;width: 100%;background: transparent;padding: 0;}
.header_area.sticky {-webkit-box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);box-shadow: unset;background: transparent;}

.pageIndex .main_header_area:before {content: "";background: linear-gradient(180deg, #fff, transparent);width: 100%;height: 10vw;position: absolute;top: 0;left: 0;mix-blend-mode: multiply;opacity: .9;transition: .5s;}

.main_header_area:after {content: "";padding: 0 40px;transition: .4s ease;box-shadow: none;width: 100%;background: rgba(255, 255, 255, 0.9);position: absolute;left: 0;top: 0;backdrop-filter: blur(10px);}
.main_header_area:after {height: 0%;}
.header_area.sticky .main_header_area:after {
    height: 100%;
    /* border-bottom: 1px solid #d7d7d7; */
    box-shadow: 0 5px 20px rgba(50, 50, 50, .1);
}
.header_area.sticky .main_header_area::before {content: none;}



.main_header_area .container {
    max-width: 100%;
    padding: 0 40px;
    transition: 0.5s;
    padding: 0;
}
.header_area .main_header_area {
    background: transparent;
    padding: 0 5vw 0;
    transition: all 0.3s;
    position: relative;
    padding: 0;
}
.header_area.sticky .main_header_area {
    background: transparent;
    padding: 0;
    transition: all 0.3s;
    border: 0;
}

.navigation {transition: all .5s ease;align-items: flex-start;display: flex;gap: 0;}
.sticky .navigation {align-items: center;}


/* 導覽列 */
/*header選單 = = = = =*/
.pageIndex .stellarnav {
padding: 0 30px;
background: linear-gradient(180deg, #f9f9f8, transparent);
}

.stellarnav {
padding: 0 30px;
}
.header_area.sticky .stellarnav {
opacity: 1;
transition: all 0.3s;
pointer-events: unset;
background: transparent;
}


.pageIndex .stellarnav::before {    
content: "";
width: 100%;
height: 1px;
position: absolute;
bottom: 0;
left: 0;
background: #97999b80;
width: 0%;
animation: NavLine 2.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
/* animation-delay: 1.7s; */
}
.pageIndex .sticky .stellarnav::before {
background: transparent;
}
@keyframes NavLine {0%{width: 0;}100%{width: 100%;}
}


/* 第一層 */
.stellarnav > ul > li {
position: relative;
padding: 20px;
font-size: 0;
transition: all .5s ease-in-out;
}
.sticky .stellarnav > ul > li {    padding: 15px 20px;}
.stellarnav > ul > li:after {
    content: "";
    display: block;
    background-color: transparent;
    width: 0;
    height: 50px;
    position: absolute;
    top: -32%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all .5s;
    pointer-events: none;
    content: none;
}
.stellarnav > ul > li:hover::after {
    box-shadow: rgb(255, 255, 255) 0px 0px 31px;
    width: 100%;
    transition: .5s cubic-bezier(0.77, 0, 0.65, 0.99);
}
.stellarnav > ul > li.has-sub > a {
    padding-right: 0px;
}
.stellarnav > ul > li > a {
    font-family: var(--SFontEN);
    height: 40px;
    margin: 0;
    position: relative;
    padding: 10px 5px;
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 1px;
    color: #53565A;
    padding: 0;
}
.stellarnav > ul > li > a b {
    font-weight: 500;
    letter-spacing: 1.5px;
}
.header_area.sticky .stellarnav > ul > li > a {
    /* color: #1c1c1c; */
    /* padding: 28px 5px; */
}
.stellarnav.desktop > ul > li > a:hover {
    color: #d4b779;
    transition: .5s ;
}
.stellarnav ul li:hover a {
    opacity: 1;
    transition: all 0.3s ease-in-out;
}
.stellarnav ul ul>li>a:hover, .stellarnav ul ul>li>a:focus {
    color: #131413;
    opacity: 1;
}
/* 下拉符號移除 */
.stellarnav li.has-sub > a:after{content: none;}



/* 第二層 */
.stellarnav ul ul {
    padding: 0;
    list-style: none;
    white-space: nowrap;
    box-shadow: 0 3px 5px rgba(0, 0, 0, .175);
    border: none;
    min-width: auto;
    width: fit-content;
    margin: 0;
    top: auto;
    width: 140px;
    position: absolute;
    z-index: 9900;
    text-align: left;
    display: none;
    background: #fff;
}
.stellarnav > ul > li.drop-left > ul{right: unset}
.stellarnav li li, .stellarnav li.has-sub li {
    border: none;
    border-bottom: 1px solid #f3f3f3;
}
.stellarnav.desktop li li.has-sub > a:after{
    content: '';
    display: block;
    height: 0px;
    border-bottom: solid 3px #777;
    position: absolute;
    top: 50%;
    right: 15px;
    height: 8px;
    width: 8px;
    display: block;
    border-style: solid;
    border-width: 0 1px 1px 0;
    transform: rotate(45deg);
    transition: border .2s;
    transform: rotate(-45deg);
    border-color: transparent #c5a469 #c5a469 transparent;
}
.stellarnav li.has-sub li:last-child {
    border-bottom: none;
}
.stellarnav li.has-sub li a, .stellarnav.desktop li.has-sub li a {
    font-size: 12px;
    text-align: center;
    padding: 10px 20px;
    white-space: nowrap;
    font-family: var(--SFont);
    font-weight: 400;
    letter-spacing: 1.5px;
    padding-right: 50px;
    text-align: left;
    padding: 8px 12px;
    transition: all .5s;
}
.stellarnav li.has-sub li a:hover {
    color: #fff;
    padding-left: 16px;
    background: #888;
}
.news_classes > li:hover > a, .news_classes > li:focus > a {
    color: #fff;    
    background: #808080;
}
/* 第三層 */
.stellarnav ul ul ul {
    top: 0;
    left: 100%;
    margin: 0;
    width: fit-content;
    transform: unset;
}



.me_tp_features {display: none;}


/*電腦LOGO = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.nav-header {/* grid-row: 1; */width: fit-content;transition: all 0.4s;font-size: 0;position: absolute;background: transparent;z-index: 100;position: relative;max-width: 150px;padding: 4px 20px;}
.pageIndex .nav-header {
max-width: 200px;
padding: 10px 20px;
}
.pageIndex .sticky .nav-header, .sticky .nav-header {
max-width: 150px;
padding: 4px 20px;
}

.pageIndex .nav-header::after {
content: "";
display: block;
background-color: transparent;
border:  1px solid;
border-color: transparent #97999b80 #97999b80 transparent;
position: absolute;
top: 0%;
right:  0%;
width: 0;
height: 0;
border-radius: 0 0 20px 0;
backdrop-filter: none;
animation: NavLogo 1.3s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
/* animation-delay: 1.8s; */
z-index: -1;
transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}
.pageIndex .sticky .nav-header::after {
border-color: transparent;
transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}




.nav-brand {margin: 0;}
.nav-brand img {max-width: 100%;width: 100%;object-fit: cover;}

/* @keyframes nav-logo{0%{width: 0;}100%{width: 100%;}} */
@keyframes NavLogo{0%{width: 0;height: 0;}50%{width: 1px;height: 100.1%;}100%{width: 100.1%;height: 100.1%;}}
/* @keyframes nav-logo-3{0%{opacity: 0;left: -100px;}100%{opacity: 1;left: 0;}} */



/*手機LOGO
.nav-brand-m {}
*/


/*footer = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.box_link{display: none;}

.footer {
position: relative;
margin-top: 0;
padding-top: 60px;
padding-bottom: 0;
background-repeat: no-repeat;
background-size: cover;
z-index: 1;
/* background: #eee; */
background: #F1F4F3;
}
.footer .center {
width: 95%;
max-width: 1200px;
margin: 0 auto;
padding: 0 4% 40px;
display: flex;
-webkit-box-pack: justify;
justify-content: space-between;
}
.footer_logo {/* display: none; */};


/* footer資訊*/
.footer_info{ }

.footer_info {
text-align: center;
width: 100%;
display: grid;
grid-template-columns: 140px 1fr;
grid-gap: 40px;
padding: 0;
}

.footer_info:nth-child(1) > ul {   }


/* 文字共用 */
.footer_menu a, .footer_info li p {
    position: relative;
    border: 0;
    color: #53565A;
    background: transparent;
    padding: 0 20px;
    font-family: var(--SFont);
    font-size: 13px;
    line-height: 2;
    letter-spacing: 1px;
    font-weight: 400;
    opacity: 1;
    text-align: left;
    margin: 0;
}

.footer_info li:nth-child(1) {
    display: grid;
    padding: 0;
    grid-template-columns: 1fr auto;
    flex-direction: column;
}
.footer_info li:nth-child(1) p a {
    box-shadow: inset 1px 0 0 0 #D9D9D6;
    padding-left: 10px;
}
.footer_info li p:before {
    margin-right: 10px;
    letter-spacing: 1.5px;
    font-weight: 600;
}
.footer_info li p.tel:before {content: '電話';}
.footer_info li p.mail:before {content: '信箱';}
.footer_info li p.add:before {content: '地址';}
.footer_info li p{padding: 0;}
.footer_info li p:nth-child(2n) {text-align: right;}
.footer_info li p+p{margin-left: 0;}



.footer_info li:nth-child(2){padding: 0;padding-top: 10px;margin-top: 10px;border-top: 1px solid rgba(203,203,203,.6);}
.footer_menu {font-size: 0;width: 100%;display: flex;gap: 10px;}
.footer_menu a {
    line-height: 2.4;
    transition: all 0.3s linear;
    width: 100%;
    text-align: center;
    background: #e5e7e6;
}

.footer_menu a:first-child{display: none;}
.footer_menu a:hover {
    background: transparent;
    color: #53565A;
    opacity: .6;
}


/* ------------------------------------------------------------------------------------------------------------ */

.copy {
    text-align: center;
    padding: 10px 0;
    border-top: 0;
    align-items: center;
    color: #b4b4b4;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    justify-content: center;
    font-family: var(--SFontEN);
    font-size: 10px;
    line-height: 2;
    letter-spacing: 1px;
    font-weight: 400;
    margin: 0;
    background-color: #fff;
}
.copy a {color: #b4b4b4;} 

/* 浮動按鈕 */



/* 置頂按鈕 */
#to_top {
box-shadow: none;
cursor: pointer;
position: absolute;
bottom: 25px;
right: unset;
left: 20px;
font-weight: 400;
padding: 10px;
aspect-ratio: 1 / 1;
height: auto;
font-size: 0;
transition: all .4s ease;
font-family: var(--SFontE);
z-index: 100;
width: 38px;
background: #aeaaa7;
border-radius: 50px;
border: 2px solid #ffffff;
}
#to_top:hover {
opacity: 0.6;
transition: opacity 0.25s;
}
#to_top i.top {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#to_top i.top:before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    position: relative;
    top: 2px;
    right: 0;
    left: unset;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    box-sizing: border-box;
    transform: rotate(-45deg);
    transform-origin: unset;
    background: transparent;
    border-radius: 0;
}
a#to_top i:after {content: none;}




/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = =*/
/* 商品下拉超過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個--結束 */





/* = = = 大圖-分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = *
/*預設解除背景輪播*/
#content_main, #content {
    margin: 0;
    background: transparent;
    padding: 80px 0;
    background-repeat: repeat;
    position: relative;
    padding: 0;
    z-index: 1;
}
#content{
    padding-top: 80px;
}
.bannerindex {position: relative;height: auto;}
/* 大圖尺寸 */
.bannerindex .swiper-banner {
position: static;
margin: 0;
height: auto;
}
/* .bannerindex .swiper-wrapper {height: 90vh;} */
.bannerindex .swiper-slide {height: 100%;}
.bannerindex .swiper-banner .swiper-slide img, .bannerindex .swiper-banner .swiper-slide-active img{
/* 大圖切換閃爍-opacity */
opacity: unset !important;
width: auto;object-fit: contain;height: 100%;object-fit: cover;width: 100%;height: 100%;max-width: 100%;}
.bannerindex .swiper-slide img { height:auto;}






/* 大圖點點按鈕 */
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
bottom: 12px;
display: none;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
margin: 0 5px;
border-radius: 0;
height: 4px;
width: 20px;
}
.swiper-pagination-bullet {
opacity: .5;
background: #fff;
}
.swiper-pagination-bullet-active {
opacity: 1;
background: #fff;
}
/* 大圖點點按鈕END */



/* 大圖進場 */
.bannerindex .swiper-wrapper:before, .bannerindex .swiper-wrapper:after {content: "";position: absolute;z-index: 100;pointer-events: none;opacity: 0;} 

/* 大圖內層 */
.bannerindex .swiper-slide:before, .bannerindex .swiper-slide:after {
    content: "";
    position: absolute;
    z-index: 100;
    pointer-events: none;    
    opacity: 0;    
} 
.bannerindex .swiper-slide:before {
    content: 'A wealth beyond the ordinary.';
    clear: both;
    position: absolute;
    left: 8%;
    bottom: 15%;
    font-size: var(--f48);
    font-family: var(--SFontEN);
    letter-spacing: 1px;
    line-height: 170%;
    font-weight: 500;
    color: #ffffff;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 1;
    transition: all 0.3s ease-in-out;

}
.bannerindex .swiper-slide:after {
    content: '豐凡，豐富非凡';
    clear: both;
    position: absolute;
    left: 8%;
    bottom: 12%;
    font-size: var(--f18);
    font-family: var(--SFont);
    letter-spacing: 2.5px;
    font-weight: 400;
    line-height: 170%;
    color: #ffffff;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 1;
    transition: all 0.3s ease-in-out;
    opacity: 1;
}
.bannerindex .swiper-slide:nth-child(2):after {
    content: '替您打造生活機能又兼具美感的舒適空間';
}







/* .bannerindex .swiper-slide.swiper-slide-active:nth-child(1):before, .bannerindex .swiper-slide.swiper-slide-active:nth-child(2):before{
    -webkit-animation: NtxtShow 1.2s ease-in-out forwards;
    animation: NtxtShow 1.2s ease-in-out forwards;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}*/

.bannerindex .swiper-slide:before {    
-webkit-animation: NfocusIn 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
animation: NfocusIn 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
animation-delay:0.3s;
}
.bannerindex .swiper-slide-active:nth-child(1):after, .bannerindex .swiper-slide-active:nth-child(2):after{
-webkit-animation: NFadeInUp .8s ease-in-out forwards;
animation: NFadeInUp .8s ease-in-out forwards;
}


@keyframes NfocusIn {0% {letter-spacing: .5em;transform: translateZ(300px);filter: blur(12px);opacity: 0;}
100% {transform: translateZ(12px);filter: blur(0);opacity: 1;}
}

@keyframes NtxtShow {0% {opacity: 0;}100% {opacity: 1;}}
@keyframes NFadeInUp {0% {transform: translateY(20px) ;opacity: 0;}100% {transform: translateY(0) ;opacity: 1;}}





@media screen and (max-width: 1500px) {
/* = = 大圖 = = */

}
@media screen and (max-width: 1200px) {
/* = = 大圖 = = */

}
@media screen and (max-width: 1024px) {
/* = = 大圖 = = */

}
/* @768上方區域_平板版面768px */
@media screen and (max-width: 768px) {
/* = = 大圖 = = */

}

@media screen and (max-width: 660px) {
/* = = 大圖 = = */ 

}

@media screen and (max-width: 480px) {
/* = = 大圖 = = */ 

}



/* = = = 主設定-分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =*/
/* 麵包屑 */
.path {
padding: 0 10px;
border-bottom: 1px solid #e5e5e5;
background-color: #fff;
margin-bottom: 50px;
padding: 20px 0;
text-align: center;
display: none;
}
.path p, .path p a {
    color: var(--SubColor6);
    text-align: center;
    display: inline-block;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 2px;
    font-family: var(--SFont);
}
.path p a {
color: #666;
transition: .3s;
}
.path p a:hover {
color: #a93635;
color: #666;
font-weight: 700;
}




/* main */
div#page{
position: relative;
}
div#page:before {
background: url(https://pic03.eapple.com.tw/fongfan/all_bg.jpg);
    width: 100%;
    height: 100%;
    content: '';
    display: block;
    position: absolute;
    opacity: .5;
    pointer-events: none;
    z-index: 0;
}

.edit_part{
    padding: 0;
    min-height: 1000px;
    /* 暫時 */
}
.main_part {
    width: 100%;
    min-width: 100%;
    margin: auto;
    padding: 50px 20px;
    padding-left: 2%;
    padding-right: 2%;
    padding: 0;
}
.show_content {
padding: 100px 20px 80px;
font-family: var(--SFont);
width: 90%;
max-width: 1240px;
margin: 0 auto;
padding-left: 20px;
padding-right: 20px;
}

.subalbum-menu {
    margin: 0;
    padding: 0;
}

.edit {
    color: #444;
    margin: auto;
    padding: 20px 0 60px;
    line-height: 1.7;
    letter-spacing: 0.5px;
    letter-spacing: 0.04em;
    font-weight: 400;
}


/*內頁BANNER 設定 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.banner {
    width: 100%;
    max-width: 1300px;
    height: 600px;
    background: #f5f2f0;
    position: relative;
    overflow: hidden;
    margin: auto;
}
.banner:before {
    content: '';
    animation: NbgScroll 50s linear infinite;
    width: 120%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-image: url(https://pic03.eapple.com.tw/fongfan/banB.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-position: 50% 75%;
}
.banner:after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #f5f2f0;
    background: linear-gradient(90deg, #cfcac0 0%, transparent 25% 20%, transparent 80%, #d5c2a400);
    opacity: 0;
}
.banner h5 {
color: transparent;
position: absolute;
top: calc(50% - 15px);
left: 90px;
z-index: 10;
color: #fff;
font-size: 20px;
letter-spacing: 0px;
line-height: 1.5;
padding-bottom: 10px;
border-bottom: 1px solid #fff;
filter: drop-shadow(2px 2px 10px rgb(36 29 21 / 20%));
font-family: var(--SFontEN);
font-weight: 500;
font-size: 0;
}
.banner h5:after{
content: 'WORK';
font-family: var(--SFontEN);
font-size: 22px;
color: #fff;
font-weight: 800;    
letter-spacing: 3px;
}
@keyframes NbgScroll {0% {-webkit-transform: translateX(0);transform: translateX(0);}50% {-webkit-transform: translateX(-10%);transform: translateX(-15%);}100% {-webkit-transform: translateX(0);transform: translateX(0);}}


.contact_page .banner.banC:before {background-image: url(https://pic03.eapple.com.tw/fongfan/banA.jpg);}
.contact_page .banner.banC h5:after{content: 'CONTACT';}

.banner.banblog:before {background-image: url(https://pic03.eapple.com.tw/fongfan/banE.jpg);}
.banner.banblog h5:after{content: 'NEWS';}

.banner.banA {}
.banner.banB {}
.banner.banD {}
.banner.banE {}
.banner.banblog {}




@media screen and (max-width: 1300px) {
/* 大圖 */
.bannerindex {position: relative;height: 75vh;}
.bannerindex .swiper-banner {height: 100%;}
}

/* @1200上方區域_平板版面1200px */
@media screen and (max-width: 1200px) {
/* 共用 */
.show_content {width: 95%;}
}



/* @1024上方區域_平板版面1024px */
@media screen and (max-width: 1024px) {
/* 共用 */
.show_content {padding: 80px 20px;}


/* 大圖 */
.bannerindex .swiper-slide:after {bottom: 10%;}


/* = = header = = */
.header_area.sticky { position: fixed; }
.header_area .main_header_area {}
.header_area.sticky .main_header_area{backdrop-filter: none;border: 0;}
.navigation {flex-direction: row;}
body:not(.pageIndex) .navigation {align-items: center;}

/* logo*/
.nav-header {max-width: 140px;padding: 4px 20px;margin: auto;}



/* 導覽列 */
.pageIndex .stellarnav {opacity: 1;pointer-events: unset;padding: 0 20px;}
.stellarnav ul {text-align: right;}
.stellarnav > ul > li {padding: 10px;}
.sticky .stellarnav > ul > li {padding: 15px 10px;}
.stellarnav > ul > li > a {letter-spacing: 0;margin: 0;font-size: 14px;}
.stellarnav > ul > li > a b {letter-spacing: .8px;}
.stellarnav>ul>li:after {height: 3px;top: 100%;bottom: 0;transform: translate(-50%, 0);}

/* 內頁BN */
.banner {max-height: 420px;}
}


/* @768上方區域_平板版面768px */
@media screen and (max-width: 768px) {
/* 大圖 */
.bannerindex {margin: 0;padding: 0;height: 80vh;}
.swiper-slide:nth-child(1) img {object-fit: cover;object-position: 60%;}
.swiper-slide:nth-child(2) img {object-fit: cover;object-position: 90%;}
.bannerindex .swiper-slide:before {bottom: 16%; line-height: 1.2;mix-blend-mode:unset;}
.bannerindex .swiper-slide:after {font-size: var(--f16);letter-spacing: 3px;bottom: 9%;mix-blend-mode:unset;}

/* logo*/    
.pageIndex .nav-header, .nav-header {max-width: 140px;padding: 10px;margin-left: 0;}
.nav-header {padding: 5px 15px;}
.nav-brand img { }



/* = = header = = */
.header_area {height: 80px;}
.main_header_area:after {height: 100%;}
.pageIndex .main_header_area:after  {height: 0;}
.header_area .main_header_area {padding:0;border: 0;backdrop-filter: none;}
.navigation {display: flex;justify-content: space-between;flex-direction: row;}
.pageIndex .main_header_area:before {min-height: 140px;}


/* 導覽列漢堡選單 */    
.stellarnav.mobile {right: 0;left: unset;background: transparent;}
.pageIndex .stellarnav::before {content: none;}
.stellarnav.mobile .menu-toggle {
display: flex;
margin: 21px 0;
padding: 0;
gap: 10px;
flex-direction: column;
align-items: center;
}
.stellarnav .menu-toggle:after {
text-transform: capitalize;
font-size: 12px;
color: #fff;
transform: scale(1);
font-family: var(--SFontEN);
letter-spacing: 0.5px;
font-weight: 500;
color: #444;
}
.pageIndex .stellarnav .menu-toggle:after {color: #fff;}
.pageIndex .sticky .stellarnav .menu-toggle:after {color: #444;}
.stellarnav .menu-toggle span.bars {display: flex;gap: 5px;margin: 0;flex-direction: column;}
.stellarnav .menu-toggle span.bars span {width: 30px;height: 2px;border-radius: 0;margin: 0 ;background: #444;height: 1px;}
.pageIndex .stellarnav .menu-toggle span.bars span {background: #fff;}
.pageIndex .sticky .stellarnav .menu-toggle span.bars span {background: #444;}

/* 導覽列展開 */
.stellarnav.mobile.left > ul {left: unset;right: 0;font-size: 0;max-width: 100%;padding: 0;        
/*右滑出現*/right: -100vw;overflow: hidden;transition: all .5s ease;overflow-y: auto;}
/*卷軸*/
.stellarnav.mobile.left > ul::-webkit-scrollbar {background: #eaeaea;width: 4px;height: 15px;}
.stellarnav.mobile.left > ul::-webkit-scrollbar-button {display: none;background: #eaeaea;border-radius: 0;}
.stellarnav.mobile.left > ul::-webkit-scrollbar-track-piece {background: #fbfbfb;}
.stellarnav.mobile.left > ul::-webkit-scrollbar-thumb {background-color: #888;width: 4px;border-radius: 15px;border: 3px solid var(--MainColor);}
.stellarnav.mobile.left > ul::-webkit-scrollbar-track {border-radius: 6px;height: 6px;background-color: #eaeaea;}
.stellarnav.mobile.left.active > ul {right: 0;max-width: 100%;width: 70%;}
.stellarnav.mobile.left.active > ul {width: 70%;max-width: 400px;background: rgb(68 68 68 / 80%);backdrop-filter: saturate(93%) blur(7px);}

.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {display: inline-block;font-size: 12px;background: transparent;height: 76px;width: fit-content;padding: 0;margin: 26px 0 28px;content: 'Menu';font-size: 13px;color: #fff;transform: scale(1);font-family: var(--SFontEN);letter-spacing: 1px;height: fit-content;width: 100%;text-align: right;display: flex;flex-direction: row-reverse;padding: 15px 10px;margin: 0;background: #444;}
.stellarnav .icon-close {box-sizing: border-box;width: 18px;height: 12px;position: relative;display: inline-block;margin: 0px 9px 0 3px;}
.stellarnav .icon-close:before, .stellarnav .icon-close:after {width: 18px;height: 0px;border-bottom: solid 1px #f1e197;}
/* 導覽列選取Hover效果 */
.stellarnav ul:hover li a {opacity: 1;transition: all 0.3s ease-in-out;}

/* 第一層 */
.stellarnav.mobile > ul > li {border-bottom: 1px #eee solid;padding: 0;display: block;border-bottom: 1px solid rgba(240, 240, 240, 0.1);display: flex;flex-direction: column;}
.stellarnav.mobile li.open {background: #4444449e;padding: 0;padding-bottom: 5px;}
.stellarnav.mobile > ul > li > a, .header_area.sticky .stellarnav.mobile > ul > li > a:not(.dd-toggle){text-align: left;overflow: auto;height: auto;line-height: 150%;display: block;letter-spacing: 0.08em;color: #fff;font-size: 15px;letter-spacing: 0.04em;padding: 16px 12px 16px 30px;border: 0;text-shadow: 0 0 3px #0000005c;}
.stellarnav.mobile li.open > a {border: 0;}    
.stellarnav.mobile > ul > li > a b {color: #fff;}
.stellarnav > ul > li > a:before{content: none;}
.stellarnav.mobile > ul > li > a b:last-child {padding-left: 5px;font-size: 13px;}
/* +符號修改 = = */
.stellarnav.mobile > ul > li > a.dd-toggle {top: 5px;padding: 10px;}
.stellarnav.mobile > ul > li.open > a.dd-toggle {top: 0;}
.stellarnav a.dd-toggle .icon-plus:before {width: 8px;height: 8px;border-bottom: solid 1px #fff;top: 50%;left: 0;transform: rotate(-45deg);}
.stellarnav a.dd-toggle .icon-plus:after {width: 8px;height: 8PX;top: 50%;border-bottom: solid 1px #fff;transform: rotate(45deg);}
.stellarnav li.open > a.dd-toggle .icon-plus {-moz-transform: translateY(10px) scaleY(-1);-webkit-transform: translateY(10px) scaleY(-1);transform: translateY(10px) scaleY(-1);}
/* +符號修改END = = */


/* 第二層 */
.stellarnav.mobile ul ul {left: unset;margin: 0 auto;box-shadow: none;width: calc(100% - 10px);margin: auto;left: unset;box-shadow: none;transform: unset;background: transparent;}
.stellarnav li li {font-size: 14px;color: #333;font-family: var(--SFont);border: 0;font-size: 15px;color: #333333;letter-spacing: 0.04em;background: transparent;}
.stellarnav.mobile li li.has-sub a {padding: 10px 30px 10px 20px;}
.stellarnav a.dd-toggle .icon-plus {height: 80%;}
.stellarnav li li a.dd-toggle .icon-plus:before, .stellarnav li li a.dd-toggle .icon-plus:after{border-bottom: solid 1px #ccc;top: 0%;}
.stellarnav.mobile ul li:hover > a {opacity: 1;transition: all 0.3s ease-in-out;background: transparent;color: unset;}
.stellarnav.mobile ul ul>li>a:hover{color: #fff;}

/* 第三層 */
.stellarnav li li li a{font-size: 14px;}
.stellarnav.mobile li li a {border: 0;padding: 0px 25px 10px;color: #ccc;}
.stellarnav.mobile li li, .stellarnav.mobile li.has-sub li {border: 0;}
.stellarnav.mobile li.has-sub li a:hover {color: #fff;padding-left: 30px;background: transparent;}


/* 內頁BN */
.banner {width: 100%;height: 275px;}
.banner h5 { left: 25px;}
.banner h5:after {font-size: 18px;}
}


/* @600上方區域_平板版面600px */
@media screen and (max-width: 600px) {
/* 共用 */
.main_part {width: 100%;padding-bottom: 40px;}
.show_content {padding: 60px 25px;width: 100%;}
/* 大圖 */
.bannerindex .swiper-slide:before {font-size: var(--f44);bottom: 14%;}
/* logo*/    
.pageIndex .sticky .nav-header, .sticky .nav-header {max-width: 130px;}


.header_area {z-index: 100 !important;}/* 暫時放 */

/* 漢堡選單 */
.stellarnav.mobile .menu-toggle {margin: 17px 0;gap: 7px;}
.stellarnav .menu-toggle span.bars span {width: 28px;}
.stellarnav .menu-toggle:after {font-size: 10px;}
.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {font-size: 12px;}
}

/* @480上方區域_平板版面480px */
@media screen and (max-width: 480px) {
/* 大圖 */
.bannerindex .swiper-slide:before {font-size: var(--f36);bottom: 13.5%;left: 6%;}
.bannerindex .swiper-slide:after {font-size: 14px;letter-spacing: 2px;left: 6%;}
}



/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = =*/
/* 購物車 -OFF = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.product_page .main_part {}


/*購物車/內層＝＝*/
.product_info_page .main_part {width: 100%;}
/*按鈕顏色*/
.inquiry_a1 {background: #cbc0a0;}
.inquiry_a2 {background: #bdab77;}
.inquiry_a3 {background: #ADA17E;}
.inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover {background: #222;}
.lastaction {color: #ADA17E;background-color: #f2f2f2;}
.nextaction {background-color: #ADA17E;}
.lastPage {background: #ADA17E;}

/*商品側邊規格*/
.product_info li .txt_box {color: #222222;width: 100%;}
.sidebarBtn .sp_price {color: #cbc0a0;}
.mobile_product_name {}
/*相關推薦*/
.prod_related h6 span:before {}



@media screen and (max-width: 1200px) {}
@media screen and (max-width: 980px) {}
@media screen and (max-width: 768px) {}
@media screen and (max-width: 600px) {}



/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/*文章設定 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

.blog_box {display: flex;margin: auto;justify-content: center;flex-wrap: wrap;}
/* 左側分類欄位 */
.blog_le {
    width: 220px;
    padding: 0;
}
h5.blog_le_t {
    text-align: left;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: bold;
    padding: 10px 0;
    position: relative;
}
h5.blog_le_t em {

    line-height: 1;
    letter-spacing: 2px;
    font-weight: 500;
    position: relative;
}
h5.blog_le_t span {
    font-size: 0;
    display: none;
}
.blog_search {
    position: relative;
    margin-bottom: 10px;
    opacity: .8;
}
.blog_search input[type=search] {
    width: 100%;
    font-size: 14px;
    color: #999;
    border: 0;
    background: #f0f0f0;
    border-radius: 0;
    padding: 10px 40px 10px 10px;
}
/* 分類列 */
.blog_le .accordion {
    border-radius: 0;
    border: 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    font-size: 0;
}
.blog_le .accordion li {
    transition: .3s ease-out;    
    border-bottom: 1px solid #ffffff4d;
}
.blog_le .accordion li .link i{color: #9fb0b7;}
.accordion li+li .link {
    border: 0;
}
.accordion li .link a {
    padding: 15px 10px 10px;
    text-align: left;
    line-height: 1.7;
    letter-spacing: 1.5px;
    font-weight: 400;
    margin: 0;
    border-bottom: 1px #3f3f3f33 solid;
    font-size: 13px;
    transition: all .4s;
}

.blog_le .accordion > li.on_this_category{background: #8b8989 !important;}

.blog_le .accordion > li:hover {
    background: transparent !important;
}
.blog_le .accordion > li:hover .link a, .blog_le .accordion > li.on_this_category .link a {
    color: #000 !important;
    background: transparent;
}

.blog_le .accordion > li.on_this_category .link a {color: #fff  !important;background: #8b8989 !important;}

/* 次分類 */
.blog_le .accordion li, .submenu li+li{border: 0;}
.submenu {
    background: transparent;
    font-size: 14px;
}
.submenu a {
    position: relative;
    color: #ccc;
    padding: 10px 15px;
    letter-spacing: 2px;
    transition: all 0.6s ease;
    word-break: break-all;
    border: 0;
}
.submenu a i {    display: none;}
.submenu li.on_this_category a, .submenu a:hover {
    background: #12384a;
}


/* 右側圖文區 */
.blog_ri {
    width: calc(100% - 220px);
    padding: 0 0 0 40px;
}
h4.blog_category_title {
    width: fit-content;
    font-weight: 600;
    letter-spacing: 0.04em;
    display: none;
}
/* 圖文區塊 */
.blog_subbox {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    gap: 10px;
}
.subbox_item {
    position: relative;
    width: 100%;
    background: rgb(255 255 255);
    border-radius: 0;
    overflow: hidden;
    transition: .5s ease-out;
    border: 0;
    height: 100%;
    width: 100%;
    margin: 0;
    background: transparent;
    padding: 0 6px;
    margin-bottom: 0;
    padding-bottom: 15px;
}
.subbox_item a {
    gap: unset;
    height: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    border-bottom: 1px solid #E6E6E6;
    padding-bottom: 35px;
    transition: all .4s;
}
.subbox_item a:hover {
    opacity: 0.5;
}
.module_i_news li a:before, .module_i_news li a:after {
    content: none;
}

.module_i_news li a:after, .subbox_item a:after {
    pointer-events: none;
    background: transparent;
    border: none;
    line-height: 1;
    text-rendering: auto;
    top: 93%;
    bottom: 10px;
    left: 94%;
    opacity: 1;
    content: "→";
    font-family: 'Fira Sans Extra Condensed', sans-serif;
    font-size: 14px;
    color: #2d2d2d;
    width: 5%;
}
.subbox_item a:before {
letter-spacing: 1px;
    font-weight: 600;
    transition: all .6s;
    font-family: var(--SFontEN);
    font-size: 14px;
    left: 10px;
    color: #2f2f2f;
    right: 0;
    opacity: 1;
}
/* 圖 */
.blog_list_le {
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/11;
    background-color: #fff;
    /* margin-right: 40px; */
    /* max-width: 32%; */
    min-width: 280px;
    gap: 10px;
}
.blog_list_le img {
    width: 100%;
    transition: all .6s ease-out;
}

/* 文字 */
.blog_list_ri {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 10px 0;
    width: 100%;
    margin: 0;
    overflow: hidden;
    height: fit-content;
}
.blog_list_ri:after {
    opacity: .3;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1px;
    content: "";
    background: linear-gradient(45deg, #bf9e5b, #bf9e5b);
    opacity: 0;
    transition: width .6s cubic-bezier(0.65, 0, 0.35, 1);
}
.subbox_item a:hover .blog_list_ri:after{
    width: 100%;
}
.blog_list_ri h5 {
    text-align: left;
    color: #050a2d;
    font-weight: 500;
    letter-spacing: 2px;
    color: #444;
    font-size: 18px;
    line-height: 1.6;
    -webkit-line-clamp: 1;
    margin-bottom: 0;
    letter-spacing: 1.5px;
    font-weight: 600;
}
.blog_list_ri em {
    font-style: normal;
    position: relative;
    color: #aaa;
    font-size: 10px;
    line-height: 1;
    text-align: center;
    width: fit-content;
    max-height: 25px;
    margin: 0;
    font-weight: 500;
    padding: 0;
    letter-spacing: 1px;
    margin-top: 10px;
    font-family: var(--SFontEN);
    left: 0;
}
.blog_list_ri p {
    font-weight: 400;
    color: #666;
    margin: 10px 0;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 1.5px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    font-size: 13px;
}



/*文章內層/ = = = = */
h5.blog_le_t em {
    line-height: 1;
    letter-spacing: 2.5px;
    font-weight: 500;
    position: relative;
    font-size: 17px;
}
/* .blog_in_page .blog_le {display: none} */
/* .blog_in_page .blog_ri {padding-left: 50px; } */
.blog_in_page h4.blog_category_title {
    width: 100%;
    letter-spacing: .08em;
    display: block;
    text-align: left;
    border-bottom: 1px solid #E6E6E6;
    color: #2f2f2f;
    font-weight: 500;
    margin-bottom: 0px;
    font-size: 24px;
}

/* 分享按鈕 = = */
.blog_shareData {
    border: 1px solid #ccc;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    margin-bottom: 20px;
    width: fit-content;
    padding: 10px;
    border-radius: 5px;
    margin: 0;
    display: none;
}
.toShareNews b, .toShareNews a, .toShareNews a object, .toShareNews a i {font-weight: 400;font-size: 14px;color: #333;}
.toShareNews a object {  filter: grayscale(1) brightness(1) contrast(1);}
.toShareNews > a:hover > object { filter: none;}


.blog_back {   width: 100%;gap: 0;margin-bottom: 20px;}
.blog_back a {
color: #595757;
padding: 8px 16px;
width: 100%;
font-size: 12px;
border: 1px solid #e6e6e6;
letter-spacing: .04em;
transition: all .4s ease;
}
.blog_back a.article_btn_back {   background: #e6e6e6; }
.blog_back a.article_btn_next, .blog_back a.article_btn_prev {  background: transparent;}
.blog_back a:hover {opacity: 0.5;}


.news_related  {display: none;}
.news_related h6 span:before {  content: '相關文章';  font-size: 24px;color: #444444;  letter-spacing: 2px;}
.news_related {  background: #fdfdfd;  padding: 25px 15px;}
.news_related {   background: #fdfdfd;   padding: 55px 15px 25px;}
.lastPage { background: #bf9e5b;}





/* 文章編輯器 */
.blog_box_edit {  background: transparent;}
.blog_box_edit * { line-height: 1.7;}
.articel_mainPic {  display: none;}












/*首頁*/
.module_i_news {
padding: 80px 10px 120px;
background: transparent;
max-width: 1200px;
margin: auto;
font-family: var(--SFont);
}
.module_i_news .title_i_box h6{font-size: 32px;color: #97999B;font-size: 10px;order: 2;font-family: var(--SFontEN);font-weight: 400;letter-spacing: 1px;}
.module_i_news section {max-width: 1400px;width: 100%;}
.module_i_news .title_i_box {margin-bottom: 10px;position: absolute;display: flex;flex-direction: column;gap: 15px;}
.module_i_news .title_i_box h4 {color: #444;letter-spacing: 4px;-webkit-writing-mode: vertical-rl;-ms-writing-mode: tb-rl;writing-mode: vertical-rl;font-size: var(--f24);font-weight: 500;}
.module_i_news_list, .module_i_news_list.swiper {
padding: 0;
}
.module_i_news ul {
grid-template-columns: 1fr;
gap: 0;
margin-left: 80px;
margin-bottom: 30px;
border-bottom: 1px solid #222;
border-top: 1px solid #222;
}
.module_i_news li {
border-bottom: 1px solid #E6E6E6;
}

.module_i_news li:last-of-type {
border-bottom: none;
}
.module_i_news li a {display: flex;position: relative;min-height: 150px;padding: 20px 0;align-items: flex-start;gap: 40px;transition: all .4s;}
.i_blog_le {
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
padding: 0;
width: 100%;
line-height: 0;
aspect-ratio: 16 / 11;
max-width: 180px;
overflow: hidden;
}
.i_blog_ri {
    position: relative;
vertical-align: top;
padding: 0;
width: 100%;
display: flex;
overflow: hidden;
flex-direction: column;
padding-right: 60px;
padding: 0 60px 0 0;
color: #53565A;
/* background: url(https://pic03.eapple.com.tw/fongfan/arrow.svg) no-repeat right 18px top 50% / 16px; */
transition: opacity 0.3s;
height: 100%;
}
.i_blog_ri:after {
    pointer-events: none;
    background: transparent;
    border: none;
    line-height: 1;
    text-rendering: auto;
    top: calc(50% - 7px);
    bottom: unset;
    right: 0;
    opacity: 1;
    content: "→";
    font-family: 'Fira Sans Extra Condensed', sans-serif;
    font-size: 14px;
    color: #53565A;
    width: fit-content;
    padding: 0 20px;
    position: absolute;
    text-align: center;
}
.i_blog_ri:hover:after, .subbox_item a:hover:after {
    animation: NarroMoveR 800ms cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
@keyframes NarroMoveR{
    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)}
}

.i_blog_ri h5 {
color: #444444;
font-size: 17px;
line-height: 1.4;
margin-bottom: 10px;
letter-spacing: 1.5px;
font-weight: 600;
}
.i_blog_ri em {
font-style: normal;
position: relative;
order: -1;
color: #fff;
font-size: 10px;
line-height: 1;
text-align: center;
width: fit-content;
max-height: 25px;
margin: 0;
font-weight: 700;
padding: 6px;
padding-top: 8px;
letter-spacing: 2.5px;
margin-bottom: 10px;
background-color: #222;
background: #444444;
font-family: var(--SFontEN);
left: -37px;
}
.i_blog_ri p {
font-size: 14px;
line-height: 1.8;
letter-spacing: 1px;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
font-size: 13px;
}
.module_i_news li a:before,.module_i_news li a:after{display: none;}
.module_i_news li a:hover { opacity: 0.5; }

/* 首頁BTN */
.i_blog_b {
    max-width: 1200px;
    margin: auto;
    text-align: right;
}
.i_blog_b a {
margin: 0 auto;
    background: transparent;
    color: #595757;
    min-width: 160px;
    width: fit-content;
    position: relative;
    border-bottom: 1px solid #e6e6e6;
    padding: 0 60px 10px 30px;
    height: 43px;
    line-height: 1.8;
}

.i_blog_b a b {
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
}
.i_blog_b a b:before,.i_blog_b a b:after {
transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
}
.i_blog_b a b:before {
content: "";
width: 28px;
height: 1px;
position: absolute;
top: 15px;
right: 23px;
background-color: #e6e6e6;
}
.i_blog_b a b:after {
content: "";
width: 13px;
height: 13px;
position: absolute;
top: 9px;
right: 17px;
border: 1px solid #e6e6e6;
border-radius: 7px;
box-sizing: border-box;
}
.i_blog_b a:hover b:after {
right: 44px;
}
.i_blog_b a i.fa-solid.fa-arrow-right {display: none;}


@media screen and (max-width: 1300px){
/* 外 */
.blog_subbox {grid-template-columns: 1fr 1fr;}
}

@media screen and (max-width: 1200px){
/* 首 */
.module_i_news {padding: 60px 25px 100px;}
}


@media screen and (max-width: 1024px){
/* 功-外層 */
.blog_le .accordion li {   border-bottom: 1px solid #cccccc; }
.blog_ri {padding-left: 30px;}
.i_blog_ri h5, .blog_list_ri h5 {font-size: var(--f22);}
.blog_list_ri p {letter-spacing: 1.5px;}
.accordion li .link a {  border-bottom: none;}
.blog_le .accordion { grid-template-columns: repeat(1, 1fr); }
.blog_subbox {gap: 0;grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));gap: 15px;}

/* 首 */
.module_i_news ul {grid-template-columns: 1fr;}
.module_i_news .title_i_box {padding-left: 10px;}
.i_blog_ri h5 {font-size: var(--f18);}
}

@media screen and (max-width: 960px) {
.subbox_item {border-bottom: none;}
}

@media screen and (max-width: 768px){
/* 功-外層 */
h5.blog_le_t {display: none;}
.blog_le, .blog_ri {width: 100%;}
.blog_le {margin-bottom: 20px;}
.blog_list_ri p {font-size: 13px;}
.subbox_item a .blog_list_le::before, .subbox_item a:hover .blog_list_le::before {letter-spacing: 1px;font-size: 14px;padding: 6px 15px;}
.blog_back {   width: 100%;}
.blog_ri {padding: 0;}
/* 內 */
.blog_box_edit * {font-size: 15px;}

/* 首 */
.module_i_news .title_i_box {position: relative;width: 100%;padding: 0;gap: 5px;}
.module_i_news .title_i_box h4 {text-align: left;letter-spacing: 2px;writing-mode: unset;font-size: var(--f32);}
.module_i_news .title_i_box h6 {text-align: left;}
.module_i_news ul {margin: 0;} 
.i_blog_b {margin-top: 15px;}
.module_i_news li a {gap: 20px;flex-direction: column;}
.i_blog_le { max-width: 100%;}
}

@media screen and (max-width: 600px){
/* 功 */
.subbox_item a {flex-direction: column;gap: 10px;}
.blog_list_le, .blog_list_ri {margin: 0 auto;max-width: 500px;}
.subbox_item a {grid-template-columns: 1fr;}
/* 首 */
.module_i_news {padding: 60px 20px 80px;}
}



@media screen and (max-width: 480px) {
.i_blog_ri h5, .blog_list_ri h5 { order: 2;  }
.blog_list_ri em {   order: 1;   font-size: 13px;    margin: 0;  }
.i_blog_ri p, .blog_list_ri p {  order: 3;   }
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = = = = = */
/*促銷活動設定 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/* 促銷首頁 */
.news_part {
    width: 100%;
    padding: 50px 20px;
    background: #fff;
}

/* 內頁 */
/* 標 */
.promotion_title {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
.promotion_title * {
    width: 40%;
}
.promotion_title span {
    border: 1px #ccc dashed;
    padding: 0 5px;
    margin: 0;
    border: 0;
    line-height: 1.7;
    font-size: 16px;
}
.promotion_title em {
    border: 0;
    margin: 0;
    width: fit-content;
    padding: 5px 10px;
    display: block;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    line-height: 14px;
    letter-spacing: 0.5px;
    color: #395273;
    background-color: #dbe0e6;
    display: none;
}
.promotion_title h2 {
    font-size: 24px;
    color: #222;
    width: 100%;
    font-weight: 500;
    font-size: 30px;
    letter-spacing: 1.5px;
    color: #000;
    /* text-align: center; */
    line-height: 1.7;
}




/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = = = = = */
/*相簿管理 ( 限制最寬2000px  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

/*分類頁面-ON*/
.overlay {-webkit-transform: scale(1);transform: scale(1);background: rgb(85 85 85 / 60%);}
.show-list {grid-template-columns: repeat(3, 1fr);}
.show-list .show_pic {z-index: 0;}
.show-list .item a{position: relative;}
.album_page .show-list .item a:before {
    content: "VIEW +";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-bottom: 1px solid #e6e6e6;
    font-size: 13px;
    max-width: 100px;
    color: #fff;
    font-weight: 500;
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all .5s;
    transition-delay: 0s;
    font-family: var(--SFontEN);
    letter-spacing: 1px;
}
.show-list .item a:hover:before{opacity: 1;height: 25px;padding-bottom: 10px;transition: all .4s;transition-delay: .3s;z-index: 100;}
.show-list .show_name {
    font-weight: 400;
    text-align: center;
    color: #97999B;
    letter-spacing: 4px;
    font-size: 14px;
}
.show-list .item:hover .show_name {
    color: #2f2f2f;
}



/*相簿頁面*/
.other_album {display: none;}

.album_class_page .show-list .item a:before {
content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    width: 36px;
    height: 36px;
    margin-top: -18px;
    margin-left: -18px;
    background-image: linear-gradient(to right, #fff 0, #fff 100%), linear-gradient(to right, #fff 0, #fff 100%);
    background-position: 50%;
    background-size: 1px 100%, 100% 1px;
    background-repeat: no-repeat;
    pointer-events: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all .4s ease-out;
    z-index: 1;
}
.album_class_page .show-list .item a:hover:before{
transform: translate(0);
opacity: 1;
transition-delay: .5s;
}

.album_class_page .overlay {-webkit-transform: scale(1);transform: scale(1);background: rgb(85 85 85 / 60%);content: '';position: absolute;top: 0;left: 0;z-index: 1;width: 100%;height: 100%;background: linear-gradient(45deg, rgba(0, 0, 0, 0.8) 0, rgba(0, 0, 0, 0.4) 100%);pointer-events: none;opacity: 0;transition: all .4s ease-out;}

.subalbum-menu{padding: 0;}
.subalbum-menu h2 {
    background: transparent;
    padding: 0;
    line-height: 1.2;
    border-radius: 5px;
    position: relative;
    color: #444;
    opacity: 1;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    padding-bottom: 20px;
    width: 100%;
    font-size: 20px;
    letter-spacing: 0.12em;
}
.other_subalbum li a p {
    background: rgb(85 85 85 / 50%);
    color: #fff;
    text-align: center;
    font-weight: 300;
    font-size: 14px;
    padding: 10px;
    letter-spacing: 5px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

/*相本內頁*/
.album_info_page{}
/* 相簿內標 */
.album_descrip {
    line-height: 1.6;
    opacity: 1;
    position: relative;
}
.album_descrip p {
color: #444;
    opacity: 1;
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    padding-bottom: 20px;
    width: 100%;
    font-size: 20px;
    letter-spacing: 0.12em;
}

/*相簿瀑布流 -OFF*/
.album_info_page .pic-list {
display: block;
grid-template-columns: unset;
grid-gap: unset;
-moz-column-gap: 10px;
-webkit-column-count: 3;
-webkit-column-gap: 10px;
column-count: 3;
column-gap: 15px;
width: 100%;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
grid-gap: 10px;
}
.album_info_page .pic-list .item {
    width: 100%;
    display: block;
    vertical-align: top;
    padding: 0;
    margin: 0;
    height: fit-content;
}
.album_info_page .pic-list .show_pic {
    height: auto;
    padding: 0;
    aspect-ratio: auto;
aspect-ratio: 392 / 277;
}
.pic-list .item h6 {padding: 0;}
.pic-list .show_pic img { transition: all 0.4s ease;}
.pic-list .show_pic:hover img { opacity: 0.5;}


@media screen and (max-width: 1024px){
/*外*/
.show-list {grid-template-columns: repeat(2, 1fr);}
}
@media screen and (max-width: 500px){
/*外*/
.show-list {grid-template-columns: repeat(1, 1fr);}
}





/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/*聯絡我們 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.contact_content {
    width: 90%;
    max-width: 1200px;
    padding: 80px 0 80px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    font-family: var(--SFontEN);
}
.contact_content form {
    display: flex;
    justify-content: space-between;
}
/* 共用標 */
.blank_letter {
font-family: var(--SFontEN);
    padding-top: 30px;
    font-size: 20px;
    color: #2F2F2F;
    line-height: 1;
    letter-spacing: 2.5px;
    font-weight: 500;
    position: relative;
    font-size: 22px;
    padding-bottom: 10px;
    border-bottom: 1px solid #E6E6E6;
}

/* 聯絡資訊 */
.contact_content .information_left {
    width: 320px;
    width: 32%;
    padding: 0;
}
.list_before {
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 15px;
    color: #444;
    display: block;
    width: 100%;
position: relative;
}
.list_before.info li {
padding-left: 0;
letter-spacing: .04em;
font-size: 14px;
line-height: 1.6;
display: flex;    
display: grid;
grid-template-columns: 25px 35px auto;
}
.info_TEL:before, .info_TEL2:before, .info_PHONE:before, .info_LINE:before, .info_FAX:before, .info_TAXID:before, .info_MAIL:before, .info_ADD:before, .info_ADD2:before {
    position: relative;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #2F2F2F;
    line-height: 1.7;
}
.info_TEL:after, .info_MAIL:after, .info_ADD:after {
content: '';
background-image: url(https://pic03.eapple.com.tw/fongfan/c_tel.svg);
background-size: contain;
background-repeat: no-repeat;
position: relative;
display: block;
left: 0;
width: 18px;
height: auto;
opacity: 0.8;
aspect-ratio: 1 / 1;
order: -1;
margin-right: 6px;
opacity: 0.8;
}
.info_MAIL:after {background-image: url(https://pic03.eapple.com.tw/fongfan/c_mail.svg);}
.info_ADD:after {background-image: url(https://pic03.eapple.com.tw/fongfan/c_add.svg);}
/* MAP */
.contact_le_nomap {
    height: 300px;
}

/* 線上表單 */
.contact_content .information_right {
    padding: 0;
    width: calc(100% - 33%);
    padding-left: 50px;
}
h4.blank_letter.f {
    font-size: 0;
}
h4.blank_letter.f:after {
    content: '歡迎透過本信件表單詢問任何問題，我們會盡快回覆給您。';
    font-size: 18px;
    font-weight: 400;
    letter-spacing: .08em;
    line-height: 1.5;
    position: relative;
        display: block;
}
/* 表單欄位 */
.contact_form li {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 5px;
}
.contact_form li .form__label {
    max-width: 100%;
    text-align: left;
    color: #2f2f2f;
    font-size: 14px;
    letter-spacing: .04em;
    padding: 0;
    position: relative;
    background-color: transparent;
    display: flex;
    flex-direction: row;
    width: fit-content;
    font-weight: 400;
}
.contact_form li .form__insert {
    display: block;
    width: 100%;
    vertical-align: top;
    padding-bottom: 20px;
}
.contact_form li input.noborder {
    font-size: 14px;
    width: 100%;
    min-height: 38px;
    padding: 0 5px;
    background-color: #fff;
    border: 1px solid #E6E6E6;
    -webkit-appearance: none;
    border-radius: 0 !important;
}
.contact_form li textarea.noborder {    
    font-size: 14px;
    width: 100%;
    padding: 0 5px;
    min-height: 130px;
    background-color: #fff;
    border: 1px solid #E6E6E6;
}
.contact_form li.checknumBox .form__insert .captcha + img {
    margin-left: 5px;
    margin-top: 5px;
}


/* 原紅字 */
.note {display: none;}
.red {color: #E63323;}
.star {padding: 2px;display: inline-block;width: 13px;position: relative;left: 3px;top: 0;font-size: 12px;line-height: 1.8;order: 2;}


/* BTN */
.contact_form li.last {margin-top: 20px;margin-bottom: 20px;gap: 10px;}
.contact_form li.last blockquote, .contact_form li.last cite {padding: 4px;border: 0;transition: all .4s ease;}
.contact_form li.last blockquote {color: #53565A;background: transparent;border: 1px solid #e6e6e6;}
.contact_form li.last cite {background: #444;color: #fff;}
.contact_form li.last cite:hover {background:  #c5a461;}
.contact_form li.last input {font-size: 14px;padding: 5px;letter-spacing: 2px;font-family: var(--SFontEN);}
.contact_form li.last blockquote:hover input, .contact_form li.last cite:hover input {letter-spacing: 2px;}
.contact_form li.last cite i {display: none;}





@media screen and (max-width: 1024px) {
.contact_content > form {display: flex;flex-wrap: wrap;gap: 40px;gap: 60px;flex-direction: column-reverse;}
.contact_content .information_left {padding: 0;width: 100%;order: 2;}
.contact_content .information_right {width: 100%;padding: 0;}
}

@media screen and (max-width: 768px) {
.contact_content {width: 95%;}
.blank_letter {padding-bottom: 10px;padding-top: 0;}
.blank_letter.f:before {top: -100px;font-size: 100px;}
.contact_form li .form__label {padding: 0;}
.blank_letter {font-size: var(--f32);}
}

@media screen and (max-width: 600px) {
.contact_content {padding: 60px 25px 40px;width: 100%;}
h4.blank_letter.f:after {font-size: 16px;}
.contact_form li .form__insert {padding-bottom: 5px;}
.contact_form li.last {margin: 40px 0 0;}
.list_before.info {margin-bottom: 15px;}
}



/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

@media screen and (min-width: 1700px) {}
/* @1200下方區域_平板版面1200px */

@media screen and (max-width: 1300px) {
/* footer*/
.footer .center {width: 95%;max-width: 1200px;margin: 0 auto;padding: 0 25px 40px;}
}
@media screen and (max-width: 1200px) {
/* footer*/
.footer_info {margin: auto;}
.footer_info li p {margin-left: 0;}
}

/* @1024下方區域_平板版面1024px */
@media screen and (max-width: 1024px) {
/* footer*/
.footer_info {gap: 25px;}
.footer_menu {gap: 5px;}
.footer_menu a {padding: 0 5px;color: #999;font-size: 12px;} 
.footer_info li:nth-child(1) {grid-template-columns: repeat(1, 1fr);}
.footer_info li p:nth-child(2n) {text-align: left;}
}





/* @768下方區域_平板版面768px */
@media screen and (max-width: 768px) {

/* 開啟手機板下方按鈕所需設定 */
#bottom_menu { display: none    }
.footer.with_shopping_mode {padding: 50px 0 0;}
#to_top {bottom: calc(2vw + 50px);right: 2vw;}

/* footer */
.footer {z-index: 1 !important;}/* 暫放 */
.footer .center {padding: 0 25px 60px;}
.footer_info {margin: auto;grid-template-columns: 1fr;grid-gap: 10px;}
.footer_info li:nth-child(1) {grid-template-columns: repeat(1, 1fr);border-top: 1px solid rgba(203, 203, 203, .6);padding-top: 12px;    
justify-items: center;}
.footer_info li p {margin-left: 0;font-size: 12px;text-align: center;}
.footer_info li p:before {margin-right: 6px;}
.footer_info li:nth-child(1) p a {padding-left: 7px;}
.footer_menu {display: flex;justify-content: center;flex-wrap: wrap;max-width: 500px;margin: auto;}
.footer_menu a {width: 30%;text-align: center;}

.footer_logo {margin: auto;max-width: 160px;}
.footer_logo a {position: relative;width: 95%;margin: auto;display: block;}
}

@media screen and (max-width: 600px) {
.copy {font-size: 9px;line-height: 1.5;}
/* footer */
.footer .center {width: 100%;}
.footer_info li p {font-size: 11px;}
}

@media screen and (max-width: 480px) { }