@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Road+Rage&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Yuji+Mai&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/
body{
    font-family: "Noto Sans TC", "Yuji Mai", "Road Rage", sans-serif;
}
.path p, .path p a{ display: none;}

.edit{ padding: 0px 0;}


/* fix-ri */
.linksBtn{ background-color: #d2a174cb; }
.info_fix:hover>.linksBtn{background: #D2A174;} 
.info_fix_links a { background: #d2a1747a; }
.info_fix_links a:hover{background: #D2A174;}

.info_fix_links a.info_fix_phone{ display: none; }


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/*上方選單解除滑動固定.header_area.sticky { position:relative;}*/

/* header */
.header_area {
    transition: all .4s ease;
    position: fixed;
    z-index: 9999;
    width: 100%;
    background: transparent;
    padding: 0;
}
.header_area.sticky { }


.main_header_area .container {
    max-width: 100%;
    transition: 0.5s;
}
.header_area .main_header_area {
    background: #f5f5f500;
    transition: all 0.3s;
    position: relative;
    padding: 1vw 4vw 0;
}
.header_area.sticky .main_header_area {
    background: #f7f2ea;
    transition: all 0.3s;
    padding: 0 4vw;
}
.header_area .main_header_area:before {
    content: "";
    background: linear-gradient(180deg, #f1f0edff, transparent);
    width: 100%;
    height: 11vw;
    position: absolute;
    top: 0;
    left: 0;
    mix-blend-mode: multiply;
    opacity: 1;
    transition: .5s;
    pointer-events: none;
}
.header_area.sticky .main_header_area:before {
    opacity: 0;
    transition: .5s;
}






/*選單 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =*/





/* header */
.navigation {
    grid-template-columns: 1fr;
    align-items: center;
    padding-left: 180px;
}
.header_area.sticky .stellarnav {}
 .stellarnav > ul > li:last-child:after { 
    content: none;
}
 .stellarnav > ul > li:last-child > a:after {
    content: none;
}



/* 第一層 */
.stellarnav > ul > li {
    position: relative;
    padding: 0 10px;
    font-size: 0;
    padding: 0;
}
.stellarnav > ul > li > a {
    color: #77685B;
    letter-spacing: 1px;
    font-size: 16px;
    margin: 0;
    font-weight: 500;
    padding: 25px 25px;
    height: 100%;
    line-height: 1.6;
}


.stellarnav > ul > li > a:hover {
    transition: .3s cubic-bezier(0.77, 0, 0.65, 0.99);
    color: #D2A174;
}
.stellarnav ul ul>li>a:hover,
.stellarnav ul ul>li>a:focus {
    color: #131413;
    opacity: 1;
}
.stellarnav > ul > li.has-sub > a, .pageIndex .sticky > .stellarnav > ul > li:last-child {
    padding-right: 20px;
}
/* 下拉符號移除 */
.stellarnav li.has-sub > a:after{
    content: none;
}




/* 第二層 */
.stellarnav ul ul {
    background: #fff;
    width: 140px;
    left: 50%;
    margin-left: -66px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, .175);
}
.stellarnav li li {
    border: 0;
}
.stellarnav.desktop li.has-sub li a {
    font-size: 16px;
    text-align: center;
    padding: 10px;
    letter-spacing: 0.06em;
    font-family: #77685B;
    border-bottom: 1px solid #f6f6f6;
}
.stellarnav.desktop li.has-sub li a:hover {
    color: #D2A174;
}

.me_tp_features {
    display: none;
}


/*電腦LOGO = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.nav-header{
    transition: all 0.3s;
    padding: 15px 0;
}
.nav-header{
    grid-row: 1;
    width: auto;
    margin: 0 auto;
    max-width: 100%;
    padding: 0;
    align-self: start;
    filter: unset;
    position: absolute;
}
.nav-brand {
    max-width: 200px;
    font-size: 0;
    padding: 24px;
    background: #B77A54;
    transition: all 0.3s;
}
.sticky .nav-brand {
    max-width: 180px;
    font-size: 0;
    margin-top: 10px;
    background: #f7f2ea;
}
.nav-brand img {
    max-width: 100%;
    filter: brightness(10);
}

.sticky .nav-brand img{
    filter: brightness(1);
}

.nav-brand:hover img {
    -webkit-transform-origin: 50% 50%;
    animation: scaleBounce 2s forwards linear
}
@keyframes scaleBounce {
 0% { -webkit-transform: scale(0.7); transform: scale(0.7) }
 50% { -webkit-transform: scale(1.01); transform: scale(1.1) }
 100% { -webkit-transform: scale(1); transform: scale(1) }
}




/*手機LOGO
.nav-brand-m {}
*/
/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/


/*上方選單右邊設定 臉書/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}
*/


/*電腦LOGO
.nav-brand {}
*/

/*手機LOGO
.nav-brand-m {}
*/

/* 商品下拉超過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個--結束 */



/* 桌機版導覽列(1024px-僅導覽列設定) = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
@media screen and (min-width: 1024px) {
.stellarnav.active > ul, .stellarnav > ul {display: block !important;}
}

@media screen and (max-width: 1024px) {
.header_area {    padding: 0;}
/* 選單列隱藏 */
.stellarnav > ul {
    /* display: none !important; */
    margin: 0;
    padding: 0;
    text-align: center;
    background: transparent;
    position: relative;
    top: unset;
    left: unset;
    width: 100%;
    height: 100%;
    z-index: -5;
    transition: all 0.3s;
    transition: all 1s;
    right: -100vw;
    padding: 5% 0;
    padding-top: 110px;
    opacity: 1;
}
/* 選單列強制出現 */
.stellarnav.active > ul {
    display: block !important;
    align-items: flex-start;
    pointer-events: all;
    padding: 5% 0;
    padding-top: 110px;
    position: relative;
    top: 0;
    left: unset;
    width: 50%;
    height: 100%;
    background: #f7f2ea;
    z-index: 10;
    right: 0;
    max-width: 72%;
}
.stellarnav > ul > li { }

/* 漢堡選單強制出現 */
.header_area .stellarnav .menu-toggle, .stellarnav .call-btn-mobile, .stellarnav .location-btn-mobile {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
    transition: all 0.5s;
    pointer-events: all;
    background: transparent;
    width: max-content;
    transition: all 0.3s ease;
    margin: 20px 20px 0 0;
    display: flex;
    gap: 5px;
    flex-direction: row-reverse;
    align-items: center;
}
.stellarnav .menu-toggle:after {
    content: 'MENU';
    font-weight: 600;
    color: var(--SubColor);
    display: block;
    letter-spacing: .5px;
    width: auto;
    font-family: var(--SFontE);
    font-size: 13px;
}
.stellarnav.active .menu-toggle:after {
    opacity: 0;
}
.stellarnav .menu-toggle:hover{}
.stellarnav .menu-toggle span.bars {
    top: 0;
    display: flex;
    gap: 8px;
    flex-direction: column;
    height: auto;
}
.stellarnav .menu-toggle span.bars span {
    position: relative;
    display: block;
    width: 30px;
    height: 1px;
    border-radius: 6px;
    background: #333;
    margin: 0;
    transition: all 0.3s cubic-bezier(0.77, 0, 0.355, 1) 0s;
}
.stellarnav .menu-toggle span.bars span:last-child{
    margin-bottom: 0;
}
/* 開關變化 */
.stellarnav.active .menu-toggle span.bars span:nth-child(1) {
    transform: translateY(8px) rotate(-45deg);
}
.stellarnav.active .menu-toggle span.bars span:nth-child(2) {
    opacity: 0;
}
.stellarnav.active .menu-toggle span.bars span:nth-child(3) {
    transform: translateY(-10px) rotate(45deg);
}


/* nav設定改 */
.stellarnav {
    text-align: center;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    line-height: normal;
    background-color: transparent;
    pointer-events: none;
    transition: 1s;
    padding: 0;
    opacity: 1;
}
.stellarnav.active {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    z-index: 10000;
}
/* 黑色遮罩 */
.stellarnav::before {
    content: "";
    position: fixed;
    height: 100%;
    top: 50%;
    left: 50%;
    z-index: -5;
    line-height: normal;
    background-color: transparent;
    opacity: 0;
    transition: 1s;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgb(154 116 87 / 0%);
    transition: all 1.2s;
    pointer-events: unset;
}
.stellarnav.active::before {
    /* content: ""; */
    width: 100%;
    height: 100%;
    border-radius: 0;
    opacity: 1;
    background: rgb(154 116 87 / 60%);
    transition: all 1.2s;
    transition-timing-function: ease-in-out;
    pointer-events: auto;
    z-index: 1;
}
/* 文字改 */
/* 導覽列撐開-------------- */
.stellarnav li.has-sub > a:after {
    border: 1px solid #fff;
    border-width: 1px 1px 0 0;
}
.stellarnav > ul > li {
    width: 100%;
    margin-bottom: 25px;
    margin: 0;
    /* max-height: 40px; */
    border-bottom: 1px solid #eee;
    transition: all 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}
.stellarnav > ul > li.has-sub:hover {
    flex: 3;
    max-height: fit-content;
    transition: all 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}
.stellarnav ul ul {
    position: relative;
    background: transparent;
    opacity: 0;
    transition: all 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);
    width: 100%;
    text-align: start;
    margin-top: 5px;
}
.stellarnav li.has-sub:hover ul {
    opacity: 0;
    animation: up 1s forwards;
    animation-delay: 0.1s;
}
/* 導覽列撐開--------------END */

.stellarnav > ul > li > a {
    /* color: #fff; */
    font-size: 16px;
    letter-spacing: 2px;
    padding: 15px;
    width: 100%;
    text-align: left;
    margin-left: 30px;
    line-height: 1.8;
}
.stellarnav > ul > li > a:before {
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
    right: auto;
}
.stellarnav li li {color: #77685B; }
.stellarnav li a{ padding: 7px 41px; color: #77685B; }
.stellarnav.desktop li.has-sub li a {
    text-align: start;
    padding: 10px;
    padding-left: 20px;
    color: #77685B;
    letter-spacing: 0.08em;
}
.stellarnav li li:hover a {
    background: #D2A174;
}
}



@media screen and (max-width: 1024px) {
.navigation {height: 74px;}
.nav-brand{max-width: 170px;}
.sticky .nav-brand{ max-width: 150px;}

}

/* @768上方區域_大於手機版面768 */


@media screen and (max-width: 768px) {
    .bannerindex {padding: 0; margin-top: 72px;}
 .header_area .main_header_area{ background: #f7f2ea;}
.nav-header {width: auto;position: relative;margin-left: 0;}
.nav-brand {max-width: 150px;}
.sticky .nav-brand {max-width: 135px;}
.nav-brand:hover img{animation: unset;}

.main_header_area .container {padding: 0;}
.navigation {display: flex;gap: 0;padding: 0;}

.stellarnav.mobile {right: 0;left: unset;display: flex;align-items: center;justify-content: center;max-width: 60px;margin-left: auto;position: relative;z-index: 100;width: 60px;height: 60px;padding: 8px;}
.stellarnav.mobile::before{
    transition: 0s;
    position: fixed;
}

.stellarnav.mobile .menu-toggle {}
.stellarnav .menu-toggle span.bars {}
.stellarnav .menu-toggle span.bars span {}
.stellarnav .menu-toggle span.bars span:nth-child(3) {margin: 0 auto;}

.stellarnav.mobile.left > ul {left: unset;right: 0;font-size: 0;max-width: 100%;padding: 0;/*右滑出現*/right: -100vw;overflow: hidden;transition: all .5s ease;}
.stellarnav.mobile.left.active > ul{width: 100%;right: 0;max-width: 500px;}
.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {display: inline-block;font-size: 12px;background: transparent;height: 76px;width: fit-content;padding: 0;margin: 26px 0 28px;text-transform: capitalize;content: 'Menu';font-size: 14px;color: #000;transform: scale(1);font-family: var(--SFontE);letter-spacing: 0.04em;height: fit-content;width: 100%;text-align: right;display: flex;flex-direction: row-reverse;padding-right: 20px;}
.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;}

.stellarnav ul:hover li a {opacity: 1;transition: all 0.3s ease-in-out;}

.stellarnav.mobile  > ul > li:after {content: none;}

.stellarnav.mobile > ul > li {display: block;border-bottom: 1px solid #f0f0f0;}
.stellarnav.mobile li.open {background: #fff;color: #77685B;padding: 0 0 5px;}
.stellarnav.mobile > ul > li > a {text-align: left;overflow: auto;height: auto;line-height: 1.8;display: block;font-size: 16px;padding: 15px;width: calc(100% - 30px);}
.stellarnav.mobile li.open > a {border: 0;padding: 20px 16px;}    .stellarnav > ul > li > a:before{content: none;}

.stellarnav.mobile > ul > li > a.dd-toggle {top: 5px;}
.stellarnav.mobile > ul > li.open > a.dd-toggle {top: 0;}
.stellarnav a.dd-toggle .icon-plus:before {width: 8px;height: 8px;border-bottom: solid 1px #666;top: 50%;top: 0;left: 0;transform: rotate(-45deg);}
.stellarnav a.dd-toggle .icon-plus:after {width: 8px;height: 8PX;top: 50%;border-bottom: solid 1px #666;transform: rotate(45deg);}
.stellarnav li.open > a.dd-toggle .icon-plus {-moz-transform: translateY(10px) scaleY(-1);-webkit-transform: translateY(10px) scaleY(-1);-o-transform: translateY(10px) scaleY(-1);transform: translateY(10px) scaleY(-1);}

.stellarnav.mobile ul ul {left: unset;margin: 0 auto;box-shadow: none;width: calc(100% - 10px);margin: auto;left: unset;box-shadow: none;}
.stellarnav li li {font-size: 14px;color: #333;font-family: var(--SFont2);letter-spacing: 0.04em;font-size: 15px;color: #333333;letter-spacing: 0.04em;}
.stellarnav li.has-sub:hover ul {
    opacity: 1;
    animation: up 1s forwards;
    animation-delay: 0s;
}
}

@media screen and (max-width: 600px) {
.nav-brand {max-width: 130px;}
.sticky .nav-brand {max-width: 120px;}
.navigation {height: 70px;}
.stellarnav .menu-toggle {padding: 5px 10px;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */




/*footer = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.box_link{display: none;}
.footer {
    background: #f0e5d24f;
}
.footer .center {
    padding: 36px 20px;
}
.footer_info {
    display: flex;
    width: 100%;
    max-width: 100%;
    margin: auto;
    padding: 0;
    position: relative;
    flex-direction: column;
    gap: 10px;
    justify-content: space-between;
}
.footer_info ul {
    position: relative;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    flex-direction: column;
}

/* logo */
.footer_logo {
    max-width: 190px;
    width: 100%;
    margin: 0px auto 16px;
    background-image: url(https://pic03.eapple.com.tw/jingyeh/logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    transition: all .3s;
}
.footer_logo:hover {
    opacity: 0.5;   
}
.footer_logo a img {
    opacity: 0;
}

/* 聯絡資訊 */
.footer_info li{
    padding: 0;
}
.footer_info li:nth-child(1) {
    display: flex;
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.footer_info li p.phone{ order: 1;}
.footer_info li p.add{ order: 3;}
.footer_info li p.mail{ order: 2;}
.footer_info li p.line{ order: 4;}

.footer_info li p,.footer_info li p a {
    font-size: 15px;
    line-height: 2;
    letter-spacing: 1px;
    position: relative;
    color: #000;
}
.footer_info li p:before {
    margin: 0;  
}
.footer_info li p:after {
    position: absolute;
    left: 1px;
    top: 50%;
    color: #666;
    font-size: 13px;
    transform: translate(0%, -50%);
}
/* 網頁連結 */
.footer_info li:nth-child(2) {
    width: 100%;
    text-align: center;
    right: 0;
    top: 0;
}
.footer_menu {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    /* display: grid; */
    gap: 0;
    justify-content: center;
}
.footer_menu a:first-child{
    display: none;
}
.footer_menu a {
    background: transparent;
    border: 0;
    letter-spacing: 1px;
    margin: 0 0 8px;
    padding: 0;
    transition: all .3s cubic-bezier(.165,.84,.44,1);
    color: #B77A54;
    font-weight: 500;
    position: relative;
    font-size: 13px;
    padding: 0 24px;
    border-right: 1px solid #3e2f2431;
}
.footer_menu a:last-child{
    border: 0;
}
.footer_menu a:before {
    position: absolute;
    content: "";
    left: 3px;
    top: 4px;
    width: 6px;
    height: 9px;
    background-size: 6px auto;
}
.footer_menu a:hover {
    background: transparent;
    color: #D2A174;
    opacity: 0.6;
}

.copy {
    color: #656565;
    border: none;
    margin: 0;
    font-size: 12px;
    letter-spacing: 0.08em;
    font-weight: 300;
    text-align: center;
    padding: 10px 0 12px;
    background: #F0E5D2;
}
.copy a {
    color: #656565;
} 

@media screen and (max-width:460px) {
    .footer_menu a{ padding: 0px 8px;}
    .footer_info li p, .footer_info li p a{ font-size: 14px;}
    .footer_menu{display: grid; grid-template-columns:1fr 1fr; width: 80%; margin: auto;}
    .footer_menu a{ border-right: 0px;}
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 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_menu_list { 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;}
@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) {
}


.product_page #content,.product_info_page #content,.car_page #content{
    background-image: url(https://pic03.eapple.com.tw/jingyeh/in-bg.jpg);
    background-position:center;
    font-family: "Noto Sans TC", "Yuji Mai", "Road Rage", sans-serif;
}



/*購物車*/
.prod_part {    width: 100%;}
.products-list {    display: grid;    gap: 10px;    grid-template-columns: 1fr 1fr 1fr 1fr;}
.products-list:before{content:none;}
.products-list .item {    width: 100%;}
.product_menu_list>h5{ color: #968074;}
/*購物車/外層*/
.products-list .more {    border: 1px solid #D2A174;    color: #D2A174;}
.products-list .item a:hover .more {    background: #D2A174;}
.products-list .item a{ transition: 0.3s;}
.products-list .item a:hover img { opacity: 0.5;}
/*價格*/
.products-list .price {    display: flex;    margin-bottom: 5px;    align-items: center;    justify-content: center;    flex-wrap: wrap;}
.products-list .price b {    margin: 0 5px;    line-height: 180%;    text-align: center;color: #BA926E;}
.products-list .price b.ori_price {    font-size: 14px;}
/*外層版面*/
.product_page .main_part {    width: 90%;	max-width: 1500px;}
.product_page .show_content {    display: flex;    flex-wrap: wrap;    align-items: flex-start;    justify-content: space-between;}
.product_page .products-list {    width: calc(100% - 280px);}
.product-layer-two {    width: 250px;    margin: 0;}
.product_info_page .product-layer-two {    display: none;}
.product-layer-two li {    margin: 0;    width: 100%;padding: 0 10px;}
.product-layer-two > li.active {    background: #e0d5c233;}
.product-layer-two li.active a {    border: unset;border-bottom: 1px dotted #ccc;}
.product-layer-two li a {    color: #77685B;    border: none;    background: transparent;    transition: all 0.3s;    line-height: 200%;    transition: all 0.3s;}
.product-layer-two > li > a {    border-bottom: 1px dotted #ccc;padding-left: 25px;}
.product-layer-two li:hover > a , .product-layer-two li.active > a{color: #D2A174;}
.product-layer-two li:hover > a:before , .product-layer-two li.active > a:before {background: #D2A174; color:#fff;}
.product-layer-two > li > a:before {border-radius: 100%;align-items: center; justify-content: center;display: flex;height: 18px; content: "※";color: #D2A174;background:transparent;width: 18px; text-align: center; position: absolute; left: 0; top: 50%;transform: translateY(-50%);transition: all 0.3s;padding-left: 2px;font-size: 18px;}
.product-layer-two li ul {    position: relative;padding-top: 1px;}
.product-layer-two li li {    border: none;background: transparent;}
.product-layer-two li li a{    background: transparent;}
.product-layer-two li li:hover a{color: #ADA17E;}
.product-layer-two li li {    display: block;}/*hover到才顯示副選單關掉↓*/
.product_info_page .swiper-wrapper .swiper-slide:nth-child(1)::after {display: none;}
.product_info_page .main_part {    width: 90%;}
.inquiry_a1, .inquiry_a2, .inquiry_a3{ border-radius: 0px;}
.inquiry_a1{background: #968074;}
.inquiry_a2{background: #C29174;}
.inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover{background: #D2A174;}
.lastaction {color: #ADA17E;    background-color: #f2f2f2;}
.nextaction {background-color: #ADA17E;}
.lastPage {background: #C29174;}
.lastPage:hover{ background: #D2A174;}
.product_info li .txt_box {color: #222222;width: 100%;}
.sidebarBtn h2{color: #8A7457; }
.sidebarBtn .sp_price {color: #BA926E;}
.sidebarBtn{
  border: 0.3px rgba(221, 221, 221, 0.447) solid;
}
.pd_tabTitle li a{font-size: 24px;    color: #666666; font-weight: bold; }
.pd_tabTitle li.activeTab::after{ height: 0.2px; background: #e4c59e6e; }
.mobile_product_name{font-size: 24px; display: none;}
.prod_related h6 span:before{font-size: 24px;    color: #666666;}
.prod_related{
  border-top: none;
  background: transparent;
}
.products-list .name{
  font-size: 18px;
  color: #8A7457;
  font-weight: 500;
  text-align: center;
  margin-bottom: -8px;
}
.products-list .price{ display: none;}
.product_pic #bx-pager{
  color: transparent;
}
.products-list .pic img{ transition: 0.5s;}
.block{
  background: transparent;
}

ul.prod li h3.prod-thumb{
  color: #000000;
  text-align: left;
  padding: 0  0 3% 0;
  font-size: 23px;
  font-weight: 500;
  background: transparent;
}
.rewrite_simple{
    background: #D2A174;
}
.send_simple{
    background: #E4C59E;
}

@media screen and (max-width: 1200px) {
    .products-list{
        grid-template-columns: 1fr 1fr 1fr;
        gap: 24px 10px;
    }
}
@media screen and (max-width:1024px) {
    .product_page #content, .product_info_page #content{
        background-position: left;
    }
}
@media screen and (max-width: 960px) {
    .products-list{
        grid-template-columns: 1fr 1fr;
        gap: 24px 10px;
    }
}

@media screen and (max-width:768px) {
    .product_page .products-list{ width: 100%;}   
}
@media screen and (max-width:600px) {
    .products-list .price b{ text-align: center!important;}
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#content_main { margin:0;}
.bannerindex { position:relative; height:auto;}
.swiper-banner { position:static; margin:0; height:auto;} 
/* .swiper-slide img { height:auto;} */
@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0; margin-top: 72px;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {background: transparent;width: 270px;display: flex;flex-direction: column;justify-content: center;align-items: center;margin: auto; padding: 160px 20px 50px;}
.banner h5:before{ content: "PRODUCTS"; color: #e7c7a5; font-family: "Road Rage", sans-serif;line-height: 1.2; font-weight: bold; font-size: 70px; display: block;}
.banner h5 { color: #B77A54;font-weight: bold; font-family: "Yuji Mai", sans-serif; line-height: 1.2;  font-size: 40px; display: flex; flex-direction: column;  position: relative; z-index: 1;}
.banner h5:after{ content: "";  background-image: url(https://pic03.eapple.com.tw/jingyeh/ti-bg.png); display: block; width: 400px; height: 115px;
    background-size: cover;  background-position: left; margin: auto; position: absolute; left: -99px; top:13px; z-index: -1;} 
.banner.banA {}
.banner.banB {}
.banner.banC {}
.banner.banD {}
.banner.banE {}
.banner.banblog {}

@media screen and (max-width:500px) {
    .banner h5:after{ width: 290px; left: -51px; background-size: contain;}
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/
  

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本分類全版面 ( 限制最寬2000px
.work_page .main_part { max-width:2000px;}
.work_page .show_content { padding:0; width:100%;}
.work_page .show-list .item { width:33%; display:inline-block; float:none; margin:0; padding:0;}
@media screen and (max-width: 768px) {
.work_page .show-list .item { width:49%;}
}
@media screen and (max-width: 570px) {
.work_page .show-list .item { width:100%;}
}
.work_page .show-list .item a { max-width:100%;}
.work_page .show-list .show_pic { height:auto; line-height:0;}
.work_page .show-list .show_pic img { max-width:100%; max-height:100%;}
.work_page .show-list .show_name { position:absolute; top:50%; right:10%; width:80%; height:auto; line-height:160%; font-size: 20px; color: #FFFFFF !important; border: solid 1px #fff; text-align: center; margin: -20px 0 0 -120px; padding:5px 20px; transition:all ease-in .3s; opacity:0;}
.work_page .show-list .item:hover .show_name {opacity:1;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本列表
.work_info_page .main_part { max-width:2000px;}
.work_info_page .show_content { padding:0; width:100%;}
.work_info_page .subalbum-menu { text-align:center;}
.work_info_page .subalbum-menu h2 { float:none;}
.work_info_page .pic-list .item { margin:0; padding:10px; width:49%; float:none; display:inline-block;}
@media screen and (max-width: 768px) {
.work_info_page .pic-list .item { width:100%;}
}
.work_info_page .pic-list .show_pic { height:auto; line-height:0;}
.work_info_page .pic-list .show_pic img { max-width:100%; max-height:100%;}
.work_info_page .pic-list .item a { max-width:100%; pointer-events: none; cursor: default; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */





.car_page .information_left {
    display: block;
}
body.car_page .footer_info li p:before{
    position: initial;
    display: inline;
}
.contact_le_map a{background: #2a93d8; }




@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu {}
.footer.with_shopping_mode { padding:30px 0 55px; }
#to_top { bottom:60px;}
}

@media screen and (max-width: 600px) { 
}




