@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=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Noto+Serif+TC:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans+Extra+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
   /* 建议使用常见的系统明体/宋体 */
    font-family: "Noto Serif TC", "Songti SC", "SimSun", serif; 
    font-weight: 400;
}

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/

.path p, .path p a{ display: none;}
.edit{ padding: 0px 0;}
#to_top { bottom:10px;}
#to_top i.top {
    width: 20px;
    height: 15px;
}
.header_area {
    background: #ffffff;padding: 0px;}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/* ==========================================================================
   開場動畫：LOGO 左→右顯現 + 背景透明度變化
   ========================================================================== */

/* --- 背景遮罩 --- */
body.pageIndex::before{
    content:'';
    position:fixed;
    z-index:999999991;
    top:0;
    right:0;
    bottom:0;
    left:0;
    background:#f5f3ef;
    opacity:0;
    animation:introMask 1.9s ease forwards;
}

@keyframes introMask{

    /* 背景從透明慢慢出現 */
    0%{
        opacity:1;
    }

    25%{
        opacity:0.85;
    }
    55%{
        opacity:0.75;
    }
	 70%{
        opacity:0.65;
    }
    /* 停留 */
    85%{
        opacity:0.45;
    }
	 95%{
        opacity:0.25;
    }

    /* 淡出 */
    100%{
        opacity:0;
        visibility:hidden;
        pointer-events:none;
    }
}

/* --- LOGO --- */
body.pageIndex::after{
    content:'';
    position:fixed;
    z-index:999999999;
    top:50%;
    left:50%;
    width:180px;
    height:180px;
    transform:translate(-50%,-50%);
    background:url(https://pic03.eapple.com.tw/cosyslife/pr_logo.png) center/contain no-repeat;

    /* 左→右揭開 */
    clip-path: inset(0 100% 0 0);

    animation:logoReveal 1.9s ease forwards;
}

@keyframes logoReveal{

    /* 完全遮住 */
    0%{
        clip-path: inset(0 100% 0 0);
        opacity:1;
    }

    /* 慢慢揭開 */
    45%{
        clip-path: inset(0 0 0 0);
        opacity:1;
    }

    /* 停留 */
    80%{
        clip-path: inset(0 0 0 0);
        opacity:1;
    }

    /* 淡出 */
    100%{
        opacity:0;
    }
}


@keyframes unlockScroll{
    to{overflow:auto;}
}


/* ==========================================================================
   第二部分：大圖特效結構與銜接 (2s 開始播放)
   ========================================================================== */

.bannerindex { position: relative; overflow: hidden; }
#content_main { margin: 0; }
.swiper-banner { position: static; margin: 0; height: auto; }
.swiper-slide { padding: 0px !important; position: relative; }
.swiper-slide img { height: auto; display: block; width: 100%; }
.swiper-pagination { display: none; }

/* 極光波浪背景：移除延遲，立即播放 */
.bannerindex::before {
    content: "";
    position: absolute;
    bottom: 0%; left: 0; width: 100%; height: 100%;
    z-index: 9;
    pointer-events: none;
    filter: blur(20px);
    mix-blend-mode: screen;
    opacity: 0;
    /* 將原先的 1.5s 延遲改為 0s */
    animation: 
        aurora-wave 1.5s ease-in-out 0s infinite alternate, 
        fadeIn 1.5s ease forwards 0s;
}

@keyframes aurora-wave {
    0% { background-position: 0% 100%; }
    100% { background-position: 0% 0%; }
}

@keyframes fadeIn { 
    to { opacity: 1; } 
}

/* 大圖圖片本體：從下方滑入，移除延遲 */
.pageIndex .swiper-slide img {
    filter: saturate(1.05) contrast(1.08); 
    opacity: 0;
    /* 將最後一個 1.5s 改為 0s，動畫會與頁面加載同步開始 */
    animation: fadeInUpBlurPop 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0s forwards;
}

@keyframes fadeInUpBlurPop {
    0% { 
        opacity: 0; 
        filter: blur(15px); 
        transform: translateY(150px) scale(1.05); /* 稍微縮小滑動距離(250->150)讓無延遲感更輕盈 */
    }
    100% { 
        opacity: 1; 
        filter: blur(0); 
        transform: translateY(0) scale(1); 
    }
}

/* ==========================================================================
   第三部分：標題文字銜接 - 室內設計版優化
   ========================================================================== */

.bannerindex .swiper-slide.swiper-slide-active:before,
.bannerindex .swiper-slide.swiper-slide-active:after {
    position: absolute;
    z-index: 999;
    pointer-events: none;
    opacity: 0;
}

/* --- 主標題 (nth-child(1) & (2)) --- */
/* 第一張：空間美學標題 */
.bannerindex .swiper-slide.swiper-slide-active:nth-child(1):before {
    content:'';
    position:absolute;
    top:65%; /* 向上微調，留出下方空間 */
    left:16%;
    transform:translate(-50%,-50%);
    width:400px;
    height:220px;
    background:url(https://pic03.eapple.com.tw/cosyslife/text1.png) center center / contain no-repeat;
    animation: interior-slide-in 1.8s cubic-bezier(0.19, 1, 0.22, 1) 0.8s both;
}

/* 第二張：細節工藝標題 */
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2):before {
    content:'';
    position:absolute;
    top:65%;
    left:16%;
    transform:translate(-50%,-50%);
    width:400px;
    height:220px;
    background:url(https://pic03.eapple.com.tw/cosyslife/text3.png) center center / contain no-repeat;
    animation: interior-slide-in 1.8s cubic-bezier(0.19, 1, 0.22, 1) 0.8s both;
}
/* --- 主標題 (nth-child(1) & (2)) --- */

/* 第一張 */
.bannerindex .swiper-slide.swiper-slide-active:nth-child(1):before {
content:'';
position:absolute;
top:65%;
left:16%;
transform:translate(-50%,-50%);
width:400px;
height:220px;
background:url(https://pic03.eapple.com.tw/cosyslife/text1.png) center center / contain no-repeat;

animation:interior-title 1.6s cubic-bezier(.16,1,.3,1) 0.7s both;
}

/* 第二張 */
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2):before {
content:'';
position:absolute;
top:65%;
left:16%;
transform:translate(-50%,-50%);
width:400px;
height:220px;
background:url(https://pic03.eapple.com.tw/cosyslife/text3.png) center center / contain no-repeat;

animation:interior-title 1.6s cubic-bezier(.16,1,.3,1) 0.7s both;
}


/* --- 副標題 --- */

/* 第一張副標 */
.bannerindex .swiper-slide.swiper-slide-active:nth-child(1):after {
content:'';
position:absolute;
top:85%;
left:16.5%;
transform:translate(-50%,-50%);
width:420px;
height:40px;
background:url(https://pic03.eapple.com.tw/cosyslife/text2.png) center center / contain no-repeat;

animation:interior-sub 1.2s ease 1.2s both;
}

/* 第二張副標 */
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2):after {
content:'';
position:absolute;
top:85%;
left:16.5%;
transform:translate(-50%,-50%);
width:420px;
height:40px;
background:url(https://pic03.eapple.com.tw/cosyslife/text4.png) center center / contain no-repeat;

animation:interior-sub 1.2s ease 1.2s both;
}



/* =============================== */
/* 主標動畫（建築感版本） */
/* =============================== */

@keyframes interior-title {

0%{
opacity:0;
filter:blur(10px);
transform:translate(-55%,-50%) scale(1.12);
}

40%{
opacity:0.8;
filter:blur(4px);
}

70%{
opacity:1;
filter:blur(0);
transform:translate(-50%,-50%) scale(1.06);
}

100%{
opacity:1;
transform:translate(-50%,-50%) scale(1);
}

}



/* =============================== */
/* 副標動畫 */
/* =============================== */

@keyframes interior-sub {

0%{
opacity:0;
transform:translate(-50%,-20%);
filter:blur(6px);
}

60%{
opacity:0.8;
filter:blur(2px);
}

100%{
opacity:1;
transform:translate(-50%,-50%);
filter:blur(0);
}

}

/* --- 手機版 RWD 優化 --- */
@media screen and (max-width: 768px) {
    /* 調整文字圖片在手機上的佔比，室內設計圖片通常較吃重 */
    .bannerindex .swiper-slide.swiper-slide-active:before { 
        top: 65%; 
        width: 80%; /* 改用百分比自適應寬度 */
        left: 50%; /* 手機版通常建議居中 */
    }
    .bannerindex .swiper-slide.swiper-slide-active:after { 
        top: 75%; 
        width: 75%; 
        left: 50%;
    }
}

@media screen and (max-width: 700px) {
    .pageIndex .swiper-slide img {
        height: 65vh!important; /* 使用螢幕高度比例，確保空間感不會被壓扁 */
        width: 100%!important;
        object-fit: cover!important;
    }
}
@media screen and (max-width: 600px) {	
.bannerindex .swiper-slide:after { white-space: pre;display: block; line-height: 2;      /* 建議加上行高，斷行後才不會太擠 */}
.bannerindex .swiper-slide.swiper-slide-active:before {
    top: 50%; left: 50%;font-size: 35px;    letter-spacing: 2px;}
.bannerindex .swiper-slide.swiper-slide-active:after {
    top: 70%; left: 50%;
    font-size: 12px;}
  body.pageIndex::after {
    width: 200px;
    height: 200px; }
	}
@media screen and (max-width:600px) {
    .pageIndex .swiper-slide img {
        /* position: relative; */
        height: 400px!important;
        width: auto!important;
        object-fit: cover!important;
        /* left: -40%; */
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/*上面顏色*/
.stellarnav > ul > li > a {
    font-size:15px;
	letter-spacing: 3px;
    font-weight: 400;
	    margin: 0 15px;}
/* 修改導覽列選單 hover 顏色 */
.stellarnav > ul > li:hover > a {
    color: #074243 !important;
    transition: color 0.3s ease; /* 增加平滑過度感 */
}		
.pageIndex .header_area {
    background: transparent;
    transition: all 0.5s ease-in-out;
    position: fixed;
	padding:0;
}
.pageIndex .main_header_area {
    background:#fff;
    transition: all .5s;
    transition-timing-function: ease-in-out;
}
.me_tp_features{    display: none;}
.navigation {
    display: flex;
    align-items: center;
}
.nav-header{    max-width: 180px;}
/* 定義飄入動畫 */
@keyframes slide-in-from-left {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
.nav-brand {
	display: block;
	max-width: 100%;
	/* 應用動畫 */
	animation-name: slide-in-from-left;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
	opacity: 0; /* 在動畫開始前隱藏元素 */
	background-color: #fff;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding-top: 15px;
	padding-right: 50px;
	padding-bottom: 15px;
	padding-left: 50px;
}

.nav-brand img {
    max-width: 250px;
	transition: max-width .3s ease-in-out, 
                filter .3s ease-in-out;
}
.sticky .nav-brand  {
   background-color:transparent;
}

.sticky .nav-brand img {
    max-width: 180px;
    filter: none;
}
/* 定義進場動畫 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 應用到第一層選單 */
.pageIndex .stellarnav > ul > li {
    opacity: 0; /* 初始隱藏 */
    animation: fadeInUp 0.6s ease forwards;
}

/* 設置時間差落差 (Stagger Delay) */
.pageIndex .stellarnav > ul > li:nth-child(1) { animation-delay: 0.2s; }
.pageIndex .stellarnav > ul > li:nth-child(2) { animation-delay: 0.3s; }
.pageIndex .stellarnav > ul > li:nth-child(3) { animation-delay: 0.4s; }
.pageIndex .stellarnav > ul > li:nth-child(4) { animation-delay: 0.5s; }
.pageIndex .stellarnav > ul > li:nth-child(5) { animation-delay: 0.6s; }
.pageIndex .stellarnav > ul > li:nth-child(6) { animation-delay: 0.7s; }
.pageIndex .stellarnav > ul > li:nth-child(7) { animation-delay: 0.8s; }
.pageIndex .stellarnav > ul > li:nth-child(8) { animation-delay: 0.9s; }
.pageIndex .stellarnav > ul > li:nth-child(9) { animation-delay: 1.0s; }
.pageIndex .stellarnav > ul > li:nth-child(10) { animation-delay: 1.1s; }
.pageIndex .stellarnav > ul > li > a{    
	color: #1E2B2B;
    letter-spacing: 2px;
    font-weight: 600;
	font-weight:15px;
	    margin: 0 10px;
		}
.main_header_area .container {
    max-width: 93%;    
}
.sticky .main_header_area .container {
    padding-top: 0px;
}
.pageIndex .stellarnav li.has-sub > a:after{display:none;}
.stellarnav > ul > li.has-sub > a {
   padding-right: 0px; 
}
.header_area.sticky {   
    backdrop-filter: blur(6px); 
    box-shadow: 0 0 0px #ffffff;}

.header_area.sticky .main_header_area{    
transition: all .5s;   
    transition-timing-function: ease-in-out;
	    background: #ffffff;   }

.pageIndex .header_area.sticky .stellarnav > ul > li > a {
   
}

.stellarnav li.has-sub > a:after {display:none;}
.stellarnav > ul > li > a b:nth-child(1) {
    font-family: "Noto Serif TC", serif;
    font-weight: 400;
    line-height: 35px;
    height: 35px;
}
.pageIndex .sticky .stellarnav li.has-sub > a:after{  }
.stellarnav li > ul > li:hover {
    background: #858b8a;
    color: #fff;
    transition: .3s;
}
.stellarnav>ul>li:after {
    content: '';
    position: absolute;
    right: 0px;
    top: 40%;
    width: 1px;
    height: 15px;
    background-color: #CCCCCC;
    transform: rotate(25deg) translateY(-50%);
}
.stellarnav li a{    font-size: 14px;}
.stellarnav > ul > li:hover > a {
    opacity: 0.5;
}

.stellarnav li li a:hover{     background: #707b7f;
    color: #fff;
    transition: .3s;}

.stellarnav ul ul{ left: 14px;}

/* 漢堡條 */
.stellarnav .menu-toggle span.bars span {background: #425b60;}
.stellarnav .menu-toggle:after { color:#425b60;}

.header_area.sticky .stellarnav .menu-toggle span.bars span {background: #444444;}
.header_area.sticky .stellarnav .menu-toggle:after { color: #444444;}

/* close menu 拉出來 */
.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu{
    background: transparent;
    color: #444444;
  }
  .stellarnav .icon-close:before{
    border-bottom: solid 1.5px #444444;
  }
  .stellarnav .icon-close:after{
    border-bottom: solid 1.5px #444444;
  }
  .stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul{
    background: #fffffff5;
    backdrop-filter: blur(5px);
  }
  .stellarnav a.dd-toggle .icon-plus:before{
    border-bottom: solid 3px #D9D9D9;
  }
  .stellarnav a.dd-toggle .icon-plus:after{
    border-bottom: solid 3px #D9D9D9;
  }
  .stellarnav.mobile > ul > li > a.dd-toggle{
    padding: 11px;
    top: -1px;
  }
  .stellarnav.mobile > ul > li > a.dd-toggle:before{
      display: none;
  }
  .stellarnav.mobile li.open{
    background: rgba(232, 232, 248, 0.2);
  }
  .stellarnav.mobile ul ul{
    width: 100%;
    position: relative;
    left: 0;
  }
  .stellarnav.mobile > ul > li{
    border-bottom: 1px rgba(232, 232, 248, 0.6) solid;
  }

  .stellarnav.mobile li a{ border-bottom: 0px;}

  .stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul{max-width: 100%;}

@media screen and (max-width:768px) {
    .stellarnav.mobile{ top: 11px;}
    .pageIndex .stellarnav > ul > li > a{ color: #222;}
    .stellarnav > ul > li > a b:nth-child(2){ position: relative; top: 5px; left: 10px; }
    .stellarnav li a{ padding: 7px 24px;}
	.header_area.sticky {   
    backdrop-filter: none;
}


}
@media screen and (max-width:570px) {
    .stellarnav.mobile{ top: 17px;}
    .nav-brand img{ width: 170px;}
}



/* 商品下拉超過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個--結束 */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



@media (max-width:600px) {

    ul.show-list, .pic-list {    grid-template-columns: 1fr;}
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#content_main { margin:0;}

.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 h5 {
  /* 設定固定寬度 */
  width: 230px;
  height: 230px;
  
  /* 置中對齊與定位 */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center; /* 確保文字在 260px 內水平置中 */

  /* 背景與圖形樣式 */
  background-color: rgba(255, 255, 255, 0.7); /* 白色 0.7 透明度 */
  padding: 80px 0;    /* 增加上下內距，讓圖形更有厚度感 */
  border-radius: 150px; /* 圓角效果，讓矩形更像一個圖形元件 */

  /* 文字原有的樣式 */
  margin: 0;
  font-size: 25px;
  color: #425b61;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  letter-spacing: 3px;
  font-weight: 800;
  
  /* 動成 */
  opacity: 0;
  animation: fadeIn 3s ease-in-out forwards;
}

/* 在 h5 下面添加一行字 */
.banner h5::after {
  content: " - Risingstar-Dental - "; /* 添加的文字內容 */
  display: block; /* 讓文字換行顯示 */
  font-size: 12px; /* 字體大小 */
  color: #425b61; /* 文字顏色 */
  text-align: center; /* 文字居中 */
  margin-top: 10px; /* 與 h5 的間距 */
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5); /* 文字陰影 */
}

.banner {
  background-image: url(https://pic03.eapple.com.tw/062505999/banner.jpg);
  background-position: center;
  background-size: cover;
  overflow: hidden;
  position: relative;
  z-index: 1;
  height: 350px; /* 設定 Banner 高度 */
}

.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(173, 151, 123, 0.1); /* 半透明黑色遮罩 */
  /*backdrop-filter: blur(3px);  背景模糊效果 */
  z-index: -1;
}

.banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%; /* 雙倍高度以實現滾動效果 */
  background-image: url(https://pic03.eapple.com.tw/rising/banner.jpg);
  background-position: center;
  background-size: cover;
  animation: scrollBackground 20s linear infinite; /* 背景垂直滾動動畫 */
  z-index: -2;
}

.banB {display:none;}
/* 淡入動畫 */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -60%); /* 從上方淡入 */
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* 背景垂直滾動動畫 */
@keyframes scrollBackground {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%); /* 滾動到背景的一半高度 */
  }
}

/* 響應式設計 */
@media screen and (max-width: 1024px) {
  .banner {
    height: 300px; /* 調整高度 */
  }
}

@media screen and (max-width: 768px) {
  .banner {
    height: 200px; /* 調整高度 */
    background-position: left center; /* 手機版時背景圖片靠左顯示 */
  }
  .banner h5 {
    font-size: 24px; /* 調整文字大小 */
  }
  .banner::after {
    background-position: left center; /* 手機版時滾動背景圖片靠左顯示 */
  }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



.car_page .information_left {
    display: block;
}
body.car_page .footer_info li p:before{
    position: initial;
    display: inline;
}
.contact_le_map a{background: #2a93d8; }




@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu {}
.footer.with_shopping_mode { padding:30px 0 55px; }
#to_top { bottom:80px;}
}

@media screen and (max-width: 600px) { 
}


.copy {
    color: #5b5757;
    border-top: 1px #e7e7e7 solid;}

.privacyLinks a+a {
    border-left: 1px solid #31413f ;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*頁碼*/
.path {
    width: 96%;
    margin: auto;
    font-size: 13px;
    color: #334b37;
    text-align: right;
    border-bottom: 1px solid #334b37;
}

body.other_page .path {display: none;}

.path p {
        position: relative;
        width: auto;
        display: inline-block;
        padding-left: 5px;
        line-height: 24px;
        margin-bottom: -1px;
        border-bottom: 1px solid #334b37;
        max-width: 80%;
    }
.path p a:hover {
    color: #334b37;
}
    .path p:after {
        content: '';
        position: absolute;
        display: block;
        width: 5px;
        height: 5px;
        background: #334b37;
        border-radius: 5px;
        left: 0;
        bottom: -3px;
    }





/*按鈕*/
.animated-arrow {
    background:#373835;
    color: #fff;
    display: inline-block;
    margin-top: 65px;
    height: 50px;
    line-height: 50px;
    overflow: hidden;
   width: 160px;
    border-radius: 100px;
    text-align: center;
    position: relative;
}
.news_part section {
    max-width: 1500px;}
.news_part {
	background-color: #f3f2ee;
	padding-top: 80px;
	padding-right: 20px;
	padding-bottom: 50px;
	padding-left: 20px;
}
.news_list ul li {
    border-bottom: 1px #e9e4e4 solid;
}
.news_list ul li p:after {
    font-size: 15px;}
.news_list ul li p {
    font-size: 18px;
    color: #4f4b4b;}

.news_part .title_i_box h4 {
   	font-size: 35px;
    color: #435e5f;
    font-weight: 800;
	line-height: 1.6;
    letter-spacing: 0.1em;
}

.news_part .title_i_box h4:before {
    content: "Clinic Hours"; letter-spacing: 3px;font-family: 'Montserrat', sans-serif;
    display: block;
    color:#FFF ;
    font-size: 45px;
    letter-spacing: 3px;
    margin-bottom: -15px;
    font-weight: bold;
}
/*影片管理*/

.video-layer-two li a {
    position: relative;
    border: 1px #ffffff solid;
    background: transparent;
    padding: 7px 16px;
    display: block;
    font-size: 16px;
    color: #000000;
}




/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
.car_page .information_left {
    display: block;
}
.product_main, 
.sidebarBtn, 
.pd_tabTitle {display:none!important;}
/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.product_page .main_part {
    max-width: 1500px;
}

/* .product_info_page .main_part { max-width:1200px;} */

.product_page .main_part {
    padding: 100px 20px;
}
.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;
  
    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;
    
    width: 100%;
    margin-left: 0;
}

.product-layer-two li:hover ul {
    border: none !important;
    
}

.product-layer-two li li {
    display: block;
    padding: 0;
    transition: all ease .3s;
}

.product-layer-two li.active a {
    font-weight: bold;
    border: 0px #ccc solid;
}




.product-layer-two li li a {
    padding: 5px 10px;
    background-color: #f3f3f32b;
}

.product-layer-two li li:hover>a {
    background: #fff;
    color: #334b37;
}

.product-layer-two>li {
    width: 100%;
    max-width: 100%;
    padding: 0;
    text-align: left;
    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%;
    background: transparent;
    padding: 20px;
}

.pd_tabTitle li.activeTab::after {
    height: 0px;
}
.product-layer-two li li:hover {
    margin-left: 15px;
    border-bottom: 1px dotted #ccc;
}

.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: #334b37;
}

.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;
}

#prod_thumbSwiper .swiper-slide {
    padding-top: calc(25% - 2px);
    position: relative;
}

#prod_thumbSwiper img {
    position: absolute;
    left: 0;

    top: 0;
}
.products-list .pic {
    aspect-ratio: 4 / 5;
}

/*外層*/
.products-list .more {
    border: 1px solid #dfd9d9;
    color: #6b6b6b;
    font-size: 16px;
    font-weight: 500;
    line-height: 32px;
    text-align: center;
    transition: all .5s;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    bottom: 0;
}

.products-list .item a:hover .more {
    background: #C9944F;
    color: #ffffff;
    letter-spacing: 2px; border: 0px solid #fff;
}

.products-list .name {
   font-size: 18px;
    color: #50626d;
    letter-spacing: 1px;
    margin-top: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: auto;
    font-weight: 600;
	padding-bottom:10px;
}

.products-list .price b {
    color: #334b37;
	width: calc(50% - 10px);
}
.price .sp_price {
    font-weight: 600;font-size: 15px;
}
.price .ori_price {font-size: 13px!important;
    font-weight: 400;
}
.products-list .item {
    position: relative;
    background-color: transparent;
    padding: 5px;
}
/* 1. 基礎設定：外層容器要溢出隱藏 */
.products-list .pic {
    overflow: hidden;
}

/* 2. 圖片原始狀態：加入過渡動畫 */
.products-list .pic img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease; /* 控制縮放的速度與平滑度 */
}

/* 3. Hover 狀態：放大 1.1 倍 */
.products-list .pic:hover img {
    transform: scale(1.1);
}

/*左側分類*/

.product-layer-two li a {
    position: relative;
    background: transparent;
    padding: 7px 16px;
    display: block;
    font-size: 16px;
    color:#0f3c48;
    border-bottom: 1px #dfd9d9 solid;
    border-left: 0;
    border-right: 0;
    border-top: 0;
}

.product-layer-two li:hover a {
    color: #E5B84C;
    border: 1px #0C2118solid;
   
}
/*下拉圖示*/
.product-layer-two li i.close::before {
    content: '\f056';
    color: #0C2118;
}

/*左邊分類底色*/
.product-layer-two>li.active {
    background: transparent;

}

/*產品資訊標題*/
.pd_tabTitle li.activeTab a {
    color: #afafaf;
}

element.style {
    color: #334b37;
}

/*產品資訊內文*/
element.style {
    color: #334b37;
}
.pd_tabInner_contain {
    padding-top: 20px;
    color: #334b37;
}

/*右側商品資訊*/
.product_info li .txt_box {
    display: inline-block;
    vertical-align: top;
    color: #334b37;
}

/*標題*/
.sidebarBtn h2 {
    color: #0f3c48;
    font-size: 24px;
}

.sidebarBtn .price {
    color:#5b5f57;
    font-size: 22px;
	border-bottom: 0px solid
}

.sidebarBtn .sp_price {
    display: block;
    color: #bd2424;
    font-size: 22px;
    font-weight: bold;
}
/*加入購物車*/
.inquiry_a3 {
   background:#085165;
}
/*加入詢價*/
.inquiry_a1 {
    background:#085165;
}
/*檢視詢價車*/
.inquiry_a2 {
    background:#085165;
}


.inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover {
    letter-spacing: 2px;
    background: #E3A936;
}

/*底*/
.sidebarBtn {
    padding: 15px;
    display: inline-block;
    width: 28%;
    vertical-align: top;
    border: 0px #dddddd00 solid;
    background: transparent;
}

/*內文*/
.product_info li span {
    display: block;
    font-size: 12px;
    color: #858987;
    margin-bottom: 3px;
    letter-spacing: 1px;
}


/*底下相關商品*/
.prod_related {
    background: #e9dfd3;
    padding: 25px 15px;
}

.prod_related h6 span:before {
    content: '相關推薦';
    font-size: 24px;
    color: #334b37;
}

.related_list li a {
    display: block;
    padding: 0px;
    background: #fff;
    height: 100%;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/*底色通常為白色*/
.payer {
    background: #ffffff;
}
.order_list_tab td:nth-child(1) {
    background: #eff2f5;
    color: #808283;
    width: 100px;
    font-weight: 600;
}
.order_list_pro tr:first-child td {
    color: #f2f8fa;
    font-weight: 1000;
    background-color: #333333;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

.path{display:none;}
/*文章管理*/

.blog_list_ri h5 {
	color: #0f3c48;
    font-size: 18px;
    display: flex;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.blog_list_ri p {
    font-size: 14px;
    font-weight: 300;
    padding-top: 10px;
	color: #999999;
    -webkit-line-clamp: 2;
}

.blog_list_ri em {
    margin-top: 15px;
    font-size: 12px;
    font-weight: 300;
}

.subbox_item a {
    display: flex;
    flex-wrap: wrap;
}

.blog_list_ri {
    padding: 0 15px 15px 15px;
}

.accordion li .link a {
	font-weight: 400;
	letter-spacing: 2px;
	padding: 10px 10px;
	color: #3f4f53;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
}

.blog_subbox {
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
}
.blog_shareData{display: none;}
.subbox_item a:after { background: rgba(0,0,0,0.5);}

/*標題*/
h5.blog_le_t {
    font-size: 24px;
    font-weight: 500;
    color: #666;
    letter-spacing: 2px;
    margin-bottom: 7px;
    position: relative;
}
.blog_search input[type=search] {
	border-radius: 0px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-bottom-color: #c6d4e3;
}

/*文章側邊選單hover*/
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category { background:#0C2118 !important ;}
.blog_le .accordion > li:hover .link, .blog_le .accordion > li.on_this_category .link {background: #0f3c48 !important ;    transition: all .5s;}
.blog_page .main_part {max-width:1600px;}
.submenu li.on_this_category a, .submenu a:hover {
    background: #f3f3f3;
    color: #444;
        transition: all .5s;
}
.blog_search {
    margin-bottom: 20px;
}
.accordion li+li .link {
    transition: all .5s;border-top: 0px solid #fff;
}
.submenu a {background: #fff;}
.blog_box_edit * {
    line-height: 200%;
}
/*回列表*/

.blog_back a.article_btn_prev,.blog_back a.article_btn_next,.blog_back a.article_btn_back {
   background: #425b60 ;
    color: #ddd6d6;
    letter-spacing: 1px;
    font-weight: 300;
}
.blog_back a.article_btn_prev:hover, 
.blog_back a.article_btn_next:hover, 
.blog_back a.article_btn_back:hover {
    background: #093c49;transition: background 0.3s ease;
    /* 如果需要，也可以在這裡調整文字顏色或亮度 */
}
.blog_back a {
    width: auto;
}

.blog_back a {
    padding: 6px 160px;}
.blog_back {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    grid-gap: 15px;
}

.blog_back:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: #00000017;
    bottom: 96px;
}
.blog_le .accordion {
   border: 1px #c6d4e3 solid;}

.edit {
    padding: 30px 0 90px;
    font-weight: 200;
    color: #888d8f;
    letter-spacing: 0.04em;
}

.subbox_item a:hover:before {
    transform: translate(-50%, -50%) scale(1);
    transition: all 500ms;
}


.blog_list_le img {
    z-index: 999;
    padding: 20px;
	
}

/*/文章圖片HOVER效果*/
.subbox_item a:hover .blog_list_le img {
    filter: brightness(.5);
    padding: 10px;
}

h4.blog_category_title {
    color: #133c47;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 1px;
}

.subbox_item {
    display: block;
    width: 100%;
    position: relative;
    border-bottom: 1px solid #ffffff1c;
    border-radius: 5px;
}

.subbox_item a:after{display: none;}
.subbox_item a:before{display: none;}

.blog_list_le {
    position: relative;aspect-ratio: 4 / 5;
}
.blog_list_le:before {
    content: 'READ MORE';
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 9999;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 14px;
    opacity: 0;
    letter-spacing: -0.7em;
    filter: blur(30px);
    transition: opacity 0.7s ease, letter-spacing 0.9s ease, filter 0.8s ease;
}

.subbox_item a:hover .blog_list_le:before{
    opacity: 1;
    letter-spacing: 1px;
    filter: blur(0px);
}

h5.blog_le_t em {
    font-family: "Noto Serif TC";
}
/*相關文章*/

.news_related{display: none;}

.news_related h6 span:before {
    color: #505050;
    font-weight: 400;
}


.news_related_list li a:hover {
    padding: 10px 10px 0px;
    transition: .3s;
}

.news_related_list li a {
    transition: .3s;
}

.news_related {
    background: #f3f3f3b5;
}

.news_related_list li a p {
    padding: 10px;
}


@media screen and (max-width: 1024px) {
.blog_subbox {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
}

@media screen and (max-width: 980px) {
.blog_back:after {
    bottom: 69px;
}
}

@media screen and (max-width: 768px) {
.blog_le {
    width: 220px;
    position: relative;
    top: 0px;
    left: 50%;
    transform: translateX(-50%) !important;
}

.blog_in_page .blog_le {
    top: -42px;
    padding-bottom: 5vw;
    margin-bottom: 0vw;
    border-bottom: 1px solid #dfdfdf;
}

.blog_subbox {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.accordion li .link a {
    text-align: center;
}
.product_page .products-list, .product-wrapper {
    width: calc(100% - 0px);
}
.product_page .product_menu_list {display:none;}
}

@media screen and (max-width: 600px) {
    .blog_back:after {
    bottom: 49px;
}
.products-list {grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));}
.product_page .main_part {padding: 50px 30px 10px;}
}
/*隱藏文章縮圖*/


/*首頁-文章管理*/
.module_i_news li a:after {
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 8;
    background: rgba(255, 255, 255, 0.8);
    opacity: 0;
    border: 0px #3d3938 solid;
	transition: all .6s; /* 確保漸變順滑 */
}



/*首頁-文章顯示*/
.module_i_news li:nth-child(n+5) {
    display: none !important;
}

/*標題*/

.module_i_news .title_i_box h4 {
    font-size: 35px;
    color: #425b60;
    font-weight: bold;
   
    }

.module_i_news .title_i_box h4:before {
    content: "Case Studies"; letter-spacing: 3px;font-family: 'Montserrat', sans-serif;
    display: block;
    color:#FFF ;
    font-size: 45px;
    letter-spacing: 3px;
    margin-bottom: -5px;
    font-weight: bold;
}

/*文章標題*/
.i_blog_ri h5 {
    font-weight: 700;
    font-size: 20px;
    color: #3d3938;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
}

/*時間*/
.i_blog_ri em {
    font-size: 11px;
    color: #858585;
    font-style: normal;
    display: block;
    margin: 7px 0;
}

/*內文*/
.i_blog_ri p {
    font-size: 13px;
    color: #3d3938;
    line-height: 140%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    word-break: break-all;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



.path {
    padding: 0 10px;
    display: none;
}

#content {
    width: 100%;
    min-height: 80vh;
   }
.prod_related {
	background: #f1efed;
	padding-top: 100px;
	padding-right: 15px;
	padding-bottom: 25px;
	padding-left: 15px;
}
.prod_related h6 span:before {
    content: '相關推薦';
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #0f3c48;
	
}
.lastPage {
    font-size: 16px;
    color: #1b1b1b;
    background:#fff;
    padding: 10px 20px;
    display: block;
    margin: 40px auto;
    width: 130px;
    text-align: center;
}
.order_list_tab td {
    border-top: 1px #eff2f5 solid;
}
.toShare {
     border-top:0px solid }
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
@media screen and (max-width: 768px) {
    /* 開啟手機板下方按鈕所需設定 */
    #bottom_menu {
        display: none;
    }

    .footer.with_shopping_mode {
        padding: 10px 0;
    }

   
}

  

.blog_page .show_content {
    margin: auto;
    padding: 0;
    max-width: 1440px;
    display: flex;
    flex-direction: column;
}



.blog_back a.article_btn_back {
    background: #454442;
}

.blog_le .accordion>li:hover,
.blog_le .accordion>li.on_this_category {
    background: transparent !important;
}

.share_page .edit {
    text-align: justify;
    line-height: 180%;
    padding: 60px 0;
}

.subbox_item a:before,
.subbox_item a:after {
    display: none;
    transition: 0.3s;
}

.blog_le .accordion>li {
    transition: all 0.3s;
}

.accordion li .link a {
	    font-size: 16px;}

.blog_box_edit {
    line-height: 180%;
    text-align: justify;
}

h4.blog_category_title {
    text-align: justify;
}

.link a {
    width: 100%;
    display: block;
    padding: 15px 10px;
}

.accordion li .link {
    padding: 0;
}



/*文章分享變1排3個*/
.blog_page .main_part {
    max-width: 100%;
}

.blog_subbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
	grid-gap: 40px;
}

.subbox_item {
    width: calc(100% / 2 - 20px);
    padding: 0px;
}

@media screen and (max-width: 1024px) {
    .subbox_item {
        width: 50%;
    }
}

@media screen and (max-width: 600px) {
    .subbox_item {
        width: 100%;
    }
}

/**/



/* 左邊欄位 */
h5.blog_le_t {
    display: none;
}



.blog_le {
    width: 100%;
}

.blog_search {
    width: 200px;
    position: relative;
    margin-bottom: 10px;
    margin-left: auto;
    display: none;
}





.blog_search input[type=search] {
    outline: none;
    box-sizing: border-box;
    width: 100%;
    font-size: 14px;
    color: #999;
    border: 0;
    border-radius: 0;
    border-bottom: 1px #565656 solid;
    padding: 10px 35px 10px 10px;
    background: transparent;
}

.blog_search input[type=submit] {
    outline: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 999;
    width: 38px;
    height: 38px;
    background: url(../images/search-icon.png) no-repeat 9px center transparent;
    border: none;
    transform: scaleX(-1);
}

.blog_search input[type="submit"]:hover {
    background: url(../images/search-icon.png) no-repeat 9px center transparent;
    border: none;
    color: #fff;
    transition: all 0.3s;
}

.blog_le .accordion {
    border: none;
    border-radius: 0;
    display: flex;
	text-align: center;
    justify-content: space-between;
}

.blog_le .accordion>li:hover .link a,
.blog_le .accordion>li.on_this_category .link a {
    
    transition: all 0.3s;
}

.blog_ri {
    width: 100%;
    min-height: 75vh;
    padding: 0;
}

.blog_le .accordion>li:hover .link i,
.blog_le .accordion>li.on_this_category .link i {
    color: #181818 !important;
    transition: all 0.3s;
}

.submenu {
    display: none;
    background: transparent;
    font-size: 14px;
}

.submenu a {
    display: block;
    position: relative;
    background: transparent;
    color: #565656;
    padding: 12px 12px 12px 25px;
    letter-spacing: 2px;
    transition: all 0.6s ease;
    word-break: break-all;
    line-height: 1.25;
    font-family: 'Klee One';
}

.submenu a:hover {
    background: #0000000d;
    color: #565656;
}

.submenu a:before {
    display: none;
}

.blog_le .accordion li i {
    position: absolute;
    top: 27px;
    right: 20px;
    font-size: 16px;
    color: #444;
    transition: all 0.4s ease;
}

.blog_le .accordion>li:hover.open {
    background-color: transparent !important;
}



/* 右邊欄位 */

.subbox_item a:after {
    display: none;
}

.subbox_item a {
    display: inline-block;
    position: relative;
    display: flex;
    flex-direction: column;
}

.blog_list_le {
    width: 100%;
    height: 0;
    padding-bottom: calc(100% / 16 * 9);
    overflow: hidden;
    position: relative;
}

.blog_list_le::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #00000050;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.5s;
}

.subbox_item a:hover .blog_list_le::after {
    opacity: 1;
    transition: all 0.5s;
}

.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_list_ri {
    display: flex;
    vertical-align: top;
    padding: 15px 0;
    width: 100%;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    position: relative;
    opacity: 1;
    text-align: center;
    transition: all 0.5s;
    align-items: center;
}

.subbox_item .blog_list_ri::before {
    content: "";
    display: block;
    position: relative;
    width: 0%;
    height: 1px;
    background-color: #3f3f3f33;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    transition: all 0.5s;
}



.subbox_item:hover .blog_list_ri {
    opacity: 1;
    transition: all 0.5s;
}

.subbox_item:hover .blog_list_ri::before {
    width: 100%;
    opacity: 1;
    transition: all 0.5s;
}




.blog_list_ri h5 {
    color: #454442;
    font-size: 22px;
    font-weight: 500;
}

.subbox_item a img {
    transition: all 1s cubic-bezier(0.68, 0.55, 0.38, 0.99);
}

.subbox_item a:hover img {
    transform: translate(-50%, -50%) scale(1.1);
    transition: all 1s cubic-bezier(0.68, 0.55, 0.38, 0.99);
}

h4.blog_category_title {
    text-align: justify;
    color: #454442;
}

.blog_box_edit {
    line-height: 150%;
    color: #3f3f3f;
}

.blog_in_page .main_part {
    max-width: 1200px;
}

.blog_list_ri em {
    position: absolute;
    right: 0;
    display: none;
}

.blog_list_ri p {
    -webkit-line-clamp: 2;
     line-height: 150%;
	 font-weight: 300;
	 padding-top: 10px;
}

.news_related {
    background: transparent;
    padding: 25px 15px;
}



.news_related h6 {
    max-width: 1200px;
    margin: 90px auto 60px;
    text-align: center;
}

.news_related h6 span {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.news_related h6 span::before {
    content: 'Related Articles';
    font-size: 40px;
    color: #454442;
    font-family: "Montserrat", serif;
    letter-spacing: 12px;
    text-indent: 12px;
    text-transform: uppercase;
    font-weight: 200;
}

.news_related h6 span::after {
    content: '相關文章';
    font-size: 16px;
    color: #454442;
    font-weight: 200;
    margin-top: 10px;
}

.news_related_list li a {
    display: block;
    padding: 0;
    background: transparent;
    height: 100%;
}

.news_related_list li a p {
    font-size: 16px;
    color: #454442;
}








@media screen and (max-width: 1024px) {
    .blog_page .main_part {
        max-width: 90%;
    }

    .subbox_item {
        width: 100%;
    }
	.blog_le .accordion {
     display: flex;
    justify-content: flex-start;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
}
.accordion li .link a {
    font-size: 15px;
}
}


@media screen and (max-width: 768px) {
    .subbox_item a {
        flex-direction: column;
    }

    .blog_page .main_part {
        max-width: 75%;
    }

    .blog_list_ri {
        display: flex;
        vertical-align: top;
        padding: 20px;
        width: 100%;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: center;
        opacity: 1;
    }

    .subbox_item a:before {
        display: none;
    }

    .blog_list_le {
        padding-bottom: 70%;
    }

    .blog_in_page .main_part {
        max-width: 85%;
    }

    .blog_page .show_content {
        max-width: 100%;
    }

    .subbox_item {
        border-bottom: 0;
    }

    .blog_page .main_part {
        max-width: 100%;
    }
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*其他分頁*/
.promotion_title h2 {
    border-bottom: 0;
    color: #454442;
}

.promotion_title {
    border-bottom: 1px #00000052 solid;
    display: flex;
    padding-bottom: 20px;
    flex-direction: column-reverse;
}

.promotion_title em {
    border: 0;
}

.promotion_title span {
    border: 0px #ccc dashed;
}




/* = = = = = = = 文管 = = = = = = = =*/
/*外層*/
.i_blog_ri p {
    -webkit-line-clamp: 2;}
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: #865735 !important;
}
.subbox_item a:after {
    background: none;
    opacity: 1;
    border: none;
    border-bottom: 1px #CFAF83 solid;
}
.subbox_item a:before {
    opacity: 1;
    font-size: 13px;
    color: #CFAF83;
}
.subbox_item a:hover:before {
    color:#AE7A4F;
}
.subbox_item a:hover:after {
    border-bottom: 1px #AE7A4F solid;
}
.subbox_item a {padding-bottom: 45px;}


/*改排版-直式*/
.blog_list_ri p {
    -webkit-line-clamp: 2;}
.blog_subbox {
    grid-template-columns: 1fr 1fr 1fr;
}
.subbox_item a {grid-template-columns: 1fr;}
/*改排版-直式結束*/







/* = = = = = = = 首頁文管 = = = = = = = =*/
.module_i_news {
	background-color: #f3f2ee;
	padding-top: 50px;
	padding-right: 20px;
	padding-bottom: 150px;
	padding-left: 20px;
}
.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;grid-gap: 12px;}
.module_i_news li {position: relative;}
.module_i_news section {
    max-width: 1500px;}

.module_i_news li a:after {border: 0px #ddd solid;}

.module_i_news li a:before {
    content: '+READ MORE';
     color: #c59458;   
}


/* = = = = = = = 暫時 = = = = = = = =*/



@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: 600px) {
/*    首文管*/
.module_i_news ul {
    grid-template-columns: 1fr ;
}
}
.related_list li a img {
      /* 加入平滑動畫 */
    transition: transform 0.2s ease-in-out; 
}

.related_list li a:hover img {
    /* 1.05 代表放大 5%，可依需求調整 */
    transform: scale(1.05); 
}


/* = = = 聯絡表單 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.i_contact_box {
    padding: 150px 20px 200px 20px;
}
.contact_content {
    padding: 100px 20px 200px 20px;
}
.contact_page .main_part {
    max-width: 1400px;
}
.contact_page .banner {
    display: none;
}

.contact_page .contact_editbox {
    margin: 0;
    padding: 0;
}

.contact_content .information_left {
        width: 100%;
        padding: 0;
        margin: 20px 0 80px;
}
.contact_content .information_left .blank_letter.i, ul.list_before.info {
    display: none;
}


h4.blank_letter.f {padding-bottom: 15px;position: relative;align-items: flex-start;}
h4.blank_letter.f:before {
        content: "FORM";
        font-size: 50px;
        margin-left: -4px;
        margin-right: 10px;
        font-weight: 500;
        letter-spacing: 5px;
        padding-right: 10px;
        border-right: 1px #ccc solid;
        }
.contact_form{gap:20px;}
.blank_letter {font-size: 23px; color: #2F2F2F; font-weight: 500; letter-spacing: 2px; text-indent: 2px; background-repeat: no-repeat; font-family: 'Noto Serif TC';}
/*表單最大寬度設定*/
.contact_content .information_right {width: 100%;padding: 40px 6%;background: #fff;border: 1px solid #CCC;}

/*標題*/
.blank_letter { color: #212121;}

/*側邊資訊*/
.list_before {margin-top: 10px;display: flex;flex-direction: row;gap: 40px;}
.list_before.info li{border-left:3px #ccc solid;padding-left: 42px;}
.list_before.info li:before{padding-left:10px;width: fit-content;}
/*表格樣式*/
.contact_form li{grid-template-columns: 1fr;}
.contact_form li .form__label {
    max-width: 100%;
    text-align: left;
}
.contact_form li:has(input[type=radio]) .form__insert{    grid-template-columns: repeat(auto-fill, minmax(13px, 13px) minmax(100px, 1fr));}
.contact_form li input.noborder { border: none; border-bottom: 1px #ddd solid; background: transparent;}/*文字欄*/
.contact_form li textarea.noborder { background: transparent; border: 1px #ddd solid;}/*文字區塊*/
.form select { background: transparent;}/*下拉式*/

/*驗證碼對齊*/
.contact_form li:nth-last-of-type(2) .form__insert { display: inline-flex; align-items: center; justify-content: flex-start; flex-wrap: nowrap;}
.contact_form li:nth-last-of-type(2) input.noborder { border: 1px #ddd solid;}
.captcha { margin-right: 20px;}

/*按鈕*/
.contact_le_map a { background: #212121;}
.contact_form li.last cite {background: #212121;}

@media screen and (max-width: 425px){
    /*聯絡表單*/
    h4.blank_letter.f{
        display: flex;
        flex-direction: column;
        padding: 0;
    }
    h4.blank_letter.f:before{border:0;}
    .contact_form li { padding-left: 0;}
    .contact_form li .form__label { margin-left: 0;}
    .contact_form li .form__insert { width: 100%;}
}

/* = = = RWD = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
@media screen and (max-width: 425px) { 

    .contact_content {
        margin: auto;
        max-width: 90%;
    }
}
.path{display:none;}

.projects_detaild_page .leftside {    display: none;}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*設計作品管理*/
.StoreProjsList {    width: 90%;    padding: var(--pd80) 20px;}
.projsTabs li {    padding: 10px;}
.projsTabs li a, .projsTabs li.Now a {
    color: var(--FontColor);
    font-size: var(--f16);
    font-weight: 500;
    border-bottom: 1px solid #2b221a2b;
    padding: 5px 10px;
}
.projsTabs li.Now a { border-bottom: 1px solid #2b221a;}
.StoreProjs_Post li {
    border: none;
    background: transparent;
    text-align: center;
}
.StoreProjs_Post li > a:hover:after {    background: #2b221a82;}

.StoreProjs_Post li section h6 strong {
    font-weight: 300;
    letter-spacing: .1rem;
}

.StoreProjs_Post li > a {    padding: 0 0 70%;}
.StoreProjs_Post li h4 {
    color: var(--FontColor);
    font-weight: 400;
    animation: slide-top 1.5s 0.6s both;
}
.StoreProjs_Post li img {
    filter: saturate(.6);
    -webkit-mask-image: linear-gradient(90deg, #f4f0ec 0, #f4f0ec 50%, transparent 100%);
    mask-image: linear-gradient(90deg, #f4f0ec 0, #f4f0ec 50%, transparent 100%);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 200% 100%;
    mask-size: 200% 100%;
    -webkit-mask-position: 200% 0;
    mask-position: 200% 0;
    animation: 2s cubic-bezier(0.65, 0.05, 0.36, 1) 0s 1 normal forwards maskFadeIn;
}

@keyframes maskFadeIn {
    0% {
        -webkit-mask-position: 200% 0;
        mask-position: 200% 0
    }

    100% {
        -webkit-mask-position: 0 0;
        mask-position: 0 0
    }
}

/*scroll*/
#Projs_scroll_down a em {    border: 1px solid var(--SubColor);    background: #ede4d491;}
#Projs_scroll_down a em::before {    background: var(--SubColor03);}
#Projs_scroll_down a span:before {    color: var(--MainColor);    font-weight: bold;}

/*scroll箭頭*/
#Projs_scroll_down a i {    margin: 5px 0 13px;}
#Projs_scroll_down a i:before, #Projs_scroll_down a i:after {    background: var(--MainColor);}

/*設計作品管理-內頁*/
.StoreProjsDetail {    width: 95%;}
.ProjsDetail_Title p {
    color: var(--FontColor);
}
.ProjsDetail_Title p a {
    background: var(--SubColor03);
    width: 25px;
    border-radius: 4px;
    height: 25px;
}
.ProjsDetail_Title p a.Btn_Share_LINE {
    background: #fff;
}
.ProjsDetail_Title p a::before {
    color: #fff;
    background: transparent;
    font-family: var(--SFontEN);
    font-weight: 300;
}
.ProjsDetail_Title p a.Btn_Share_LINE::before {
    content: "\f3c0";
    font-family: 'Font Awesome 6 Brands';
    font-size: 25px;
    color: var(--SubColor03);
}
.ProjsDetail_Title p a.Btn_Share_FB::before {
    content: "\f39e";
    font-family: 'Font Awesome 6 Brands';
    font-size: 15px;
    color: #fff;
}

.ProjsDetail_Title p span {
    background: #2b221a30;
    height: 23px;
}
.ProjsDetail_Title h4 {
    font-size: var(--f24);
    color: var(--FontColor);
    font-weight: 400;
    font-family: var(--SFont);
}
.ProjsDetail_Intro h6 strong, .ProjsDetail_Intro h6 {
    color: var(--FontColor);
    font-weight: 300;
    font-size: 14px;
}


/*設計作品管理-內頁圖片*/
.ProjsDetail_ImgView {    padding: 0;}
.ProjsDetail_ImgView ul li:first-child {    padding-top: 0;}

.ProjsDetail_ImgView ul li a {    position: relative; overflow: hidden;}
.ProjsDetail_ImgView li img {
    transform: scale(1);
    transition: all .7s;
    transition: all 5000ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
}
.ProjsDetail_ImgView ul li a:hover img {
    transition: all .7s;
    transform: scale(1.1);
    transition: all 5000ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
}
.ProjsDetail_Viewpoint {
    color: var(--FontColor);
    font-size: 14px;
    font-weight: 300;
    padding-right: 20px;
}

.ProjsDetail_Bottom {    background: transparent;}
.ProjsDetail_Bottom a.ProjsBtn_Next {
    background: var(--SubColor03);
    border: 1px solid var(--SubColor03);
}
.ProjsDetail_Bottom a.ProjsBtn_Prev, .ProjsDetail_Bottom a.ProjsBtn_Back {
    background: transparent;
    color: var(--SubColor03);
    border: 1px solid var(--SubColor03);
}

/*設計作品管理-內頁-相關*/
.ProjsDetail_OtherObjs {    max-width: 90%;}
.ProjsDetail_OtherObjs li {    background: transparent;}
.ProjsDetail_OtherObjs li h6 {    color: var(--MainColor);}
.ProjsDetail_OtherObjs li h6:before {    background: var(--SubColor);}
.ProjsDetail_OtherObjs li h6:after {    width: 100%;    background: var(--SubColor);}
.ProjsDetail_OtherObjs li > a {    padding: 0 0 230px;}

@media screen and (max-width: 1024px) {
.ProjsDetail_info_2_5 {        padding: 20px 30px;    }
.ProjsDetail_info_3_5 {        padding: 20px 40px;    }
}

.contact_le_map a {
   display: none;
}
.footer:before {
    content: '';
    background: url(https://pic03.eapple.com.tw/cosyslife/footer.jpg) no-repeat;
    /* background-size: cover; */
    width: 100%;
    height: 36vw;
    position: absolute;
}

.footer {background:transparent;}
.footer_logo,.footer_info ul ,.box_link {display:none;}


/* 浮動 */

.info_fix {
    width: auto;
    box-sizing: border-box;
    position: fixed;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: flex-end;
    justify-content: flex-end;
    transition: all 0.7s;
    z-index: 1;
    transform: translate(50px, 0);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.headerSticky .info_fix {
    opacity: 1;
    transform: translate(0px, 0);
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);

}

.info_fix:hover {
    width: auto;
    right: 0;
    transition: all 0.7s;
}

.info_fix_links {
    display: flex !important;
    background: #646563;
    width: 50px;
    padding-bottom: 0;
   /* border: 1px #A29080 solid;
     border-radius: 0px 0 0 10px; */
    overflow: hidden;
    justify-content: flex-end;
    flex-direction: column;
}

.info_fix>span {
    display: none;
}

.info_fix_links a {
    background: transparent;
}

.info_fix_links a {
    display: block;
    width: 100%;
    height: 50px;
    overflow: visible;
    border-radius: 0;
    transition: .3s;
    background: transparent;
    margin-bottom: 0;
}

.info_fix_links a span {
    width: 20px;
    height: 100%;
    display: block;
    margin: 0 auto;
}

.info_fix_links a span::before {
    background-size: contain;
}



.info_fix_links p {
    text-align: center;
    font-weight: 900;
    writing-mode: vertical-rl;
}




#to_top {
    color: #454442;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding-top: 0;
    transition: all 0.7s;
}

#to_top:hover i {
    transform: translate(0, -5px);
    transition: all 0.7s;
}

#to_top i:before,
#to_top i:after {
    background: #454442;
}
#to_top { bottom:0px;right: 0px;left: unset;}
.info_fix_tel span::before,

@keyframes footer-text {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
