@charset "utf-8";


/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/
&::-webkit-scrollbar {
    background: #fff;
    width: 7px;
}

&::-webkit-scrollbar-button {
    background: #fff;
    border-radius: 0;
}

&::-webkit-scrollbar-track-piece {
    background: #eee;
}

&::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #604117;
}

&::-webkit-scrollbar-track {
    box-shadow: transparent;
}



/* ==================== */
/* 第 1 張輪播圖 */
/* ==================== */
.bannerindex .swiper-slide.swiper-slide-active:nth-child(1)::before {
     content: "";
    position: absolute;
    background-image: url(https://pic03.eapple.com.tw/woodworking/banner01.png);
    width: 50%;
    height: 22%;
    padding-bottom: 3%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    z-index: 10001;
    pointer-events: none;
    left: 6vw;
    top: 43%;
    opacity: 0;
    transform: translateY(10%);
    animation: banner01-move-up 1s ease-in-out forwards;
    
}


.bannerindex .swiper-slide.swiper-slide-active:nth-child(1)::after {
    content: "";
    position: absolute;
    background-image: url(https://pic03.eapple.com.tw/woodworking/banner02.png);
    width: 60%;
    height: 15%;
    padding-bottom: 4%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    z-index: 10000;
    pointer-events: none;
    right: 7vw;
    top: 39%;
    opacity: 0;
    transform-origin: center center;
    transform: scale(0);
    animation: banner03-scale-in 1s ease-in-out forwards;
    
}

/* ==================== */
/* 第 2 張輪播圖 */
/* ==================== */
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2)::before {
     content: "";
    position: absolute;
    background-image: url(https://pic03.eapple.com.tw/woodworking/banner01.png);
    width: 50%;
    height: 22%;
    padding-bottom: 3%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    z-index: 10001;
    pointer-events: none;
    right: 3vw;
    top: 43%;
    opacity: 0;
    transform: translateY(10%);
    animation: banner01-move-up 1s ease-in-out forwards;
    
}


.bannerindex .swiper-slide.swiper-slide-active:nth-child(2)::after {
    content: "";
    position: absolute;
    background-image: url(https://pic03.eapple.com.tw/woodworking/banner02.png);
    width: 60%;
    height: 15%;
    padding-bottom: 4%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    z-index: 10000;
    pointer-events: none;
    right: -32vw;
    top: 39%;
    opacity: 0;
    transform-origin: center center;
    transform: scale(0);
    animation: banner03-scale-in 1s ease-in-out forwards;
    
}
/* ==================== */
/* 動畫定義 */
/* ==================== */
@keyframes banner01-move-up {
    0% { opacity: 0; transform: translateY(10%); }
    100% { opacity: 1; transform: translateY(-8%); }
}
@keyframes banner02-move-up {
    0% { opacity: 0; transform: translateY(10%); }
    100% { opacity: 1; transform: translateY(-8%); }
}
@keyframes banner03-scale-in {
    0% { opacity: 0; transform: scale(0); }
    100% { opacity: 1; transform: scale(1); }
}

/* ============================== */
/* 預設不顯示動畫圖 */
/* ============================== */
.bannerindex .swiper-slide.swiper-slide-active:nth-child(1)::before,
.bannerindex .swiper-slide.swiper-slide-active:nth-child(1)::after,
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2)::before,
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2)::after{ pointer-events: none;}

@media screen and (max-width: 768px) {

.bannerindex .swiper-slide.swiper-slide-active:nth-child(1)::before {
        content: "";
        position: absolute;
        background-image: url(https://pic03.eapple.com.tw/woodworking/banner01.png);
        width: 40%;
        height: 100%;
        padding-bottom: 3%;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: left;
        z-index: 10001;
        pointer-events: none;
        left: 6vw;
        top: 20%;
        opacity: 0;
        transform: translateY(10%);
        animation: banner01-move-up 1s ease-in-out forwards;
}

.bannerindex .swiper-slide.swiper-slide-active:nth-child(1)::after {
       content: "";
        position: absolute;
        background-image: url(https://pic03.eapple.com.tw/woodworking/banner02.png);
        width: 60%;
        height: 20%;
        padding-bottom: 4%;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: left;
        z-index: 10000;
        pointer-events: none;
        right: 7vw;
        top: 40%;
        opacity: 0;
        transform-origin: center center;
        transform: scale(0);
        animation: banner03-scale-in 1s ease-in-out forwards;
  
}
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2)::before {
        content: "";
        position: absolute;
        background-image: url(https://pic03.eapple.com.tw/woodworking/banner01.png);
        width: 40%;
        height: 100%;
        padding-bottom: 3%;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: left;
        z-index: 10001;
        pointer-events: none;
        right: 15vw;
        top: 20%;
        opacity: 0;
        transform: translateY(10%);
        animation: banner01-move-up 1s ease-in-out forwards;
       
}

.bannerindex .swiper-slide.swiper-slide-active:nth-child(2)::after {
        content: "";
        position: absolute;
        background-image: url(https://pic03.eapple.com.tw/woodworking/banner02.png);
        width: 60%;
        height: 20%;
        padding-bottom: 4%;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: left;
        z-index: 10000;
        pointer-events: none;
        right: -35vw;
        top: 40%;
        opacity: 0;
        transform-origin: center center;
        transform: scale(0);
        animation: banner03-scale-in 1s ease-in-out forwards;
 
}
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*背景*/
#content {
    min-height: 80vh;
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-size: cover;}
#content_main {

    width: 100%;
    min-height: 80vh;
    overflow: hidden;
    z-index: 60;
    position: relative;
    margin-top: 100vh;
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-size: cover;}

#to_top {
    position: fixed;
    left: 10px;
    z-index: 600;
    width: 50px;
    height: 50px;
    padding-top: 10px;
    font-size: 12px;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    background-color: #604117;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    border-radius: 0%;
    left: 0%;
    }
    #to_top i:before, #to_top i:after {
        content: "";
        display: block;
        position: absolute;
        border-radius: 100px;
        background: #ffffff;
        transition: all 100ms ease-in-out;}
        

        

/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/

/*Main/＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*Header/＝＝＝＝＝*/
/*首頁*/

.pageIndex .main_header_area {
    transition: all .3s;}
.pageIndex .header_area .main_header_area {
    position:relative;
    width: 100%;
    transition: all 0.3s;
    background: #ffffff;}
    
.pageIndex .header_area.sticky .main_header_area {
        background: #ffffff;
        transition: all 0.3s; }


/*其他分頁*/

.header_area {position:relative;z-index: 9990; padding: 0px;background: #ffffff00; width: 100%;}
.main_header_area {
    background: #ffffff;}
.main_header_area .container {
        max-width: 95%;
        transition: all 0.3s;
    padding: 20px 0;}


.header_area.sticky .main_header_area .container {
            max-width: 88%;
            transition: all 0.3s;}

.header_area.sticky {
    background:#ffffffc4;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 1px 1px 5px rgba(169, 169, 169, 0.3);}


 .swiper-banner:after {
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0; }

 .swiper-pagination-bullet {
        display: none; }


/*第一層*/

.stellarnav > ul > li > a b {font-weight: bold;}
/*首頁文字顏色*/
.pageIndex .stellarnav  ul  li  a {    color: #604117;}
.pageIndex .stellarnav  ul  li:hover  a {color: #d8a877; font-weight:bold ;}




/*首頁sticky文字顏色*/

.pageIndex .header_area.sticky a {color: #604117;}
.pageIndex .header_area.sticky a:hover { color:#d8a877;}


.stellarnav > ul > li > a:before {
    content: "";
    width: 0;
    left: 0;
    padding: 0;
    height: 3px;
    transition: all 0.5s;
    position: absolute;
    background: #d8a877;
    bottom: 0px;
    top: 0px;
    transform: translate(0px, 27px);
}

.stellarnav > ul > li > a:hover:before {
    width: 90%;
}


/*其他分頁文字顏色*/
.stellarnav > ul > li > a {padding: 0 10px 0 0;color: #604117;font-weight: 900;font-size: 17px; line-height: 30px;height: 30px;}
.stellarnav  ul  li:hover  a {color: #d8a877; font-weight:bold ;}



/*上方icon*/
.nav-menu {    margin: 0 auto;padding: 0;text-align:center;}
.nav-header {    position: relative;}
.me_tp_features {    position: relative;    right: unset;    top: unset;    width: fit-content;}

.nav-menu>li:hover>a, .nav-menu>li.active>a, .nav-menu>li.focus>a {
    color: #d8a877;}

.me_tp_features a {display: none;}
.shop_search_btn { background: #604117;}

.nav-menu>li:not(.tp_links) {
    padding-right: 15px;
}

.nav-menu>li>a {
    color: #d8a877;
    letter-spacing: 3px;
    padding: 25px 7px;}


.nav-menu>li.focus>a {
    color: #d8a877;
}
.nav-dropdown>li:hover>a .nav-dropdown>li.focus>a {
    color: #d8a877;
}


.stellarnav li.has-sub > a:after {
        content: '';
        margin-left: 10px;
        position: absolute;
        top: 40%;
        right: 5px;
        transform: translateY(-50%);}   

 .nav-header {
            z-index: 123;
            top: 0;
            left: 0;
            max-width: 280px;
            width: 100%;
            grid-row: 1 / span 2;
            display: flex;
            justify-content: center;
            align-items: center;
            align-content: center;
        }
.navigation {     padding: 20px 0px 20px 300px;}
.navigation {
    width: 100%;
    position: relative;
    padding: 0;
    display: grid;
    grid-template-columns: 280px 1fr;
    grid-gap: 0 20px;
    align-content: stretch;
    justify-content: center;
    align-items: center;
    justify-items: end;}



/*下拉箭頭*/
.stellarnav li.has-sub > a:after {
            height: 8px;
            width: 8px;
            display: block;
            border-style: solid;
            border-width: 0 1px 1px 0;
            border-color: transparent #d8a877 #d8a877 transparent;
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
            -webkit-transition: border .2s;
            transition: border .2s;    }    

.sticky .stellarnav li.has-sub > a:after {
           border-color: transparent #604117 #604117 transparent; }
            
.pageIndex .stellarnav li.has-sub > a:after {  border-color: transparent #604117 #604117 transparent;}




/*第二層*/
.stellarnav li li > a , .stellarnav li li.has-sub > a{    padding: 7px 5px;   transition: all 0.3s; }
.stellarnav li li:hover > a , .stellarnav li li.has-sub:hover > a{color: #d8a877;	padding-left:10px;}
.stellarnav li li.has-sub:hover > a {color: #604117;}




/*次選單樣式-半透明底色*/
.stellarnav ul ul {
    background:#ffffff;
    border-radius: 0 0  6px 6px;
    padding: 7px;
    -webkit-backdrop-filter: saturate(180%) blur(5px);
    backdrop-filter: saturate(180%) blur(5px);
    width: 180px;
}

/*次選單欄位邊框*/
.stellarnav li li {
    border: 0px var(--f3-color) solid;
}

/*次選單文字樣式*/
.stellarnav li a {
    padding: 7px 10px;
    display: block;
    color: #604117;
    font: bold ;
    letter-spacing: .1rem;
}
.stellarnav li li > a ,
.stellarnav li li.has-sub > a {
    padding: 7px 5px;
    border-left: 2px solid transparent ;
}

/*hover欄位樣式-向右滑動*/
.stellarnav li.has-sub ul li a:hover{
    color:#d8a877;
    padding-left: 10px;
    font-weight: bold;
}

/*文字底色透明*/
.stellarnav.desktop li.has-sub ul a {
    background: transparent;
    letter-spacing: .1rem;
    position: relative;
}


/*logo*/
.pageIndex .header_area .nav-brand {
    max-width: 100%;
    }

.pageIndex .header_area.sticky .nav-brand {
    filter: none !important;
}


.header_area .nav-brand {
    transition: all 0.3s;
   }

.header_area.sticky .nav-brand {
        max-width: 100%;
        }
   
/* = = = 頁尾 = = = =  = = = = = = = = */


/*換圖*/

.footer {
    padding: 60px 0 0;
    font-size: 14px;
    background-color: #d3c4b2;
}
    
   
/*換logo*/
.footer_logo img {width: 100%;}
    


.footer .center {    max-width: 90%;}
.footer_info {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    padding-right: 0px;
}
.footer_info ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
    border-top: 1px solid #604117;
    align-items: center;
}
.footer_info li p {    display: inline-block;    padding-right: 26px;}
.footer_info li p, .footer_info li p a {    
     color: #604117;
    display: flex;
    flex-direction: row;}
.footer_info li:nth-child(1) {
    color: #604117;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}
p.tel {    order: 2;}
p.add {    order: 3;}
p.line {    order: 1;}
.footer_menu {    display: inline-block;}
.footer_menu a {
    margin: 0;
    text-align: center;
    padding: 5px 10px;
    transition: all 0.3s;
    background: transparent;
    border: none;
    color: #604117;
}
.footer_menu a:hover {    background: transparent;}
.copy {    background: transparent;    color: #604117;	border:none;}
.copy a{    color: #604117;transition:all 0.3s;}
.copy a:hover {
    color: #f0f0f0;
}
.box_link {   display: none;}
.box_link a{transition:all 0.3s;}
.box_link a:hover {    background: #604117;   color: #fff;}
.privacyLinks a+a {
    border-left: 1px solid #604117;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/

.banner { background-image: url(https://pic03.eapple.com.tw/woodworking/banner.jpg); }
.banner.banB {display: none;}
.banner.banF {}
.banner.banblog {}
.banner.banC {display: none;}
/*內頁BANNER 設定*/
/* ===== 共用 Banner 樣式 ===== */
.banner {
    position: relative;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    flex-direction: column;
    height: 40vw;
    max-height: 450px;
}

/* ===== Banner 文字 ===== */
.banner h5 {
    color: #2d1b06;
    font-size: 24px;
    
}

.banner h5:before {
    content: "";
    font-size: 60px;
    white-space: pre-line;
    display: block;
    color: #604c3f;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.1;
    -webkit-animation: imgSlideUpAnimation 1s 0.1s ease-in-out forwards;
    animation: imgSlideUpAnimation 1s 0.1s ease-in-out forwards;
    opacity: 0;
    font-family:"Noto Serif", serif !important ;
}

/* ===== 各頁 Banner 文字內容 ===== */

body.product_page .banner h5:before,
body.product_info_page .banner h5:before,
body.car_page .banner h5:before {
  content: 'PRODUCT';
   font-family:"Noto Serif", serif !important ;
}

body.blog_page .banner h5:before,
body.blog_in_page .banner h5:before {
  content: 'NEWS';
   font-family:"Noto Serif", serif !important ;
}

body.album_page .banner h5:before,
body.album_info_page .banner h5:before,
body.album_class_page .banner h5:before {
  content: 'PHOTO';
   font-family:"Noto Serif", serif !important ;
}



/* ===== 動畫效果 ===== */
@-webkit-keyframes imgSlideUpAnimation {
    0% { opacity: 0; -webkit-transform: translateY(30px); transform: translateY(30px); }
    100% { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
}
@keyframes imgSlideUpAnimation {
    0% { opacity: 0; -webkit-transform: translateY(30px); transform: translateY(30px); }
    100% { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
}

/* ===== RWD (手機版) ===== */
@media screen and (max-width: 768px) {
    .banner {
        max-height: none;
        background-attachment: scroll; /* 手機避免 fixed 卡頓 */
    }
    .banner h5:before { font-size: 40px; }
    .banner h5 { font-size: 20px; }
}



/*上方選單右邊設定 臉書/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 {}
*/



/*頁碼*/
.path p {display: none;}

/*按鈕*/
.animated-arrow {
    background: #ada692;
    color: #604117;
    display: inline-block;
    margin-top: 20px;
    height: 50px;
    line-height: 50px;
    overflow: hidden;
    width: 250px;
    text-align: center;
    position: relative;
}

/* = = = 購物車 = = = =  = = = = = = = = */


/* 商品下拉超過30個變大 */
.stellarnav.desktop li.bigMenu>ul{    display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 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: 0px;}
.stellarnav.desktop li.bigMenu li{border: 0;}
.stellarnav.desktop li.bigMenu>ul>li>a{border: 0px solid #ddd; background-color: #5f5449;  color: #ffffff;}
.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;}
.stellarnav.desktop li.bigMenu ul ul li:hover { background-color: #f5ebe2;}
 /*主分類超過30個但次分類直接顯示-結束 */

/* 商品下拉超過30個--結束 */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式   */
.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:#d8a877;}
.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:#d8a877;}

.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) {
}






/*分類頁*/
.products-list .price {margin: 0 0 10px;}
.products-list .price b {color: #DABEA8;}
.products-list .more {font-size: 14px;font-weight: 500;border: 1px solid #DABEA8;color: #DABEA8;}
.products-list .item a:hover .more {background: #DABEA8;}
.products-list .name {height: 20px;text-align: center;letter-spacing: .2rem;line-height: 160%;}

/*相關推薦*/
.related_list li a {
    display: block;
    padding: 4px;
    background: transparent;
    height: 100%;
}
/*側邊*/
.product-layer-two li a {
    position: relative;
    border: 1px #604117 solid;
    background: transparent;
    padding: 7px 16px;
    display: block;
    font-size: 16px;
    color: #604117;
}
.fa-circle-plus::before {
    content: "\f055";
    color: #604117;
}

/*首頁*/
.i_prod_tit span{font-size: 36px;letter-spacing: .6rem;font-weight: 400;color: #444;}
.i_prod_tit h2:before{content: "Catalog";color: #BF8C52;font-family: "Anton", serif;
font-size: 15px;letter-spacing: .2rem;font-weight: 400;}
.pageIndex .products-list li:nth-child(n+5){display: none;}
.i_prod_b a b{font-size: 16px;font-weight: 400;}
.i_prod_b a i{display: none;}
@media screen and (max-width: 768px) {
	/*清單頁*/
	.product_page .product_menu_list > h5 {font-size: 18px;font-weight: 900;margin-bottom: 0;color: #604117;}
	.fa-caret-down::before{font-size: 14px;}
	.product-layer-two li a{padding: 10px 0 5px;width: 95%;}
	/*商品頁*/
	.mobile_product_name{display: none;}
	.stellarnav.mobile > ul > li > a {
        color: #444;}
	.pageIndex .header_area {
    background: transparent;
    height: 80px;
    position: sticky;}
	.pageIndex .header_area.sticky {
    background: rgba(218, 190, 168, 1) !important;}
   .footer_info li p {
    width: 100%;}
    /*分類*/
    .product-layer-two li i {
    position: absolute;
    right: 0;
    top: 0;
    width: 57px;
    height: 37px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
}
@media screen and (max-width: 600px){
	/*商品頁*/
	.module_i_news ul{grid-template-columns:1fr; }
    .pageIndex .products-list {
                    grid-template-columns: 1fr; padding:5px;}
	.pd_tabTitle li a{font-size: 12px;}

}

.stellarnav.desktop > ul > li.mega > ul{
	width: fit-content !important;
}
.stellarnav.desktop li.mega li li a {
	font-size:16px;
}
.stellarnav.desktop > ul > li.mega > ul > li{
	min-width: 160px;
	padding:0;
} 

/* = = = 文章管理 = = = =  = = = = = = = = */


/*首頁部分*/
.module_i_news li a {
    position: relative;
    display: grid;
    grid-template-columns: auto;
    grid-gap: 10px;
}
.module_i_news { padding: 80px 20px;background-size: cover !important;}
.module_i_news .title_i_box h4 { color: #2d1b06;  font-weight: 900;  font-size: 24px;}
.module_i_news .title_i_box h4::before {    content: "NEWS";  display: block; color: #604c3f;  font-size: 60px;  letter-spacing: 0px; font-weight: 600; font-family: "Noto Serif", serif;}
.module_i_news .title_i_box h6 {font-size: 18px;color: #ccc;letter-spacing: 3px;}
.module_i_news ul {display: flex;justify-content: center;}
.module_i_news li {width: 30%;margin: 1%;}
.module_i_news li:nth-child(n+4){display: none;}
.module_i_news li a:before {width: 100%;bottom: auto;right: auto;top: 50%;left: 50%;transform: translate(-50%,-50%);}
.module_i_news li a:hover:before{font-size: 12px;letter-spacing: 2px;background: #e9e3db;padding: 20px 10px;width: 60%;}
.module_i_news li a:hover:after{background: #6b5d4e70;border: none;}
.i_blog_le{width: 100%;padding: 0;padding-bottom: 70%;height: 0;overflow: hidden;position: relative;}
.i_blog_le img{position: absolute;top: 50%;left: 50%;transform: translate(-50%,-50%);}
.i_blog_ri {width: 100%;padding: 20px 10px;}
.i_blog_ri h5{    color: #604117; font-weight: 800;}
.i_blog_ri p{color: #ccc;}
.animated-arrow {background: transparent;  border: 1px solid #604117;}
.i_blog_b a b{font-weight: 900;font-size: 14px;}
/*側邊選單*/
h5.blog_le_t em{display: block;font-weight: 600;}
h5.blog_le_t span {font-size: 14px;}
.blog_search input[type=search]{border-radius: 0;}
.blog_le {width: 250px;padding: 15px;display: none;}
.blog_le .accordion {border-radius: 0;border: none;}
.blog_le .accordion li{border-bottom: 1px solid #ddd;}
.blog_le .accordion li:last-child{border-bottom: none;}
.blog_ri {width: 100%;padding: 0 0 0 50px;}
.accordion li .link{padding: 0;}
.accordion li .link a{padding: 15px 10px;display: inline-block;}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {background: #d8a877 !important;}
/*分類頁*/
h4.blog_category_title {padding: 0;margin: 0 0 5px 0;font-weight: 300;font-size: 20px;color: #555;}
.subbox_item{width: 100%;margin-bottom: 50px;}
.subbox_item a:before {color: #fff;font-weight: 300;letter-spacing: 2px;font-size: 12px;line-height: 50px;bottom: 0;
    right: auto;left: 50%;transform: translateX(-50%);display: none;}
.subbox_item a {
    display: grid;
    grid-template-columns: 100% 1fr;
    position: relative;
    grid-gap: 20px;
}
.subbox_item a:after {border: none;background: rgba(0,0,0,.8);height: 50px;top: auto;bottom: 0;display: none;}
.blog_list_le{width: 65%;height: 0;padding-bottom: 45%;overflow: hidden;position: relative;}
.blog_list_le img{position: absolute;top: 50%;left: 50%;transform: translate(-50%,-50%);transition: all .8s;}
.subbox_item a:hover .blog_list_le img{transform: translate(-50%,-50%) scale(1.05);}
.blog_list_ri{width: 45%;padding: 50px 30px 100px 30px;position: absolute;background: #fff;right: 8%;bottom: 10%;
    max-width: 600px;}
.blog_list_ri h5 {font-weight: 600;color: #333;}
.blog_list_ri em {position: absolute;bottom: 20px;font-size: 12px;right: 30px;}
.blog_list_ri p {line-height: 160%;font-weight: 300;font-size: 14px;margin-top: 10px;}
/*詳細頁*/
.blog_in_page h4.blog_category_title {font-weight: 600;font-size: 24px;border-bottom: 1px solid #ddd;padding-bottom: 15px;
    margin-bottom: 15px;}
 .blog_subbox {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(600px, 1fr));
    grid-gap: 20px;
}
.blog_back a.article_btn_back {background: #d8a877;}

.clearfix:before, .clearfix:after {
    content: " ";
    display: table;
}
/*相關文章*/
.news_related_list li a {
    display: block;
    padding: 4px;
    background: transparent;
    height: 100%;
}
.lastPage {
    font-size: 16px;
    color: #fff;
    background: #d8a877;
    padding: 10px 20px;
    display: block;
    margin: 40px auto;
    width: 130px;
    text-align: center;
}

/*文章縮圖隱藏*/
.articel_mainPic img{display: none;}


/* rwd */
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 960px) {
/*文章分類*/
	.subbox_item{border-bottom: none;}
}
@media screen and (max-width: 768px) {

   /*文章分類*/
	/*首頁*/
	.module_i_news ul{flex-wrap: wrap;}
	.module_i_news li {width: 48%;border-bottom: none;}
	.module_i_news li:nth-child(n+5){display: none;}
    .module_i_news .title_i_box h4::before { font-size: 30px;}
	/*分類頁*/
	.blog_ri {width: 100%;padding: 0;}
	.blog_le{width: 100%;}
	.blog_list_le {width: 80%;padding-bottom: 60%;}
    .blog_list_ri {
         width: 45%;
        padding: 10px 30px 100px 30px;
        position: absolute;
        background: #ffffff;
        right: 10%;
        bottom: -1%;
        max-width: 600px;}
    .subbox_item a {
        display: grid;
        grid-template-columns: auto;
        position: relative;
        grid-gap: 20px;
    }
.blog_list_le img {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all .8s;
}
.blog_subbox {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
     gap: 20px;
}
}

@media screen and (max-width: 550px) {
	/*文章分類*/
	/*首頁*/
	.module_i_news {padding: 50px 20px;}
	.module_i_news li {width: 100%;}
	.i_blog_ri h5{font-size: 18px;}
	/*功能頁*/
	.subbox_item {margin-bottom: 0px;}

    .blog_subbox {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
     gap: 20px;
}
    .blog_list_ri {
        width: 75%;
        padding: 10px 30px 50px 30px;
        position: absolute;
        background: #ffffff;
        right: 10%;
        bottom: -1%;
        max-width: 600px;
    }
}





/* = = = 相簿= = = =  = = = = = = = = */
.subalbum-menu h2 {
        font-size: 24px;
        color: #d8a877;
        display: inline-block;
        vertical-align: middle;
        font-weight: 900;}
.other_album_choice li {
            background: #d8a877;
            font-size: 15px;
            display: inline-block;
            border-radius: 18px;
            padding: 7px 20px;
            margin: 0 7px 7px 0;
        }
.show-list .item:hover .show_name {
            color: #d8a877;}

/* = = = 相簿 首頁= = = =  = = = = = = = = */
 .module_i_album .title_i_box h4 {
                font-size: 32px;
                color: #d8a877;
                font-weight: 900;
            }
.i_album_list li a p span {
                display: -webkit-box;
                -webkit-line-clamp: 1;
                -webkit-box-orient: vertical;
                overflow: hidden;
                white-space: nowrap;
                text-overflow: ellipsis;
                font-weight: 900;
            }
.i_album_list li a p {
                width: 100%;
                position: absolute;
                left: 0;
                bottom: 0;
                background: rgb(0 0 0 / 60%);
                text-align: center;
                display: flex;
                justify-content: center;
                align-items: center;
                align-content: center;
                color: #ffffff;
                overflow: hidden;
                padding: 0 10px;
                text-overflow: ellipsis;
                white-space: nowrap;
                border-radius: 20px;}
.i_album_list li div {
                    aspect-ratio: 4 / 3;
                    max-width: 100%;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    overflow: hidden;
                    border-radius: 20px;
                }
 .module_i_album {
    
    width: 100%;
    min-height: auto;
    overflow: hidden;
    z-index: 60;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;}

/* = = = 表單= = = =  = = = = = = = = */
.blank_letter{display: none;}
.contact_form li {
    display: grid;
    grid-template-columns: 120px 1fr;
    grid-gap: 10px;
}
.contact_form li .form__label {
    display: block;
    max-width: 120px;
    text-align: right;
}


/* = = = 表單= = = =  = = = = = = = = */


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*大圖*/
/*預設解除背景輪播*/
#content_main { margin:0;}
.bannerindex { position:static; height:auto;}
.swiper-banner { position:static; margin:0; height:auto;} 

.pageIndex .blank_letter {
    font-family:  'sans-serif';
    padding-top: 30px;
    color: #d8a877;
    background-position: center bottom;
    background-repeat: no-repeat;
    text-align: center;
    font-size: 32px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
@media screen and (max-width: 1600px) {
.footer_info li:nth-child(1) {display: flex; flex-direction: column; flex-wrap: nowrap;}
.footer_info li p, .footer_info li p a { color: #604117;  display: flex;  flex-direction: column;}
}

@media screen and (max-width: 1400px) {
.container {max-width: 1200px;transition: all 0.3s;}

}

 @media screen and (max-width: 980px) {
.main_header_area .container {  padding: 0;}
.pageIndex .header_area.sticky a {color: #604117;}
.main_header_area .container .navigation {    grid-template-columns: 1fr;}
.main_header_area .container .navigation> *{grid-row:unset;grid-column:unset;text-align: center;}
.nav-menu>li>a {padding: 10px 0px;}
.pageIndex .header_area {position: relative;width: 100%;}
.header_area.sticky {position: fixed;top: 0;left: 0;width: 100%;z-index: 9999;}
.pageIndex .header_area .main_header_area , .pageIndex .header_area.sticky .main_header_area{    background: #ffffff;}
.pageIndex .stellarnav  ul  li:hover  a {color: #d8a877; font-weight:bold ;}
.nav-menu>li>a {    padding: 15px 0px;letter-spacing: 2px;}
.me_tp_features {width: 100%;text-align: center; margin-bottom: 7px;}
.stellarnav > ul > li > a {font-size: 15px;}


/*logo*/
.nav-brand img {transition: all 0.3s;text-align: center; }
.nav-brand img {max-width: 80%;}
.sticky .nav-brand img {max-width: 0%;}
.navigation {grid-template-columns: 200px 1fr;grid-gap: 0 20px;align-content: stretch;justify-content: center;align-items: center;justify-items: center}
.tp_links {display: none;}}
.header_area .nav-brand {transition: all 0.3s;}
@media screen and (max-width: 768px) {.bannerindex { padding:0; margin:0;}

/*footer*/
.footer_info li:nth-child(1) {display: flex;flex-wrap: wrap;justify-content: center;flex-direction: column;text-align: center;}   
.footer_menu {display: grid;grid-template-columns: repeat(auto-fit, minmax(min(135px, 100%), 1fr));gap: 5px;}
.footer_info li { width: 80%;}   
.footer_menu a {margin: 0;text-align: center;transition: all 0.3s;color: #604117;background: #ffffff00;border: 1px #604117 solid;border-radius: 99em;}
.footer_menu a:hover {background: #d8a877; border-radius: 99em;}
.footer_info li p {          text-align: left; display: flex;   color: #604117; letter-spacing: 2px; margin: 2px 8px; flex-direction: column;}
.footer.with_shopping_mode { padding:30px 0 60px; }
.footer_info {    justify-content: center;}
.footer_logo {    text-align: center;}
.footer_info li{width: 90%;}
.footer_info ul { display: flex;flex-wrap: nowrap;flex-direction: column;align-items: center;}
.footer_info ul {  border-top: 0px solid #604117;   border-bottom: 0px solid #604117;}

 /*側邊選單*/
.main_header_area .container {max-width: 95%;transition: all 0.3s;}
.header_area.sticky .main_header_area .container {max-width: 95%;transition: all 0.3s;}
.stellarnav > ul > li > a:before {display: none;}

.stellarnav.mobile li.open li.open { background: #fffcfc; padding: 3px;}
.stellarnav ul ul { box-shadow: 0px 0px 0px 0px rgb(0 0 0 / 0%);}

 /*menu*/
 
.stellarnav .menu-toggle span.bars span {display: block;width: 24px;height: 2px;border-radius: 6px;background: #d8a877; margin: 0 auto 4px;}
.stellarnav .menu-toggle:after {content: 'MENU';font-size: 12px;color: #d8a877;display: block;transform: scale(0.9);}
 .stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul {position: fixed;top: 0; bottom: 0;width: 100%;max-width: 280px; overflow-x: hidden;overflow-y: auto;-webkit-overflow-scrolling: touch;z-index: 9999;border-right: 1px #d8a877 solid;background:#ffffff;}
.stellarnav.mobile li.open { background: #ffffff;}
.stellarnav.mobile ul {background: #ffffff;}
.pageIndex .stellarnav ul li a {color: #604117;    border-right: 0;}
.stellarnav ul li:hover a {color: #d8a877 !important;    border-right: 0;}
.stellarnav.mobile .menu-toggle, .stellarnav.mobile .dd-toggle, .stellarnav.mobile .close-menu, .stellarnav.mobile .call-btn-mobile, .stellarnav.mobile .location-btn-mobile {display: inline-block;padding: 5px 7px;}
.menu-toggle {margin-top: 10px;}
/*close*/
 .stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {display: inline-block;text-align: right;font-size: 12px;background: #604117;color: #ffffff;}
.stellarnav .icon-close:after {content: '';display: block;width: 12px;height: 0px;top: 50%;border-bottom: solid 3px #ffffff;position: absolute;transform: rotate(-45deg);}
.stellarnav .icon-close:before {content: '';display: block; width: 12px;height: 0px;border-bottom: solid 3px #ffffff;position: absolute;top: 50%;transform: rotate(45deg);}

/*表單*/
.contact_form li .form__label {
    width: 100%;
    margin-left: 0;
    text-align: left;
    font-weight: bold;
    padding: 5px;
    background: transparent;
}
.contact_form li {
    display: flex;
    grid-template-columns: 120px 1fr;
    grid-gap: 10px;
    flex-direction: row;
    flex-wrap: wrap;
}
.contact_form li .form__label {
    display: block;
    max-width: 100%;
   
}


#to_top { bottom:60px;}
#bottom_menu li a {  background: #ffffff;}
#bottom_menu li:hover a {  background: #d8a877;}
/* 開啟手機板下方按鈕所需設定 */
.footer.with_shopping_mode { padding:30px 0 60px; }
#to_top { bottom:60px;}}

@media screen and (max-width: 600px) { }




