@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200;300;400;500;600;700;900&display=swap');
@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/

/*顏色
#FFF
#f7f7f7
#364f52
#538266
#dad4c8
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*↓↓↓↓↓↓↓此網站更改↓↓↓↓↓↓↓↓*/
/* = = = = = = = 字型 = = = = = = = =*/
body {
    font-family: 'Noto Serif TC', sans-serif;
    letter-spacing: 1px;
}


.bannerindex::before {
  content: "";
  display: block;
  background-image: url(https://pic03.eapple.com.tw/0422592525/prlogo.png);
  width: 500px;
  height: 500px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  backface-visibility: hidden;         /* 隐藏背面，避免绘制 */
  will-change: transform, opacity;     /* 提前告知浏览器优化 */
  animation: banner-logo 3.2s ease-in-out forwards;
  z-index: 50000001;
  opacity: 0;
}

.bannerindex::after {
  content: "";
  display: block;
  background: #fff;
  width: 100%;
  height: 110%;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  will-change: opacity;                /* 优化透明度动画 */
  animation: banner-bg 3.2s ease-in-out forwards;
  z-index: 50000000;
  opacity: 0.95;
}

@keyframes banner-bg {
  0%   { opacity: 1;   }
  80%  { opacity: 0.75; }
  100% { opacity: 0;    }
}

@keyframes banner-logo {
  0%   {
    opacity: 0;
    transform: translate(-50%, -50%) rotateY(90deg) scale(0.8);
  }
  50%  {
    opacity: 1;
    transform: translate(-50%, -50%) rotateY(0deg)  scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) rotateY(-90deg) scale(0.8);
  }
}


/* = = = = = = = 大圖滿版 = = = = = = = =*/
.swiper-banner .swiper-slide img {
    width: 100%;}

/* = = = = = = = header = = = = = = = =*/
.header_area {
	background: #fff;
	padding: 0px ;
    position: sticky;
}
.main_header_area .container {
    max-width: 1600px;}       

/*下滑header */
.header_area.sticky {
    position: fixed;
    background: rgb(255 255 255 / 100%);
    border: solid 1px rgba(255, 255, 255, 0.1);
}

/*logo*/
.nav-header {max-width: 200px; transition: 0.6s;}
.navigation {grid-template-columns: 200px 1fr;}
/* ---------- LOGO 容器 ---------- */
.nav-brand {
    display: block;
    max-width: 100%;
    margin: 0 auto;

    /* 加入淡入動畫 */
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.5s;
}
.nav-brand img {    padding: 5px 0;   display: block;
    max-width: 100%;

    /* 呼吸效果（輕微縮放） */
    animation: breathe 4s ease-in-out infinite;
    transform-origin: center center;}
