@charset "utf-8";


/*網站全域設定/＝＝＝＝＝*/
/*
    #FDFBF7 /*網站主要色系
    #E1CAC5 /*網站輔助色系1
    #f9f6f4; /*網站輔助色系2*/

/*反白顏色*/
::-moz-selection{  background-color: #5F3B31;  color: #fff;}
::selection{  background-color: #5F3B31;  color: #fff;}
:root {
    --MainColor: #FDFBF7;      
    --BgColor-light: #FDFBF7;  
    --SubColor: #C7000B; /* 品Logo 麻辣紅 */
    --TitleColor: #5F3B31;  /* Logo 深咖啡色 */
    --FontColor: #3A3A3A;   /* 內文 */
    --MutedColor: #9F9FA0;  /* Logo 灰 */
    --Burgundy:#9D303A;
    --color-1: #1a1a1a;
    --HeaderBg: rgba(253, 251, 247, 0.95); 
    --HeaderShadow: 0 4px 20px rgba(95, 59, 49, 0.05);
    --FooterBg: #2A211D; 
    --FooterBg-dark:#151110;
    --FooterFont: #E1D9D0;
    --FooterMuted: #9F9FA0;

    --SFont: "Noto Sans TC", sans-serif;  
    --SerifFont: "Noto Serif TC", serif;
    --SFontEN: "Playfair Display", "Georgia", serif; 

    --f150: clamp(36px, 8vw, 150px);  /* 36px ~ 8vw ~ 150px */
    --f54:  clamp(34px, 4vw, 54px);   /* 34px ~ 54px */
    --f48:  clamp(32px, 3.5vw, 48px); /* 32px ~ 48px */
    --f42:  clamp(30px, 3.2vw, 42px); /* 30px ~ 42px */
    --f40:  clamp(28px, 3vw, 40px);   /* 28px ~ 40px */
    --f36:  clamp(26px, 2.8vw, 36px); /* 26px ~ 36px */
    --f32:  clamp(24px, 2.5vw, 32px); /* 24px ~ 32px */
    --f28:  clamp(22px, 2.2vw, 28px); /* 22px ~ 28px */
    --f24:  clamp(20px, 2vw, 24px);   /* 20px ~ 24px */
    --f22:  clamp(18px, 1.8vw, 22px); /* 18px ~ 22px */
    --f20:  clamp(17px, 1.5vw, 20px); /* 17px ~ 20px */
    --f18:  clamp(16px, 1.2vw, 18px); /* 16px ~ 18px */
    --f17:  clamp(15px, 1.1vw, 17px); /* 15px ~ 17px */
    --f16:  clamp(14px, 1vw, 16px);   /* 14px ~ 16px */
    --f14:  clamp(12px, 0.9vw, 14px); /* 12px ~ 14px */
    --pd120:  clamp(30px, 6vw, 120px);
}
.path{display: none;}
body {
    font-family: var(--SFont);
    color: var(--FontColor);
    font-size: var(--f17);
    background: var(--BgColor-light);
}
#content {    overflow: clip;}
.main_part {
    max-width: 1440px;
    width: 95%;
    padding: var(--pd120) 30px;
}

/*頁碼
.page strong, .page a:hover {    background: var(--SubColor);}
.page li.activeN {    color: var(--SubColor);}
*/

/*★★★卷軸設定↓↓↓↓↓↓↓↓↓↓↓↓*/
/* 捲軸寬度及高度 */
::-webkit-scrollbar {
    background: #FDFBF7;
    width: 7px;
}

::-webkit-scrollbar-button {
    display: none;
    background: #FDFBF7;
    border-radius: 0;
}
::-webkit-scrollbar-track-piece {    background: #FDFBF7;}

/* 滑桿顏色 */
::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #ae9b8a;
}

/* 滑桿滑鼠滑入時的顏色 */
::-webkit-scrollbar-thumb:hover {    background: var(--TitleColor); }

/* 軌道背景底色 */
::-webkit-scrollbar-track {    box-shadow: transparent;}


/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/
.header_area {
    background: transparent;
    position: fixed;
    top: 0;
    padding: 0;
    border-bottom: 1px solid rgba(95, 59, 49, 0);
    transition: all 0.3s ease;
}
.main_header_area {    position: relative;}

.pageIndex .main_header_area:after {
    content: "";
    position: absolute;
    width: 100%;
    background: linear-gradient(rgb(0 0 0 / 68%), rgb(0 0 0 / 15%) 48%, transparent);
    transition: opacity .65s cubic-bezier(.39, .575, .565, 1) 0s;
    top: 0;
    height: 20rem;
    pointer-events: none;
}
.main_header_area .container {    max-width: 95%;}

/*電腦LOGO
.nav-brand {}
*/
.nav-header {
    max-width: 175px;
    position: absolute;
    top: 24px;
    left: 0;
    transition: all 0.4s ease;
}
.nav-brand {    filter: drop-shadow(5px 5px 9px rgba(0, 0, 0, 0.6)); /*opacity: 0;*/ filter: drop-shadow(0px 0px 4px #fff); }
.pageIndex .nav-brand {    filter: drop-shadow(5px 5px 9px rgba(0, 0, 0, 0.6)); }


/*  header 下滑 sticky */
.header_area.sticky {
    background: oklab(0.99 0 0.01 / 0.78);
    box-shadow: 0 4px 20px rgb(95 59 49 / 0%);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(95, 59, 49, 0.08);
}
.pageIndex .header_area.sticky .main_header_area:after {    height: 0;}
.header_area.sticky .main_header_area .container {    max-width: 1500px;}
.header_area.sticky .nav-header {
    max-width: 75px;
    top: 8px;
}
.header_area.sticky  .nav-brand {    filter: none; opacity: 1; }

/*上方選單右邊設定 臉書/LINE/電話/信箱
.tp_links a:before {寬高大小設定}
.tp_links a.me_tp_fb {}
.tp_links a.me_tp_fb:before {背景換圖/建議.SVG}
.tp_links a.me_tp_line {}
.tp_links a.me_tp_line:before {背景換圖/建議.SVG}
.tp_links a.me_tp_call {}
.tp_links a.me_tp_call:before {背景換圖/建議.SVG}
.tp_links a.me_tp_mail {}
.tp_links a.me_tp_mail:before {背景換圖/建議.SVG}
*/
.tp_links {    display: none;}

/*浮動按鈕-展開*/
.info_fix_links {    display: flex !important;}
.info_fix {    bottom: 130px;}
.linksBtn {    display: none;}
.info_fix_links a.info_fix_default {    background: #c7000bd1;}
.info_fix_links a:hover {    background: var(--SubColor);}
a.info_fix_default.info_fix_mail {display: none;}
.info_fix_links a i {    font-size: 25px;}

a.info_fix_default.info_fix_tel {
    display: flex;
    flex-direction: column-reverse;
    height: 150px;
    justify-content: space-evenly;
}
a.info_fix_default.info_fix_tel:after {
    content: "加盟專線";
    font-size: 15px;
    writing-mode: vertical-lr;
    letter-spacing: 4px;
}
a.info_fix_default.info_fix_tel:before {
    content: "";
    background: url(https://pic03.eapple.com.tw/taipei/fix_icon.svg) no-repeat;
    width: 130px;
    height: 109px;
    position: absolute;
    left: -25px;
    top: -36px;
    z-index: -1;
    -webkit-animation: fixshow 1000ms infinite ease-in-out;
    animation: fixshow 1000ms infinite ease-in-out;
}
@-webkit-keyframes fixshow {
    0% {
      opacity: 0;
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg); }
    30% {
      opacity: 1;
      -webkit-transform: rotate(-3deg);
      transform: rotate(-3deg); }
    60% {
      opacity: 1;
      -webkit-transform: rotate(3deg);
      transform: rotate(3deg); }
    100% {
      opacity: 1;
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg); } 
}
@keyframes fixshow {
    0% {
      opacity: 0;
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg); }
    30% {
      opacity: 1;
      -webkit-transform: rotate(-3deg);
      transform: rotate(-3deg); }
    60% {
      opacity: 1;
      -webkit-transform: rotate(3deg);
      transform: rotate(3deg); }
    100% {
      opacity: 1;
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg); } 
}


/*第一層*/
.stellarnav > ul > li {    padding: 20px 0; position: relative; }
.stellarnav > ul > li > a::before {
    content: "";
    position: absolute;
    bottom:0;   
    left: 15px;   
    right: 15px; 
    height: 8px;  
    
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'><path d='M0,5 Q15,1 40,4 T80,3 Q95,5 100,5 Q85,8 55,6 T15,7 Z' fill='%23C7000B'/></svg>");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    
    transform: scaleX(0);
    transform-origin: left center; 
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); 
    
    z-index: -1;
    opacity: 0.85;     
}

.stellarnav > ul > li:hover > a::before {    transform: scaleX(1); }

.stellarnav > ul > li > a {
    padding: 0 15px;
    font-size: var(--f16);
    color: var(--TitleColor);
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    color: var(--MainColor)
}
.stellarnav > ul > li:hover > a {    color: #fff; }

.pageIndex .stellarnav > ul > li > a {    color: var(--MainColor);}
.pageIndex .stellarnav > ul > li:hover > a {    color: var(--SubColor);}

.header_area.sticky .stellarnav > ul > li > a {    color: var(--TitleColor);}
.header_area.sticky .stellarnav > ul > li:hover  > a {    color: var(--SubColor);}

.pageIndex .header_area.sticky .stellarnav > ul > li:hover  > a {    color: var(--SubColor);}


/*下拉線條箭頭*/
.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(--MainColor) var(--MainColor) transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.header_area.sticky .stellarnav li.has-sub>a:after {border-color: transparent var(--FontColor) var(--FontColor) transparent;}

/*第二層*/
.stellarnav > ul > li.drop-left > ul {    background: var(--FooterBg);}
.stellarnav li li {    border: none;}
.stellarnav li li:hover > a, .stellarnav li li.has-sub:hover > a {
    background: var(--color-1);
    padding-left: 15px;
    border-color: var(--Burgundy);
}
.stellarnav li li > a, .stellarnav li li.has-sub > a {
    padding: 7px 10px;
    transition: all 0.3s;
    border-left: 5px solid transparent;
    color: var(--MainColor);
}

/*下拉第二層箭頭*/
.stellarnav li li.has-sub > a:after {
    position: absolute;
    top: 38%;
    right: 5px;
    height: 7px;
    width: 7px;
    display: block;
    border-style: solid;
    border-width: 0 1px 1px 0;
    border-color: transparent var(--MainCOlor) var(--MainCOlor) transparent;
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
}

/* 商品下拉超過30個變大 */
.stellarnav.desktop li.bigMenu>ul{display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); left: 0; width: 100%; position: fixed; padding: 20px;}
.stellarnav.desktop li.bigMenu ul ul{top: 100%; left: 0; width: 100%; background: #efefef; height: auto; max-height: 300px; overflow: auto;}
.stellarnav.desktop li.bigMenu ul ul li{margin: 0;} 
.stellarnav.hasBigMenu li.bigMenu li.has-sub > a:after{border-left: 6px solid transparent; border-bottom:unset; border-right: 6px solid transparent; border-top: 6px solid #898989; right: 5px;}
/* 主分類超過30個但次分類直接顯示 
.stellarnav.desktop li.bigMenu>ul{grid-gap: 10px;}
.stellarnav.desktop li.bigMenu li{border: 0;}
.stellarnav.desktop li.bigMenu>ul>li>a{border: 1px solid #ddd;}
.stellarnav.desktop li.bigMenu ul ul{display: block !important; position: relative; top: 0; background: unset; border: 0;}
.stellarnav.desktop li.bigMenu ul ul li{border: 0;}
 主分類超過30個但次分類直接顯示-結束 */

/* 商品下拉超過30個--結束 */




/* = = = footer-分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

.footer {
    padding: 70px 0 0;
    color: var(--FooterFont);
    font-size: var(--f14);
    background-color: var(--FooterBg);
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 0), radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 0);
    background-size: 8px 8px;
    background-position: 0 0, 4px 4px;
    border-top: 3px solid var(--SubColor);
    background-color: var(--FooterBg-dark);
}
.footer .center {    max-width: 1500px;}
.footer_info {
    grid-template-columns: 160px 1fr;
    grid-gap: 0 50px;
}
.footer_info ul {
    display: flex;
    justify-content: flex-end;
    gap: 45px;
}
.footer_info li {    padding: 0;}
.footer_info li:nth-child(1) {    padding-right: 2vw;}
.footer_info li p, .footer_info li p a {
    font-size: var(--f16);
    color: var(--FooterFont);
    line-height: 2.3;
    display: flex;
    align-items: center;
    gap: 0;
}
.footer_info li p.tel:before {    content: '加盟專線：';}
.footer_info li p.mail:before {    content: 'Email：';}
.footer_info li p:before {    margin: 0;}

.footer_menu {
    display: flex;
    gap: 10px;
}
.footer_menu a {
    border: none;
    color: var(--FooterFont);
    transition: all .3s;
    margin: 0;
    line-height: 1.8;
    writing-mode: vertical-rl;
    letter-spacing: 0.2rem;
    background: #1a1a1ab5;
    padding: 15px 5px;
    border-top: 3px solid var(--Burgundy);
}
.footer_menu a:hover {
    background: var(--SubColor);
    color: #fff;
    border-color: var(--color-1);
    transform: translateY(-5px);
}

.box_link {display: none;}
.copy {
    margin-top: 30px;
    border: none;
    font-size: 12px;
    color: var(--TitleColor);
    padding: 25px;
    background: #16110f82;
}
.copy p, .copy a {    color: var(--TitleColor);}
.privacyLinks a+a {    border-left: 1px solid var(--TitleColor);}

/*聯絡我們*/
.contact_form li.last cite {    background: #d3af79;}


/* = = = 大圖-分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*預設解除背景輪播*/
#content_main {
    margin: 0;
    background: var(--BgColor-light);
}
.bannerindex { position:relative; height:auto;}
.swiper-banner { position:static; margin:0; height:auto;} 
.swiper-banner .swiper-slide img {    width: 100%;}

/*切換鈕*/
.bannerindex {--swiper-pagination-color: #fff;}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction
{bottom: auto;top: 50%;left: 2vw;width: 25px;transform: translateY(-50%)}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet
{margin: 5px 10px;width: 5px;height: 15px;border-radius: 2px;}


/*例如大圖第一張的after:
.bannerindex .swiper-slide[data-swiper-slide-index="0"]:after

*大圖的指定名稱是從0開始，5張大圖的畫最後一張是4
[data-swiper-slide-index="0"]
[data-swiper-slide-index="1"]
[data-swiper-slide-index="2"]
[data-swiper-slide-index="3"]
[data-swiper-slide-index="4"]*/

/* .swiper-slide img { height:auto;} */
@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0;}
}


/*大圖*/
/*
輪播第二次時，偽元素都只有顯示相同的
再請將個別大圖的指定名稱[data-swiper-slide-index="每一張的數字"]寫進去
例如大圖第一張的after:
.bannerindex .swiper-slide[data-swiper-slide-index="0"]:after
大圖的指定名稱是從0開始，5張大圖的話最後一張是4
[data-swiper-slide-index="0"]
[data-swiper-slide-index="1"]
[data-swiper-slide-index="2"]
[data-swiper-slide-index="3"]
[data-swiper-slide-index="4"]
.pageIndex .bannerindex .swiper-slide[data-swiper-slide-index="2"].swiper-slide-active:before{  }
.pageIndex .bannerindex .swiper-slide[data-swiper-slide-index="0"].swiper-slide-active:after {  }
}*/

.pageIndex .bannerindex .swiper-slide.swiper-slide:before, 
.pageIndex .bannerindex .swiper-slide.swiper-slide:after {
    content: ""; position: absolute;  z-index: 999; pointer-events: none;
}

.pageIndex .bannerindex .swiper-slide.swiper-slide:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(https://pic03.eapple.com.tw/taipei/cover/smoke.png) 50% -100% / 120% auto no-repeat;
    opacity: .7;
    pointer-events: none;
    -webkit-animation-name: smokeAni, lightAni;
    animation-name: smokeAni, lightAni;
    -webkit-animation-duration: 90s, 5s;
    animation-duration: 90s, 5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes smokeAni {
  0% {
    background-position-y: 0; }
  100% {
    background-position-y: 100%; } }

@keyframes smokeAni {
  0% {
    background-position-y: 0; }
  100% {
    background-position-y: 100%; } }

@-webkit-keyframes lightAni {
  0% {
    opacity: .3; }
  30% {
    opacity: .2; }
  70% {
    opacity: .1; }
  100% {
    opacity: .3; } }

@keyframes lightAni {
  0% {
    opacity: .3; }
  30% {
    opacity: .2; }
  70% {
    opacity: .1; }
  100% {
    opacity: .3; } }

.pageIndex .bannerindex .swiper-slide:nth-child(1).swiper-slide:before{}
.pageIndex .bannerindex .swiper-slide:nth-child(1).swiper-slide:after {}

.pageIndex .bannerindex .swiper-slide:nth-child(1).swiper-slide-active:before {  }    
.pageIndex .bannerindex .swiper-slide:nth-child(1).swiper-slide-active:after {  }


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {
    background: url(https://pic03.eapple.com.tw/taipei/banner-01.jpg);
    background-position: top center;
    background-size: 105%;
    height: clamp(300px, 40vw, 650px);
    min-height: 300px;
    position: relative;
    background-attachment: fixed;
    padding-right: clamp(30px, 29vw, 600px);
    justify-content: flex-end;
}
.banner:after {
  content: "";
  background: url(https://pic03.eapple.com.tw/taipei/Tofu.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: -7%;
  bottom: -3vw;
  aspect-ratio: 700 / 500;
  width: 38%;
  pointer-events: none;
  z-index: 3;
  transform-origin: center bottom;
  animation: floatWithRotate 6s ease-in-out infinite;
}
.banner:before {
    content: "深耕在地好味道．暖心暖胃好滋味．台北江．豆腐香．深耕在地好味道．暖心暖胃好滋味．台北江．豆腐香．深耕在地好味道．暖心暖胃好滋味．台北江．豆腐香．深耕在地好味道．暖心暖胃好滋味．台北江．豆腐香．深耕在地好味道．暖心暖胃好滋味．台北江．豆腐香．深耕在地好味道．暖心暖胃好滋味．台北江．豆腐香";
    color: #fff;
    bottom: 0;
    left: 0;
    position: absolute;
    white-space: nowrap;
    font-size: var(--f20);
    background: var(--Burgundy);
    padding: 10px 0;
    width: max-content;
    animation: marquee 30s linear infinite;
    letter-spacing: 0.3rem;
}
.banner:hover:before {  animation-play-state: paused;}

.banner h5 {
    color: var(--FooterFont);
    font-family: var(--SerifFont);
    font-size: var(--f28);
    letter-spacing: 0.8rem;
    /* background: var(--FooterBg); */
    /* padding: 8px 3px 4px; */
    /* writing-mode: tb; */
    max-width: 600px;
    /* width: 31%; */
    text-align: right;
    position: absolute;
    /* right: clamp(30px, 20vw, 400px); */
    display: flex;
    bottom: clamp(20px, 6vw, 100px);
    flex-direction: column-reverse;
    line-height: 1;
    align-items: flex-end;
    padding-right: 20px;
}
.banner h5:before {
    content: "taipeichiang";
    font-family: var(--SFont);
    color: #fff;
    font-size: var(--f150);
    letter-spacing: 0;
    text-align: left;
    text-transform: uppercase;
    font-weight: bolder;
}
.banner.banblog  h5:before {    content: "NEWS";}


@keyframes floatWithRotate {
  0% {
    transform: translate(0, 0) rotate(0deg);
    filter: drop-shadow(0px 10px 6px rgba(0, 0, 0, 0.45));
  }
  50% {
    transform: translate(-10px, -8px) rotate(-1deg);;
    filter: drop-shadow(10px 24px 22px rgba(0, 0, 0, 0.20));
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
    filter: drop-shadow(0px 10px 6px rgba(0, 0, 0, 0.45));
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.banner.banA {}
.banner.banB {}
.banner.banC {}
.banner.banD {}
.banner.banE {}
.banner.banblog {}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*促銷方案*/
.news_part {    padding: 60px 20px;}

/*
.news_part .title_i_box h4 {
    color: var(--TitleColor);
    font-weight: bold;
}
.news_part .title_i_box h4:before {
    content: "NEWS";
    display: block;
    font-family: var(--SFontEN);
}
.news_list ul li p {
    color: var(--FontColor);
}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.product_page .main_part { max-width:1500px;}
/* .product_info_page .main_part { max-width:1200px;} */

.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);}
ul.page { width: 100%;}

.product-layer-two li ul { position:static; margin-top:5px; /*display:block !important;*/ width:100%; margin-left:0;}
.product-layer-two li:hover ul { border: none !important; /*display:block !important;*/}
.product-layer-two li li { display: block; padding:0; transition:all ease .3s;}
.product-layer-two li li a{ padding:5px 10px;}
.product-layer-two li li:hover > a { background:#fff; color:#ad925e;}
.product-layer-two > li { width:100%; max-width:100%; padding:0; text-align:left; border-bottom:1px dotted #ccc; padding-bottom: 5px;}
.product-layer-two > li ul > li + li { margin-top:5px;}

.product_info_page .product-layer-two { display: none;}
.product_info_page .products-list,
.product-wrapper { width: 100%;}

.product-layer-two li li:hover{ margin-left: 15px;}
.product-layer-two li li > a:before { content: ""; position: absolute; width: 12px; height: 8px; background: transparent; left: 0; margin-left: -20px; top: 50%; margin-top: -4px; clip-path: polygon(0 0, 100% 50% , 0 100%);}
.product-layer-two li li:hover > a:before { background:#ad925e;}

.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;}

/*顏色*/
.products-list .more {    border: 1px solid #ADA17E;    color: #ADA17E;}
.products-list .item a:hover .more {    background: #ADA17E;}

/*購物車/內層＝＝*/
.product_info_page .main_part {    width: 90%;}

/*按鈕顏色*/
.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{font-size: 24px;}

/*相關推薦*/
.prod_related h6 span:before{font-size: 28px;}



@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-layer-two { margin-right: 0; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); grid-gap: 5px;}
.product_page .product-layer-two,
.product_page .products-list { width: 100%; border-right: none;}
.product_page .product_menu_list>h5{display: block;}

.product_page .show_content > a { order: 1;}
.product_page ul.products-list { order: 2;}
.product_page ul.page { order: 3;}
.product_page .product_menu_list {width: 100%; order: 0; min-height: unset;}
}
@media screen and (max-width: 600px) {
    .payment_form {    flex-direction: column;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*3個一排*/
.blog_subbox {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1.5vw;
}
.subbox_item a {
    grid-template-columns: 1fr;
    padding-bottom: 15px;
    grid-gap: 25px;
}

.subbox_item a:before {display: none;}

.subbox_item a:after {
    display: block;
    top: 99.8%;
    opacity: 1;
    border: none;
    background: var(--FooterFont);
}
.subbox_item a:hover:after {    background: var(--Burgundy);}

.blog_list_le {
    position: relative;
    -webkit-clip-path: polygon(calc(100% - var(--turn)) 0, 100% var(--turn), 100% 200%, 0 200%, 0 0);
    clip-path: polygon(calc(100% - var(--turn)) 0, 100% var(--turn), 100% 200%, 0 200%, 0 0);
    --turn: 3.5rem;
}
.subbox_item a:hover .blog_list_le {    --turn: 5.3rem;}

.blog_list_le:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: var(--turn);
    height: var(--turn);
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    transition: 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-property: width, height;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    background: var(--Burgundy);
    border-radius: 0 0 0 1.3rem;
}
.subbox_item a:hover .blog_list_le::before {background: var(--SubColor);}

.blog_list_le:after {
    content: "More";
    position: absolute;
    top: 10px;
    right: 12px;
    color: #fff;
    width: var(--turn);
    height: var(--turn);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: rotate(45deg);
    font-size: var(--f14);
    font-family: var(--SFontEN);
    opacity: 0;
}
.subbox_item a:hover .blog_list_le:after  { opacity: 1;}

.blog_list_ri {
    padding: 7px 13px;
    position: relative;
}
.subbox_item a:hover .blog_list_ri h5 {    color: var(--SubColor);}
.blog_list_ri p {
    font-size: var(--f16);
    letter-spacing: 0.1rem;
    line-height: 1.5;
    color: var(--FontColor);
}
.blog_list_ri em {
    background: var(--Burgundy);
    position: absolute;
    top: -45px;
    padding: 5px 21px 5px 10px;
    left: 0px;
    color: var(--MainColor);
    clip-path: polygon(0 0, 90% 0, 100% 100%, 100% 100%, 0 100%);
}
.subbox_item a:hover .blog_list_ri em {  background: var(--SubColor);}


/*文章內層*/
.articel_mainPic img{display: none;}/*文章內層封面*/
h4.blog_category_title {
    font-family: var(--SerifFont);
    color: var(--FooterBg-dark);
    letter-spacing: 0.1rem;
}
.blog_box_edit * {    line-height: 180%;}

.blog_back a.article_btn_back {    background: var(--FooterBg);}
.blog_back a.article_btn_prev {    background: var(--SubColor);}
.blog_back a.article_btn_next {    background: var(--SubColor);}

/*文章標籤
.news_tags {    flex-wrap: wrap;}*/


/*文章-相關推薦*/
.news_related {
    background: #e1d9d054;
    padding: var(--pd120) 20px 80px;
    position: relative;
}
.news_related:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    background: url(https://pic03.eapple.com.tw/taipei/demo/top_bar.png) top / cover;
    width: 100%;
    height: clamp(40px, 4vw, 65px);
    --speed: 240s;
    border-top: 6px solid #dd403b;
    animation: run_bg;
    animation-duration: var(--speed, 120s);
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    --bg_x: 4000px;
    --bg_Y: -4000px;
}

@keyframes run_bg {
100% {
    background-position: var(--bg_x, 0) var(--bg_y, 0);
}
}
.news_related h6 {    margin-bottom: 2.5vw;}
.news_related h6 span:before {
    font-size: var(--f24);
    color: var(--Burgundy);
    font-weight: 500;
}
.news_related_list {    max-width: 1400px;}

.news_related_list li a {
    background: transparent;
    padding: 0;
    padding-bottom: 7px;
    border-bottom: 2px solid var(--FooterFont);
}
.news_related_list li a:hover {    border-color: var(--Burgundy);}

.news_related_list li figure {
    aspect-ratio: 3 / 2.3;
    border-radius: 7px;
}
.news_related_list li:hover a p {
    letter-spacing: 0.1rem;
}
.news_related_list li a p {
    padding-top: 5px;
    letter-spacing: 0.05rem;
    color: var(--FontColor);
    transition: all .3s;
}

.lastPage {
    color: var(--FontColor);
    background: #f4efeb;
    border-radius: 50px;
    border: 2px solid var(--Burgundy);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 6px 0px 0px var(--Burgundy);
}
.lastPage:hover {
    color: #ffffff;
    transform: translateY(3px);
    box-shadow: 0px 3px 0px 0px var(--Burgundy);
    background: transparent;
}
.lastPage:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--Burgundy);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: -1;
}
.lastPage:hover:after {    width: 100%;}



/* = = = 相簿-分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*.overlay {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(0, 0, 0, .3);
    left: 0;
    top: 0;
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    transition: all .4s 100ms cubic-bezier(.42,0,.58,1);
}*/

/*相本分類全版面 ( 限制最寬2000px
.work_page .main_part { max-width:2000px;}
.work_page .show_content { padding:0; width:100%;}
.work_page .show-list .item { width:33%; display:inline-block; float:none; margin:0; padding:0;}
@media screen and (max-width: 768px) {
.work_page .show-list .item { width:49%;}
}
@media screen and (max-width: 570px) {
.work_page .show-list .item { width:100%;}
}
.work_page .show-list .item a { max-width:100%;}
.work_page .show-list .show_pic { height:auto; line-height:0;}
.work_page .show-list .show_pic img { max-width:100%; max-height:100%;}
.work_page .show-list .show_name { position:absolute; top:50%; right:10%; width:80%; height:auto; line-height:160%; font-size: 20px; color: #FFFFFF !important; border: solid 1px #fff; text-align: center; margin: -20px 0 0 -120px; padding:5px 20px; transition:all ease-in .3s; opacity:0;}
.work_page .show-list .item:hover .show_name {opacity:1;}
*/

.pic-list .item a img {    transition: .4s ease;}
.pic-list .item a:hover img {
    transform: scale(1.05);
    transition: .4s ease;
    filter: grayscale(1);
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本列表
.work_info_page .main_part { max-width:2000px;}
.work_info_page .show_content { padding:0; width:100%;}
.work_info_page .subalbum-menu { text-align:center;}
.work_info_page .subalbum-menu h2 { float:none;}
.work_info_page .pic-list .item { margin:0; padding:10px; width:49%; float:none; display:inline-block;}
@media screen and (max-width: 768px) {
.work_info_page .pic-list .item { width:100%;}
}
.work_info_page .pic-list .show_pic { height:auto; line-height:0;}
.work_info_page .pic-list .show_pic img { max-width:100%; max-height:100%;}
.work_info_page .pic-list .item a { max-width:100%; pointer-events: none; cursor: default; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



@media (max-width:1024px) {
    .header_area {
        background: oklab(0.99 0 0);
        position: sticky;
    }
    .pageIndex .main_header_area:after {display: none;}
    .nav-brand {    filter: none;}
    .nav-header {    max-width: 75px;    position: sticky;    top: 10px;}
    .stellarnav > ul > li {    padding: 5px 0;}
    .pageIndex .stellarnav > ul > li > a, .stellarnav > ul > li > a {    color: var(--TitleColor);}
    .pageIndex .stellarnav > ul > li:hover > a, .stellarnav > ul > li:hover > a {    color: var(--SubColor);}

}


@media screen and (max-width: 768px) {

/* 開啟手機板下方按鈕所需設定
#bottom_menu {display: block; } */
.footer.with_shopping_mode { padding:30px 0 70px; }
#to_top { bottom:60px;}
#bottom_menu li:first-child:nth-last-child(2), #bottom_menu li:first-child:nth-last-child(2) ~ li {
    width: 50%;
    display: block;
    float: left;
}

.footer_info ul {    gap: 0;    flex-direction: column;}

.main_part {    width: 100%;}

/*header*/
.header_area.sticky {    backdrop-filter: none;}
.main_header_area .container {    max-width: 100%;}

/*漢堡選單*/
.stellarnav.mobile {        left: 10px;        top: 10px;    }
.stellarnav .menu-toggle span.bars span {    background: var(--TitleColor);}
.stellarnav .menu-toggle:after {    color: var(--TitleColor);    font-weight: bold;}

.stellarnav.mobile.left > ul {    border: none;}
.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {
    background: var(--SubColor); color: #fff;
}
.stellarnav .icon-close:before, .stellarnav .icon-close:after {    border-bottom: solid 2px #ffffff;}
.stellarnav a.dd-toggle .icon-plus:before, .stellarnav a.dd-toggle .icon-plus:after {    border-bottom: solid 2px var(--MainColor);}/*下拉關掉*/
.stellarnav.mobile li.open {    background: var(--bgcolor);}/*下拉*/

/*banner*/
.banner {    background-attachment: scroll;}
.banner h5 {
    bottom: 57px;
    padding-right: 2px;
    text-align: right;
}
.banner h5:before {    padding-right: 10px;}

ul.show-list, .pic-list {    grid-template-columns: repeat(2, 1fr);}
.blog_subbox {    grid-template-columns: repeat(2, 1fr);}
}


@media (max-width:600px) {
    /*banner*/
    .banner {
    padding: 30px;
    justify-content: center;
    align-content: center;
    align-items: center;
    background-position: left top;
    background-size: 200%;
}
    .banner h5 {    align-items: center;    position: relative;    bottom: 0;}

    .footer_info {
    grid-template-columns: 1fr;
    padding: 0 30px;
    grid-gap: 20px;
}
    .footer_logo {    max-width: 150px;}
    .footer_info ul {    align-items: center;}
    .footer_info li:nth-child(1) {    padding-right: 0;}
    .copy {    margin-top: 10px;}

    ul.show-list, .pic-list {    grid-template-columns: 1fr;}

        /*聯絡我們表單*/
    .contact_form li {    grid-gap: 0;}
    .contact_form li .form__label {    background: transparent;}
}

@media (max-width:375px) {
    :root {
        --f54: 28px;
        --f48: 24px;
        --f42: 22px;
        --f40: 20px;
        --f36: 18px;
        --f32: 18px;
        --f28: 17px;
        --f24: 17px;
        --f22: 17px;
        --f20: 16px;
        --f18: 15px;
    }
}


