@charset "utf-8";

/*漢堡*/
/* === 只在螢幕寬度769以上螢幕呈現 === */
/*@media (min-width:769px) {*/
  .me_tp_features { display: none;}
  #to_top {left: 150px;}

  /* header */
  .pageIndex .header_area { position: fixed; background: transparent; padding: 20px 50px;transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);}
  .header_area { position: fixed; background: linear-gradient(to bottom, rgb(0 0 0) -2%, 5%, rgb(0 0 0 / 0%) 100%);
                padding: 20px 50px;  transition: 0s; /*height: 350px;*/ }
  /*.header_area .main_header_area,*/
  
  /*下滑*/
  .header_area.sticky .main_header_area { width: 100%; height: 100%; transition: all 0.5s; padding: 0px;}
  .header_area.sticky {  padding: 10px 30px; background: rgba(255, 255, 255, .7); height: auto; transition: 0s;}
  .header_area.sticky .stellarnav .menu-toggle span.bars span { background: #8f8f8f;}

  .main_header_area .container,
  .navigation {
    height: 100%;
    width: 100%;
    max-width: 100%;
  }

  .navigation {
    padding: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
 }

  .navigation>* {
    order: 2;
  }

  /* ----- topLogo ----- */
  .nav-header {
    width: auto;
    display: block;
    position: relative;
    z-index: 5;
    max-width: 70px;
    filter: contrast(0) brightness(100); 
  }
  /*下滑*/
   .header_area.sticky .nav-header {   max-width: 70px; filter: unset;}
   .header_area.sticky { background: rgba(255, 255, 255, .7);}
  /* ----- menu列 ----- */
  .stellarnav.desktop {
    transition: 1s;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    width: auto;
  }

  /* --- 漢堡 --- */
    .stellarnav .menu-toggle {
            display: block;
            width: 55px;
            max-width: 100%;
            padding: 15px;
            border-radius: 99em;
    }

  .stellarnav .menu-toggle:after {
    display: none;
  }

  .stellarnav .menu-toggle span.bars {
    top: 0;
    display: flex;
    height: 20px;
    padding: 0;
    transition: 0.5s;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
  }

  .stellarnav .menu-toggle span.bars span {
    width: 100%;
    height: 2px;
    background: #fff;
    transition: 0.5s;
    margin: 0;
    padding: 0;
  }

  .stellarnav .menu-toggle:hover span.bars span:nth-child(2) {
    width: 60%;
  }

  /* 選單開啟 - 漢堡改變 */

  .stellarnav.active .menu-toggle span.bars {
    height: 35px;
  }
  .stellarnav.active .menu-toggle { background: transparent;}

  .stellarnav.active .menu-toggle span.bars span {
    transform: translate(-50%, -50%) rotate(90deg);
    position: absolute;
    top: 50%;
    left: 50%;
    background: #777;
  }

  .stellarnav.active .menu-toggle span.bars span:first-child {
    left: 20%;
  }

  .stellarnav.active .menu-toggle span.bars span:nth-child(2) {
    top: 60%;
  }

  .stellarnav.active .menu-toggle span.bars span:last-child {
    left: 80%;
  }

  .stellarnav.active .menu-toggle:hover span.bars span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
    top: 50%;
    left: 50%;
  }

  .stellarnav.active .menu-toggle:hover span.bars span:nth-child(2) {
    width: 100%;
    opacity: 0;
  }

  .stellarnav.active .menu-toggle:hover span.bars span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
    top: 50%;
    left: 50%;
  }


  /* menu按鈕列表 */
  .stellarnav.desktop {
    z-index: 1;
  }

  .stellarnav.desktop>ul {
    position: fixed;
    width: 0vw;
    max-width: 400px;
    height: 100%;
    top: 0;
    bottom: 0;
    right:0;
    display: flex !important;
    margin: 0;
    padding: 0px;
    text-align: center;
    height: 100%;
    transition: .5s;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: -1;
    opacity: 0;
  }

  /* 墊在按鈕下的背景 */
  .stellarnav.desktop>ul::before {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .8);
    backdrop-filter: blur(10px);
    position: absolute;
    left: 0;
    top: 0;
    transition: 1s;
    transform: translate(50%, 0%);
  }

  .stellarnav.desktop.active>ul { transform: unset; opacity: 1; width: 100vw; max-width: 400px; padding: 20px 50px;}

  .stellarnav.desktop.active>ul::before {
    transition: 1s;
    transform: translate(0%, 0%);
  }

  .stellarnav>ul>li {
    display: block;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

 .stellarnav>ul>li a {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        align-content: flex-start;
        flex-direction: column;
        text-align: left;
        padding: 5px 10px;
        margin: 0;
        position: relative;
        font-size: 15px;
        line-height: 140%;
        line-height: 60px;
        height: 60px;
  }
  .stellarnav>ul>li>a::before { 
        content: '';
        width: 0;
        height: 1px;
        border-bottom: 1px solid #fff;
        transition: 1s;
        position: absolute;
        left: 0;
        bottom: 0;
  }
  .stellarnav.desktop.active>ul>li>a::before { 
        width: 100%; transition-delay: .3s;
  }

  .stellarnav>ul>li>a:nth-of-type(1)::after, .stellarnav>ul>li.has-sub>a:nth-of-type(1)::after {
          content: "";
          width: 30px;
          height: 2px;
          border-bottom: 2px solid #a19c98;
          transition: 1.5s;
          position: absolute;
          left: 0;
          bottom: 0;
          display: block;
          transition: all 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }

  .stellarnav li.has-sub > a:after {
        content: '';
        margin-left: 0px;
        border-left: unset;
        border-right: unset;
        border-top: unset;
        display: inline-block;
        position: absolute;
        top: 97%;
        right: 0;
        transform: translateY(0px);
  }
  .stellarnav>ul>li>a:hover:nth-of-type(1)::after, .stellarnav>ul>li.has-sub>a:hover:nth-of-type(1)::after {
        width: 100%;}
  /* 主按鈕中英翻轉 - 不用可以刪掉 */
  .stellarnav>ul>li>a b {
    height: 100%;
    transform: translateY(25px);
  }

  .stellarnav>ul>li>a b+b {
    margin-top: 10px;
  }

  .stellarnav>ul>li>a:hover b {
    transform: translateY(-25px);
  }

  /* 次分類 */
  .stellarnav ul ul { left: 0%; position: relative; width: 100%; background: transparent; transition: all 0.3s ease-in-out; }
  .stellarnav.desktop li.has-sub a { position: relative;}

  .stellarnav.desktop li.has-sub a.dd-toggle { display: inline-block;  position: absolute;  text-align: center;  z-index: 999; padding-right: 0;}
  .stellarnav .dd-toggle {  bottom: 15px;}
  .stellarnav.desktop li.has-sub a.dd-toggle:before {  display: none;}
  .stellarnav.desktop li .has-sub a.dd-toggle { display: none;}
  .stellarnav ul ul ul { overflow: hidden; height: 0;}

  /*次分類下拉按鈕*/
  .stellarnav.desktop li.has-sub a.dd-toggle{display: none;}
  .stellarnav.desktop.active li.has-sub a.dd-toggle {display: inline-block;}

  /*第2層*/
  .stellarnav li li {  border: unset; border-bottom-width: 0; padding-left: 20px;}
  ul.news_classes li a , .stellarnav li li a {  height: 40px;}

  /* --- 聯絡連結 --- */
  .tp_links {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    width: 100%;
  }

  /* --- 搜尋器 --- */
  .box_search {
    width: 100%;
    order: 5;
    display: none;
  }

  .shop_search_btn {
    width: 100%;
    border-radius: 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
  }

  .box_search input[type=text] {
    width: 100%;
    box-sizing: border-box;
    padding: 15px 10px;
    padding-left: 32px;
    border-radius: 0;
  }

  /* --- 購物車和匯款連結 --- */
  .me_tp_features>a {
    text-align: center;
    display: flex;
    flex-direction: column;
    /* 不要直書可以拿掉 */
    width: 1.2em;
    /* 不要直書可以拿掉 */
    line-height: 1.2;
    letter-spacing: 0;
    justify-content: center;
    align-items: center;
  }

  .me_tp_features>a span {
    margin-top: 5px;
  }


  @media (max-width:1024px) {
    #page {
      /* padding-left: 100px; */
      padding: 0;
    }

    .header_area.sticky, .header_area {
      width: 100%;
      height: 80px;
    }

    .header_area .main_header_area, .header_area.sticky .main_header_area {
      /* width: 100px; */
      width: 100%;
    }
    /*
    .navigation {
      flex-wrap: wrap;
      flex-direction: row-reverse;
      justify-content: space-between;
    }
    */
    
    .navigation>*{
      flex:1;
    }

    .nav-brand {
      background: none;
      width: 140px;
      height: auto;
    }

    .nav-brand img {
      display: block;
      max-width: 100%;
      margin: 0;
      padding: 0;
    }

    /*
    .stellarnav.desktop{
      justify-content: flex-start;
    }
    */
    .stellarnav.desktop { 
      justify-content: flex-end;
    }

    .stellarnav.desktop>ul{
      width: 220px;
      padding-left: 20px;
    }

    .me_tp_features {
      order: 1;
      max-width: 200px;
      justify-content: flex-end;
    }

    .me_tp_features>a {
      flex-direction: row;
      width: auto;
    }

    .tp_links {
      justify-content: flex-end;
    }
  }
  @media screen and (max-width: 768px) { 
    .header_area {background: #ffffff;}
    .pageIndex .header_area { position: sticky;background: #fff;  padding: 10px; }
    .header_area {  position: sticky;padding: 10px;}
    
    /*LOGO*/
    .nav-header { filter: unset; }
    .me_tp_features {display: none;}
    .nav-brand {  max-width: 55px;}
    .nav-header { max-width: fit-content;}

    /*選單*/
    .stellarnav.mobile { right: 0; left: auto; }
    .stellarnav .menu-toggle span.bars span { background: #8f8f8f;}
    .header_area.sticky { padding: 10px;}
    .stellarnav.mobile.left > ul { width: 100vw;}

    .stellarnav.mobile.left > ul {
        transform: unset; opacity: 1; width: 100vw; max-width: 400px;  padding: 20px 50px;  right: 0;  left: auto;flex-direction: column;
        background: rgba(255, 255, 255, .8);backdrop-filter: blur(10px); justify-content: flex-start; }
      .stellarnav.mobile ul {background: transparent;}
      .stellarnav.mobile > ul > li { border-bottom: unset;}
      .stellarnav.mobile > ul > li > a { line-height: 230%; color: #343a40; overflow: hidden;height: 60px; max-height: 60px;}
      .stellarnav.mobile li.open { background: transparent; padding: 3px;}
      .stellarnav.mobile > ul > li > a b {line-height: 230%;}
      .stellarnav.mobile li a { border-bottom: 1px solid rgb(255 255 255);}
      .stellarnav .dd-toggle { bottom: auto;}
      .stellarnav li li a { border-bottom: unset !important;}

      .stellarnav .icon-close:after , .stellarnav .icon-close:before { border-bottom: solid 2px #777;width: 30px;}
      .stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu { background: transparent;}
 }

/*}*/

/*漢堡截止*/

/*電腦LOGO*/
.nav-brand { display: flex; align-items: center;}
.footer_logo { max-width: 70px;}

/* 主分類超過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個--結束 */

/*大圖*/
#content_main {  margin: 0;}
.bannerindex { position: static; height: auto;}
.swiper-banner { position: static; margin: 0; height: auto;}
.swiper-slide { padding: 0px !important;}

.bannerindex .swiper-slide img { height: auto;}
.bannerindex .swiper-pagination { display: none;}
.bannerindex .swiper-slide { position: relative;}

/*footer*/
.footer { background: #fff; padding: 70px 0 0; border-top: 1px solid #cbcbcb;}
.footer .center { max-width: 100%; padding: 0 80px;}

/*icon*/
.box_link { position: relative; top: -70px; right: 0px;  width: 100%; max-width: 100%; display: flex; justify-content: flex-start; align-items: center; flex-wrap: nowrap; flex-direction: row; max-height: 100%; order: 3;}
.box_link a { width: fit-content;  border: unset;  padding: 5px 8px; font-size: 20px; color: #6a6a6a;}
.box_link a:hover { color:  #888;}

.footer_info { padding-right: 0px;}
.footer_info ul {position: relative; display: flex; width: 100%; justify-content: space-around;}
.footer_info ul li:nth-child(1):before {
    content: "CONTACT US"; font-size: 20px;color: #444; left: 10px; top: 0%; position: absolute;  letter-spacing: 1px;font-weight: 800;}
.footer_info ul { display: flex; width: 100%; justify-content: flex-end;}
.footer_info li:nth-child(1) { position: relative; padding-top: 40px;width: 400px;}
.footer_info li:nth-child(2) { width: 25%;min-width: 280px;}
.footer_info li p { line-height: 250%; letter-spacing: 1px; color: #444;}
.footer_info li p > a { color: #444;}
.footer_menu { width: 100%; display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between; position: relative;  padding-top: 30px;}
.footer_menu:before { content: "LINK"; font-size: 20px; color: #444; left: 0px; top: 0%; transform: translateY(-50%); position: absolute;font-weight: 800;letter-spacing: 1px;}
.footer_menu a { display: inline-block; padding: 5px 7px 5px 15px; border: unset; margin: 0 0px 5px 0; font-size: 14px; position: relative; line-height: 100%;
    color: #444; background: transparent;  width: 46%; letter-spacing: 2px; transition: 0.5s;}

.footer_menu a:before { content: ""; background: #888; width: 5px;height: 5px;position: absolute; left: 0; top: 50%; transform: translateY(-50%);}
.footer_menu a:hover { background: transparent; color: #747474; letter-spacing: 4px;}
.copy { text-align: center; padding: 15px 0 25px; font-size: 13px; color: #919191;  border-top: 1px solid #b9c4c9; margin: 0; background: #2f2f2f;}
.copy a { color:  #919191;}
.copy a:hover { color: #dadcc8;}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*購物車*/
/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.product_page .main_part { max-width:1500px;}
/* .product_info_page .main_part { max-width:1200px;} */

.product_page .show_content,
.product_info_page .show_content { width: 100%; display: flex; justify-content: space-between; flex-wrap: wrap; align-items: flex-start; align-content: flex-start;}
.product_page .product_menu_list { position: relative; width: 220px; letter-spacing: 1px; /*border-right: 1px solid #ccc;*/min-height: 30vw;}
.product_page .products-list,
.product-wrapper { width: calc(100% - 270px);}
ul.page { width: 100%;}

.product-layer-two li ul { position:static; margin-top:5px; /*display:block !important;*/ width:100%; margin-left:0;}
.product-layer-two li:hover ul { border: none !important; /*display:block !important;*/}
.product-layer-two li li { display: block; padding:0; transition:all ease .3s;}
.product-layer-two li li a{ padding:5px 10px;}
.product-layer-two li li:hover > a { background:#fff; color:#ad925e;}
.product-layer-two > li { width:100%; max-width:100%; padding:0; text-align:left; border-bottom:1px dotted #ccc; padding-bottom: 5px;}
.product-layer-two > li ul > li + li { margin-top:5px;}

.product_info_page .product-layer-two { display: none;}
.product_info_page .products-list,
.product-wrapper { width: 100%;}

.product-layer-two li li:hover{ margin-left: 15px;}
.product-layer-two li li > a:before { content: ""; position: absolute; width: 12px; height: 8px; background: transparent; left: 0; margin-left: -20px; top: 50%; margin-top: -4px; clip-path: polygon(0 0, 100% 50% , 0 100%);}
.product-layer-two li li:hover > a:before { background:#ad925e;}

.product_info_page .half_box { width: 100%; float: none; padding-right: 0;}
.product_info_page .half_box li.btn_blankTop { margin-top: 50px; justify-content: space-between; display: flex;}
.product_info_page .half_box li.btn_blankTop input { width: calc(50% - 10px); background-image: none; padding: 0; text-align: center;}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#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;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*all*/
.main_part { max-width: 1600px;  margin: auto; padding: 50px 20px 100px;}
.path p, .path p a { margin-bottom: 45px;}
.services_page .path {display: none;} 

/*內頁BANNER 設定*/
.banner { height: 550px;  background-position: center;  background-repeat: no-repeat;
        background-size: cover;  position: relative;  justify-content: flex-start;   padding: 40px 80px;}

.banner:before {
        content: ""; width: 75px;  height: 1px; background: #fff;
        position: absolute; top: 40%; left: 8px;  animation: slide-left 1.0s 0.5s both;}
.banner:after {
        content: "";  position: absolute;  width: 7px;  height: 7px;  border-radius: 99em;
        background: #fff; left: 150px; top: 39.5%;  animation: slide-left 1.0s 1.5s both;}

.banner h5 {font-size: 23px; color: #ffffff;  position: relative;  letter-spacing: 3px;  font-weight: 500;
        animation: slide-top 1.8s 0.5s both; text-align: left;  width: 100%;  top: 45px;}

.banner h5:before {  display: block;font-size: 40px;  font-weight: 300;   top: -60px;  position: absolute;  left: 0;}
.banner h5:after {
        position: absolute; white-space: pre; font-size: 16px; left: 0;
        bottom: -115px; line-height: 160%; animation: slide-top 2.5s 0.5s both;}

/*相簿*/
.banner.banE { background-image: url(https://pic03.eapple.com.tw/elcspace/banner_02.jpg);}
.banner.banE h5:before {content: "PORTFOLIO";}
.banner.banE h5:after { content: "打造生活與商業的靈感場域"}

/*文章*/
.banner.banblog { background-image: url(https://pic03.eapple.com.tw/elcspace/banner_01.jpg);}
.banner.banblog h5:before {content: "ARTICLE";}
.banner.banblog h5:after { content: "關於美感與生活的筆記"}

/*聯絡我們*/
.banner.banC { background-image: url(https://pic03.eapple.com.tw/elcspace/banner_03.jpg);}
.banner.banC h5:before {content: "CONTACT";}
.banner.banC h5:after { content: "與我們聊聊你的空間計畫"}

/*服務項目*/
.banB { background-image: url(https://pic03.eapple.com.tw/elcspace/banner_05.jpg);}
.banB h5:before {content: "ITEM";}
.banB h5:after { content: "從設計概念到施工細節，以專業實現每一個空間藍圖"}

/*動畫*/
@keyframes slide-top {
    0% { -webkit-transform: translateY(100%);transform: translateY(100%); opacity:0; }
    100% {-webkit-transform: translateY(0); transform: translateY(0); opacity:1;}
}

@keyframes slide-left {
    0% { -webkit-transform: translateX(0%);transform: translateY(0%); opacity:0; }
    100% {-webkit-transform: translateX(100%); transform: translateX(100%); opacity:1;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*文章設定*/
/*首頁*/
.module_i_news section { max-width: 1600px;  margin: 0 auto;  display: flex;  flex-direction: column; padding: 0 20px;}
.module_i_news { padding: 100px 20px;  background: url(https://pic03.eapple.com.tw/elcspace/new_bg.jpg);
        background-attachment: fixed; background-repeat: no-repeat;  background-size: cover; background-position: left;}
.module_i_news .title_i_box { text-align: left; border-bottom: 1px solid #bebebe; padding-bottom: 35px;margin-bottom: 0;}
.module_i_news .title_i_box h6 { font-size: 50px; color: #2F2F2F; font-family: "Noto Serif TC";letter-spacing: 5px;font-weight: 500;}
.module_i_news .title_i_box h4 { font-size: 19px;  letter-spacing: 3px; padding-top: 20px;}
.module_i_news_list {  order: 3;}
.module_i_news_list, .module_i_news_list.swiper { padding: 65px 20px;}

.module_i_news ul{ grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));width: 100%;  max-width: 1200px; margin: 0 0 0 auto;grid-gap: 60px 20px;}
.module_i_news li a , .subbox_item a {grid-template-columns: 1fr; grid-gap: 15px;}
.i_blog_le , .blog_list_le {aspect-ratio: 16 / 9;position: relative;}
.i_blog_ri h5 ,.blog_list_ri h5 { font-family: "Noto Serif TC";letter-spacing: 1px;}
.i_blog_ri em ,.blog_list_ri em { color: #555; margin: 5px 0 15px; padding-bottom: 15px;}
.i_blog_le img ,.blog_list_le img {transition: 0.5s;}
.module_i_news li a:after , .module_i_news li a:before,
.subbox_item a:before ,.subbox_item a:after{display: none;}

/*hover*/
.module_i_news li a:hover .i_blog_le img , .subbox_item:hover .blog_list_le img { transform:scale(1.1);  transition: 0.8s;}
.i_blog_le:before , .blog_list_le:before { content: 'READ MORE'; position: absolute; z-index: 19; bottom: 0px;  right: 0px;  opacity: 0; text-align: center;
        font-size: 13px; color: #eeeeee; background: #444; padding: 14px 15px; transition: all .6s;}
.module_i_news li a:hover .i_blog_le:before , .subbox_item:hover .blog_list_le:before {  opacity: 1; transition: all .5s;}

/*按鈕*/
.i_blog_b { margin: -80px auto 0 0; text-align: center; order: 3;position: relative; overflow: hidden;}
/*.i_blog_b a i.fa-solid.fa-arrow-right { display: none;}
.fa-arrow-right::before { display: none;}*/
.i_blog_b a { background: transparent; width: fit-content;  margin-top: 0;  letter-spacing: 2px;  line-height: 60px;  height: auto;  display: block;  color: #6a6a6a;}

/*列表*/
.blog_le {  width: 220px;  position: sticky;  top: 100px;  margin-bottom: 0px; height: 500px;}
.blog_list_le { overflow: hidden;}
.blog_ri { padding: 0 0 0 100px;}
.blog_subbox { grid-template-columns: repeat(auto-fill,minmax(450px, 1fr));}

/*側邊*/
h5.blog_le_t { margin-bottom: 13px;}
.blog_search { margin-bottom: 50px;}
.blog_search input[type=search] { border: unset; border-bottom: 1px solid;  border-radius: 0px;}
.blog_le .accordion { border-radius: 0px;border: 1px #a19c98 solid;}
h5.blog_le_t { display: flex; flex-direction: column-reverse; color: #2F2F2F;  letter-spacing: 5px;}
h5.blog_le_t span { font-size: 50px;}
h5.blog_le_t em {  font-size: 19px;  letter-spacing: 3px; padding-top: 5px; font-weight: 300;}
.accordion li .link a { color: #2f2f2f;letter-spacing: 1px;font-weight: 500;}

/*顏色*/
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category { background:#a19c98 !important;}

/*內頁*/
/*標題*/
.blog_shareData{flex-wrap: wrap; flex-direction: row;}
.articel_mainPic {  display: none;}
.blog_box_edit {  width: 100%;}
.blog_box_edit { display: flex; flex-direction: row;  flex-wrap: wrap;}
.blog_box_edit * {  width: 100%;}
.news_tags {order: -1;}

/*按鈕*/
.blog_back { justify-content: center; justify-items: center; width: 100%; border-top: 1px solid #bebebe; padding-top: 30px;}
.blog_back a.article_btn_prev,.blog_back a.article_btn_back ,.blog_back a.article_btn_next{ background: transparent; width: 120px; border-radius: 99em; display: flex; align-items: center; justify-content: center; }
.blog_back a.article_btn_prev , .blog_back a.article_btn_next { border: unset; color: #2f2f2f;}
.blog_back a.article_btn_back{ color:#2f2f2f;}
.blog_back a.article_btn_back:hover  , .blog_back a.article_btn_prev:hover, .blog_back a.article_btn_next:hover {  color: #a19c98;}


/*相關文章*/
.news_related { background: #f4f4f4; padding: 80px 15px;}
.news_related_list { max-width: 1550px; grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));}
.news_related h6 span:before { content: '相關文章';  font-size: 24px; color: #2F2F2F; font-weight: 500; letter-spacing: 2px;}
.news_related h6 { margin: 0 auto 50px;}

.news_related_list li:nth-child(n+4) { display: none;}
.news_related_list li a { padding: 0px; background: transparent;}
.news_related_list li figure {  aspect-ratio: 16 / 9;}
.news_related_list li a p { padding-top: 15px;}

.lastPage { color: #a19c98;  border: 1px solid; background: transparent; transition: 0.5s; margin: 100px auto 0;}
.lastPage:hover { background: #a19c98; color: #fff;}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*新版相簿*/
/*首頁*/
.module_i_album{overflow: hidden;}
/* .i_album_list { grid-template-columns: 1fr;} */
.module_i_album { margin: 0 auto; padding: 0px 0px; display: flex;  flex-direction: column; align-items: center; justify-content: flex-start;}
.module_i_album section {  width: 100%;  max-width: 100%;  position: relative;}
/* .i_album_list_box:before {  content: "我們的作品集涵蓋多樣化的室內設計案例，\A包括溫馨舒適的住宅空間與機能兼具的商業場域";
        position: absolute;  white-space: pre;  color: #fff; line-height: 220%; font-size: 17px; left: 13%;  top: 20%;}
.i_album_list_box:after {  position: absolute;  white-space: pre;  color: #fff;  line-height: 220%;  font-size: 17px; left: 13%;  top: 39%;
        content: "從現代簡約到自然風格，\A從咖啡館、辦公室到高端住宅，\A每一個設計皆融合美感與實用性，\A為業主量身打造獨特且富有品味的空間體驗";} */
.i_album_list_box { width: 100%;  padding: 0px;  position: relative;  background: #333;}
/* .i_album_list { display: grid;  grid-template-columns: 1fr;  grid-gap: 1vw; width: 50%;  margin: 0 0 0 auto;} */

.i_album_list li a p { width: fit-content; height: 120px; right: 50px;
        left: auto; bottom: 50px; border-radius: 20px; color: #333333;  background: rgb(255 255 255 / 60%);  padding: 0 20px;}
.i_album_list li:hover p { height: 120px; background: rgb(255 255 255 / 80%);}
.i_album_list li:hover img { transform: unset;}

/*標題*/
.module_i_album .title_i_box { text-align: left; padding: 0 20px;  width: 1600px;  margin: 0 auto 75px;  position: relative;}
.module_i_album .title_i_box:before { content: "";  height: 14vw;  width: 1px;  position: absolute;  background: #CCCCCC;  top: 150px;  left: 25px;  z-index: 999;}
.module_i_album .title_i_box h6 { font-size: 50px;  color: #2F2F2F;  font-family: "Noto Serif TC"; font-weight: 500; letter-spacing: 5px;}
.module_i_album .title_i_box h4 { font-size: 19px;  color: #111; font-weight: 500; letter-spacing: 3px;  padding-top: 20px;}

/*按鈕*/
/* .module_i_album .i_album_b { width: fit-content; margin-top: -150px; position: absolute;  left: 13%;} */
.animated-arrow {background: transparent;margin-top: 0px; width: fit-content; color: #999999; font-size: 15px; letter-spacing: 1px;}
.fa-arrow-right::before { content: "\f105";font-size: 14px;}

/*列表*/
.album_page .show-list { grid-template-columns: 1fr 1fr; grid-gap: 30px;}
.show-list .show_pic { aspect-ratio: 16 / 10;}
.show-list .show_name , .other_subalbum li a p { line-height: 2; background: linear-gradient(to top, #0000006e, #00000000);font-weight: 500;
    color: #ffffff; height: 4em; letter-spacing: 2px;  font-size: 19px; position: absolute; bottom: 0;  width: 100%;  transition: 0.5s; display: flex;  align-items: center; justify-content: center; align-content: center;}
.show-list .item a:hover .show_name , .other_subalbum li:hover a p {  height: 100%; letter-spacing: 3px; background: linear-gradient(to top, #000000, #00000000);}
.show-list .item:hover .show_name { color: #fff;}
/* ul.i_album_list li:hover { flex: 3 0 25vw; transition: flex .4s, -webkit-box-flex .4s, -ms-flex .4s;} */
.pic-list .show_pic:hover img { transform: scale(1.12);}
.pic-list .show_pic img { transition: 0.5s;}
.overlay {display: none;}

/*次分類*/
.subalbum-menu h2 { display: none;}
.album_class_page .show-list {  grid-template-columns: 1fr 1fr 1fr;  grid-gap: 30px 20px;}
.album_class_page .other_album , .album_info_page .other_album { display: none;}

/*內頁*/
.album_info_page .main_part { max-width: 1700px;}
.album_info_page .show_content { padding: 20px 10px; display: flex;  flex-wrap: wrap; justify-content: space-between;}
.album_info_page .pic-list {  grid-template-columns: 1fr; grid-gap: 10px; width: 56%;}

/*文字*/
.album_info_page .album_descrip {  margin-bottom: 0px;  color: #777;  line-height: 2; width: 36%; font-size: 15px;  position: sticky;  top: 150px; height: 630px;}

/*聯絡我們*/
.contact_page .main_part {  max-width: 1700px; padding: 50px 20px 100px;}
h4.blank_letter.f {  text-align: center;   padding-bottom: 25px; position: relative;  top: 50px;}
h4.blank_letter.f:before { content: "FORM";font-size: 50px; font-family: "Noto Serif TC"; font-weight: 500;
        letter-spacing: 5px;  position: absolute; left: 50%;  transform: translateX(-50%);  top: -50px;}

.blank_letter {font-size: 23px; color: #2F2F2F; font-weight: 500; letter-spacing: 2px; text-indent: 2px; background-repeat: no-repeat;}
.note {  text-align: center;  display: block;  padding-top: 10px;}

/*表格*/
.contact_content { padding: 80px 10px 20px;}
.contact_content .information_right {  width: 100%; background: #f9f9f9;  padding: 60px 100px 80px;   border-radius: 30px;}
.contact_form li { grid-template-columns: 1fr; grid-gap: 10px;}
.contact_form li .form__label {  display: block; max-width: 100%;  text-align: left;  width: 100%;  font-weight: 800;}
.contact_form  { grid-template-columns: repeat(12, 1fr); grid-gap: 35px 80px; align-items: start; margin: 0; padding-top: 80px;width: 100%;}
.contact_form li { grid-template-columns: 1fr;  grid-column: auto / span 6;  grid-gap: 5px;}
.contact_form li:nth-child(n+5) { grid-column: auto / span 12;}
.form select {width: 100%;}
.contact_form li:has(input[type=checkbox]) .form__insert, .contact_form li:has(input[type=radio]) .form__insert { display: flex;grid-gap: 0px;}
input[type="checkbox"], input[type="radio"] { margin-left: 25px; margin-right: 5px;}

.contact_content .information_left {  display: none;}

.star { padding: 0px;}
.contact_form li input.noborder { border: unset;  border-bottom: 1px solid #b0b0b0; background: transparent;}
.contact_form li textarea.noborder { border: 1px #b0b0b0 solid;  background: transparent;}

/*按鈕*/
.contact_form li.last{ justify-content: center;}
.contact_form li.last cite {  background: transparent;  color: #a19c98;}
.contact_form li.last blockquote { color: #a19c98;}
.contact_form li.last blockquote, .contact_form li.last cite { border: 1px #a19c98 solid;padding: 4px;}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
@media screen and (max-width: 1180px) {
/*footer*/  
.footer .center { max-width: 100%; padding: 0px;}
.box_link {top: 0px;order: 0; justify-content: center;}
.footer_logo{margin: 0 auto;}
.footer_info {grid-template-columns: 1fr;}
.footer_info ul { justify-content: center; padding: 20px 0 50px;}
.footer_info li:nth-child(1) { width: 50%;}
.footer_info li:nth-child(2) { width: 50%; min-width: auto;}
.footer_info ul li:nth-child(1):before{left: 0px;}

/*聯絡我們*/
.contact_form { grid-gap: 35px 50px;}
}

@media screen and (max-width: 1080px) {
/*大圖*/
.button a { top: 9em !important;}
.button a:before { top: -3em !important; height: 40px !important;}
}

@media screen and (max-width: 980px) {
/*聯絡我們*/
.contact_content .information_right { padding: 60px 50px 80px;}
.contact_form li { grid-column: auto / span 12;}
.contact_form li:has(input[type=checkbox]) .form__insert, .contact_form li:has(input[type=radio]) .form__insert {  display: grid;  grid-gap: 5px;}
input[type="checkbox"], input[type="radio"] { margin-left: 0px; margin-right: 0px;}

/*文章*/
.blog_le { width: 100%; position: static; height: auto;}
.blog_ri { width: 100%; padding: 0px;}
.blog_subbox { grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));}
.subbox_item {  border-bottom: unset; }

/*相簿*/
.album_page .show-list { grid-template-columns: 1fr;  grid-gap: 30px;}
.album_class_page .show-list { grid-template-columns: 1fr 1fr;}
.album_info_page .show_content {  flex-wrap: wrap;}
.album_info_page .album_descrip {  width: 100%;  position: static; height: auto; padding-bottom: 50px;}
.album_info_page .pic-list { width: 100%;}
.album_info_page .main_part { padding-bottom: 50px;}
}

@media screen and (max-width: 768px) {
/*footer*/
.navigation { justify-content: center; align-items: center;}
.footer_info ul { align-items: center; flex-direction: column;}
.footer_info li:nth-child(1),.footer_info li:nth-child(2) { width: 350px;}
.footer_info li+li { margin-top: 50px;}
.footer_info { padding: 0px;}
.copy { text-align: center; padding: 15px 20px 25px;}

/*banner*/
.banner {  height: 300px;align-content: flex-start;padding: 20px;}
.banner h5 { font-size: 20px;top: 125px;}
.banner h5:before { font-size: 30px; top: -40px;}
.banner h5:after{bottom: -60px;font-size: 15px; line-height: 120%;white-space: unset;}
.banner:before {top: 30%; left: 0px;}
.banner:after {left: 85px; top: 28.5%;}

.contact_form{display: flex;flex-wrap: wrap;}
.contact_form li{width: 100%;}
.contact_content .information_right { padding: 30px;}

/*動畫*/
@keyframes slide-left {
    0% { -webkit-transform: translateX(0%);transform: translateY(0%); opacity:0; }
    100% {-webkit-transform: translateX(26%); transform: translateX(26%); opacity:1;}
}

/*文章*/
/*首頁*/
.module_i_news section {padding: 0px;}
.module_i_news ul { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));grid-gap: 40px 20px;}
.module_i_news_list, .module_i_news_list.swiper {  padding: 40px 0px;}
.module_i_news li { border-bottom: unset; }
.i_blog_b {margin: 0px auto;}
.module_i_news{background-attachment: unset;}
/*相關文章*/
.news_related_list { max-width: 100%;  grid-template-columns: auto;}

/* 開啟手機板下方按鈕所需設定 */
#bottom_menu { display: none; }
.footer.with_shopping_mode { padding:50px 0 0px; }
#to_top { bottom:60px;}

/*購物車*/
.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;}

/*相簿*/
.i_album_text span {font-size: 16px;}
.i_album_list li a p {width: fit-content; height: 40px; right: 0px;bottom: 0px; border-radius: 0px; padding: 0 20px;}
.album_class_page .show-list {grid-template-columns: 1fr;}
}

@media screen and (max-width: 600px) {
/*聯絡我們*/
.contact_form li .form__label {background: transparent;}
.contact_content .information_right {   padding: 60px 20px;  }
}