.header_area.sticky .nav-header {
    max-width: 165px;
    transition: 0.6s;
}
/* ---------- 關鍵影格：淡入 ---------- */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- 關鍵影格：呼吸（縮放） ---------- */
@keyframes breathe {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/*小icon隱藏*/
.tp_links,.me_tp_features  {
    display: none;
}

/*購物車*/
.shop_search_btn {
    background: #013d3b;
}
.box_search input[type=text] {border: solid 1px #f4f1ea;}
.me_tp_features a {color: #fff;}

/*按鈕*/

.stellarnav > ul > li > a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: #364125;
    padding: 35px 10px 0;
    height: 75px;
    overflow: hidden;
    transition: color 0.3s ease;
}


.stellarnav > ul > li > a b:nth-child(2) {
    font-size: 13px;
}

.header_area.sticky .stellarnav li.has-sub > a:after {
    border-top: 6px solid #ababab;
}
/* 基礎樣式 */
.stellarnav > ul > li > a:nth-of-type(1)::before {
  content: '';
  background: url(https://pic03.eapple.com.tw/0422592525/pen.png) no-repeat;
  background-size: contain;
  width: 27px;
  height: 27px;
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* 平滑過渡曲線 */
}

/* 脈搏跳動動畫 (常駐) */
@keyframes pulse {
  0% { transform: translateX(-50%) scale(1) rotate(0deg); }
  50% { transform: translateX(-50%) scale(1.18) rotate(2deg); }
  100% { transform: translateX(-50%) scale(1) rotate(0deg); }
}
.stellarnav > ul > li > a:nth-of-type(1)::before {
  animation: pulse 3s ease-in-out infinite;
}

/* 懸浮時強化動畫 */
@keyframes hoverSpin {
  0% { transform: translateX(-50%) scale(1.1) rotate(0deg); }
  25% { transform: translateX(-50%) scale(1.15) rotate(8deg); }
  50% { transform: translateX(-50%) scale(1.1) rotate(0deg); }
  75% { transform: translateX(-50%) scale(1.15) rotate(-8deg); }
  100% { transform: translateX(-50%) scale(1.1) rotate(0deg); }
}
.stellarnav > ul > li > a:nth-of-type(1):hover::before {
  animation: hoverSpin 1.5s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.6)); /* 金色光暈增強懸浮感 */
}

/* 點擊瞬間效果 */
.stellarnav > ul > li > a:nth-of-type(1):active::before {
  transform: translateX(-50%) scale(0.9);
  filter: brightness(0.9);
  transition: all 0.1s;
}


/*按鈕下拉*/
.stellarnav li a {
	font-size: 14px;
	color: #fff;
}
.stellarnav li li {
	border: none;
    background-color: rgb(146 146 146 / 20%);
    -webkit-backdrop-filter: saturate(180%) blur(5px);
    backdrop-filter: saturate(180%) blur(5px);
    transition: opacity .2s;
}
.stellarnav li li:hover {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}
.stellarnav ul ul {background: #7dae4b;}

@media screen and (max-width: 1440px) {
.nav-header {

	padding-left: 30px;
}
.header_area.sticky .nav-header {
    max-width: 220px;}
}



/*大圖特效*/

#content_main {  margin: 0;}
.bannerindex { position: static; height: auto;}
.swiper-banner { position: static; margin: 0; height: auto;}
.swiper-slide { padding: 0px !important;}

.swiper-slide img { height: auto;}
.swiper-pagination { display: none;}
.swiper-slide { position: relative;}
.bannerindex .swiper-slide.swiper-slide-active:before {content: ""; position: absolute;  z-index: 999; pointer-events: none;}
.bannerindex .swiper-slide.swiper-slide-active:after {content: ""; position: absolute;  z-index: 999; pointer-events: none;}
@media screen and (max-width: 768px) {
    .bannerindex { padding:0; margin:0;}
	.header_area { position: unset;}
    }

/*第一張大圖*/

.bannerindex .swiper-slide.swiper-slide-active:nth-child(1):before {
    background: url(https://pic03.eapple.com.tw/0422592525/pre_1.png);
    background-size: contain;
    background-repeat: no-repeat;
    bottom: 10%;
    right: 10%;
    width: 35% !important;
    height: 60% !important;
    background-position: left;
    padding-bottom: calc(100% / 1* 0.12);
}



.bannerindex .swiper-slide.swiper-slide-active:nth-child(1):before { animation:fade-in-top 1.3s cubic-bezier(.1,.300,.400,0.2) both}


/*第二張大圖*/
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2):before {
    background: url(https://pic03.eapple.com.tw/0422592525/pre_2.png);
    background-size: contain;
    background-repeat: no-repeat;
    bottom: 10%;
    right: 5%;
    width: 50% !important;
    height: 60% !important;
    background-position: left;
    padding-bottom: calc(100% / 1* 0.1);
}


.bannerindex .swiper-slide.swiper-slide-active:nth-child(2):before { animation:fade-in-top 1.3s cubic-bezier(.1,.300,.400,0.2) both}


  @keyframes fade-in-top {
    0% {
      -webkit-transform: translateY(-50px);
              transform: translateY(-50px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      opacity: 1;
    }
  }

  @keyframes fade-in-right {
    0% {
      -webkit-transform: translateX(50px);
              transform: translateX(50px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      opacity: 1;
    }
  }
  
  
/* = = = = = = = footer = = = = = = = =*/
/*footer icon按鈕隱藏*/
.box_link {display: none;}
.footer_menu a:nth-of-type(1) {display: none;}

/*footer*/
.footer {background:#f8f9f6;}
.footer_info li p, .footer_info li p a {color: #000;}
.footer_info li {padding: 0 10px 10px;}
.footer_menu a {
    padding: 5px 10px 5px 0;
    border: 0px #354e51 solid;
    margin: 0 4px 4px 0;
    color: #79AD31;
    background: transparent;
}
.footer_menu a:hover {
    background: transparent;
    color: #c7a47a;
}
.copy {
    color: #fff;
    border-top: 0px #ddd solid;
    background: #75a341;
}
.copy a, .copy a:hover {
    color: #fff;
}

/*footer logo*/
.footer_logo {max-width: 175px; margin-left: 10px;}

/*置頂按鈕*/
#to_top {
	color: #013d3b;
    font-weight: bold;
    background: #f4f1ea;
}
#to_top i:before, #to_top i:after {
	background: #013d3b;
}
#to_top i.top:before, #to_top i.top:after {
	width: 2px;
}

/* = = = = = = = banner = = = = = = = =*/
.path {display: none;}
.banner {
    background: url(https://pic03.eapple.com.tw/0422592525/banner.jpg) center top;
    background-repeat: no-repeat;
    background-size: cover;
    height: 350px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    transition: all 8s ease;
}


.banner h5 {
    font-size: 35px;
    color: #547720;
    letter-spacing: 3px;
    padding-top: 0px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    animation: bounce 2s infinite alternate;
}

@keyframes bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

.banner h5::after {
    color: #fff;
    background: #547720;
    padding: 3px 10px;
    border-radius: 20px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
	 font-size: 14px;
    display: block;
    margin-top: 15px;
}

.banner.banC h5::after {
    content: "Inquiry";
   
   
}
.banner.banblog h5::after {
    content: "News";
    
}

.banner.banF h5::after {
    content: "Course";
    
}

.banner.banE h5::after {
    content: "Portfolio";
    
}

.banner.banB {
    display:none;
  
}

.other_page .banner, .services_page .banner {display: none;}

/* = = = = = = = 購物車 = = = = = = = =*/
/*外層*/
.products-list .price b {
    color: #364f52;display:none;}
.products-list .more {
    border: 1px solid #364f52;
    color: #364f52;
}
.products-list .item a:hover .more {
    background: #75a341;}
.product-layer-two li a {
      background:#568267;
    color: #ffffff;
}  
.product-layer-two li a:hover{
      background:#75a341;
  
}    

/*內層*/
.sidebarBtn .sp_price {color: #bf0f0f;}
.sidebarBtn {
    padding: 25px;
    border: 0px #ddd solid;
    background: #fff;
    box-shadow: 0 0 5px #5555553b;
    border-radius: 15px;
}
.inquiry_a3 {
    background: #538266;
}
.inquiry_a1 {
    background: #568267;
}
.inquiry_a2 {
    background: #959189;
}


/*推薦*/
.prod_related {
    background: #F7F7F7;}
.prod_related h6 span:before {
    color: #013d3b;
}
.lastPage {
    color: #fff;
    background:#568267;
    border-radius: 10px;
}

/*購物車-訂購頁*/
.shopping-cart .cart_head {
    background: #005757;}
.shopping-cart .cell.product_name p {color: #555;}
.shopping-cart .cart_content .row {
    border-bottom: 1px solid #027373;
    color: #555;
}
.fa-remove:before, .fa-close:before, .fa-times:before {
    color: #555;
}
.contact_le_map a {background: #77a349;}
.total_amount li {color: #555;}
.rewrite_simple {
    background: #057979 url(../images/simple_left.png) 10% center no-repeat;
}
.send_simple {
    background: #057979 url(../images/simple_right.png) 88% center no-repeat;
}

/*購物車-訂購資料*/
.form label, .formbox_form, .form label.Bigcheck {color: #555;}
.declaration {
    background: #d9d9d9;}
.border200, .total_amount li input[name=DiscountCode] {color: #555;}

/*購物車-訂購完成*/
.animated-arrow {
    background: #538266;
    border-radius: 10px;}
.order_list_tit span {
    color: #057979;
    border-bottom: 1px #057979 solid;
}
.payer {
    background: #013d3b;
}
.order_list_tab td:nth-child(1) {color: #013d3b;}
.order_list_head p {
    color: #555;
    border-bottom: 2px #057979 solid;}
.order_list_pro tr:first-child td {
    color: #555;}
.order_list_pro tr:first-child {
    background: #057979;
}  
.last_box_money p, .last_box_money em {color: #555;}


/* = = = = = = = 文管 = = = = = = = =*/
/*外層*/
h5.blog_le_t {
    font-size: 23px;
    font-family: 'Noto Serif TC', sans-serif;
    font-weight: 600;
}
h5.blog_le_t span {
    font-size: 15px;
}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {
    background: #538266 !important;
}
.subbox_item a:after {
    background: none;
    opacity: 1;
    border: none;
    border-bottom: 1px #538266 solid;
}
.subbox_item a:before {
    opacity: 1;
    font-size: 13px;
    color: #057979;
}
.subbox_item a:hover:before {
    color: #364f52;
}
.subbox_item a:hover:after {
    border-bottom: 1px #87cdba solid;
}
.subbox_item a {padding-bottom: 45px;}


/*改排版-直式*/
.blog_subbox {
    grid-template-columns: 1fr 1fr 1fr;
}
.subbox_item a {grid-template-columns: 1fr;}
/*改排版-直式結束*/


/*內層*/
.blog_back a.article_btn_prev, .blog_back a.article_btn_next {
    background: #364f52;
}
.blog_back a.article_btn_back {
    background: #7dae4b;
}

/*相關文章*/
.news_related {
    background: #F7F7F7;}
.news_related h6 span:before {
    content: '相關消息';
    color: #013d3b;
} 


/* = = = = = = = 表單 = = = = = = = =*/   
.list_before.info li {
    padding-left: 50px;
}
.blank_letter {
    color: #364f52;
    font-family: 'Noto Serif TC', sans-serif;
}
.contact_content .information_right {
    width: calc(100% - 305px);
}
.contact_form li:has(input[type=checkbox]) .form__insert, .contact_form li:has(input[type=radio]) .form__insert {
    grid-template-columns: repeat(auto-fit, minmax(13px, 13px) minmax(200px, 1fr));
}
.contact_form li.last cite {
    background:#77a349;
    color: #fff;
}

/* = = = = = = = 相簿 = = = = = = = =*/   
.overlay {background: #013d3b5c;}
.other_album_choice li {
    background: #538266;}

/*瀑布流*/
.pic-list .show_pic {
    height: auto;
    aspect-ratio: auto;
}
.pic-list .item {
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
    padding: 0;
    margin: 0;
}
.pic-list {
    display: inline-block;
    grid-template-columns: none;
    grid-gap: 0;
    -moz-column-count: 3;
    -moz-column-gap: 10px;
    -webkit-column-count: 3;
    -webkit-column-gap: 10px;
    column-count: 3;
    column-gap: 10px;
    width: 100%;
    margin: 0 auto;
}


/* = = = = = = = page = = = = = = = =*/
.page, .page li a {color: #555;}
.page strong, .page a:hover {
    color: #fff;
    border: 1px solid #538266;
    background: #538266;
}

/* = = = = = = = 首頁文管 = = = = = = = =*/

.i_blog_le{border-radius:50px;}
.i_blog_ri h5 {color: #555;}
.module_i_news li a {grid-template-columns: 1fr;}
.module_i_news ul {grid-template-columns: 1fr 1fr 1fr 1fr;}
.module_i_news li {position: relative;}
.module_i_news {
    padding: 65px 20px;
    background: #ffffff;
}
.module_i_news .title_i_box h6 {
    font-size: 14px;
    color: #538266;
}
.module_i_news .title_i_box {
    margin-bottom: 30px;
    text-align: center;
    
}
.module_i_news .title_i_box h4{
	font-size: 40px;
    font-weight: 800;
    color: #86583F;}
.module_i_news section {
    max-width: 1400px;}

.module_i_news li a:after {border: 0px #ddd solid;}




/* = = = = = = = 暫時 = = = = = = = =*/



@media screen and (max-width: 1200px) {
/*    首文管*/
.module_i_news ul {
    grid-template-columns: 1fr 1fr;
}
.module_i_news li::before {left: -2%;}
.module_i_news li:after {right: -2%;}

}

@media screen and (max-width: 1100px) { 
/*HEADER按鈕文字*/
    .stellarnav > ul > li > a {
    font-size: 14px;}
/*文管-外層*/
.blog_subbox {
    grid-template-columns: 1fr 1fr;
}

}
@media screen and (max-width: 1024px) {
/*header*/
.nav-header, .footer_logo, .header_area.sticky .nav-header {
    max-width: 200px;}
.me_tp_features {margin: 0;}   



}
@media screen and (max-width: 768px) { 
/*banner*/
.banner {
    height: 300px;
}

/*表單*/
.contact_content .information_right {
    width: 100%;
}

/*瀑布流*/
.pic-list {
    -moz-column-count: 2;
    -webkit-column-count: 2;
    column-count: 2;
}

/*HEADER寬度*/
.main_header_area .container {
    max-width: 100%;
}
/*header*/
.header_area {padding: 10px;}
.me_tp_features {display: none;}
.header_area {
        padding: 10px;
        padding-bottom: 0;
    }    
/*漢堡按鈕*/

.header_area.sticky .menu-toggle span.bars span {background: #585858;}
.header_area.sticky .menu-toggle:after {color: #585858;}
/*手機底部*/
#bottom_menu {display:none;background: #f4f1ea;}
#bottom_menu li a {color: #013c3a;}
/*側邊選單*/
.stellarnav.mobile ul {background: #364f52;}
.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {background: #364f52;}
.stellarnav .icon-close:before, .stellarnav .icon-close:after {border-bottom: solid 2px #f4f1ea;}
.stellarnav a {color: #f4f1ea;}
.stellarnav.mobile > ul > li {border-bottom: 1px #4a696d solid;}
.stellarnav > ul > li > a {color: #f4f1ea;}
.stellarnav > ul > li > a:hover {
    color: #f4f1ea;
    font-weight: 500;}
.stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul {border-right: 0px #eee solid;}
.stellarnav a.dd-toggle .icon-plus:before, .stellarnav a.dd-toggle .icon-plus:after {border-bottom: solid 2px #7ba9af;}
.stellarnav.mobile li.open {
    background: #538266;}
.stellarnav.mobile li a {
    border-bottom: 0px solid rgba(255, 255, 255, .15);
}  
.stellarnav li li {
    background-color: rgb(146 146 146 / 0%);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
} 
.header_area.sticky {backdrop-filter: none;} 
.header_area.sticky .stellarnav > ul > li > a {
    color: #f4f1ea;
}
.header_area.sticky .stellarnav li a {
    color: #fff;
}

/*首頁文館*/
.module_i_news li {border-bottom: 0px #eee solid;}

}

@media screen and (max-width: 600px) {
/*    表單*/
.contact_form li .form__label {background: rgb(84 121 111 / 7%);}

}

@media screen and (max-width: 500px) {
/*文管-外層*/
.blog_subbox {
    grid-template-columns: 1fr;
}
.module_i_news li:before, .subbox_item:before {display: none;}
.module_i_news li:after, .subbox_item:after {display: none;}

/*    首文管*/
.module_i_news ul {
    grid-template-columns: 1fr;
}
.module_i_news {
    padding: 25px 20px;
}
.module_i_news .title_i_box {
    margin-bottom: 10px;}

/*瀑布流*/
.pic-list {
    -moz-column-count: 1;
    -webkit-column-count: 1;
    column-count: 1;
}    

 }



/*↑↑↑↑↑↑↑↑此網站更改結束↑↑↑↑↑↑↑↑*/


/*上方選單解除滑動固定
.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 #content,.product_page #content{ background: url(https://pic03.eapple.com.tw/0422592525/bg.jpg) center top;
    background-repeat: no-repeat;
    background-size: cover;
 }
.pd_tabTitle li {
    display: none;}
/* .product_info_page .main_part { max-width:1200px;} */
.pd_tabTitle li.activeTab a {display: none;}
.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%;}
.prod_tabs {
    margin-top: 25px;
}
.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;background: #ad907a;}
.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;}
.products-list .pic {aspect-ratio: 3.5 / 5;}
.product_info_page .product-layer-two { display: none;}
.product_info_page .products-list,
.product-wrapper { width: 100%;}
.products-list .pic img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20% 20% 10px 10px; /* 蘑菇形狀 */
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.i_prod_tit span, .i_video_tit span  {
    font-size: 40px;font-weight: 800;
    color: #86583F;
	
}
.products-list .pic:hover img {
    transform: scale(1.15);
    border-radius: 30% 30% 10px 10px;
    box-shadow: 0 10px 25px rgba(239, 71, 111, 0.4);
}
.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;grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));}
.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 {}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*一排呈現
.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-top: 30px;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0;
}
#to_top { bottom:60px;}
}

@media screen and (max-width: 600px) { 
    body {font-weight: 600;}
    .module_i_news .title_i_box h4, .i_blog_ri h5,  {font-weight: 600;}
    .total_amount li b {
    font-weight: 600;
}
}



.info_fix_links {
    display: flex !important;}
.info_fix>span {display:none;}
.info_fix_links a.info_fix_fb {
    background: #315fb0d8;
}
.info_fix_links a.info_fix_line {
    background: #599d4ad8;
}
.info_fix_links a.info_fix_tel {
    background: #e24242d8;
}
.info_fix_links a.info_fix_mail {
    background: #53771f;
}
.info_fix_links a:hover {
    background: #865842;
}	

.product_info li span {
    display: none;
}