@charset "utf-8";

/*
關於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;}
*/


/*上方選單右邊設定 臉書/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 {}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#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;}
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*共用*/
.path p, .path p a{display: none;}

/*滾輪*/
::-webkit-scrollbar { width: 5px;}/*滾輪寬度*/
::-webkit-scrollbar-button { background: transparent; border-radius: 7px; height: 0;}/*滾輪與視窗上下的間距*/
::-webkit-scrollbar-track-piece { background: #e0e0e0;}/*滾輪軌道背景*/
::-webkit-scrollbar-thumb { border-radius: 3px; background-color: #af9773; border: #af9773;}/*滾輪樣式*/
::-webkit-scrollbar-track { box-shadow: transparent;}/*滾輪軌道樣式*/

/*top*/
#to_top {
  bottom: 70px;
  right: auto;
  left: 16px;
  width: 44px;
  height: 44px;
  color: #af9773;
  background: #af9773;
  border: 1px #ffffff7d solid;
  box-shadow: 0px 0px 10px #ffffff8c;
}
#to_top i.top {
  width: 14px;
  height: 14px;
  top: 14px;
  transform: translateY(-50%);
}
#to_top i.top:before, #to_top i.top:after {
  height: 10px;
  width: 2px;
  top: 0;
  left: 46%;
}
#to_top i:before, #to_top i:after {background: #fff;}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*選單購物欄*/
.tp_links {  display: none;}
.me_tp_features {  padding-top: 24px;  margin-bottom: 2px;      z-index: 99; }
.shop_search_btn {   background: #af9773;     border-radius: 0px 20px 20px 0px;}
.me_tp_features a {    margin: 0 0px 0px 8px;  padding: 0px 23px 0px 0px;  color: #ffffff;}
.pageIndex .me_tp_features a {  color: #57411f;}
.sticky .me_tp_features a { color: #af9773;}

.stellarnav ul ul li a { font-size: 14px; }
.main_header_area {    background: none;}
/*header*/
.header_area.sticky { background: none;}
.header_area {
    position: absolute;
    background: none;
    width: 100%;
    z-index: 10000;
    padding:0px;
    transition: ease-out 0.3s;
    box-shadow: none;
}
.pageIndex .header_area {  }
.header_area.sticky {
    transition: ease-out 0.3s;
    position: fixed;
    top: 0px;
}
.main_header_area .container { max-width:95%; }


/*選單漸變效果＝＝*/
.header_area .main_header_area:after {
  content: "";
  background: #ffffffb8;
  width: 100%;
  height: 0;
  left: 0;
  top: 0;
  position: absolute;
  border-bottom: 1px solid #fff;
  transition: all 0.5s;
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px #00000022;
}
.header_area.sticky .main_header_area:after{height: 100%;}


/*LOGO*/
.nav-brand {    width: 200px;    margin: 10px 0px 10px 0px;}
.nav-brand img {    filter: brightness(5); transition: all 0.5s;}
.sticky .nav-brand img {    filter: brightness(1); transition: all 0.5s;}

/*選單*/
.stellarnav ul {  position: relative;  top:-4px;}
.stellarnav > ul > li > a {
    transition: 0.3s ease-out;
    padding: 0px 15px 0 15px;
    letter-spacing: 2px;
    color: #ffffff;
}
.pageIndex .stellarnav > ul > li > a {  color: #ffffff;}
.sticky .stellarnav > ul > li > a {  color: #000000;}

.stellarnav > ul > li > a:hover { color: #b9b9b9; }
.stellarnav li.has-sub > a:after {	display: none;}
.stellarnav ul ul {  width: 215px;}

.stellarnav > ul > li:hover > a:not(.tp_links a):before {
  opacity: 1;
  top: 33%;
  transition: all .5s;
}

/*下拉選單*/
.stellarnav ul ul {
    width: 100%;
    position: absolute;
    box-shadow: 0px 0px 10px #ccc;
    border-radius: 10px;
}

.stellarnav li li {
    border: unset;
    padding: 4px;
}

.stellarnav li li a:hover {
    color: #ffffff;
    transition: 0.3s ease-out;
    transform: translateX(5px);
}
.stellarnav li.drop-left ul ul {
  right: auto;
  left: 132px;
}

@media screen and (max-width: 1350px) {
.main_header_area .container {   max-width: 1100px;}
}

@media screen and (max-width: 1250px) {
.nav-brand { margin: 8px 0px 0px 0px; }
.stellarnav > ul > li > a {     transition: 0.3s ease-out;     padding: 0px 10px; }
}


@media screen and (max-width: 1024px) {
.header_area .main_header_area {
      background: #ebe5dc;
      backdrop-filter:unset;
      width: 100%;
      max-width: 100%;
      border-radius: 0;
      transition: ease-out 0.3s;
}
.stellarnav > ul > li > a {  height: 40px; }
.pageIndex .stellarnav > ul > li > a { color: #000;}
.pageIndex.headerSticky .stellarnav > ul > li > a { }
.stellarnav > ul > li > a:before{ display: none;}
.stellarnav > ul > li.has-sub > a { padding-right: 15px;  }
.header_area.sticky .main_header_area {  backdrop-filter:unset; background: #ffffffec;}
.header_area { position: relative; }
.main_header_area .container { max-width: 100%; }
.nav-header {     position: static;     text-align: center;}

.nav-brand img {    filter: brightness(1); }

.navigation { padding: 0px 0 0px 0px; }

.me_tp_features {  padding-top: 0px;}
.me_tp_features a {      margin: 0 0px 0px 0px;      padding: 0px 0px 0px 0px;     color: #ffffff;}
.pageIndex .me_tp_features a {  color: #ffffff;}
.pageIndex .sticky .me_tp_features a {  color: #af9773;}

}
@media screen and (max-width: 768px) {
  .navigation {    display: flex;}
  .nav-brand {    margin: 4px 0px 0px 0px;}
    .header_area .nav-brand { padding: 5px;  }
    .stellarnav .menu-toggle span.bars span {  background: #5c5c5c;}
    .stellarnav .menu-toggle, .stellarnav .call-btn-mobile, .stellarnav .location-btn-mobile, .stellarnav .close-menu { padding: 27px 30px;}
    .stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {    background: #c8ecfd;  }
    .stellarnav.mobile > ul > li { border-bottom: 1px #d9d9d9 solid;  }
    .pageIndex .stellarnav > ul > li > a {      color: #af9773;  }
    .stellarnav > ul > li > a {      color: #af9773;  }
    .stellarnav > ul > li:after {display: none;}
    .me_tp_features { margin: 0% 0;}
    .main_header_area:after {  top: 90px;}
  .stellarnav ul ul {    box-shadow: none;    border-radius: unset;  }

  .stellarnav.mobile > ul > li:nth-last-child(1) > a.dd-toggle {   display: none;}

    /*側邊選單*/
    .stellarnav .menu-toggle span.bars span {    background: #24539a; }
    .stellarnav .menu-toggle:after {        color: #205091;    }

    .stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul {  max-width: 100%;   background: #fffffff5;  backdrop-filter: saturate(100%) blur(10px);  transition: all 1s;   left: 0;}
    .stellarnav.mobile.left .close-menu {      background: none;          color:  #af9773; }
    .stellarnav .icon-close:after {    border-bottom: solid 3px  #af9773;}
    .stellarnav .icon-close::before {    border-bottom: solid 3px  #af9773;}
    .stellarnav a.dd-toggle .icon-plus:after {    border-bottom: solid 3px  #af9773;}
    .stellarnav a.dd-toggle .icon-plus:before {    border-bottom: solid 3px  #af9773;}
    .stellarnav > ul > li:not(.tp_links) > a:before {display: none;}
    .stellarnav .menu-toggle, .stellarnav .call-btn-mobile, .stellarnav .location-btn-mobile, .stellarnav .close-menu { padding: 14px 15px;     position: relative;   top: 10px;}
    .stellarnav.mobile ul {    background: none;  }
    .stellarnav.mobile li.open li.open {     background: #ffffff;}
    .stellarnav.mobile li.open {   background: none;  }
    .stellarnav.mobile > ul > li {         border-bottom: 1px  #af9773 solid; text-align: center;     margin: 0px 30px; }
    .stellarnav > ul > li:after {display: none;}
    .stellarnav li li {   border-bottom: 1px #eee solid; border: none;}

    .me_tp_features { margin: 0% 0;}

 /*------------------------------*/
}

@media screen and (max-width: 600px) {
    .main_header_area:after {  top: 94px;}
} 
@media screen and (max-width: 425px) {
    .stellarnav .menu-toggle, .stellarnav .call-btn-mobile, .stellarnav .location-btn-mobile, .stellarnav .close-menu { padding: 15px 10px;}
    .nav-brand img {   padding-top: 0px;}
}

/*下拉選單*/
.stellarnav li a {   padding: 7px 10px;}
.stellarnav li li.has-sub > a {  padding: 7px 10px;}
.stellarnav li li:hover {        background:#af9773;     border-radius: 10px;}
.stellarnav li a:hover {    color: #ffffff;}
.stellarnav li li.has-sub > a:after {  margin-left: 70px;  border-left: 6px solid #fdfdfd;}

/* 商品下拉超過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: 50px 0 0;background: #ebe5dc;font-size: 16px;}
.footer .center {max-width: 1500px;width: 90%;}
.footer_info {grid-template-columns: repeat(2, 1fr);align-items: end;grid-gap: 20px;padding-right: 0;}
.footer_info ul {display: flex;grid-column: 1 / 3;width: 100%;order: 2;justify-content: space-between;align-items: flex-start;
    padding-top: 30px;border-top: 1px solid #b39675;}
.footer_info li:nth-child(1) {display: flex;align-items: flex-start;padding: 0;
    justify-content: flex-start;gap: 15px 0;flex-direction: column;     font-size: 14px;}
.footer_info li p {line-height: 1;letter-spacing: 0.08em;}
.footer_info li p a {}

/*FOOTER_MENU*/
.footer_info li:nth-child(2) {padding: 0;}
.footer_menu {display: flex;flex-wrap: wrap;justify-content: flex-end;width: 100%;}
.footer_menu a {text-align: right;padding: 0 0 0px 20px;font-size: 14px;letter-spacing: 0.08em;
    background: unset;border: 0;margin: 0;transition: 0.3s ease;}
.footer_menu a:first-of-type {display: none;}
.footer_menu a:hover {background: unset;color: #b5b5b5;transition: 0.3s ease;}

/*FOOTER_ICON*/
.box_link {position: relative;right: 0;max-width: 225px;justify-content: flex-end;max-width: unset;
    align-items: flex-end;flex-direction: unset;flex-wrap: unset;order: 1;max-height: max-content;}
.box_link a {display: flex;width: 40px;height: 40px;background: none;border: 1px #9f8366 solid;border-radius: 20px;transition: 0.3s ease;
    padding: 0;font-size: 20px;margin: 0px 5px;margin: 0px 5px;color: #9f8366;justify-content: center;align-items: center;}
.box_link a:hover {color: #9f8366;font-size: 18px;transition: 0.3s ease;}
a.me_tp_ig {font-size: 25px;}
.box_link a.me_tp_ig:hover {color: #9f8366;font-size: 20px;transition: 0.3s ease;}
a.me_tp_call, a.me_tp_mail {}

/*LOGO*/
.footer_logo {max-width: 250px;}
/*COPY*/
.copy {max-width: 1500px;width: 90%;margin: auto;text-align: right;
    padding:10px 0 30px 0;font-size: 11px;color: #8f8f8f;border-top: 0;margin-top: 0;}
.copy a {color: #8f8f8f;}

@media screen and (max-width: 1024px) {
.footer {padding: 30px 0 0;font-size: 15px;}
.footer_logo {max-width: 200px;}
.box_link a {width: 35px;height: 35px;font-size: 18px;}
.box_link a:hover {font-size: 16px;}
a.me_tp_ig {font-size: 23px;}
.box_link a.me_tp_ig:hover {font-size: 18px;}
.footer_menu a {font-size: 14px;}
}
@media screen and (max-width: 900px) {
.footer_info ul {flex-direction: column;gap: 30px 0;padding-bottom: 50px;}
.footer_info li+li {margin-top: 0;}
.footer_menu {justify-content: flex-start;}
.footer_menu a {padding: 10px 15px 0 0;}
.copy {        text-align: center;  font-size: 12px;}
}
@media screen and (max-width: 768px) {
.footer {font-size: 14px;}
.footer_info {padding: 0;grid-gap: 20px; display: flex; flex-direction: column;   align-items: flex-start;}
.footer_info ul {gap: 15px 0;padding-top: 20px;}
.box_link {justify-content: flex-start;}
.footer_info li:nth-child(1) {gap: 10px 0;}
.footer_menu a {font-size: 12px;}
}
@media screen and (max-width: 450px) {}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {
  /*background-image: url(https://pic03.eapple.com.tw/pusscat/banner.jpg);*/
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.banner h5 {
  color: #fff;
  letter-spacing: 15px;
  font-size: 33px;
  position: absolute;
  top: 63%;
  right: 76%;
  border-right: 7px #fff solid;
}
.banner.banA {}
.banner.banB {}
.banner.banC {}
.banner.banD {}
.banner.banE {}
.banner.banblog {}

@media screen and (max-width: 1024px) {
  .banner {    height: 250px;}
  .banner h5 {    font-size: 26px;      top: 43%; }
}
@media screen and (max-width: 768px) {
  .banner h5 {     top: 33%;     right: 50%; }
}
@media screen and (max-width: 600px) {
  .banner {    height: 170px;}
  .banner h5 {    font-size: 24px;  top: 26% }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/
/*側邊選單*/
.blog_le .accordion {   border-radius: 0px; border:none; }
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {    background: #ffffff !important;}
.blog_le .accordion > li:hover .link a, .blog_le .accordion > li.on_this_category .link a {  color: #464646 !important; }

.accordion li .link a {   border-bottom: 1px #ccc solid;}
h5.blog_le_t {   text-align: center;}
.submenu {  background: #ffffff;}
.submenu li.on_this_category a, .submenu a:hover {  background: #73665b;}
/**/
.blog_subbox { grid-template-columns: 1fr 1fr 1fr;}
.subbox_item {   border-bottom: 1px #ccc solid;}
.subbox_item a {  display: block; overflow: hidden;}

.subbox_item a:before {
    transform: translate(-50%, -50%);
    left: 50%;
    right: 0;
    bottom: -17%;
    letter-spacing: 2px;
    opacity: 0;
    display: block;
    color: #fff;
    background: #817a69;
    border-radius: 15px 15px 0 0;
    width: 100%;
    padding: 8px 0;
    text-align: center;
}
.subbox_item a:hover:before {   bottom: -5%;}
.subbox_item a:after {   display: none;}

.blog_list_le { }
.blog_list_le img {  border-radius: 20px;  box-shadow: 0px 3px 10px 0px #ced7db82;}

/*文章內頁*/
.blog_back a.article_btn_prev {   background: #c1c1c1;}
.blog_back a.article_btn_back {  background: #af9773;}
.blog_back a.article_btn_next {   background: #c1c1c1;}
.news_related {  padding: 25px 15px 100px 15px;   background: #f5f5f5;}

@media screen and (max-width: 600px) { 
    .blog_subbox {     grid-template-columns: 1fr 1fr;    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*首頁購物車*/
.i_prod_b {  padding: 13px 10px 100px 10px;}

/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 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 a {   background: #ffffff00;}
.product-layer-two li li:hover > a {  background:#ffffff00; color: #73665b;}
.product-layer-two li li:hover > a:before {   background: #73665b;}
.product-layer-two li.active a {   border: none;}
.product-layer-two li li.active a {  background: none;}

.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 { 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_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 .price b {  color: #817a69;}
.products-list .more {  border: 1px solid #817a69;    color: #817a69;   border-radius: 15px;}
.products-list .item a:hover .more {  background: #817a69;}
.products-list .pic img {   border-radius: 20px;}

/*商品內頁*/
.pd_tabTitle li.activeTab::after { display: none;}
.prod_related {   padding: 25px 15px 25px 15px; background: #f5f5f5;}

.lastPage {  background: #817a69;}
.sidebarBtn {   border: none;}
.inquiry_a1 {   background: #b9b9b6;}
.inquiry_a2 {   background: #888684;}
.inquiry_a3 {  background: #b7ab9c;}

@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 980px) {
}
@media screen and (max-width: 768px) {
    .i_prod_b {   padding-bottom: 100px; }
.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) {
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*聯絡我們*/
.contact_content .information_left { }
.contact_content .information_right { }
.contact_content form {  display: flex;     justify-content: center;}
.contact_form li input.noborder {  border: none;  border-bottom: 1px #ccc solid;}
.contact_form li textarea.noborder {  border: none;  border-bottom: 1px #ccc solid;}
.contact_form li.last cite { background: #837a6c;}
.contact_form li.last blockquote, .contact_form li.last cite { border: 1px #837a6c solid;     border-radius: 15px;}
.contact_form { grid-gap: 23px;}
.blank_letter { color: #af9773;}
@media screen and (max-width: 600px) {
  .contact_content .information_right { }
  .contact_form li .form__label { background: rgb(218 192 140 / 15%);}
}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu {display: none; }
.footer.with_shopping_mode { padding:30px 0 20px; }
#to_top { bottom:60px;}
}

@media screen and (max-width: 600px) { 
}




