@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Chiron+Sung+HK:ital,wght@0,200..900;1,200..900&display=swap');
/*
關於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 {}
*/

/* 商品下拉超過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個--結束 */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 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;
}

@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;
  }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*大圖1*/
.swiper-banner .swiper-slide {
  position: relative;
  overflow: hidden;
}

.swiper-banner .swiper-slide:nth-child(1):before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  pointer-events: none;
  background: url('https://pic03.eapple.com.tw/daxibucaiku/大圖1-遮罩圖片.png') no-repeat center/cover;
  opacity: 0;
  clip-path: circle(0% at 70% 50%);
  filter: blur(10px);
  will-change: clip-path, opacity, filter;
  transition: none;
}

.swiper-banner .swiper-slide:nth-child(1).swiper-slide-active:before,
.swiper-banner .swiper-slide:nth-child(1).swiper-duplicate-active:before {
  animation: inkCenterOutSpread 2.6s ease-out forwards;
}

@keyframes inkCenterOutSpread {
  0% {
    opacity: 0;
    clip-path: circle(0% at 70% 50%);
    filter: blur(10px);
  }

  40% {
    opacity: 0.7;
    clip-path: circle(45% at 70% 50%);
    filter: blur(4px);
  }

  100% {
    opacity: 1;
    clip-path: circle(150% at 70% 50%);
    filter: blur(0px);
  }
}

.swiper-banner .swiper-slide:nth-child(1):after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  pointer-events: none;
  background: url('https://pic03.eapple.com.tw/daxibucaiku/大圖1-文字-01.png') no-repeat center/cover;
  opacity: 0;
  filter: none;
  will-change: opacity;
  transition: none;
}

.swiper-banner .swiper-slide:nth-child(1).swiper-slide-active:after,
.swiper-banner .swiper-slide:nth-child(1).swiper-duplicate-active:after {
  animation: textImgNormalFadeIn 2.0s 0.4s ease-out forwards;
}

@keyframes textImgNormalFadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*大圖2*/
.swiper-banner .swiper-slide:nth-child(2):after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  pointer-events: none;
  background: url('https://pic03.eapple.com.tw/daxibucaiku/大圖2-文字-02.png') no-repeat center/cover;

  opacity: 0;
  clip-path: inset(0% 50% 0% 50%);
  will-change: clip-path, opacity;
  transition: none;
}

.swiper-banner .swiper-slide:nth-child(2).swiper-slide-active:after,
.swiper-banner .swiper-slide:nth-child(2).swiper-duplicate-active:after {
  animation: textHorizontalSpread 2.5s 0.5s ease-out forwards;
}

@keyframes textHorizontalSpread {
  0% {
    opacity: 0;
    clip-path: inset(0% 50% 0% 50%);
  }

  35% {
    opacity: 1;
    clip-path: inset(0% 32% 0% 38%);
  }

  100% {
    opacity: 1;
    clip-path: inset(0% 0% 0% 0%);
  }
}

/*header*/
.tp_links {
  display: none;
}

.header_area {
  background: #9b1111;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, .1);
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, #bfa15f, #fbf5b7, #dfba6b, #fbf5b7, #bfa15f) 1;
}

.header_area.sticky {
  background: #9b1111;
}

/*logo*/
.nav-brand img {
  max-width: 75%;
}

/*選單*/
.stellarnav ul {
  margin-top: 0;
}

ul.anchorList {
  padding-top: 20px;
}

.stellarnav li li {
  border: 0px #eee solid;
}

.stellarnav>ul>li>a {
  font-size: 16px;
  margin: 0 15px;
  color: #fff3ce;
  font-family: "Chiron Sung HK", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 2px;
  transition: letter-spacing 0.4s ease, transform 0.4s ease;
  cursor: pointer;
}

.stellarnav>ul>li>a:hover {}

.stellarnav li.has-sub>a:after {
  border-top: 6px solid #fdefcb;
}

.box_search {
  display: none;
}

/*選單下拉*/
.stellarnav li li>a,
.stellarnav li li.has-sub>a {
  font-size: 14px;
  color: #000000;
  background: #fdefca;
  transition: all 0.3s ease;
}

