@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Russo+One&display=swap');

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/
body {
    font-family: 'Noto Serif TC', serif;
}

&::-webkit-scrollbar {
    background: #fff;
    width: 7px;
}

&::-webkit-scrollbar-button {
    background: #fff;
    border-radius: 0;
}

&::-webkit-scrollbar-track-piece {
    background: #eee;
}

&::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #000000;
}

&::-webkit-scrollbar-track {
    box-shadow: transparent;
}

/*反白顏色*/
::-moz-selection {
    background-color: #818181;
    color: #fff;
}

::selection {
    background-color: #818181;
    color: #fff;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
body {
    overflow-x: hidden;
}

.tp_links {
    display: none;
}

/* 📘 出場 Logo 圖層 */ 
.pageIndex #page::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: url(https://pic03.eapple.com.tw/0229605005/pre_logo.png) center center no-repeat;
    background-size: 350px auto;
    animation: logoAppearBlur 1.6s ease-out forwards; /* 出場時間縮短 */
    pointer-events: none;
}

/* 💧 背景漸層動畫層 */
.pageIndex #page::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    background-image: linear-gradient(150deg, #669FFF, #f9fdff, #c7e6f3);
    background-size: 250% 250%;
    width: 100%;
    height: 100%;
    z-index: 9998;
    pointer-events: none;
    animation: smoothGradientWash 2.2s ease-in-out both; /* 縮短漸層出場時間 */
    opacity: 0.9;
}

/* ☁️ 模糊遮罩層 */
.pageIndex .bannerindex::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(9px) brightness(1.05);
    z-index: 999;
    animation: fogFadeAway 2.8s ease-in-out forwards; /* 淡出時間稍縮短 */
    pointer-events: none;
    mix-blend-mode: screen;
}

/* 🌀 LOGO 動畫：微放大 + 淡出 + 模糊 */
@keyframes logoAppearBlur {
    0% {
        opacity: 1;
        transform: scale(1);
        backdrop-filter: blur(0px);
    }
    80% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        transform: scale(1.1);
        backdrop-filter: blur(5px);
    }
}

/* 🎨 背景動畫：漸層流動 + 淡出 */
@keyframes smoothGradientWash {
    0% {
        background-position: 0% 50%;
        opacity: 1;
    }
    50% {
        background-position: 100% 50%;
        filter: blur(4px);
    }
    100% {
        background-position: 0% 50%;
        opacity: 0;
    }
}

/* 🌫️ 遮罩模糊淡出 */
@keyframes fogFadeAway {
    0% {
        backdrop-filter: blur(10px) brightness(1.05);
        opacity: 1;
    }
    100% {
        backdrop-filter: blur(0px) brightness(1);
        opacity: 0;
    }
}

/* 🎬 大圖區塊動畫效果 */


.bannerindex .swiper-slide.swiper-slide-active:nth-child(1)::after {
    content: "";
    position: absolute;
    width: 680px;
    height: 123px;
    left: 32%;
    top: 48%;
    transform: translate(-50%, -50%) translateY(50px) scale(0.95);
    background-image: url(https://pic03.eapple.com.tw/0229605005/pic_pr12.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1001;
    opacity: 0;
    pointer-events: none;

    /* 動畫設定：快出現 + 停久 + 光暈閃爍 */
	
     animation:
        image-tracking-in-contract 1.8s cubic-bezier(0.215, 0.610, 0.355, 1.000) both,
    glowPulse 3.5s ease-in-out 2.5s infinite;       /* 等 2.5s 後開始閃爍 */
}

/* 🪄 彈跳進場動畫 */
@keyframes bounceInUpCenter {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) translateY(50px) scale(0.95);
    }
    60% {
        opacity: 1;
        transform: translate(-50%, -50%) translateY(-10px) scale(1.05);
    }
    80% {
        transform: translate(-50%, -50%) translateY(5px) scale(1);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) translateY(0) scale(1);
    }
}


/* ✨ 光暈閃爍動畫 */
@keyframes glowPulse {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(255, 255, 255, 1));
    }
}


