@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,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",  "Roboto", sans-serif;
}
.path p, .path p a{ display: none;}
.edit{ padding: 0px 0;}
.info_fix { display: none;}




/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


.pageIndex .swiper-wrapper .swiper-slide:nth-of-type(1)::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/likedesign/bantext1-1.png);
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 100000000000000;

}

.pageIndex .swiper-wrapper .swiper-slide:nth-of-type(2):before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/likedesign/bantext2-1.png);
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 100000000000000;

}

.pageIndex .swiper-wrapper .swiper-slide.swiper-slide-active::before{
       animation:font-in-text 4.2s cubic-bezier(.25, .8, .25, 1) forwards;
}

@keyframes font-in-text {
    0% {
    transform: translateY(80px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}



.pageIndex .swiper-wrapper .swiper-slide img {
    transform: none !important;
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
.pageIndex .main_part { border-top: none;}
.header_area { width: 100%;  padding: 0;   background: #b0a7a2db ;backdrop-filter:blur(5px)}
.pageIndex .header_area {  position: fixed; }
.main_header_area {  transition: all 0.5s ease;  }
.header_area{background:#b0a7a2db;   }
.header_area.sticky {  width: 100%;  z-index: 9999;  background:#b0a7a2cb;}
.tp_links{ display:none;}


.main_header_area .container { max-width: 1600px;  margin: auto;}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 商品下拉超過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個但次分類直接顯示-結



/*●●●●●●●●●●●●●●●●●●●●●●●●   HEADER區塊   ●●●●●●●●●●●●●●●●●●●●●●●●*/

.stellarnav li { font-size: 17px;}
.stellarnav li a { color: #000; padding: 10px 10px;}
.stellarnav > ul > li { padding: 0 5px;}

.stellarnav > ul > li > a {  margin: 28px 5px 24px;  padding: 0px 8px 0;  position: relative; letter-spacing: 1.5px;  color: #191616; transition: all 0.1s;  font-size: 16px;  font-weight: 700;}
.stellarnav > ul > li > a b { font-weight: 400;}
.stellarnav > ul > li > a b:nth-child(2) { font-family:  "Roboto", sans-serif;;}
.stellarnav > ul > li > a:hover {  color: #fff;}
.stellarnav li li a{ transition: all 0.2s ease-in-out;}/*下拉分類滑過前*/
.stellarnav li li a:hover { background: #9B8F87; color: #ffffff;}/*下拉分類滑過後*/

/*選單下拉三角槓槓*/
.stellarnav li.has-sub > a:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 40%;
    right: 2px;
    transform: translateY(-50%);
    height: 5px;
    width: 5px;
    display: block;
    border-style: solid;
    border-width: 0 1px 1px 0;
    border-color: transparent #191616 #191616 transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.stellarnav li.has-sub > a:hover:after {   border-color: #fff;}

/* 選單hover特效 */
/* 
.stellarnav > ul > li > a:before {
	content: "";
    width: 100%;
    height: 3px;
    border-radius: 20px;
    background: #fff;
    position: absolute;
    bottom: 0;
	left: 100%;
    opacity: 0;
    transition: all .5s;
	}
.stellarnav > ul > li > a:hover:before {
	left: 0;
    opacity: 1;
} */

.nav-brand img {  max-width: fit-content;  width: 130px;}
.nav-brand {  max-width: fit-content;}


/*下拉分類橫向箭頭*/
.stellarnav li li.has-sub > a:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 45%;
    right: 10px;
    transform: translateY(-50%);
    height: 5px;
    width: 5px;
    display: block;
    border-style: solid;
    -webkit-transform: rotate(253deg);
    transform: rotate(-45deg);
}


/*-------------------------------------------------*/

/*第二層*/
.stellarnav li li { border: none !important;}
.stellarnav li li > a, .stellarnav li li.has-sub > a {
    color: #1E1E1E;
    padding: 10px 15px;
    transition: all 0.3s;
    letter-spacing: 1.5px;
    border-left: 1px solid transparent;
    font-size: 14px;
    background: #ffffff;
    box-shadow: 4px 5px 23px rgb(0 0 0 / 10%);}
	
/*下拉背景*/
.stellarnav li li:hover > a, .stellarnav li li.has-sub:hover > a { padding-left: 20px; }
.stellarnav > ul >li >ul { left: 6px; }
.stellarnav ul ul { width:200px; border: 0 solid transparent;}/*下拉分類寬度/外框*/
.stellarnav li li { border: none;}
.stellarnav li li + li { border-top: 1px solid #eeeeee;}
.stellarnav li.drop-left ul ul { right: 100%;}
.stellarnav ul ul ul { left: 100%;}


/*-------------------*/
/*下拉次分類(箭頭)*/
.stellarnav li.drop-left li.has-sub > a:after {
    float: left;
    margin-right: 10px;
    border-left: 0;
    border-top: 1px solid transparent ;
    border-bottom: 0px solid transparent;
    border-right: 1px solid transparent ;
}
.stellarnav li li.has-sub > a:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 45%;
    right: 10px;
    transform: translateY(-50%);
    height: 5px;
    width: 5px;
    display: block;
    border-style: solid;
    border-width: 0 1px 1px 0;
    border-color: transparent transparent transparent transparent;
    -webkit-transform: rotate(253deg);
    transform: rotate(45deg);
}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

.me_tp_features {  display: none;}

/* 漢堡條 */
.stellarnav .menu-toggle span.bars span {background: #333333;}
.stellarnav .menu-toggle:after { color: #333333;}

/* close menu 拉出來 */
.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu{
    background: #6A5C55;
    color: #fff;
  }
  .stellarnav .icon-close:before{
    border-bottom: solid 3px #fff;
  }
  .stellarnav .icon-close:after{
    border-bottom: solid 3px #fff;
  }
  .stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul{
    background: #B0A7A2;
  }
  .stellarnav a.dd-toggle .icon-plus:before{
    border-bottom: solid 3px #CFB289;
  }
  .stellarnav a.dd-toggle .icon-plus:after{
    border-bottom: solid 3px #CFB289;
  }
  .stellarnav.mobile > ul > li > a.dd-toggle{
    padding: 11px;
    top: -13px;
  }
  .stellarnav.mobile > ul > li > a.dd-toggle:before{
      display: none;
  }
  .stellarnav.mobile li.open{
    background: transparent;
  }
  .stellarnav.mobile ul ul{
    width: 100%;
    position: relative;
    left: 0;
  }
  .stellarnav.mobile > ul > li{
    border-bottom: 1px rgb(155 143 135 / 60%) solid;
  }

  .stellarnav.mobile li a{ border-bottom: 0px;}

  .stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul{max-width: 100%;}



@media screen and (max-width: 1750px){
.nav-header {  padding-left: 20px;}
.nav-brand img { max-width: 160%;}
}

@media screen and (max-width: 1250px){
.stellarnav > ul > li {   padding: 0 0px;}
}
	
@media screen and (max-width: 1024px){	
.navigation {  justify-content: center; padding: 15px 0 0px 0; }
.nav-header {  padding-left: 0px;}
  .header_area {  position: relative !important;  }
.stellarnav > ul > li > a {  margin: 10px 1px; }
.nav-brand img{ max-width: unset;}
}
	
	
@media screen and (max-width: 768px){	
    .stellarnav.mobile { top: 18px;}
    .stellarnav > ul > li > a:before{ display: none;}
    .stellarnav li li > a, .stellarnav li li.has-sub > a{ padding: 10px 10px;}
    .nav-brand img{ width: 110px;}
    .navigation{ padding: 4px 0 0px 0; }
    .header_area{ position: sticky!important;}
    .stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul{ height: 786px;}
    .header_area{ backdrop-filter: none;}
    .header_area,.header_area.sticky{ background: #b0a7a2;}
}

@media screen and (max-width: 570px){	
    .stellarnav.mobile { top: 28px;}
}
@media screen and (max-width: 400px){	
    .nav-brand img{ width: 90px;}
    .stellarnav.mobile { top: 21px;}
}
    

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*footer*/
.footer { background: #595757;  padding: 50px 0px 30px 0px;}
/*.footer_logo img{width: 100%;filter: contrast(2.5);}*/
.footer { padding-top: 55px; background: #B1A8A3;}



.footer .center {  max-width: 86%;}
.footer_info {
    display: flex;
    padding: 0;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: flex-start;
}

.footer_info ul {  display: flex;  flex-direction: column-reverse;}

.footer_info li:nth-child(1) { padding-top: 0;display: flex;  flex-direction: column;}
.footer_info li:nth-child(2) { padding-top: 0;}
.footer_info li p,
.footer_info li p a {
    color: #000;
    font-size: 13px;
    line-height: 230%;
    font-weight: 400;
}
.footer_menu a:first-child {  display: none;}
.footer_menu:nth-child(2) {  padding: 0 10px; padding-left: 0;}
.footer_menu a {  margin: 20px 10px 20px 0px;  text-align: left;  padding: 5px 0;  transition: all 0.3s;  color: #fff;  border: none;  background: transparent;  font-size: 14px;  padding-right: 11px;  text-transform: uppercase;font-weight: 400;font-size: 13px;background-color: #9C9088; padding: 10px;}
.footer_menu a:hover {   background: #F1ECE7;  opacity: .8;  color: #9C9088;}
.copy {   color: #6a6a6a;  border: none;  text-align: right;  padding: 10px 0 0px;   max-width: 87%;  margin: auto;  font-size: 10px;justify-content: right;position: absolute;
    right: 6%; bottom: 15%;}
.copy a {  color: #6a6a6a;  transition: all 0.3s;z-index: 99999999999999999;  position: relative;}
.copy a:hover {  color: #ececec;}
.box_link{ top: 125px; right: 0px; flex-direction: row; justify-content: flex-end; }
.box_link a{ color: #6A5C55; border: 0px;}
.box_link a:hover {  background: transparent;  color: #35383C;}
.box_link a.me_tp_line,.box_link a.me_tp_call,.box_link a.me_tp_mail { display: none;}

.footer_info li p.tel:before { content: '手機：';}
.footer_info li p.mail:before { content: '信箱：';}
.footer_info li p.add:before { content: '地址：';}
.footer_info li p.add2:before  { content: '設計師Line：';}
.footer_info li p.line:before { content: '官方Line：';}

p.phone {  order: 1;}
p.line {  order: 2;}
p.mail{ order:4;}
p.add{ order:5;}
p.add2{ order:3;}
/*Logo/＝＝＝＝＝*/

.footer_logo {  width: 190px;  margin: 0;}
.footer_logo img {  max-width: 190px;  width: 100%; }

@media screen and (max-width: 768px) {
    .footer_info{ flex-direction: column;}
    .footer_logo img{ max-width: 170px;}
    .footer.with_shopping_mode{ padding: 30px 0 104px;}
    .copy{ bottom: 13%;}
    .box_link{ justify-content: flex-start; position: unset;}
    .footer_menu a{ margin: 0px 10px 16px 0px; }
    .footer_info{ grid-gap: 4px;}
}





/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 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) {
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#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;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {}
.banner h5 {}
.banner.banA {}
.banner.banB {}
.banner.banC {}
.banner.banD {}
.banner.banE {}
.banner.banblog {}
.banner.banDesign { background-color:#333;}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*一排呈現
.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; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */





@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu {}
/* .footer.with_shopping_mode { padding:30px 0 70px; } */
#to_top { bottom:60px;}
}

@media screen and (max-width: 600px) { 
}