.stellarnav li li:hover>a,
.stellarnav li li.has-sub:hover>a {
  color: #ffffff;
  background: #9b1111;
}

.stellarnav ul ul:hover {
  background: #9b1111;
}

.stellarnav li li.has-sub>a:after {
  border-left: 6px solid #9b1111;
}

.stellarnav li li.has-sub:hover>a:after {
  border-left-color: #fff3ce;
}

/*上浮金元寶圖示*/
@media screen and (min-width: 769px) {
  html body .stellarnav>ul>li {
    position: relative;
  }

  html body .stellarnav>ul>li:hover {
    overflow: visible;
  }

  html body .stellarnav>ul>li>a {
    position: relative;
    overflow: visible;
  }

  html body .stellarnav>ul>li>a::before {
    content: "";
    position: absolute;
    bottom: 85%;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background-image: url('https://pic03.eapple.com.tw/daxibucaiku/header-icon-10.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
    width: 25px;
    height: 25px;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease-out, opacity 0.2s ease-out;
  }

  html body .stellarnav>ul>li:hover>a::before {
    opacity: 1;
    transform: translateX(-50%) translateY(-1px);
  }

  .stellarnav>ul>li:hover::before {
    transform: translateX(-50%) translateY(0);
  }
}

/*menu*/
.stellarnav .menu-toggle:after {
  font-family: "Chiron Sung HK", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 2px;
  color: #fff3ce;
}

.stellarnav.mobile.left .close-menu {
  background: #9b1111;
}

.stellarnav li li:hover>a,
.stellarnav li li.has-sub:hover>a.dd-toggle {
  background: #9b111100;
}

.stellarnav a {
  color: #fff3ce;
  font-family: "Chiron Sung HK", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.stellarnav .menu-toggle span.bars span {
  display: none;
}

.stellarnav.mobile .menu-toggle,
.stellarnav.mobile .dd-toggle,
.stellarnav.mobile .close-menu,
.stellarnav.mobile .call-btn-mobile,
.stellarnav.mobile .location-btn-mobile {
  text-align: center;
}

.stellarnav .menu-toggle span.bars {
  display: inline-block;
  width: 25px;
  height: 25px;
  background-image: url('https://pic03.eapple.com.tw/daxibucaiku/header-icon-10.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}

.stellarnav .icon-close:after {
  border-bottom: solid 3px #fff3ce;
}

.stellarnav .icon-close:before {
  border-bottom: solid 3px #fff3ce;
}

.stellarnav.mobile ul {
  background: #fefdf1;
}

.stellarnav.mobile.right>ul,
.stellarnav.mobile.left>ul {
  border-right: 1px #cbb170 solid;
}

.stellarnav a.dd-toggle .icon-plus:before {
  border-bottom: solid 3px #9b1111;
}

.stellarnav a.dd-toggle .icon-plus:after {
  border-bottom: solid 3px #9b1111;
}

.stellarnav.mobile li.open {
  background: #fff3ce;
}

#bottom_menu li a {
  color: #9b1111;
}

@media screen and (max-width: 768px) {
  ul#bottom_menu {
    display: flex;
  }

  ul.anchorList {
    padding-top: 0;
  }

  .stellarnav>ul>li>a {
    color: #000000;
  }

  .stellarnav li li {
    border-bottom: 1px #e1d6b4 solid;
  }

  .stellarnav li li>a,
  .stellarnav li li.has-sub>a {
    background: #ffffff;
  }

  .stellarnav.mobile li li a.dd-toggle {
    background: none;
  }

  .stellarnav.mobile li.has-sub a.dd-toggle .icon-plus:before,
  .stellarnav.mobile li.has-sub a.dd-toggle .icon-plus::after {
    border-bottom-color: #9b1111;
  }

  .stellarnav.mobile li.has-sub.open a.dd-toggle .icon-plus:before,
  .stellarnav.mobile li.has-sub.open a.dd-toggle .icon-plus::after {
    border-bottom-color: #e1d6b4;
  }

  a.dd-toggle {
    margin-right: 11px;
  }

  .stellarnav.mobile li li.has-sub a.mob_main_link{
    padding: 10px 43px 10px 25px;
  }

  .stellarnav.mobile li.has-sub>a.dd-toggle .icon-plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    vertical-align: middle;
    margin-top: -3px;
  }

  .stellarnav.mobile li.has-sub.open>a.dd-toggle .icon-plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    vertical-align: middle;
    margin-top: 1px;
  }

  .stellarnav.mobile>ul>li {
    border-bottom: 1px #e1d6b4 solid;
  }

  .stellarnav.mobile li a {
    padding: 10px 43px 10px 25px;
    border-bottom: 0px solid #aba07d;
  }

}