/* 大圖上的特效：置中旋轉圖片 */
.bannerindex .swiper-wrapper .swiper-slide:nth-child(1)::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80vw;
    height: 80vh;
    transform: translate(-50%, -50%) rotate(0deg);
    background: url(https://pic03.eapple.com.tw/0229605005/pic_pr1.png) no-repeat center center;
    background-size: contain;
    z-index: 1000; /* 高於背景模糊層但低於Logo出場動畫層 */
    animation: rotation 200s linear infinite;
    pointer-events: none;
}

@keyframes rotation {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* ✅ 修正第二張圖的 before 樣式 */
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2)::before {
    content: ""; /* 必須添加 */
    position: absolute; /* 必須添加 */
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%); /* 修正初始位置 */
    background-image: url(https://pic03.eapple.com.tw/0229605005/pic_pr2.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1000;
    pointer-events: none;
    animation: 
        subtlePulse 3s ease-in-out infinite; /* 確保動畫名稱匹配 */
}

/* ✅ 修正動畫關鍵幀 - 保留基礎位移 */
@keyframes subtlePulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1); 
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.03) translateY(-5px); 
    }
}
/* 应用到第二张幻灯片的伪元素 */
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2)::after {
  /* 确保动画属性被应用 */
  animation: 
    image-tracking-in-contract 1.8s cubic-bezier(0.215, 0.610, 0.355, 1.000) both,
    glowPulse 3.5s ease-in-out 2.5s infinite;
  
  /* 重置初始位置 */
  left: 25%;
  top: 75%;
  transform: translate(-50%, -50%);
  
  /* 其他属性保持不变 */
  content: "";
  position: absolute;
  width: 485px;
  height: 78px;
  background-image: url(https://pic03.eapple.com.tw/0229605005/pic_pr22.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1001;
  pointer-events: none;
}
/* 图片元素追踪收缩动画 */
@keyframes image-tracking-in-contract {
  0% {
    transform: translateX(150px) scale(1.8);
    opacity: 0;
    filter: blur(12px);
  }
  40% {
    opacity: 0.6;
    filter: blur(4px);
  }
  100% {
    transform: translateX(0) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
/* 光晕闪烁动画 */
@keyframes glowPulse {
  0%, 100% {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 1));
  }
}
.bannerindex .swiper-slide.swiper-slide-active:nth-child(1)::before{ pointer-events: none;}
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2)::before{ pointer-events: none;}
/* ============================== */
@media screen and (max-width: 768px) {
.bannerindex .swiper-slide.swiper-slide-active:nth-child(1)::before {
    width: 150px;
    height: 100px;
    left: 32%;
    top: 50%;

}
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2)::before {

    width: 150px;
    height: 100px;
    left: 50%;
    top: 46%;

}
}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*背景*/
#content {
    background-size: cover;
}

#content_main {
    width: 100%;
    min-height: 80vh;
    overflow: hidden;
    z-index: 60;
    position: relative;
    margin-top: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
}

body.product_page #content {
    min-height: 80vh;
       background-size: cover;
}

body.blog_page #content {
    min-height: 80vh;
    background-size: cover;
}

#to_top {
    position: fixed;
    left: 0px;
    z-index: 600;
    width: 50px;
    height: 50px;
    padding-top: 10px;
    font-size: 12px;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    background: #59a9c7;
    border-radius: 0%;
}

#to_top i:before, #to_top i:after {
    content: "";
    display: block;
    position: absolute;
    border-radius: 100px;
    background: #ffffff;
    transition: all 100ms ease-in-out;
}




/*上方選單解除滑動固定
.header_area.sticky { position:relative;}*/

/*Main/＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/


/*header*/

 .header_area{
    display: none;
    opacity: 0;
	padding:0px;
    animation: text-focus-in 0.6s cubic-bezier(.55,.085,.68,.53) both
  }
  
.header_area.sticky{
    display: block;
    opacity: 1;
    
  }
  
  @-webkit-keyframes text-focus-in {
      0% {
        -webkit-filter: blur(12px);
                filter: blur(12px);
        opacity: 0;
      }
      100% {
        -webkit-filter: blur(0px);
                filter: blur(0px);
        opacity: 1;
      }
    }
    @keyframes text-focus-in {
      0% {
        -webkit-filter: blur(12px);
                filter: blur(12px);
        opacity: 0;
      }
      100% {
        -webkit-filter: blur(0px);
                filter: blur(0px);
        opacity: 1;
      }
    }
 .navigation {  grid-template-columns: 280px 1fr; PADDING-LEFT: 55PX;}
 .nav-header {  max-width: 280px;}
