@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');




/* 英文字體 Cormorant Garamond */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&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: #004737; /*網站主要色系*/
  --SubColor: #033824; /*網站文字色*/
  --SubColor1: #fcf9ea; /*網站輔助色系1*/
  --SubColor2: #edecd7; /*網站輔助色系2*/
  --SubColor3: #2e2e2e; /*網站輔助色系3*/
  --SubColor4: #338751; /*網站輔助色系4*/  
  --SubColor5: #f3f281; /*網站輔助色系5*/ 
  --SubColor6: #053129; /*網站輔助色系6*/ 
  --SubColor7: #F1F4F3; /*網站輔助色系7*/ 
  --SFontE: "Inter", "Noto Sans TC",sans-serif;/*英文字體-無襯線*/
  --SFontEN: "Cormorant Garamond", "Noto Sans TC",sans-serif, system-ui;/*英文標字體*/
  --SFont: "Noto Sans TC", sans-serif;/*內文字體*/
  --SFont2: "Noto Serif 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;
}
}
@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:20px;
  --f24:20px;
  --f20:18px;
  --f18:17px;
  --f17:16px;
}
}
@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:18px;
  --f24:18px;
  --f22:18px;
  --f20:17px;
  --f18:16px;
  --f17:15px;
}
}
@media (max-width:375px) {
:root{
  --f80:48px;
  --f52:32px;
  --f48:24px;
  --f44:22px;
  --f40:20px;
  --f36:18px;
  --f32:18px;
  --f28:17px;
  --f24:17px;
  --f22:17px;
  --f20:16px;
  --f18:15px;
}
}
/*網站全域設定/＝＝＝＝＝*/


/*反白顏色*/
::-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.sticky { position:relative;}
*/
.navigation {
    grid-template-columns: 220px 1fr;}
#content {
	background-size: cover;
	background-repeat: repeat;
	background-image: url(https://pic03.eapple.com.tw/052066655/all_bg.jpg);	
}
#content_main {
    margin-top: 0vh;}
.path{display:none;}

.main_header_area .container {
    max-width: 1600px;}
/*↓↓↓↓↓↓↓此網站更改↓↓↓↓↓↓↓↓*/
/* = = = = = = = 字型 = = = = = = = =*/
body {
    font-family: 'Noto Serif TC', sans-serif;
    letter-spacing: 1px;
}

/* = = = = = = = 大圖滿版 = = = = = = = =*/
.swiper-banner .swiper-slide img {width: 100%;}


/* =============== LOGO =============== */
.nav-header {
	max-width: 220px;
    transition: max-width 0.7s ease, transform 1.2s ease;
}

.nav-brand img {
    padding: 5px 0;
    transform: scale(1); /* 預設加上 scale 1，才有對比動畫 */
    filter: brightness(1) saturate(1);
    transition: transform 0.8s ease, filter 0.8s ease;
    will-change: transform, filter;
}

/* =============== Sticky時Logo收縮（淡柔縮小） =============== */
.header_area.sticky .nav-header {
    max-width: 200px;
    transition: max-width 0.7s ease;
}
.header_area.sticky {
    background: rgba(255, 255, 255, .8);
}
.header_area.sticky .nav-brand img {
    transform: scale(0.9);
    filter: brightness(0.9) saturate(0.8);
    /* transition 不重複定義，避免干擾前面的動畫 */
}



/* =============== 小圖示、購物車區塊 =============== */
.tp_links {
    display: none;
}
.shop_search_btn {
    background: #013d3b;
}
.box_search input[type=text] {
    border: 1px solid #f4f1ea;
}
.header_area.sticky .me_tp_features a {
    color: #000;
}

/* =============== 主選單按鈕 =============== */
.stellarnav > ul > li > a {
    font-size: 15px;
    color: #000;
    transition: 0.7s;
}
.stellarnav > ul > li > a:hover {
    color: #2D4635;
    text-shadow: 0px 0px 5px rgba(0,0,0,0.1);
    
}
.stellarnav > ul > li > a b {
    font-weight: 600;text-transform: capitalize;
}
.stellarnav li.has-sub > a:after {
    border-top: 6px solid #d5d5d5;
}

/* Sticky 狀態下的主選單 */
.header_area.sticky .stellarnav > ul > li > a {
   
}
.header_area.sticky .stellarnav li.has-sub > a:after {
    border-top: 6px solid #ababab;
}

/* =============== 下拉選單樣式 =============== */
/*按鈕下拉*/
/* 按鈕下拉基礎樣式 */
.stellarnav li a {
   font-size: 14px;
    color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease, backdrop-filter 0.4s ease;
}

/* 下拉選單項目 */
.stellarnav li li {
    border: none;
    background-color: rgba(146, 146, 146, 0.2);
    -webkit-backdrop-filter: saturate(180%) blur(5px);
    backdrop-filter: saturate(180%) blur(5px);
    transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
}

/* 下拉選單hover效果：滑順變色 */
.stellarnav li li:hover {
   background-color: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: saturate(120%) blur(2px);
    backdrop-filter: saturate(120%) blur(2px);
}

/* 下拉選單背景 */
.stellarnav ul ul {
    background: #2D4635;
}

/* Sticky Header 時的選單文字顏色 */
.header_area.sticky .stellarnav li a {
    color: #000;
    transition: color 0.3s ease;
}

/* Sticky 時，下拉選單裡的文字仍是白色 */
.header_area.sticky .stellarnav li li a {
    color: #fff;
    transition: color 0.3s ease;
}


/* =============== 手機版與側邊選單 =============== */

.stellarnav.mobile.right .close-menu,
.stellarnav.mobile.left .close-menu {
    background: #364f52;
}
.stellarnav .icon-close:before,
.stellarnav .icon-close:after {
    border-bottom: 2px solid #f4f1ea;
}
.stellarnav.mobile > ul > li {
    border-bottom: 1px solid #4a696d;
}
.stellarnav > ul > li > a {
   
}
.stellarnav > ul > li > a:hover {
  
    font-weight: 500;
}
.stellarnav.mobile.right > ul,
.stellarnav.mobile.left > ul {
    border-right: 0;
}
.stellarnav a.dd-toggle .icon-plus:before,
.stellarnav a.dd-toggle .icon-plus:after {
    border-bottom: 2px solid #7ba9af;
}
.stellarnav.mobile li.open {
    background: #538266;
}
.stellarnav.mobile li a {
    border-bottom: none;
}


/* 手機下拉樣式 */
.stellarnav li li {
    background-color: transparent;
    backdrop-filter: none;
}

/* Sticky Header Menu Toggle 樣式 */
.header_area.sticky .menu-toggle span.bars span {
    background: #000000;
}
.header_area.sticky .menu-toggle:after {
    color: #000000;
}

/* 手機底部選單 */
#bottom_menu {
    background: #f4f1ea;
}
#bottom_menu li a {
    color: #013c3a;
}