/*共用*/

.module_i_news,
.product_page #content,
.product_info_page #content,
.blog_page #content,
.album_class_page #content,
.album_info_page #content,
.blog_page #content,
.contact_page #content,
.blog_in_page #content {
  background-image: url('https://pic03.eapple.com.tw/daxibucaiku/首頁-行事曆背景-01.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative
}

.product_page #content::before,
.product_info_page #content::before,
.blog_page #content::before,
.album_class_page #content::before,
.album_info_page #content::before,
.contact_page #content::before,
.blog_in_page #content::before {
  content: '';
  position: fixed;
  left: 30px;
  bottom: 30px;
  width: 800px;
  height: 800px;
  background-image: url('https://pic03.eapple.com.tw/daxibucaiku/background-ICON.png');
  background-size: contain;
  background-position: left bottom;
  background-repeat: no-repeat;
  animation: bgImgGlow 4s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 9
}

@keyframes bgImgGlow {
  0% {
    opacity: 0.15;
    transform: scale(0.96);
  }

  100% {
    opacity: 0.55;
    transform: scale(1.04);
  }
}

.main_part {
  z-index: 10;
  position: relative;
}

@media screen and (max-width: 600px) {

  .product_page #content::before,
  .product_info_page #content::before,
  .blog_page #content::before,
  .album_class_page #content::before,
  .album_info_page #content::before,
  .contact_page #content::before,
  .blog_in_page #content::before {
    width: 400px;
    height: 400px;
  }
}

/*首頁-行事曆*/
.edit_part {
  display: block;
}

.module_i_news .title_i_box h4 {
  font-size: 25px;
  font-family: "Chiron Sung HK", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 2px;
}

.module_i_news .title_i_box h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
}

/* 2. 左右兩側的線條設定 */
.module_i_news .title_i_box h4::before,
.module_i_news .title_i_box h4::after {
  content: '';
  height: 1px;
  background: #c5b66e;
  display: inline-block;
  flex-grow: 1;
  max-width: 0;
  animation: extendLineToFull 1s ease forwards;
}

@keyframes extendLineToFull {
  from {
    max-width: 0;
  }

  to {
    max-width: 100%;
  }
}

.module_i_news section {
  max-width: 1200px;
}

.module_i_news ul {
  grid-template-columns: 1fr;
  grid-gap: 0px;
}

.module_i_news li {
  border-bottom: 1px #e2d4ab solid;
}

.module_i_news li a {
  grid-template-columns: 1fr
}

.i_blog_ri {
  display: flex;
  padding: 10px;
  font-family: "Chiron Sung HK", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 2px;
  font-size: 16px;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
}

.i_blog_le {
  display: none;
}

.module_i_news li a:after,
.module_i_news li a:before {
  content: none;
}

.i_blog_ri p {
  display: none;
}