.header_area {   position: fixed;   width: 100%;}/**/
.header_area.sticky {
    width: 100%;
    z-index: 9999;
    background: rgba(255, 255, 255);  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.main_header_area .container {   max-width: 100%;}
.pageIndex .sticky .header_area {   position: fixed;   width: 100%;}
.pageIndex .sticky .main_header_area,.main_header_area {   
    background: #ffffff00;
     transition: all 0.3s;
}

.sticky .main_header_area{background:transparent 0;   transition: all 0.3s; } 

/*LOGO*/
.nav-brand {width: 280px;}
.pageIndex  .nav-brand img {  filter: contrast(0) brightness(100); }
.pageIndex .sticky .nav-brand img {  transition: all 0.3s;  filter: none;}

/*選單*/
.stellarnav > ul> li:nth-of-type(1) {
  display: none;
}
.stellarnav > ul > li > a, .stellarnav li.has-sub > a {
    font-weight: 400;
    position: relative;
    padding: 0;
    color: #000000;
    padding: 0 0px 0 0;
    margin: 0 20px;
    font-size: 15px;
    letter-spacing: 2px;
}

.stellarnav > ul > li:hover > a,
.stellarnav > ul > li.has-sub:hover > a {
	color: #0b6b9f;
	animation: glow 1s infinite alternate;
	font-weight: 600;
}
@keyframes glow {
    0% {
        text-shadow: 0 0 4px rgba(255, 255, 255, 0.753),
                     0 0 8px rgba(255, 255, 255, 0.3);
    }
    50% {
        text-shadow: 0 0 6px rgba(255, 255, 255, 0.897),
                     0 0 12px rgba(255, 255, 255, 0.5);
    }
    100% {
        text-shadow: 0 0 4px rgba(255, 255, 255, 0.801),
                     0 0 8px rgba(255, 255, 255, 0.3);
    }
}

.stellarnav > ul:hover > li {
    opacity: .8;
    transition: .3s ease-in-out;
}
.stellarnav > ul:hover > li:hover {
    opacity: 1;
    transition: .3s ease-in-out;
}

/*最後一顆按鈕*/
.stellarnav > ul > li:nth-last-child(1) > a{margin: 0;}

/*下拉*/
.stellarnav ul ul, .stellarnav ul ul ul { backdrop-filter: blur(10px);}
.stellarnav > ul > li.drop-left > ul { right: auto; left: 50%; transform: translateX(-50%);}
.stellarnav li.drop-left ul ul { left: 100%; right: auto;}
.stellarnav li li { border: 1px solid transparent;  background: #deeef5;}

/*右拉箭頭*/
.stellarnav li.has-sub > a:after{display: none;}
.stellarnav li li.has-sub > a::after { border-left: 6px solid  var(--TextColor_5);}
.stellarnav li li.has-sub:hover > a::after { border-left: 6px solid var(--TextColor_4); border-top: 6px solid transparent;}

/*下拉選單*/
.stellarnav li.has-sub > ul > li.has-sub > a, .stellarnav li.has-sub > ul > li > a { color: var(--TextColor_5); padding: 7px 20px 7px 5px;}
.stellarnav li li > a, .stellarnav li li.has-sub > a { color:  var(--TextColor_5); font-size: 15px; font-weight: normal; padding: 7px 5px; border-left: 1px solid transparent; background: transparent; transition: all 0.3s;}
.stellarnav li li:hover > a, .stellarnav li li.has-sub:hover > a { color: var(--MainColor); padding-left: 10px; transition: all 0.3s;}
.stellarnav li ul:hover li, .stellarnav li ul li.has-sub ul:hover li { opacity: .5; transition: .3s ease-in-out;}
.stellarnav li ul:hover li:hover , .stellarnav li ul li.has-sub ul:hover li:hover { opacity: 1; transition: .3s ease-in-out;}
.stellarnav li ul:hover li > a, .stellarnav li ul li.has-sub ul:hover li > a { opacity: .9; transition: .3s ease-in-out;}
.stellarnav li ul:hover li:hover > a, .stellarnav li ul li.has-sub ul:hover li:hover > a { opacity: 1; transition: .3s ease-in-out;}

.stellarnav > ul > li:nth-last-child(1) {
    background: rgb(255,91,101);
	padding: 10px;
	
}
.stellarnav > ul > li:nth-last-child(1):hover a {
    color: white !important;
}
.stellarnav > ul > li:nth-last-child(1) a {
    transition: color 0.3s ease;
    color: #6c0000 !important;
    font-weight: 900;
    animation: textBlink 2s infinite;
}

/* 閃爍動畫 */
@keyframes textBlink {
    0%, 100% {
        opacity: 1;
        text-shadow: 0 0 6px #ff0000, 0 0 12px #ff5555;
    }
    50% {
        opacity: 0.6;
        text-shadow: none;
    }
}

@media screen and (max-width: 1024px) {
    /*header*/
    .pageIndex .header_area {   position: relative;}
    .header_area.sticky {   position: fixed;}
    .pageIndex .main_header_area {  background: rgb(255 255 255 / 45%) 0;}
   
    /*LOGO*/
    .pageIndex .nav-brand img {filter: contrast(0) brightness(100); }
}

@media screen and (max-width: 768px) {

  .header_area {
    display: block !important;
    opacity: 1 !important;
    animation: none !important;
  }
   .nav-brand {
	    width: 200px;
        PADDING: 8PX 0PX;
    }
	.header_area {background: #f6fdff;}

/*手機側邊選單*/

.pageIndex .stellarnav .menu-toggle span.bars span {   background:#2197c1;}
.sticky .stellarnav .menu-toggle span.bars span {  }
.pageIndex .stellarnav .menu-toggle:after {  color: #2197c1;    }
.sticky .stellarnav .menu-toggle:after {   }
.stellarnav .menu-toggle span.bars span {   background:#2197c1;}
.stellarnav .menu-toggle:after {     color: #2197c1;}

.stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul {  max-width: 100%;   background: #fdf6ebf5;  backdrop-filter: saturate(100%) blur(10px);  transition: all 1s;   left: 0;}
.stellarnav.mobile.left .close-menu {      background: none;          color: #3f3a35; }
.stellarnav .icon-close:after {    border-bottom: solid 3px #3f3a35;}
.stellarnav .icon-close::before {    border-bottom: solid 3px #3f3a35;}
.stellarnav a.dd-toggle .icon-plus:after {    border-bottom: solid 3px #3f3a35;}
.stellarnav a.dd-toggle .icon-plus:before {    border-bottom: solid 3px #3f3a35;}
.stellarnav > ul > li:not(.tp_links) > a:before {display: none;}
.stellarnav .menu-toggle, .stellarnav .call-btn-mobile, .stellarnav .location-btn-mobile, .stellarnav .close-menu { padding: 14px 15px;     position: relative; }
.stellarnav.mobile ul {    background: none;  }
.stellarnav.mobile li.open li.open {     background: transparent;}
.stellarnav.mobile li.open {   background: none;  }
.stellarnav.mobile > ul > li {         border-bottom: 1px #3f3a35 solid; text-align: center;     margin: 0px 30px; }
.stellarnav > ul > li:after {display: none;}
.stellarnav li li {   border-bottom: 1px #372d2d solid; border: none;    margin-bottom: 0px; }
.stellarnav>ul>li>a {display: inline-block;width: 100%;}
.stellarnav > ul > li:nth-last-child(1) > a{margin: 0 20px;}
/**/

.pageIndex .main_header_area, .main_header_area {  background:transparent;}
.sticky .main_header_area {  backdrop-filter:unset;}
.stellarnav > ul > li > a, .stellarnav li.has-sub > a {  color: #3f3a35;}
.stellarnav > ul > li > a:hover,.stellarnav li.has-sub > a:hover {color: #baa899;}
.stellarnav > ul > li:hover > a, .stellarnav > ul > li.has-sub:hover > a { color: #baa899;}


/*LOGO*/
.pageIndex .nav-brand img {filter: none; }
.me_tp_features{ display: none;}
}


.banner.banB {
    display: none;
}
body.other_select_page .banner.banA {
    display: none !important;
}

.banner {
    background: url(https://pic03.eapple.com.tw/0229605005/banner.jpg);
    position: relative;
    background-position: center;
    background-size: cover;
    /* background-attachment: fixed; */
    background-repeat: no-repeat;
    flex-direction: column;
    height: 30vw;
    max-height: 384px;
    overflow: hidden; /* 防止偽元素超出 */
}

.banner::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 380px;
    height: 380px;
    background: url(https://pic03.eapple.com.tw/0229605005/pre_ban.png) no-repeat center;
    background-size: contain;
    transform: translate(-50%, -50%) rotate(0deg);
    animation: fadeInSpin 30s linear infinite;
    z-index: 1;
    pointer-events: none;
    opacity: 0; /* 一開始隱形 */
}

@keyframes fadeInSpin {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(0deg);
    }
    10% {
        opacity: 1; /* 前 10% 慢慢淡入 */
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) rotate(360deg);
    }
}



.banner h5 {      font-size: 28px;
    position: relative; /* 需要 position 才能套用 z-index */
    z-index: 2;     
   
}

@media screen and (max-width: 768px) {
    .banner {
        background-position: 70%;
        min-height: 45vw;  background-size: unset;
     }
	.banner h5 {
	font-size: 22px;
     padding-top: 30px;   
}
.banner::before {
       width: 350px;   top: 55%;   
}
}
@media screen and (max-width: 600px) {
    .banner {
        background-position: 70%;
        min-height: 67vw;  background-size: unset;
     }
	.banner h5 {
	font-size: 22px;
     padding-top: 30px;   
}
.banner::before {
       width: 250px;   top: 55%;   
}
}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*頁碼*/
.path p, .path p a {
    display: none;
    text-align: right;
    line-height: 24px;
    font-size: 13px;
    color: #3d3938;
}




/*按鈕*/
.animated-arrow {
    background:#857243;
    color: #fff;
    display: inline-block;
    margin-top: 20px;
    height: 50px;
    line-height: 50px;
    overflow: hidden;
    width: 250px;
    text-align: center;
    position: relative;
	  border-radius: 40px;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
.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);
}
/*購物車/＝＝＝＝＝*/
.prod_part {    width: 90%;}
.products-list {    display: grid;    gap: 10px;    grid-template-columns: 1fr 1fr 1fr;}
.products-list:before{content:none;}
.products-list .item {
    width: 100%;
    box-shadow: 0px 2px 20px #eaeaea;
    -webkit-box-shadow: 0px 2px 20px #eaeaea;
    -moz-box-shadow: 0px 2px 20px #525252;
    padding: 10px 7px;
}
/*購物車/外層＝＝*/
/*顏色*/
.products-list .more {
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 98%;
    z-index: 999;
    width: 150px;
    height: 30px;
    font-size: 17px;
    opacity: 0;
    border: none;
    background: #2197c1;
}
.products-list .item a:hover .more {    background: #2197c1;    opacity: 1;}

.products-list .pic:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-image: linear-gradient(to right, #2197c1, #2197c1);
    transform: scaleX(0);
    transition: all 0.3s ease-in-out;
}
.products-list .item a:hover .pic:before {    transform: scaleX(1);}
/**/
.product-layer-two li a {    color: #222;    border: none;    background: transparent;    transition: all 0.3s;    line-height: 200%;    transition: all 0.3s;}
.product-layer-two > li > a {    border-bottom: 1px dotted #ccc;padding-left: 25px;}
.product-layer-two li:hover > a , .product-layer-two li.active > a{color: #2197c1;}
.product-layer-two li:hover > a:before , .product-layer-two li.active > a:before {background: #2197c1; color:#fff;}
.product-layer-two > li > a:before {
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    height: 18px;
    content: "＞";
    color: #2197c1;
    background: #f2f2f2;
    width: 18px;
    text-align: center;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
    padding-left: 2px;
    font-size: 13px;
}
/**/
.product-layer-two li ul {    position: relative;padding-top: 1px;}
.product-layer-two li li {    border: none;background: transparent;}
.product-layer-two li li a{    background: transparent;}
.product-layer-two li li:hover a{color: #2197c1;}
/*外層版面*/
.product_page .main_part {    width: 90%;	max-width: 1500px;}
.product_page .show_content {    display: flex;    flex-wrap: wrap;    align-items: flex-start;    justify-content: space-between;}
.product_page .products-list {    width: calc(100% - 280px);}
.product-layer-two {    width: 250px;    margin: 0;}
.product_info_page .product-layer-two {    display: none;}
.product-layer-two li {    margin: 0;    width: 100%;padding: 0 10px;}
.product-layer-two > li.active {
    background: #2197c129;
}
.product-layer-two li.active a {    border: unset;border-bottom: 1px dotted #ccc;}
.products-list .name {
    text-align: center;
    font-size: 17px;
    font-weight: 500;
    margin-top: 5px;
    height: fit-content;
}


/*hover到才顯示副選單 關掉↓*/
.product-layer-two li li {    display: block;}
.pd_tabTitle li,.product_main ,.sidebarBtn,.me_tp_features
 {display:none;}


/*內文*/
.product_info li span {
    display: block;
    font-size: 12px;
    color: #999999;
    margin-bottom: 3px;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 1px;
}


/*底下相關商品*/
.prod_related {
    background: #f3f3f3;
    padding: 25px 15px;
}

.prod_related h6 span:before {
    content: '醫師陣容';
    font-size: 24px;
    color: #191919;
}

.related_list li a {
    display: block;
    padding: 0px;
    background: #fff;
    height: 100%;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*文章管理*/

/*文章管理/＝＝＝＝＝*/
h4.blog_category_title{font-size: 28px;}
h4.blog_category_title span{font-size: 24px;}
/*文章管理/外層＝＝*/
.i_blog_ri h5, .blog_list_ri h5{
	-webkit-line-clamp: 2;    
	font-weight: 600;
    font-size: 18px;
    color: #333;
	}
.i_blog_ri p, .blog_list_ri p{-webkit-line-clamp: 2;}
.i_blog_ri em, .blog_list_ri em {
    position: absolute;
    right: 0;
    bottom: 0;
    color: #bcc4c3;
	margin: 7px 0;
	font-size: 13px;
}
.module_i_news ul, .blog_subbox {    display: grid;    gap: 10px;}
.module_i_news li a , .subbox_item a {   gap: 10px;  grid-template-columns: 1fr;   padding: 5px;}
.module_i_news li a:after , .subbox_item a:after{pointer-events:none;}
.module_i_news li a:before, .subbox_item a:before {
    content: '';
    bottom: 0;
    right: 0;
    left: 0;
    opacity: 1;
    border-bottom: 3px solid #2197c1;
    width: 25%;
}
.module_i_news li a:hover:before, .subbox_item a:hover:before {
    width: 100%;
}
.module_i_news li a:after, .subbox_item a:after {
    opacity: 1;
    background: rgb(255 255 255 / 0%);
    border: 0;
    border-bottom: 1px solid #62bdb8;
}
.i_blog_le, .i_blog_ri , .blog_list_le , .blog_list_ri {    width: 100%; padding: 10px 5px;}
.i_blog_ri, .blog_list_ri {position: relative;   min-height: 140px;}
.i_blog_le , .blog_list_le{    position: relative;    padding-bottom: 100%;    height: 0;}/*文章縮圖長寬比例，100% →100:100 = 1:1 正方形 */
.i_blog_le img , .blog_list_le img{
	display:block;
    max-width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);}
/*側邊*/
.blog_le .accordion > li{transition:all 0.3s;}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {   background: #2197c1  !important;}
.accordion li .link a, .submenu a {display: block; width: 100%;}
.submenu a:hover {    background: #cbc0a0;}
h5.blog_le_t em{    font-size: 22px;}
/*首*/
.module_i_news{     padding: 70px 20px;   background: #fff;}
.module_i_news ul{grid-template-columns:1fr 1fr 1fr 1fr;    gap: 20px;}
.module_i_news li{    background: #ffffff;}
.module_i_news .title_i_box {   margin-bottom: 0;}
.module_i_news .title_i_box h4 {display: none;}
/*.module_i_news .title_i_box:before{
	display: block;
	content: 'NEWS';
	font-family: 'Noto Serif TC', serif;
	color: #847247;
	font-size: 50px;
	font-weight: 800;
}*/
.module_i_news .title_i_box:after,.news_part .title_i_box h4 {
	content: '醫師專櫚';
	font-size: 25px;
    color: #333;
    font-weight: 600;
}
/*功*/
.blog_subbox{grid-template-columns:1fr 1fr 1fr;}
.blog_subbox:before{content:none;}
/*文章管理/內層＝＝*/
.blog_back {    text-align: center;   max-width: 750px;   margin: auto;}
.blog_back a{  border-radius: 10px;  border: 1px solid #2197c1;}
.blog_back a.article_btn_back{background: #2197c1;}
.blog_back a.article_btn_prev, .blog_back a.article_btn_next {    background: #fff; color: #555;}
/*相關推薦*/
.news_related{background: #f0f1e9;  padding: 45px 15px 20px;}
.news_related h6 span:before {    font-size: 25px;    color: #555;}
.lastPage {
     background: #8B7647;
     border-radius: 40px;
}
@media screen and (max-width: 980px) {
/*文章管理/＝＝＝＝＝*/
.blog_subbox{grid-template-columns:1fr 1fr;}
}
@media screen and (max-width: 768px) {
/*文章管理/＝＝＝＝＝*/
h4.blog_category_title{font-size: 24px;}
h4.blog_category_title span{font-size: 20px;}
.module_i_news ul{grid-template-columns:1fr 1fr;}
/*相簿/＝＝＝＝＝*/
.mobile_product_name{font-size: 20px;}
.subalbum-menu h2{    color: #cbc0a0;font-size: 20px;}
}
@media screen and (max-width: 600px) {
/*文章管理/＝＝＝＝＝*/
.i_blog_le, .blog_list_le {    padding-bottom: 75%;}
h4.blog_category_title{font-size: 20px;}
h4.blog_category_title span{font-size: 18px;}
}
@media screen and (max-width: 480px) {
.module_i_news{    padding: 50px 30px;}
.module_i_news ul , .blog_subbox{grid-template-columns:1fr;}
.i_blog_ri, .blog_list_ri{min-height: auto;    padding: 10px 5px 40px;}
.module_i_news .title_i_box:before{font-size: 40px;}
.module_i_news .title_i_box:after{font-size: 23px;}
}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 商品下拉超過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: #2d2d2d;
    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個--結束 */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */




@media screen and (max-width: 768px) {

    /*文章*/
    .path p, .path p a {
        text-align: left;
    }


}

@media screen and (max-width: 600px) {}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*側邊按鈕*/




/*******************************************/
.contact_editbox {
    margin: auto;
    padding: 0px;
}

/*聯絡我們MAP區改滿版編輯區*/
.contact_content {
    width: 100%;
    padding: 0;
    margin-top: -30px;
}

.contact_page .main_part {
    max-width: 100%;
    padding: 0;
}

.contact_page .path {
    display: none;
}

.contact_content .information_left {
    width: 100%;
    padding: 0;
}

.contact_content .information_right {
    width: 90%;
    margin: 0px auto;
    padding: 0 10px;
    display: block;
}

.contact_content .information_left>h4.blank_letter {
    display: none;
}

.contact_content .list_before {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.contact_content .list_before>li:not(li:last-of-type) {
    display: none;
}

.contact_content .list_before.info>li:last-of-type {
    padding: 0;
    margin: 0;
    display: none;
}

@media screen and (max-width: 768px) {
    .contact_content .information_right {
        margin: 50px auto;
    }
}

/**/
/*電腦版表單最大寬度設定*/
.contact_content .information_right {
    max-width: 1200px;
}

/**/
/*******************************************/
/*表單*/
.contact_form li.last cite {
    background: #000000;
    color: #fff;
}

.contact_form li.last blockquote, .contact_form li.last cite {
    display: block;
    vertical-align: top;
    font-style: normal;
    padding: 7px;
    text-align: center;
    border: 1px #000000 solid;
    width: 150px;
    max-width: calc(50% - 10px);
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*預設解除背景輪播*/
#content_main {
    margin: 0;
}

.bannerindex {
    position: static;
    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;
    }
}

/*大圖*/
.swiper-banner .swiper-slide img {
    width: 100%;
    height: auto;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */






/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
.footer:before {
    content: '';
    background: url(https://pic03.eapple.com.tw/0229605005/footer.jpg) no-repeat;
    /* background-size: cover; */
    width: 100%;
    height: 50vw;
    position: absolute;
}
@media screen and (max-width: 1600px) {


    /*表單*/
    .contact_form li .form__label {
        width: 100%;
        margin-left: 0;
        text-align: left;
        font-weight: bold;
        padding: 5px;
        background: rgb(129 129 129 / 15%);
    }
}

@media screen and (max-width: 1400px) {
    .container {
        max-width: 1200px;
        transition: all 0.3s;
    }
}

@media screen and (max-width: 1200px) {
    

    .footer_logo {
        width: 200px;
    }

 

    .stellarnav>ul>li>a {
        font-size: 16px;
    }
}

@media screen and (max-width: 980px) {
    .header_area.sticky {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
    }
    .main_header_area .container .navigation> * {
        grid-row: unset;
        grid-column: unset;
        text-align: center;
    }
    .footer_info li:nth-child(1), .footer_info li:nth-child(2) {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {

    /*Footer/＝＝＝＝＝*/
    .footer_info li p {
        text-align: left;
        display: flex;
        color: #ffffff;
        flex-direction: row;
    }

    #to_top {
        bottom: 60px;
    }

    .footer.with_shopping_mode {
        padding: 30px 0 60px;
    }

    .footer_info {
        justify-content: center;
    }

    .footer_logo {
        text-align: center;
    }

    #bottom_menu li a {
        background: #b9a89a;
    }

    #bottom_menu {
        flex: 1;
        float: none;
        border-right: 1px solid #ffffff;
        z-index: 9998;display:none;
    }

    #bottom_menu li a:hover {
        color: #ffffff;
    }

    .footer_info li {
        width: 80%;
    }

    .footer_info ul {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: column;
        align-items: center;
    }

    /*footer*/
    .footer_info {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        align-items: flex-start;
        padding: 10px;
        flex-direction: column;
    }

    .box_link {
    display: none;
    }

    .footer_info li:nth-child(1) {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

    .footer_menu {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(min(135px, 100%), 1fr));
        gap: 5px;
    }

    .footer_info li {
        width: 80%;
    }

    .footer_menu a {
        margin: 0;
        text-align: center;
        transition: all 0.3s;
        color: #ffffff;
        background: #ffffff00;
        border: 1px #ffffff solid;
    }

    .footer_menu a:hover {
        border: 1px #e0e0e0 solid;
        
    }

    /* 開啟手機板下方按鈕所需設定 */

    #to_top {
        bottom: 60px;
    }


    /*產品頁面*/


    .product_menu_list>h5 {
        color: #ffffff;
        font-size: 18px;
        padding: 10px;
    }

    .product_menu_list>h5 a {
        width: 100%;
        height: 100%;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        text-align: right;
        display: flex;
        align-items: center;
        align-content: center;
        justify-content: center;
    }

    a.pd_menu_toggle {
        width: 100%;
        height: 100%;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        align-content: center;
        justify-content: center;
        border: 1px #ffffff solid;
        border-radius: 20px;
    }

    /*產品內頁-標題名稱*/
    .mobile_product_name {
        display: block;
        margin-bottom: 10px;
        color: #000000;
    }

    /*產品資訊*/
    .sidebarBtn {
        padding: 15px;
        display: inline-block;
        width: 100%;
        vertical-align: top;
        border: 0px #dddddd00 solid;
    }

    .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% !important;
        border-right: none;
    }

    .product_page .product_menu_list>h5 {
        display: block;
    }

    .product_page .product_menu_list {
        width: 100% !important;
        order: 0;
        min-height: unset;
    }

    /*上方購物車*/
    .me_tp_features a.tp_btn_cart, .me_tp_features a.tp_btn_notice {
        display: inline-block;
    }

    /*購物車內頁*/
    .inquiry_a1 {
        background: #4d4d4d;
    }

    .inquiry_a2 {
        display: none;
    }

    .inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover {
        letter-spacing: 2px;
        background: #a5a5a5;
    }

    /*文章*/
    .blog_subbox {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        grid-gap: 5px;
    }
}


.copy {
	justify-content: flex-end;
	padding-right: 100px;
}
.footer_logo,.footer_info ul ,.box_link {display:none;}
.footer {background: #ffffff;padding: 0px ;}

.promotion_title {display: none;
}
body.other_select_page .other_promotion {
    display: none !important;
}
.page{ display: none !important;}