/* = = = 預設解除背景輪播 = = = = = = = = = = = = = = = = = = = = = = = = = */

.swiper-banner { position:static; margin:0; height:auto;}
.swiper-slide img { height:auto;}
@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0;}
.stellarnav.mobile li.open {background: transparent;}
.swiper-slide img { animation-fill-mode: none; -webkit-animation-fill-mode: none;}
.stellarnav li a { color: #000;}
.stellarnav.mobile li li a { background: #f5f5f5f;}
.stellarnav.mobile li li ul li a {  background: #f5f5f5;}
.header_area.sticky .stellarnav li li a {color: #000;transition: color 0.3s ease;}

}


/* = = = Index banner = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/* swiper-slide 基本樣式 */
.bannerindex .swiper-slide {
    opacity: 0;
    transition: opacity 1s ease-out;
    position: relative;
}

/* 主圖 before 設定 */
.bannerindex .swiper-slide:before {
    content: "";
    position: absolute;
    z-index: 999;
    pointer-events: none;
    background-size: contain;
    background-repeat: no-repeat;
}

/* 圖片位置 */
.bannerindex .swiper-slide:nth-child(1):before {
    width: 38%;
    background-image: url(https://pic03.eapple.com.tw/052066655/p1.png);
    aspect-ratio: 1/1;
    height: auto;
    top: 33%;
    left: 17%;
}

.bannerindex .swiper-slide:nth-child(2):before {
    width: 36%;
    background-image: url(https://pic03.eapple.com.tw/052066655/p2.png);
    aspect-ratio: 1/1;
    height: auto;
    top: 33%;
    right: 31.8%;
}

/* ✅ 改良版遮色塊（倒茶波感） */
.bannerindex .swiper-slide:nth-child(1):after {
    content: "";
    position: absolute;
    width: 74.150%;
    height: 0;
    bottom: 0;
    z-index: 2;
    right: 37.058%;
    background: radial-gradient(ellipse at center, rgba(11,47,11,0.8) 0%, rgba(11,47,11,0.6) 60%, transparent 100%);
    animation: pourWave 3.2s ease-out forwards;
}

/* 第2張不需要遮色塊 */
.bannerindex .swiper-slide:nth-child(2):after {
    display: none !important;
}

/* 主圖動畫：淡入縮放 */
@keyframes fadeZoomSoft {
    0% {
        opacity: 0;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ✅ 倒茶波動畫 */
@keyframes pourWave {
    0% {
        height: 0%;
        transform: scaleX(1);
        opacity: 0;
    }
    30% {
        height: 20%;
        transform: scaleX(1.05);
        opacity: 0.5;
    }
    60% {
        height: 60%;
        transform: scaleX(0.97);
        opacity: 0.6;
    }
    100% {
        height: 100%;
        transform: scaleX(1);
        opacity: 0.6;
    }
}

/* 啟用動畫設定 */
.bannerindex .swiper-slide.swiper-slide-active:nth-child(1):before {
    animation: fadeZoomSoft 2.8s ease-out forwards;
}
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2):before {
    animation: fadeZoomSoft 2.8s ease-out forwards;
}



/*footer = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.footer {
	padding: 0;
	background: #093129;
    position:;
	position: relative;
}
/.footer::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 250px;
    top: 0;
    left: 0;
    background: url(https://pic03.eapple.com.tw/06-2999995/5.png) #ffffff;
    -webkit-animation: noise 1.5s steps(5) alternate infinite;
    animation: noise 1.5s steps(5) alternate infinite;
    z-index: -1;
}

@keyframes noise {
    0% {      background-position: -88px 166px    }
    20% {      background-position: 222px -333px    }
    40% {      background-position: -111px 444px    }
    60% {      background-position: 33px -66px    }
    80% {      background-position: -138px 212px    }
    100% {      background-position: 317px -197px    }
}

.footer_logo {
    left: 50%;
    width: 100%;
    max-width: 180px;
    margin: 0 auto;
    /* padding-right: 20px; */
    position: absolute;
    font-size: 0;
    transform: translateX(-50%);
}

.footer .center {
    position: relative;
    max-width: 100%;
    padding: 60px 50px;
    background-color: #2D4635;
    font-size: 13px;
    color: #fffbec;
    padding: 4em 0 5rem;
}
.footer_info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px 48px;
    padding: 0;
    max-width: 1400px;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 60px;
    /* width: 95%; */
    /* width: 100%; */
    max-width: 1600px;
    margin: auto;
    padding: 0;
    position: relative;
    margin-left: clamp(60px, 5%, 100px);
    margin-right: clamp(60px, 5%, 100px);
}

.footer_info ul {
    display: grid    ;
    /* grid-template-columns: 1fr 2fr; */
    grid-template-columns: 1fr 1fr;
    gap: 200px;
    align-items: baseline;
    width: 100%;
    /* max-width: 900px; */
    margin: auto;
    font-family: var(--SFont2);
}

.footer_info li {
    padding: 0;
}

.footer_info li:nth-child(2) {
    /* order: -1; */
    /* border-right: solid 1px #ffffff25; */
}

.footer_menu a,
.footer_info li:nth-child(1)>p,
.footer_info li:nth-child(1) a {
    transition: all 0.3s;
    font-weight: 400;
    font-style: normal;
    text-transform: none;
    font-size: 13px;
    line-height: 26px;
    letter-spacing: 0;
    color: #fffbec;
    padding: 0;
    letter-spacing: 0.1em;
}

.footer_menu {
    /* grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); */
    flex-wrap: wrap;
    /* margin-left: -10px; */
    max-width: 400px;
    display: -webkit-box;
    display: -ms-flexbox;    
    display: flex    ;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 20px;
    row-gap: 5px;
    margin-left: auto;
}
.footer_menu a {
    margin: 0;
    text-align: left;
    padding: 5px;
    border: none;
    background: transparent;
    width: fit-content;
    transition: all 0.3s;
    padding: 0;
    margin-top: 10px;
}
.footer_menu a:first-child{
    display: none;
}
/* .footer_menu a::before {
    content: '';
    width: 1px;
    height: 10px;
    margin: 0 13px;
    display: inline-block;
    vertical-align: middle;
    background-color: #444444;
} */

.footer_menu a:hover {
    background: transparent;
    color: #f3e4b8;
    text-decoration: underline;
}
.footer_info li:before, .box_link:before {
    display: block;
    margin-bottom: 10px;
    width: 100%;
    text-align: left;
    font-weight: 500;
    font-style: normal;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0.12em;
    color: #f9f286;
    font-family: var(--SFont2);
}

/* .box_link:before {
    content: "CONTACT";
}
    .footer_info li:nth-child(2):before {
    content: "RELATED LINK";
} */
.footer_info li:nth-child(1):before {
    /*content: "固德茶莊-嘉義茶行,嘉義茶葉批發";*/
}

/* ICON符號 */
.fa-regular {    font-weight: 600;}
.fa-line:before {
    content: "\f3c0";
    font-size: 30px;
    filter: invert(10) brightness(10);
    line-height: 1 !important;
}
/* .fa-line:before {    content: "\f3c0";} */
.fa-mobile-screen-button::before {    content: "\f095"; font-size: 21px;}
.fa-envelope::before {    content: "\f0e0";}
.box_link {
    display: none;
    flex-direction: row;
    max-width: fit-content;
    width: 100%;
    justify-content: flex-start;
    padding: 0;
    margin: 0 auto;
    position: relative;
    order: 3;
    padding-top: 20px;
    align-items: flex-end;
    align-content: flex-start;
    text-align: right;
}
.box_link a {
    border: none;
    margin: 0;
    width: fit-content;
    color: #1c1b1b;
    padding: 0 10px;
    font-size: 20px;
    transition: all .5s;
    padding: 0;
    margin: 0 10px 0 0;
    width: 30px;
    height: 30px;
    transform: scale(.8);
    /* color: #999; */
    background: #fff;
}
.box_link a.me_tp_line {
    color: #1c1b1b;
    background: #1c1b1b;
}
.box_link a.me_tp_line:hover{
    background: #1c1b1b;
    opacity: .6;
}
.box_link a:hover {
    /* color: #ddd; */
    background: #999;
}

.copy {
    border: none;
    padding: 12px 0;
    background-color: #131313;
    color: #294d46;
    margin: 0;
    font-size: 11px;
    letter-spacing: 0.08em;
    font-family: var(--SFontE);
    font-weight: 400;display:none;
}
.copy a {
    color: #294d46;
}

/* 浮動按鈕 */
.info_fix{
}
.info_fix_line .fa-line:before {
    filter: none;
}
.info_fix .linksBtn{
    box-shadow: 0 0 20px #00000026;
}


/*下拉線條箭頭
.stellarnav li.has-sub>a:after {
    position: absolute;
    top: 38%;
    right: 5px;
    height: 7px;
    width: 7px;
    display: block;
    border-style: solid;
    border-width: 0 1px 1px 0;
    border-color: transparent var(--FontColor) var(--FontColor) transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
*/


/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = =*/
/* 商品下拉超過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個--結束 */




/* = = = 大圖-分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */


/*預設解除背景輪播*/

.bannerindex {
    position: relative;
    height: auto;
}
.swiper-banner {
    position: static;
    margin: 0;
    height: auto;
}
/* 大圖點點按鈕 */
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 12px;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 5px
}
.swiper-pagination-bullet {
    /* display: inline-block; */
    /* border-radius: 50%; */
    /* background: transparent; */
    /* border: 1px solid #fff; */
    opacity: .5;
    background: #fff;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background: #fff;
}


/* 大圖切換閃爍 */
.swiper-banner .swiper-slide img, .swiper-banner .swiper-slide-active img{
    opacity: unset !important;
}
.swiper-slide img { height:auto;}
.swiper-slide:before,
.swiper-slide:after {
    content: "";
    position: absolute;
    z-index: 100;
    pointer-events: none;
}




@keyframes banner-in {
    0% {
        opacity: 0;
    }    
    100% {
        opacity: 1;
    }
}
@keyframes banner-img {
    0% {
        filter: brightness(0.1);
        opacity: 0.5;
        transform: scale(1.2);
    }

    100% {
        filter: brightness(1);
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes slide-top {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}


@keyframes move_before {
    0% {
        left: 45%;
        opacity: 0;
    }

    100% {
        left: 50%;
        opacity: 1;
    }
}
@keyframes move_after {
    0% {
        left: 55%;
        opacity: 0;
    }

    100% {
        left: 50%;
        opacity: 1;
    }
}


@keyframes cloudLeft{
    0% {
        left: -10%;
        opacity: 0;
    }
    5% {
        left: -5%;
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
    100% {
        left: 50%;
        opacity: 0;
    }
}
@keyframes cloudRight{
    0% {
        right: -10%;
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
    100% {
        right: 40%;
        opacity: 0;
    }
}








@media screen and (min-width: 1400px) {
   
}

@media screen and (max-width: 1024px) {
    /* = = header = = */
    .header_area {
        position: sticky;
    }
    .header_area.sticky {
        position: sticky;
    }
    .navigation {
        display: grid  ;
    }
    /* logo*/
    .pageIndex .nav-brand, .sticky .nav-brand, .nav-brand {
        margin-top: 20px;
        margin-bottom: 10px;
        transition: 0s;
        margin-left: 0;
        margin: 0;
        width: fit-content;
        top: 10px;
		transition: 0.7s;
    }
     

    /* 導覽列 */
    .pageIndex .stellarnav {
        opacity: 1;
        pointer-events: unset;
    }
    .stellarnav ul {
        text-align: right;
    }
    .stellarnav > ul > li {
        padding: 10px 0;
    }
    
    .stellarnav > ul > li > a {
        letter-spacing: 0;
        padding: 0px 8px;
        margin: 0;
        font-size: 15px;
    }
    .stellarnav>ul>li:after {
        height: 3px;
        top: 100%;
        bottom: 0;
        transform: translate(-50%, 0);
    }
	 .me_tp_features {
        text-align: right;
        margin: 0px;
    }
}



/* 上方區域_手機版面768 */
@media screen and (max-width: 768px) {
    /* = = 大圖 = = */
    .bannerindex {
        padding: 0;
        margin: 0;
    }
	 /* logo*/    
   
     .sticky .nav-brand img{
        transition: 0.7s;padding-top: 5px;
    } 
    /* = = header = = */
    .navigation {
        display: flex ;
    }
    /* 導覽列漢堡選單 */
    .stellarnav.mobile .menu-toggle {
        margin: 11px 0;
        padding: 0;
    }
    .stellarnav .menu-toggle:after {
        content: 'Menu';
        font-size: 14px;
        color: #000;
        transform: scale(1);
        font-family: var(--SFontEN);
        letter-spacing: 0.04em;
    }
    .stellarnav .menu-toggle span.bars {
        display: block;
        margin: 2px 9px 0 3px;
    }
    .stellarnav .menu-toggle span.bars span {
        width: 18px;
        height: 1px;
        border-radius: 0;
        background: #000;
        margin: 0 auto 3px;
    }
    /* 導覽列展開 */
    .stellarnav.mobile.left > ul {
        left: 0;
        font-size: 0;
        max-width: 100%;
        padding: 0 30px;
		background:url(https://pic03.eapple.com.tw/052066655/pre_bg.jpg) no-repeat;
    }
    .stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {
        display: inline-block;
        text-align: left;
        font-size: 12px;
        background: transparent;
        height: 76px;
        width: fit-content;
        padding: 0;
        margin: 29px 0 28px;
        /* padding-left: 30px; */
        text-transform: capitalize;
        content: 'Menu';
        font-size: 14px;
        color: #000;
        transform: scale(1);
        font-family: var(--SFontEN);
        letter-spacing: 0.04em;
        height: fit-content;
    }
    .stellarnav .icon-close {
        box-sizing: border-box;
        width: 18px;
        height: 12px;
        position: relative;
        display: inline-block;
        margin: 2px 9px 0 3px;
    }
    .stellarnav .icon-close:before , .stellarnav .icon-close:after {
        width: 18px;
        height: 0px;
        border-bottom: solid 1px #000;
    }
    /* 導覽列選取Hover效果 */
    .stellarnav ul:hover li a {
        opacity: 1;
		background-color::#f5f5f5;
        transition: all 0.3s ease-in-out;
    }
	.pageIndex .nav-brand, .sticky .nav-brand, .nav-brand {
        top: 12px; transition: 0.7s;
    }
    .me_tp_features {
        display: none;
    }
}



/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/*文章設定 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

/* .blog_page .main_part, .blog_in_page .main_part{  background: #f6f4f0;} */

/*文章功能頁/ = = = = */
/* 左側分類欄位 */
.blog_le {
    width: 100%;
    padding: 0;
}
h5.blog_le_t {
    margin-bottom: 10px;
    text-align: center;
    padding-bottom: 20px;
}
h5.blog_le_t em {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--SubColor);
}
.blog_search {
    position: relative;
    margin-bottom: 10px;
    opacity: .8;
    display: none;
}
.blog_search input[type=search] {
    width: 100%;
    font-size: 14px;
    color: #999;
    border: 0;
    background: #eee;
    border-radius: 0;
    padding: 10px 40px 10px 10px;
}
/* 分類列 */
.blog_le .accordion {
    border-radius: 0;
    border: 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid #dadbdb;
    border-bottom: 1px solid #dadbdb;
    font-size: 0;
}
.blog_le .accordion li {
    transition: .2s ease-out;
}
.accordion li+li .link {
    border: 0;
    border-left: 1px solid #dadbdb;
}
.accordion li .link a {
    padding: 5px 10px;
    font-weight: 700;
    text-align: center;
    line-height: 1.7;
    letter-spacing: 0.12em;
    font-size: 16px;
    color: var(--SubColor) ;
    font-weight: 500;
    margin: 10px 0;
}
.blog_le .accordion > li.on_this_category{
    background: #fff !important;
}
.blog_le .accordion > li.on_this_category:hover .link a, .link a ,.blog_le .accordion > li:hover .link a{
    color:var(--SubColor)  !important;
}
.blog_le .accordion > li:hover {
    background:#ebe7da  !important;
}
.blog_le .accordion > li.on_this_category .link a {
    color: var(--SubColor)  !important;  
}
/* 右側圖文區 */
.blog_ri {
    width: 100%;
    padding: 0 0 0 20px;
    padding: 0;
}
h4.blog_category_title {
    width: fit-content;
    font-weight: 600;
    letter-spacing: 0.04em;
}
/* 圖文區塊 */
 .blog_subbox {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
    display: flex;
    flex-wrap: wrap;
}
.subbox_item {
    position: relative;
    width: 100%;
    background: rgb(255 255 255);
    /* background: #f3efe8; */
    border-radius: 0;
    overflow: hidden;
    transition: .5s ease-out;
    border: 1px solid #eee;
    height: fit-content;
    width: 100%;
    margin: 0.5%;
    background: transparent;
}
.subbox_item:hover {
    transition: .5s ease-out;
    box-shadow: 9px 12px 20px 0px rgb(181 177 172 / 35%);
}
.subbox_item li:hover {
    transition: .5s ease-out;
    box-shadow: 9px 12px 20px 0px rgb(181 177 172 / 35%);
}
.subbox_item a {
    grid-template-columns: 1fr;
    gap: unset;
    /* flex-direction: column; */
    height: 100%;
    padding: 0;
    display: flex;
}
.module_i_news li a:before, .module_i_news li a:after, .subbox_item a:after, .subbox_item a:before {
    content: none;
}
/* 圖 */
.blog_list_le {
    max-width: 50%;
}
.i_blog_le, .blog_list_le {
    overflow: hidden;
    position: relative;
    aspect-ratio: 52 / 35;
    background-color: black;
}
.i_blog_le img, .blog_list_le img {
    width: 100%;
    transition: .4s ease;
}
.module_i_news li a:hover img, .subbox_item a:hover img {
    z-index: 1;
    transition: 0.4s;
    /* filter: grayscale(1); */
    opacity: 0.3;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}
.module_i_news li a:hover .i_blog_le::before,  .subbox_item a:hover .blog_list_le::before{
    opacity: 1;
    transition: 0.5s;
    margin-top: -20px;
}
.module_i_news li a .i_blog_le:before, .blog_list_le::before{
    content: "MORE +";
    position: absolute;
    line-height: 1.462;
    font-family: var(--SFontEN);
    left: 50%;
    top: 50%;
    z-index: 99;
    transform: translateX(-50%);
    /* margin-left: -45px; */
    margin-top: -80px;
    display: block;
    padding: 10px 20px 7px;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: #fff;
    border: 2px solid #fff;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
/* 文字 */
.blog_list_ri {
    /* width: 50%; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 15px 35px;
}
.i_blog_ri, .blog_list_ri {
    padding: 25px;
    width: 100%;
	background-color: #fff;
}

.i_blog_ri h5, .blog_list_ri h5 {
    font-size: var(--f20);
    text-align: left;
    color: #333;
    font-weight: 500;
    letter-spacing: 0.08em;
}
.i_blog_ri em, .blog_list_ri em {
    font-size: 14px;
    color: #aaa;
    margin: 10px 0 0;
    padding: 5px 0;    
    letter-spacing: 0.04em;
}
.blog_list_ri em {
    margin: 10px 0 30px 0;
}
.i_blog_ri p, .blog_list_ri p {
    font-size: var(--f16);
    letter-spacing: 0.08em;
    line-height: 1.5;
    font-weight: 400;
    color: #454545;
}



/*文章內層/ = = = = */
.blog_in_page h5.blog_le_t em {
    color: transparent;
}

.blog_in_page .blog_ri {
    width: 90%;
    display: block;
    padding: 0;
    max-width: 1200px;
    margin: auto;
}
.blog_in_page h4.blog_category_title {
    width: 100%;
    /* border-bottom: 1px #ccc solid; */
    font-size: 24px;
    letter-spacing: 0.08em;
    margin-bottom: 0;
    text-align: center;
    padding: 30px 0 0;
    font-size: var(--f28);
}

/* 上下篇按鈕 */
.blog_back {
    z-index: 1;
}
.blog_back a {
    font-size: 13px;
    letter-spacing: 0.08em;
}
.blog_back a.article_btn_back {
    background: #a7a9ac;
    transition: .4s ease;
}
.blog_back a.article_btn_back:hover {
    opacity: .6;
}
.blog_back a.article_btn_prev, .blog_back a.article_btn_next {
    background: #eee;
    color: #555;
    transition: .4s ease;
}
.blog_back a.article_btn_prev:hover, .blog_back a.article_btn_next:hover {
    opacity: .6;
}


/* 分享按鈕 = = */
.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_box_edit {
    background: transparent;
    padding: 0;
    margin: 10px 0;
    font-size: var(--f16);
    color: #2F2F2F;
    line-height: 1.8;
    padding: 0;
    letter-spacing: 0.04em
}
.articel_mainPic {
    display: none;
}

/*文章-相關推薦*/
.news_related, .prod_related {
    font-family: var(--SFont2);
    background: #fff;
    padding: 80px 5%;
    margin: auto;
    display: none;
}
.news_related h6 span:before, .prod_related h6 span:before {
    font-size: 24px;
    color: #333;
    font-weight: 500;
    letter-spacing: 0.04em;
}
.news_related_list, .related_list {
    margin: 40px auto;
}
.news_related_list li, .related_list li {
    display: block;
    padding: 0px;
}
.news_related_list li a, .related_list li a {
    padding: 10px;
    background: #fff;
    height: 100%;
    border: 1px solid #eee;
    border-radius: 5px;
    transition: .35s ease;
}
.news_related_list li a:hover, .related_list li a:hover {
    box-shadow: 9px 12px 20px 0px rgb(181 177 172 / 35%);
    transition: .35s ease;
}
.news_related_list li a p, .related_list li a p{
    font-size: 16px;
    letter-spacing: 0.04em;
    color: #333;
    padding: 10px 0 5px;
    line-height: 1.5;
}
/* 按鈕 */
.news_related_b_box, .prod_related_b_box {
    margin: auto;
    background: transparent;
    color: #fff;
    position: relative;
    z-index: 1;
    min-width: 165px;
    width: 200px;
    height: 50px;
    border: 1px solid #0F0F0F;
    font-size: 14px;
    letter-spacing: 0.1em;
    color: #0F0F0F;
    overflow: hidden;
    transition: color 0s ease;
    border: 1px solid #bcbfbf;
}
.lastPage {
    color: #fff;
    background: transparent;
    transition: all .5s;
    font-family: var(--SFont2);
    font-weight: 500;
    letter-spacing: 0.12em;
    font-size: 16px;
    margin: 0 auto;
    color: #293943;
    line-height: 1.8;
}
a.lastPage:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 0;
    height: 100%;
    background-color: var(--SubColor2);
    transition: all 0.5s;
}
a.lastPage:hover {
    color: #fff;
}
a.lastPage:hover:after {
    width: 100%;
}




@media screen and (max-width: 1024px) {
    .blog_subbox {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    .i_blog_ri p, .blog_list_ri p {
        letter-spacing: 0.08em;
    }
    .i_blog_ri h5, .blog_list_ri h5 {
        -webkit-box-orient: unset;
        letter-spacing: 0.04em;
    }
}

@media screen and (max-width: 768px) {}

@media screen and (max-width: 620px) {
    .subbox_item a {
        flex-direction: column;
    }
    .i_blog_le, .blog_list_le {
        max-width: 100%;
    }
    .blog_list_ri em {
        margin: 10px 0 20px 0;
    }
}

@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;
}





/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/*聯絡我們 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

.contact_form li.last cite {
    background: #d3af79;
}

.contact_editbox{
	padding: 0;
}

.footer_info li .tel ,.footer_info li .phone{display:none;}
/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.footer_logo a img {
    display: none;
}
.footer_logo a::after {
    content: '';
    display: block;
    background: url(https://pic03.eapple.com.tw/052066655/logo.png) no-repeat;
    background-size: cover;
    width: 100%;
    aspect-ratio: 420 / 240;
}
@media screen and (min-width: 1700px) {
    /* footer */
    .footer_info {
        margin: auto;
    }
}

@media screen and (max-width: 1024px) {
    /* footer */
    .footer_info {
        grid-template-columns: 1fr;
        text-align: center;
        position: relative;
        gap: unset;
    }
    .footer_logo {
        position: relative;
        left: unset;
        width: 100%;
        max-width: 180px;
        font-size: 0;
        transform: unset;
    }
    .footer_logo a {
        position: relative;
        display: block;
        width: 100%;
    }

    .footer_info ul {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .footer_info li:nth-child(1):before {
        text-align: center;
    }
    .footer_info li:nth-child(1) {
        border-bottom: 1px solid #163f37;
        padding-bottom: 20px;
    }
    .footer_info li+li{
        margin-top: 0;
    }
    .footer_menu {
        margin: auto;
        max-width: 400px;
        /* border-top: 1px solid #163f37; */
        /* padding-top: 10px; */
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: center;
        -webkit-column-gap: 50px;
        -moz-column-gap: 50px;
        column-gap: 50px;
        row-gap: 5px;
        margin-left: auto;
    }
    .footer_menu a {
        margin: 0;
        text-align: left;
        padding: 5px;
        border: none;
        background: transparent;
        width: fit-content;
        transition: all 0.3s;
        padding: 0;
        /* margin-top: 10px; */
        padding: 5px;
        text-align: center;
    }

    
}


@media screen and (max-width: 768px) {

    /* 開啟手機板下方按鈕所需設定 */
    /* #bottom_menu {        display: block;    } */

    .footer.with_shopping_mode {
        padding: 0 0 55px;
    }
    #to_top {
        bottom: 60px;
    }

    
}






/*內頁BANNER 設定*/
.banner {}

/*.banner h5::first-letter{font-size: 2vw;color:#f3f1ef;}*/


.banner { background-image: url(https://pic03.eapple.com.tw/052066655/ban.jpg); background-position: center; width: 100%; background-size: cover;height: 350px;
 background-position: center;
    background-size: cover;
    overflow: hidden;
    background-image: none;
    position: relative;
    z-index: 1;
   }
.banner::before {
    content: "";
    background-image: linear-gradient(180deg, #00000000 40%, rgb(180 180 180 / 31%) 65%), url(https://pic03.eapple.com.tw/052066655/ban.jpg);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    animation-duration: 5s;
    background-size: cover;
    background-position: center;
    animation: bgScroll 20s linear infinite;
    width: 110%;
    height: 350px;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
}
.blog_page.article_b .banner.banblog{ 
    background-image: url(https://pic03.eapple.com.tw/052066655/ban2.jpg);
}
.blog_page.article_b .banner.banblog::before {
    background-image: linear-gradient(180deg, #00000000 40%, rgb(0 0 0 / 30%) 80%), url(https://pic03.eapple.com.tw/052066655/ban2.jpg); 
}
.banB{display:none;}
/.banner::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 350px;
    top: 0;
    left: 0;
    background: url(https://pic03.eapple.com.tw/06-2999995/5.png) #ffffff;
    -webkit-animation: noise 1.5s steps(5) alternate infinite;
    animation: noise 1.5s steps(5) alternate infinite;
    z-index: -1;
}

@keyframes bgScroll {
    0% {        -webkit-transform: translateX(0);        transform: translateX(0);    }
    50% {        -webkit-transform: translateX(-5%);        transform: translateX(-5%);    }
    100% {        -webkit-transform: translateX(0);        transform: translateX(0);    }
}
@keyframes noise {
    0% {      background-position: -88px 166px    }
    20% {      background-position: 222px -333px    }
    40% {      background-position: -111px 444px    }
    60% {      background-position: 33px -66px    }
    80% {      background-position: -138px 212px    }
    100% {      background-position: 317px -197px    }
}
/* 主標題 h5 動畫效果 */
.banner h5 {
    width: 100%;
    position: relative;
    font-family: var(--SFont2);
    color: #fff;
    font-weight: 500;
    /*letter-spacing: 0.24em;*/
    font-size: var(--f40);
    display: flex;
    flex-direction: column;
    text-shadow: 0 4px 10px rgb(0 0 0 / 40%);
    
    /* 新增動畫 */
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease-out forwards;
}

/* 動畫定義 */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 各個 banner 對應的副標題內容 */
.banner.banF h5::after {
    content: "Products";
}

.banner.banE h5::after {
    content: "Gallery";
}

.blog_page.article_b .banner.banblog h5::after {
    content: "Craftsmen’s Daily";
}

.blog_page.article_a .banner.banblog h5::after {
    content: "News & Updates";
}

.banner.banC h5::after {
    content: "Reservation";
}

/* 通用副標題樣式 + 動畫 */
.banner h5::after {
    display: block;
    color: #fff;
    position: relative;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    letter-spacing: 0.1em;
    font-size: 24px;
    font-family: var(--SFontEN);
    line-height: 1.4;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease-out forwards;
    animation-delay: 0.3s; /* 副標題比主標題晚0.3秒進場 */
}



/*●●●●●●●●●●●●●●●●●●●●●●●●   聯絡我們(表單功能)   ●●●●●●●●●●●●●●●●●●●●●●●●*/
/*※※※※※【【  固定區塊不動↓↓↓  】】※※※※※*/
/*標題*/
.blank_letter {display: none;}
.contact_content .information_left { width: 100%;}
.blank_letter {   color: #333;   font-size: 25px;  padding-top: 0;  font-family: 'Noto Serif TC', serif;}
/*左側資訊*/
.list_before.info li {border-bottom: 1px solid #eee;padding: 5px 5px 10px 70px;word-break: break-word;  line-height: 120%;}
.list_before.info li:before{font-weight: 400;letter-spacing: .4rem;width: 60px;}
/*表格設定*/
.contact_content .information_right {width: calc(100% - 305px);padding-left: 50px;}
button, input, optgroup, select, textarea{outline: none;}
.contact_form li {margin-bottom: 8px;display: flex;flex-direction: column;}
.contact_form li input.noborder,.contact_form li textarea.noborder {background: #ffffff;}
.contact_form li.last blockquote, .contact_form li.last cite{border: 1px solid #888;}
.contact_form li.last blockquote{color: #888;}
.contact_form li.last cite {background: #888;}
.contact_form li.last blockquote:hover input, .contact_form li.last cite:hover input {letter-spacing: 4px;}
.noborder {padding: 10px;}
.contact_form li:has(input[type=checkbox]) .form__insert, .contact_form li:has(input[type=radio]) .form__insert {
	grid-template-columns: repeat(auto-fit, minmax(20px, 20px) minmax(200px, 1fr));line-height: 1.8;
    background-color: #fff;
    padding: 9px;font-size: 16px;
   }
.form select{width: 100%;border: 1px solid #eee;padding: 6px 26px 6px 6px;}
.contact_form li input.noborder, .contact_form li textarea.noborder {
  border: 1px #e4e4e4 solid;}
 .list_before {    display: none;}   
@media screen and (max-width: 768px) {
	/*左側資訊*/
	.list_before.info li,.list_before.info li:before{font-size: 12px;}
	/*表單設定*/
	.contact_form li {grid-gap: 5px;}
	.form select{margin: 0;}
	.contact_form li.last input{font-size: 12px;}
}
@media screen and (max-width: 600px){
	.contact_form {margin-top: 20px;}
	.contact_form li {margin-bottom: 10px;}
	.contact_form li .form__label {font-weight: 500;background: transparent;padding: 0;}
	.contact_form li:has(input[type=checkbox]) .form__insert, .contact_form li:has(input[type=radio]) .form__insert{
		font-size: 12px;}
	.form select{font-size: 12px;}
	.list_before.info li {padding: 5px 5px 5px 70px;}
	.noborder {padding: 5px;}
	
}



/*※※※※※【【  此案件更動處↓↓↓  】】※※※※※*/
/*共同設定*/
.contact_page .main_part {max-width: 2000px;}
/*編輯頁區塊*/
.contact_editbox{padding: 0;}
/*資訊區塊*/

/*表單區塊*/
.contact_content .information_right {width: 100%;background: #c3bfbf42;
    padding: 3% 6% 4%;max-width: 1200px;margin: 0 auto;display: block;margin-top: 30px;
    border-radius: 65px 65px 0 0;    margin-bottom:80px;}
.blank_letter.f:after {  content: "";  display: block;  color: #858585;  font-size: 14px;  letter-spacing: 1px;  margin: 10px 0 40px;  font-weight: 600;}
.contact_form li .form__label {max-width: 100%;
    font-size: 18px;
    display: block;
    text-align: left;}
.form select {border: 1px solid #a78f6a;padding: 10px 26px 10px 10px;color: #474141;border-radius: 6px;}
.contact_form li:has(input[type=checkbox]) .form__insert, .contact_form li:has(input[type=radio]) .form__insert {  grid-template-columns: repeat(auto-fit, minmax(20px, 20px) minmax(180px, 1fr));}
.contact_form li.last blockquote {color: #474141;}
.contact_form li.last cite {background: #2e4636;}
.contact_form li.last blockquote, .contact_form li.last cite {border: none;}

@media screen and (max-width: 600px){
.contact_form li {  grid-template-columns: auto;  grid-gap: 0;}
.contact_content .information_right {  padding: 20% 6% 4%;width: 92%;}
.contact_content {
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0;
}

}


/* 購物車頁面設定 */


.i_prod_tit h2, .i_video_tit h2 {
    font-size: 36px;
    COLOR: #9C6623;
    font-family: var(--SFont2);
}
.product_page .main_part { 
    max-width:1500px;
}
.product_page .show_content,
.product_info_page .show_content { 
    width: 100%; 
    display: flex; 
    justify-content: space-between; 
    flex-wrap: wrap; 
    align-items: flex-start; 
    align-content: flex-start;
}

/* 商品分類 */
.product_page .product_menu_list { 
    position: relative; 
    width: 220px; 
    letter-spacing: 1px; 
    /*border-right: 1px solid #ccc;*/
    min-height: 30vw;
}
.product_page .products-list,
.product-wrapper { 
    width: calc(100% - 270px);padding: 0 3%;
}
.product_info li .txt_box {
   font-family: var(--SFont2);
    color:#000;
}
.products-list {
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));}
.product-layer-two {
    border-top: solid 1px #cbcbcb;
    padding-top: 20px;
}
.product-layer-two > li { 
    width:100%; 
    max-width:100%; 
    padding:0; 
    text-align:left; 
    padding-bottom: 5px;
}
.product-layer-two li a {
    color: #fff;
    border: 0;
    background: #3c5a46;
}
.product-layer-two li i {
    font-size: 12px;
    color: #888888;
}
.fa-circle-plus::before {
    content: "\2b";
}
.product-layer-two li ul { 
    position:static; margin-top:5px; 
    width:100%; margin-left:0;
}
.product-layer-two li li {
    display: block;
    background: transparent;
    padding: 0;
    transition: all ease .3s;
}
.product-layer-two li li a { 
    background: #a59461;
    padding: 5px 10px 5px 30px;
}
.product-layer-two > li ul > li + li { 
    margin-top:5px;
}
.product-layer-two li.active li a,.product-layer-two li li a  {
    font-weight: 700;}


/* 商品分類hover */

.fa-circle-plus::before,
.product-layer-two li i.close::before {
    transition: all .3s;
}
.product-layer-two li i.close::before {
    content: "\f068";
    transform: rotate(-180deg);
}
.product-layer-two li:hover ul { 
    border: none !important; 
    /*display:block !important;*/
}
.product-layer-two li li:hover{ 
    margin-left: 10px;
}
.product-layer-two li li:hover > a {
    background: transparent;
    color: #238966;
}
.product-layer-two li.active a {
    color: #f3e4b8;
    font-weight: bold;
    border: 0;
}
/* .product-layer-two li li:hover > a:before { 
    background:#ad925e;
} */

/* 商品列表 */
.prod_part {
	background: url(https://pic03.eapple.com.tw/052066655/all_bg.jpg) no-repeat;
	padding-top: 15px;
	padding-right: 20px;
	padding-bottom: 100px;
	padding-left: 20px;
}
.i_prod_tit span, .i_video_tit span {
	font-size: 30px;
	COLOR: #575746;
	font-weight: 700;
	padding-top: 10px;
	}
.pageIndex .productsListBox, .productsListBox.swiper {
    padding: 50px 0;
}
.products-list .name {
    font-size: 16px;
    font-weight: 600;
    color: #3E3A39;
	font-family: var(--SFont2);
	-webkit-line-clamp: 1;
    height: 28px;
}
.products-list .item a:hover .more {
    background: #22773e;}
.products-list .price b.ori_price {
    color: rgba(51, 51, 51, 0.4);
}
.products-list .price b.sp_price,
.products-list .price b {
    color: rgb(119 83 16); 
}

.products-list .pic img {
    transition: transform 0.6s ease-out;
    will-change: transform;
    transform-origin: center;
}

.products-list .pic img:hover {
    transform: scale(1.2);
}
.products-list .item a>* {
  
    border-radius: 0 20px 0 20px;
}
/* .product_info_page */
.product_info_page .product-layer-two { 
    display: none;
}
.products-list .item {
    PADDING-BOTTOM: 20PX;
}
.product_info_page .products-list,
.product-wrapper { 
    width: 100%;
}
.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;
}
.sidebarBtn {
    border: 0;
    background: transparent;
}
.sidebarBtn h2 {
    font-family:  var(--SFont2);
    font-weight: 500;
    letter-spacing: 2px;
    color: #3E3A39;
}
.sidebarBtn .price {
    border: 0;
}
.sidebarBtn .price span.ori_price {
    color: rgba(51, 51, 51, 0.4);
    text-decoration: line-through;
}
.sidebarBtn .price span.sp_price {
    color: rgb(119 83 16);
}
.inquiry_a1, 
.inquiry_a2, 
.inquiry_a3 {
    font-size: 15px;
    letter-spacing: 3px;
    border-radius: 0;
    margin-top: 8px;
}
.inquiry_a1 {
    background: #3c5a46;
}
.inquiry_a2 {
    background: #223528;
}
.inquiry_a3 {
    background: #238966;
}
.toShare {
    border: 0;
}

/* 商品資訊 */
.pd_tabTitle li {
    border: 0;
}
.pd_tabTitle li a {
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    color: #333333;
    border-bottom: 1px solid #c2c2c2;
    margin: 0 5px;
}
.pd_tabTitle li.activeTab a {
    color: #238966;
}
.pd_tabTitle li.activeTab::after {
    height: 1px;
    background: #238966;;
}

/* 相關推薦 */
.prod_related *,
.related_list li a figure::before,
.related_list li a figure::after,
.related_list li a figure:hover::before,
.related_list li a figure:hover::after {
    transition: all ease-in .3s;
}
.prod_related {
    background: #F7F5F2;
    padding: 50px 15px 25px 15px;
    margin: 0 auto;
}
.prod_related h6 {
    max-width: 1300px;
    font-size: 16px;
    border-bottom: 1px solid #4D4D4D;
    padding: 10px 10px;
    margin: 20px auto;
}
.prod_related h6 span:before {
    font-family: 'Noto Sans TC', sans-serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #4D4D4D;
}
.related_list li a {
    background: transparent;
}
.related_list li figure {
    position: relative;
}
.related_list li a p {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    text-align: left;
    letter-spacing: 1px;
    line-height: 1.5;
    margin-top: 15px;
}
.related_list li a figure::before,
.related_list li a figure::after {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.related_list li a figure::before {
    content: '';
    width: 100%;
    height: 100%;
    background: rgb(79 79 79 / 40%);
    opacity: 0;
}
.related_list li a figure::after {
    content: '詳細資料';
    font-size: 16px;
    color: #fff;
    letter-spacing: 3px;
    opacity: 0;
}
.lastPage {
    color: #4D4D4D;
    background: transparent;
    border-bottom: solid 2px #4D4D4D;
}

/* .product_info_page *//* hover */
.inquiry_a1:hover, 
.inquiry_a2:hover, 
.inquiry_a3:hover {
    letter-spacing: 3px;
    opacity: .7;
}
.inquiry_a1:hover,.inquiry_a2:hover,.inquiry_a3:hover {
    background: #83501a;
}

.related_list li a figure:hover:before,
.related_list li a figure:hover::after {
    opacity: 1;
}

@media screen and (max-width: 1200px) {
}

@media screen and (max-width: 980px) {
}

@media screen and (max-width: 768px) {
    /* 購物車頁面設定 */
    

    /* 商品分類 */
    .product_menu_list,
    .products-list,
    .product-wrapper { 
        width: 100%;
    }
    .product_page .product-layer-two,
    .product_page .products-list {
        width: 100%; 
        border-right: none;
    }
    .product_page .product_menu_list {
        width: 100%; 
        order: 0; 
        min-height: unset;
    }
    .product_page .product_menu_list>h5{
        display: block;
    }
    .product-layer-two { 
        margin-right: 0; 
        grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); 
        grid-gap: 5px;
    }

    /* .product_page頁面物件順序設定 */
    .product_page .show_content > a { 
        order: 1;
    }
    .product_page ul.products-list { 
        order: 2;
    }
    .product_page ul.page { 
        order: 3;
    }
}

@media screen and (max-width: 600px) {
}

@media screen and (max-width: 480px) {
    .product_info_page .main_part {
        padding: 10px 10px;
    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* ------結帳頁面------ */
.rewrite_simple,
.send_simple {
    border-radius: 0;
}
.rewrite_simple {
    background: #333333 url(../images/simple_left.png) 10% center no-repeat;
}
.send_simple {
    background: rgb(138, 138, 138) url(../images/simple_right.png) 88% center no-repeat;
}

/* 訂單成立 */
.orderFinish_data .animated-arrow {
    color: #fff;
    border: 0;
}
.pay_text a.animated-arrow:nth-child(1) {
    background: #48AE4F;
}
.pay_text a.animated-arrow:nth-child(2) {
    background: #333333;
}
.order_list_tab td:nth-child(1) {
    color: #3E3A39;
}
.order_list_tit b {
    color: #333;
}
.order_list_pro tr:first-child {
    background: #333;
}
.order_list_pro tr:first-child td {
    color: #fff;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 相簿管理 */
/* .album_page */
.album_page .main_part,
.album_class_page .main_part,
.album_info_page .main_part {
    max-width: 1800px;
}
.album_page .show_content,
.album_class_page .show_content,
.album_info_page .show_content {
    padding: 0;
}
.show-list {
    grid-template-columns: repeat(4,1fr);
}
.show-list .show_pic {
    border-radius: 15px;
}
.show-list .show_pic::after {
    content: '';
    display: block;
    position: absolute;
    background-image: url(https://pic03.eapple.com.tw/wubaotree/zoom_in.svg);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    opacity: 0;
}
.overlay {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%);
    opacity: 1;
    transform: scale(1);
}
.show-list .show_name {
    position: absolute;
    left: 20px;
    bottom: 15px;
    font-weight: normal;
    color: #fff;
}

/* .album_page - hover */
.show-list .item .show_pic::after,
.show-list .item:hover .show_pic::after {
    transition: ease .4s;
}
.show-list .item:hover .show_pic::after {
    opacity: 1;
}
.show-list .item:hover .show_pic .overlay {
    opacity: 0;
}
.show-list .item:hover .show_name {
    color: #fff;
}

/* -------.album_class_page & .album_info_page ---------*/
.album_class_page .show_content,
.album_info_page .show_content {
    display: flex;
    flex-direction: column;
}

/* 查看更多 */
.other_album {
    border-bottom: dashed 1px #b7b7b7;
    margin-bottom: 20px;
}
.album_fixed_title {
    display: none;
    background: transparent;
}
.other_album_choice li {
    background: transparent;
    border-radius: 0;
    padding: 5px 0;
    margin: 0;
}
.other_album_choice li a {
    color: #888888;
    padding: 12px 0;
}
.other_album_choice li a:before {
    content: '/';
    color: #888888;
    margin: 0 6px 0 4px;
}
.other_album_choice li:first-of-type a:before {
    display: none;
}
.other_album_choice li a i.fa-solid.fa-right-from-bracket {
    display: none;
}
.other_album_choice li a:hover {
    color: #c5cac0;
}

/* 頁碼 */
.other_album {
    order: 1;
}
.subalbum-menu,
.pic-list {
    order: 2;
}
.album_class_page ul.page,
.album_info_page ul.page {
    order: 3;
}


/* .album_class_page */
.subalbum-menu h2 {
    color: #238966;
}
.other_subalbum li a p {
    position: absolute;
    left: 20px;
    bottom: 15px;
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: normal;
    color: #fff;
    letter-spacing: 1px;
}


/* .album_class_page - hover */


/* .album_info_page */
.pic-list {
    grid-template-columns: repeat(4,1fr);
}
.pic-list .show_pic {
    border-radius: 15px;
}
.pic-list .show_pic::after {
    content: '';
    display: block;
    position: absolute;
    background-image: url(https://pic03.eapple.com.tw/wubaotree/maximize.svg);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    opacity: 0;
}
.album_info_page .other_album {
    margin-bottom: 50px;
}

/* .album_info_page - hover */
.pic-list .item .show_pic::after,
.pic-list .item:hover .show_pic::after {
    transition: ease .4s;
}
.pic-list .item:hover .show_pic::after {
    animation: appearance 1.5s infinite alternate;
    opacity: 1;
}

@keyframes appearance {
    0% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }

    50% {
        transform: translate(-50%, -50%) scale(1);
        opacity: .7;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

@media screen and (max-width: 1200px) {
    .show-list,
    .pic-list {
        grid-template-columns: repeat(3,1fr);
    }
}

@media screen and (max-width: 768px) {
    .show-list,
    .pic-list {
        grid-template-columns: repeat(2,1fr);
    }
}

@media screen and (max-width: 400px) {
    .show-list,
    .pic-list {
        grid-template-columns: repeat(1,1fr);
    }
}
.animated-arrow {
    background: #2e4636;
	 padding-left: 0%; 
     border-radius: 100px;
}
.mobile_product_name,.i_prod_tit span,.edit , .product_page .product_menu_list>h5,.product_page .products-list .item a>*  {             
     font-family: var(--SFont2);}
	 
	 
#to_top i.top {
   height: 16px;
}	 
@media screen and (max-width: 768px) {
    #to_top {
        bottom: 160px;
    }
}
#to_top {
    left:auto;
    right: 7px;
    width: 42px;
    height: 42px;
    padding-top: 4px;
}
.footer_info li {
    display: flex;
    flex-direction: column;}
.footer_info li p.mail {
  order: -1;
}
.footer_info li p.add {
  order: 1;
}.footer_info li p.line {
  order: 2;
}
.car_page .information_left {
    display: block;
}
.info_fix_links {
    position: fixed;
      z-index: 999;
    animation: floatUpDown 3s ease-in-out infinite;
}

/* 定義飄浮動畫 */
@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.orderFinish_data .notetext {
      justify-content: center;}