.i_blog_ri h5 {
  order: 2;
  font-size: 16px;
  padding-left: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.i_blog_ri em {
  order: 1;
  font-size: 16px;
}

.i_blog_ri h5:after {
  content: 'READ MORE';
  color: #c5b66e;
  font-size: 16px;
  font-family: "Chiron Sung HK", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 2px;
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all .6s;
}

.i_blog_ri h5:hover:after {
  color: #9b1111;
}

.animated-arrow {
  background: #fcf9ea;
  border-radius: 25px;
  color: #9b1111;
  border: 1px #c5b66e solid;
  font-family: "Chiron Sung HK", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 2px;
  font-size: 16px;
  transition: all 0.3s ease;
  z-index: 100; 
}

.animated-arrow:hover {
  background: #9b1111;
  color: #fcf9ea;
  border-color: #9b1111;
}

@media screen and (max-width: 768px) {
  .i_blog_ri h5 {
    padding-left: 0;
    font-size: 16px;
    position: static;
  }

  .i_blog_ri h5:after {
    font-size: 16px;
  }

  .i_blog_ri {
    height: auto !important;
    padding-bottom: 25px;
    display: flex;
    flex-direction: row;
    justify-content: center;
  }

  .i_blog_ri h5:after {
    content: 'Read More';
    font-size: 16px;
    color: #9b1111;
    background-color: #f6ebaa;
    font-family: "Chiron Sung HK", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 45px;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    z-index: 10;
  }

  .i_blog_ri:hover h5:after {
    opacity: 1;
    visibility: visible;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
  }

  .subbox_item {
    position: relative;
    overflow: hidden;
  }
}
.module_i_news.module_i_news01{
    overflow: visible;
    position: relative; 
}

.module_i_news.module_i_news01::after {
  content: "";
  position: absolute;
  right: 0;   
  bottom: -184px;  
  width: 500px;   
  height: 280px;  
  background-image: url('https://pic03.eapple.com.tw/daxibucaiku/物件-14.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
  pointer-events: none; 
  z-index: 99;
  animation: floatEffect 3s ease-in-out infinite; 
}
@keyframes floatEffect {
  0% {
    transform: translateY(0); 
  }
  50% {
    transform: translateY(-15px); 
  }
  100% {
    transform: translateY(0); 
  }
}
@media screen and (min-width: 1024px) and (max-width: 1200px) {
.module_i_news.module_i_news01::after {
  right: -60px;   
  bottom: -90px;  
  width: 400px;   
}}
@media screen and (max-width: 768px){
.module_i_news.module_i_news01::after {
  right: -60px;   
  bottom: -60px;  
  width: 300px;   
}}
@media screen and (max-width: 600px) {
  .i_blog_ri {
    flex-direction: column;
    gap: 10px;
  }
  .module_i_news.module_i_news01::after {
  right: -100px;   
  bottom: -50px;  
  width: 250px;   
}
}
@media screen and (max-width:450px) {
  .module_i_news.module_i_news01::after {
  width: 200px;   
}
}
@media screen and (max-width:369px) {
  .module_i_news.module_i_news01::after {
  right: -35px;   
  bottom: -35px;  
  width: 150px;   

}}
@media screen and (max-width:300px) {
  .i_blog_ri {
    padding: 45px;
    text-align: center; 
  }
  .module_i_news.module_i_news01::after {
  width: 0px;   
}
}
/*財富豐盈專區-商品*/
.products-list {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.products-list {
  grid-gap: 30px;
}

.products-list .pic {
  width: 100%;
  height: auto;
  overflow: visible;
}

.products-list .pic img {
  width: 100%;
  height: auto;
  display: block;
}

.products-list .price {
  display: none;
}

.products-list .more {
  border: 1px solid #c5b66e;
  color: #c5b66e;
  font-size: 14px;
  font-family: "Chiron Sung HK", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 2px;
}

.products-list .item a:hover .more {
  background: #ada05e;
  color: #f3f3f3;
}

.product-layer-two li a {
  font-size: 14px;
  padding: 10px;
  font-family: "Chiron Sung HK", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 2px;
  background: #f8e382cf;
}

.product-layer-two>li {
  border-bottom: 0px dotted #ccc;
}

/*財富豐盈專區-商品主分類頁*/
.product-layer-two li i {
  display: none;
}

/*--次分類收合*/
.product-layer-two li.active a {
  padding: 10px;
  color: #fff;
  background: #9b1111;
  border: 0px #ccc solid;
}

.product-layer-two li.active li a {
  color: #333;
  background: #ffffff;
}

.product-layer-two li li:hover>a:before {
  background: #9b1111;
}

.product-layer-two li.active li a:hover {
  color: #9b1111;
}

@media screen and (max-width: 768px) {
  .products-list {
    grid-template-columns: 1fr 1fr;
  }

  .product_page .product_menu_list>h5 {
    font-family: "Chiron Sung HK", serif;
    font-optical-sizing: auto;
    font-style: normal;
    letter-spacing: 2px;
    color: #9b1111;
  }

  .fa-caret-down::before {
    color: #9b1111;
  }
}

@media screen and (max-width: 600px) {
  .products-list {
    grid-template-columns: 1fr;
  }
}

/*財富豐盈專區-次分類頁*/
.sidebarBtn {
  background: #ffebac45;
  border: 5px #ffe8a1 solid;
}

.sidebarBtn h2,
.product_info li span,
.toShare,
.inquiry_a1,
.inquiry_a2,
a.pdinfo_line,
a.pdinfo_tel,
.pd_tabTitle li.activeTab a,
.prod_related h6 span:before,
.related_list li a p,
.news_related h6 span:before,
.news_related_list li a p {
  font-family: "Chiron Sung HK", serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 2px;
}

.sidebarBtn h2 {
  font-size: 20px;
  font-weight: 800;
}

.product_info li span,
.toShare,
.inquiry_a1,
.inquiry_a2,
a.pdinfo_line,
a.pdinfo_tel,
.pd_tabTitle li.activeTab a,
.prod_related h6 span:before,
.related_list li a p,
.news_related_list li a p {
  font-weight: 500;
}

.inquiry_a1 {
  background: #9b1111;
}

.inquiry_a2 {
  background: #5a1d8f;
}

a.pdinfo_line {
  background-color: #0e5400;
}

a.pdinfo_tel {
  background-color: #04374b;
}

.inquiry_a1:hover,
.inquiry_a2:hover,
.inquiry_a3:hover,
a.pdinfo_link:hover {
  background: #161616;
}

.pd_tabTitle li {
  border-bottom: 0px solid #ffe8a1;
}

.pd_tabTitle li a {
  display: inline-block;
  width: 100%;
  text-align: center;
  color: #ffe8a1;
  background: #9b1111;
}

.pd_tabTitle li.activeTab a {
  color: #fff3ce;
}

.pd_tabTitle li.activeTab::after {
  height: 0px;
}

#tab01.edit {
  text-align: center;
}

.prod_related {
  background: #fcf9ea;
  z-index: 10;
  position: relative;
}

.prod_related h6 span:before {
  content: '相關推薦';
  font-size: 16px;
  color: #9b1111;
}

.related_list {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.related_list li figure {
  width: 100%;
  height: auto;
  overflow: visible;
}

.related_list li a img {
  width: 100%;
  height: auto;
  display: block;
}

.lastPage {
  background: #ece0a7;
  border-radius: 25px;
  color: #9b1111;
  border: 1px #c5b66e solid;
  font-family: "Chiron Sung HK", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 2px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.lastPage:hover {
  background: #9b1111;
  color: #fcf9ea;
  border-color: #9b1111;

}

@media screen and (max-width: 768px) {
  .related_list {
    grid-template-columns: 1fr 1fr;
  }

  .mobile_product_name {
    text-align: center;
  }
}

@media screen and (max-width: 600px) {
  .related_list {
    grid-template-columns: 1fr;
  }
}

/*行事曆-文章*/
h4.blog_category_title {
  padding: 0;
  margin-bottom: 0;
}

h5.blog_le_t {
  display: none;
}

.blog_search input[type=search] {
  border: solid 1px #c5b66e;
  font-family: "Chiron Sung HK", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 2px;
}

.blog_le .accordion {
  border: 0px #ccc solid;
  border-radius: 0px;
}

.accordion li+li .link {
  border-top: 1px solid #c5b66e;
}

.accordion li .link a {
  color: #000000;
  font-family: "Chiron Sung HK", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 2px;
}

.blog_le .accordion>li:hover .link a,
.blog_le .accordion>li.on_this_category .link a {
  color: #000000 !important;
}

.blog_le .accordion>li:hover,
.blog_le .accordion>li.on_this_category {
  background: #c5b66e !important;
}

.blog_subbox {
  grid-template-columns: 1fr;
}

.blog_subbox {
  grid-template-columns: 1fr;
}

.subbox_item a {
  grid-template-columns: 250px 1fr;
}

.blog_list_le {
  aspect-ratio: 16 / 9;
}

.blog_list_ri {
  font-family: "Chiron Sung HK", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 2px;
}

.subbox_item a:before {
  color: #c5b66e;
  transition: all .6s;
  font-family: "Chiron Sung HK", serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 2px;
}

.subbox_item a:after {
  content: '';
  width: 0;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 8;
  background: #9b1111;
  transition: width .5s ease;
}

.subbox_item a:hover:after {
  width: 100%;
}

@media screen and (max-width: 960px) {
  .subbox_item {
    width: 100%;
    border-bottom: 1px #c5b66e solid;
  }
}

@media screen and (max-width:600px) {
  .subbox_item a {
    display: block;
  }

  .blog_list_ri {
    text-align: center;
  }
}

/*行事曆-文章內頁*/
h4.blog_category_title {
  font-size: 25px;
  font-family: "Chiron Sung HK", serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 2px;
}

.blog_back a {
  font-family: "Chiron Sung HK", serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 2px;
}

.blog_back a.article_btn_prev {
  background: #5a1d8f;
}

.blog_back a.article_btn_back {
  background: #9b1111;
}

.blog_back a.article_btn_next {
  background: #5a1d8f;
}

.news_related {
  background: #fefdf1;
  z-index: 10;
  position: relative;
}

.news_related h6 span:before {
  content: '其他活動';
  font-size: 16px;
  color: #9b1111;
}

@media screen and (max-width: 768px) {
  .news_related_list {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 600px) {
  .news_related_list {
    grid-template-columns: 1fr;
  }
}

/*信眾活動-相簿*/
.show-list {
  grid-template-columns: 1fr 1fr 1fr;
}

.other_album_choice li {
  background: #9b1111;
}

.other_subalbum li {
  background: #ffffff00;
}

.show-list .show_name,
.other_subalbum li a p {
  font-size: 16px;
  font-family: "Chiron Sung HK", serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 2px;
  text-align: center;
  font-weight: 700;
}

.subalbum-menu h2 {
  display: none;
}

@media screen and (max-width: 768px) {
  .show-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 600px) {
  .show-list {
    grid-template-columns: 1fr;
  }
}

/*信眾活動-相簿內頁*/
.pic-list {
  grid-template-columns: 1fr 1fr 1fr;
}

@media screen and (max-width: 768px) {
  .pic-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 600px) {
  .pic-list {
    grid-template-columns: 1fr;
  }
}

/*最新消息-文章2*/
.blog_subbox {
  grid-template-columns: 1fr 1fr 1fr;
}

.subbox_item a {
  display: block;
}

@media screen and (max-width: 768px) {
  .blog_subbox {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 600px) {
  .blog_subbox {
    grid-template-columns: 1fr;
  }
}

/*聯絡我們*/
.contact_content{    max-width: 1200px;}
.contact_content .information_left {
  width: 250px;
}

.list_before {
  font-size: 14px;
  font-family: "Chiron Sung HK", serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 2px;
  font-weight: 500;
}

.info_ADD2:before {
  content: "營業時間";
  width: 55px;
}

.list_before.info li {
  padding-left: 40px;
}

.list_before.info li.info_ADD2 {
  padding-left: 70px;
}

ul.list_before.info {
  display: flex;
  flex-direction: column;
}

li.info_LINE {
  order: 2;
}

li.info_TEL {
  order: 1;
}

li.info_ADD {
  order: 4;
}

li.info_ADD2 {
  order: 3;
}

.blank_letter,
.contact_form li .form__label {
  font-family: "Chiron Sung HK", serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 2px;
}

.blank_letter {
  font-size: 25px;
  color: #9b1111;
}

.info_LINE:before,
.info_TEL:before,
.info_ADD:before,
.info_ADD2:before {
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .contact_content .information_left {
    width: 100%;
  }
}

/*聯絡我們*-表單*/
.contact_form li input.noborder,
.contact_form li textarea.noborder {
  border: 1px #c5b66e solid;
}

.contact_form li.checknumBox .form__insert .tncode {
  border: 1px solid #c5b66e;
  background: linear-gradient(to bottom, #ffffff 0%, #f8f3dd 100%);
  box-shadow: 0 2px 5px #c5b66e;
}

.contact_form li.last blockquote,
.contact_form li.last cite {
  border: 1px solid #c5b66e;
}

.contact_form li.last input {
  font-family: "Chiron Sung HK", serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 2px;
}

.contact_form li.last cite {
  background: #c5b66e;
  color: #fff;
}

.contact_form li.last input:hover {
  color: #fff;
}

.contact_form li.last blockquote:hover {
  background: #c5b66e;
}

.contact_form li.last cite:hover {
  background: #9b1111;
}

@media screen and (max-width: 600px) {
  .contact_form li .form__label {
    background: #c5b66e42;
  }
}


/*footer*/
.box_link {
  display: none;
}

.footer_logo {
  margin-left: auto;
}

.footer_info li p.add2:before {
  content: '營業時間：';
}

.footer {
  background: #ffffff;
}

.footer .center {
  max-width: 1500px;
}

.footer_info {
  grid-template-columns: 250px 1fr;
}

.footer_info ul {
  display: flex;
  justify-content: space-between;
  padding-left: 0px;
}

.footer_menu {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.products-list .name,
.footer_info li {
  font-family: "Chiron Sung HK", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 2px;
}

.footer_info li:nth-child(1) {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}

p.line {
  order: 2;
}

p.tel {
  order: 1;
}

p.add {
  order: 4;
}

p.add2 {
  order: 3;
}

.footer_menu a {
  flex: 0 0 calc(20% - 7.5px);
  box-sizing: border-box;
  text-align: center;
  padding: 10px 0;
  background-color: #fcf9ea;
  text-decoration: none;
  color: #333;
  font-family: "Chiron Sung HK", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 2px;
  border: 0px #ccc solid;
}

.footer_info li p {
  color: #000000;
}

.footer_info li p a {
  color: #000000;
}

.footer_menu a:hover {
  color: #000000;
  background-color: #f8e381;
}

.copy {
  color: #fff3ce;
  border-top: 1px #fff3ce solid;
  background: #9b1111;
}

.copy a {
  color: #fff3ce;
}

@media screen and (max-width: 1024px) {
  .footer_info {
    grid-template-columns: 150px 1fr;
    padding-right: 0;
  }

  .footer_info ul {
    justify-content: space-between;
  }
}

@media screen and (max-width: 768px) {
  .footer_logo {
    margin-left: 0;
  }

  .footer_info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
  }

  .footer_info ul {
    flex-direction: column;
  }

  .footer_menu {
    justify-content: center;
  }
}

@media screen and (max-width: 450px) {
  .footer_menu {
    padding: 0 20px;
  }

  .footer_menu a {
    flex: 0 0 calc(50% - 6.5px);
  }
}

/*內頁BANNER 設定*/
.banner {
  height: 450px;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background: url(https://pic03.eapple.com.tw/daxibucaiku/BANNER1.png) center top;
  z-index: 8
}

.banner h5 {
  display: block;
  position: relative;
  margin-bottom: 25px;
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
}

.banner h5::after {
  content: '【 大溪先天三司財庫官廟 】';
  display: block;
  margin-top: 8px;
  color: #fff3b4;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 1px;
  text-transform: none;
  font-weight: 500;
}

.banner h5,
.banner h5::after {
  font-family: "Chiron Sung HK", serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 5px;
  text-shadow: 1px 1px 2px rgb(45 30 0 / 73%);
}

.banner.banA {}

.banner.banB {
  display: none;
}

.banner.banC {}

.banner.banD {}

.banner.banE {}

.banner.banF {}

.banner.banblog {
  background: url(https://pic03.eapple.com.tw/daxibucaiku/BANNER1.png) center top;
}
@media screen and (max-width: 300px){
  .banner h5::after {
  font-size: 15px;
}  
}
/*to_top*/
/*to top*/
#to_top {
  left: auto;
  right: 29px;
  bottom: 145px;
  margin: 0;
  height: 48px;
  width: 48px;
  color: #ffffff;
  font-family: "Noto Serif TC", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  background: #4c1a93;
  box-shadow: 0;
}

#to_top i.top {
  width: 20px;
  height: 12px;
}

#to_top i.top:before,
#to_top i.top:after {
  height: 10px;
}

#to_top i:before,
#to_top i:after {
  background: #ffffff;
}

@media screen and (max-width: 768px) {
  #to_top {
    right: 11px;
    bottom: 150px;
  }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*一排呈現
.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 {
    display: block;
  }

  .footer.with_shopping_mode {
    padding: 30px 0 70px;
  }

}

@media screen and (max-width: 600px) {}