@charset "utf-8";
/* *************高峰汽車動力升級****************** */
/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/
/* "Noto Sans TC" */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200;300;400;500;600;700;900&display=swap');
/* "Noto Serif TC" */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');




/* 英文字體 Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/* 英文字體 Orbitron */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');
/* 英文字體 Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


/*網站全域設定/＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
html {    background: #0a0909;}
:root {
  /* --Color: #fefcfb; */
  --MainColor: #242424; /*網站主要色系*/
  --SubColor: #181818; /*網站文字色*/
  --SubColor1: #5DDADB; /*網站輔助色系1*/
  --SubColor2: #EFEFEF; /*網站輔助色系2*/
  --SubColor3: #172F56; /*網站輔助色系3*/
  --SubColor4: #295195; /*網站輔助色系4*/  
  --SubColor5: #205BBD; /*網站輔助色系5*/ 
  --SubColor6: #4072C5; /*網站輔助色系6*/ 
  --SubColor7: #50C7C8; /*網站輔助色系7*/ 
  --SubColor8: #3BA7A7; /*網站輔助色系8*/
  --SubColor9: #767676;/*網站輔助色系9*/
  --SFonts: "Inter", "Noto Sans TC",sans-serif;/*英文字體-無襯線*/
  --SFontET: "Orbitron", "Noto Sans TC",sans-serif;/*英文標字體-特殊*/
  --SFontE: "Montserrat", "Noto Sans TC",sans-serif;/*英文標字體*/
  --SFont: "Noto Sans TC",sans-serif;/*內文黑體字*/
  --pd100:100px 0;
  --m100:100px;
  --m50:50px;
  --m30:30px;
  --f80:80px;
  --f60:60px;
  --f52:52px;
  --f48:48px;
  --f44:44px;
  --f40:40px;
  --f36:36px;
  --f32:32px;
  --f28:28px;
  --f24:24px;
  --f22:22px;
  --f20:20px;
  --f18:18px;
  --f17:17px;
  --f16:16px;
}
@media (min-width:1520px) {
  :root{ }
}
@media (max-width:1024px) {
:root{
  --f80:70px;
  --m50:40px;
  --m30:25px;
  --f52:48px;
  --f48:40px;
  --f44:38px;
  --f40:36px;
  --f36:32px;
  --f32:28px;
  --f28:24px;
  --f24:22px;
  --f22:20px;
  --f20:18px;
}
}
@media (max-width:768px) {
:root{
  --pd100:70px 0;
  --m100:70px;
  --f80:60px;
  --m50:30px;
  --m30:20px;
  --f52:44px;
  --f48:32px;
  --f44:30px;
  --f40:28px;
  --f36:26px;
  --f32:24px;
  --f28:22px;
  --f24:20px;
  --f20:17px;
  --f18:16px;
  --f17:16px;   
  --f16:15px;
}
}
@media (max-width:600px) {
:root{
  --pd100:50px 0;
  --m100:50px;
  --m50:25px;
  --f80:52px;
  --f52:36px;
  --f48:28px;
  --f44:26px;
  --f40:24px;
  --f36:24px;
  --f32:20px;
  --f28:20px;
  --f24:18px;
  --f18:16px;
  --f17:15px;  
}
}
@media (max-width:375px) {
:root{
  --f80:48px;
  --f52:32px;
  --f48:24px;
  --f44:22px;
  --f40:20px;
  --f36:20px;
  --f32:18px;
  --f28:18px;
  --f24:17px;
  --f22:17px;
  --f20:16px;
  --f18:15px;  
  --f16:14px;
}
}
/*網站全域設定/＝＝＝＝＝*/


/*反白顏色*/
/* ::-moz-selection {
    background-color: #060303;
    color: #fff;
}
::selection {
    background-color: #060303;
    color: #fff;
} */



/*卷軸*/
&::-webkit-scrollbar {
    background: #101010;
    width: 7px;
}
&::-webkit-scrollbar-button {
    display: none;
    background: #000;
    border-radius: 0;
}
&::-webkit-scrollbar-track-piece {
    background: #0f0f0f;
}
&::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #70d0d1;
}
&::-webkit-scrollbar-track {
    box-shadow: transparent;
}



/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/*上方選單解除滑動固定.header_area.sticky { position:relative;}*/

/* header */
.header_area {
    transition: all .4s ease;
    position: fixed;
    z-index: 9999;
    width: 100%;
    background: transparent;
    padding: 0;
}
.header_area.sticky{
    background: transparent;
}


.main_header_area .container {
    max-width: 100%;
    transition: 0.5s;
}
.header_area .main_header_area {
    background: rgba(15, 15, 15, 0);
    transition: all 0.3s;
    position: relative;
    padding: 10px 4vw;
    opacity: 0;
    font-size: 0;
    /* pointer-events: none; */
}
.header_area.sticky .main_header_area {
    /* background: rgba(15, 15, 15, .9); */
    transition: all 0.5s ease-out;
    pointer-events: unset;
    opacity: 1;
}
.header_area .main_header_area::after {
    content: "";
    display: block;
    pointer-events: none;
    background-color: rgba(15, 15, 15, .9);
    width: 0%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 1s;
}
.header_area.sticky .main_header_area::after {
    width: 100%;
    transition: all 1s;
    backdrop-filter: blur(5px);
}

.navigation {
    grid-template-columns: 300px 1fr;
    align-items: center;
}




/*選單 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =*/





/* 導覽列 */
.navigation{
    padding: 0;
    /* display: block; */
}
.header_area.sticky .stellarnav {}
.stellarnav > ul > li:after {
    content: '';
    opacity: 1;
    background: linear-gradient(0deg, #3BA7A7, #ffffff00);
    background: linear-gradient(0deg, #183b75, #ffffff00);
    z-index: -1;
    width: 100%;
    height: 0px;
    left: 0px;
    position: absolute;
    bottom: -10px;
    transition: height 0.3s ease;
}
.stellarnav > ul > li:hover:after {
    height: 80px;
    transition: height 0.5s ease;
}




/* 第一層 */
.stellarnav > ul > li {
    position: relative;
    padding: 0 10px;
    font-size: 0;
    padding: 0;
}
.stellarnav > ul > li > a {
    font-family: var(--SFontET);
    color: #DADADA;
    letter-spacing: 1.5px;
    font-size: 15px;
    margin: 0;
    font-weight: 400;
    padding: 15px 10px;
    margin: 5px 0;
    line-height: 1.5;
    height: 50px;
    min-width: 110px;
}
.stellarnav.desktop > ul > li.has-sub > a, .pageIndex .sticky > .stellarnav.desktop > ul > li:last-child {
    padding-right: 10px;
}
.stellarnav.desktop > ul > li > a b {
    line-height: 1.6;
    letter-spacing: 2px;
}
.stellarnav.desktop > ul > li > a b:last-child{
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
}



.stellarnav.desktop > ul > li > a:hover {
    transition: .5s cubic-bezier(0.77, 0, 0.65, 0.99);
}
.stellarnav.desktop ul li:hover > a b {
    color: #fff;
    transition: all 0.3s ease-in-out;
}
.stellarnav.desktop ul ul > li > a:hover, .stellarnav.desktop ul ul > li > a:focus {
    opacity: 1;
}
/* .stellarnav.desktop > ul > li.has-sub > a, .pageIndex .sticky > .stellarnav.desktop > ul > li:last-child {
    padding-right: 20px;
} */
/* 下拉符號移除 */
.stellarnav.desktop li.has-sub > a:after{content: none;}




/* 第二層 */
.stellarnav.desktop > ul > li > ul:before{
    display: block;
    content: '';
    position: absolute;
    top: -8px;
    right: 62px;
    background-color: #FFFFFF;
    border-radius: 15px;
    width: 18px;
    height: 9px;
    background: url(https://pic03.eapple.com.tw/peakpower/nav_arrow.svg) no-repeat;
}
.stellarnav.desktop ul ul {
    background: #0F0F10;
    width: max-content;
    left: unset;
    right: -10px;
    margin-left: -75px;
    margin: 0;
    padding: 15px 28px;
    border: 1px solid rgb(252 252 253 / 20%);
    border-radius: 10px;
}
.stellarnav.desktop li li {
    border: 0;
}
.stellarnav.desktop li.has-sub li a {
    font-size: 14px;
    text-align: center;
    padding: 10px;
    letter-spacing: 0.06em;
    font-family: var(--SFont);
    border-bottom: 0;
    text-align: left;
    color: #fff;
    padding: 10px;
    font-weight: 300;
    letter-spacing: 1.5px;
    transition: .3s;
}
.stellarnav.desktop li.has-sub ul:hover a{
    opacity: .3;
}
.stellarnav.desktop li.has-sub ul > li:hover a{
    color: #fff;
    opacity: 1;
}

.me_tp_features {
    display: none;
}


/*電腦LOGO = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.nav-header{
    transition: all 0.5s;
    grid-row: 1;
    width: auto;
    margin: 0 auto;
    width: 100%;
    max-width: 300px;
    padding: 0;
    align-self: start;
    filter: unset;
    height: 100%;
}
.nav-brand {
    max-width: 100%;
    font-size: 0;
    transition: all 0.3s;
}
.sticky .nav-brand {
    /* max-width: 120px; */
    font-size: 0;
}
.nav-brand img {
    max-width: 100%;
}




/*手機LOGO
.nav-brand-m {}
*/


/*footer = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.box_link{display: none;}
.footer {
    position: relative;
    margin: auto;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-top: 0;
    background: #181818;    
    z-index: 101;
    padding-top: 20px;
}
.footer::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0.5;    
    background-image: url(https://www.musen.com.tw/images/texture/dark.jpg);
    /* background: linear-gradient(180deg, #181818, transparent 50%),url(https://www.musen.com.tw/images/texture/dark.jpg); */
    mix-blend-mode: luminosity;
}
.pageIndex .footer::before{
    opacity: 1;    
    background: linear-gradient(180deg, #05070b, transparent 50%), url(https://www.musen.com.tw/images/texture/dark.jpg);
}
.footer .center {
    position: relative;
    max-width: 100%;
    padding: 80px 0;
    font-size: 13px;
    padding: 80px 120px;
    max-width: 1920px;
}
.footer_info {
    width: 100%;
    grid-template-columns: 1fr;
    max-width: 100%;
    margin: auto;
    padding: 0;
    position: relative;
    flex-direction: row;
    gap: 40px;
    font-family: var(--SFonts);
    justify-content: space-between;
}
.footer_info ul {
    position: relative;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* logo */
.footer_logo {
    max-width: 180px;
    width: 100%;
    margin: auto;
    display: none;
}

/* 聯絡資訊 */
.footer_info li{
    padding: 0;
}
.footer_info li:nth-child(1) {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 12px 40px;
    color: #fff;
}
.footer_info li p {
    font-size: 0;
    line-height: 1.8;
    letter-spacing: 2px;
    position: relative;
    color: #fff;
    font-weight: 600;
    font-family: var(--SFontET);
}
.footer_info li p.tel{order: 1;}
.footer_info li p.taxid{order: 4;}
.footer_info li p.mail{order: 2;}
.footer_info li p.add{order: 3;}
.footer_info li p.line{display: none;}

.footer_info li p a{
    color: #fff;
    display: block;
    line-height: 1.5;
    font-size: 16px;
}
/* .footer_info li p.tel a, .footer_info li p.mail a{font-size: 32px;} */

.footer_info li p:before {
    margin: 0;
    color: #767676;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
}
.footer_info li p.tel:before {content: 'TEL:';}
.footer_info li p.taxid:before {content: 'OPENUNG TIME：';}
.footer_info li p.taxid a:before{content: '週一 ~ 週五';margin-right: 5px;}
.footer_info li p.mail:before { content: 'MAIL：';}
.footer_info li p.add:before {content: 'ADDRESS：';}

.footer_info li p:after {}

/* 網頁連結 */
.footer_info li:nth-child(2) {
    right: 0;
    top: 0;
}
.footer_menu {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 5px 20px;
}
.footer_menu a:first-child{
    display: none;
}
.footer_menu a {
    background: transparent;
    border: 0;
    letter-spacing: 2px;
    margin: 0 0 15px;
    padding: 0;
    transition: all .3s cubic-bezier(.165,.84,.44,1);
    color: #DADADA;
    font-weight: 400;
    padding-left: 18px;
    position: relative;
    font-size: 0;
}
.footer_menu a:before {
    position: relative;
    content: "ABOUT";
    font-size: 12px;
    letter-spacing: 1.2px;
    font-weight: 800;
    line-height: 1;
    font-family: var(--SFontET);
}
.footer_menu a:nth-child(3):before{content: "STRENGTH";}
.footer_menu a:nth-child(4):before{content: "SERVICE";}
.footer_menu a:nth-child(5):before{content: "PROJECT";}
.footer_menu a:nth-child(6):before{content: "VOICE";}
.footer_menu a:nth-child(7):before{content: "NEWS";}
.footer_menu a:nth-child(8):before{content: "CONTACT";}
.footer_menu a:hover {
    background: transparent;
    color: #DADADA;
    opacity: 0.6;
}






/* ------------------------------------------------------------------------------------------------------------ */

.copy {
    color: #767676;
    border: none;
    margin: 0;
    font-size: 10px;
    letter-spacing: 0.08em;
    font-family: var(--SFontE);
    font-weight: 300;
    text-align: center;
    padding: 20px 0 15px;
    position: relative;
    background: transparent;
}
.copy p:first-child{display: none;}
.copy a {color: #767676;} 
.privacyLinks a+a{border-color:#94949469 ;}

/* 浮動按鈕 */
.info_fix{ }

/* 置頂按鈕 */
#to_top {
    left: 20px;
    padding-top: 10px;
    font-size: 0;
    color: #fff;
    border-radius: 50px;
    background: #fff;
    box-shadow: 0 0 5px 1px rgba(44, 48, 52, 0.1);
    width: 50px;
    height: 50px;
    bottom: 30px;
    right: 30px;
    position: fixed;
    transition: all 0.5s ease-out;
    background: #222;
}
#to_top::before {
    content: '';
    border-bottom: 8px solid #222;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    position: absolute;
    width: 0;
    height: 0;
    top: 20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}
#to_top::after {
    content: '';
    border-bottom: 6px solid #fff;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    position: absolute;
    width: 0;
    height: 0;
    top: 22px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}
#to_top i.top:before, #to_top i.top:after {
    display: none;
}
#to_top:hover {
    opacity: 0.8;
    transition: opacity 0.2s;
   }





/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = =*/
/* 商品下拉超過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個--結束 */





/* = = = 大圖-分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = *
/*預設解除背景輪播*/
.bannerindex {
    position: relative;
    height: auto;
    padding: 0;
    z-index: 99;
}
/* 大圖尺寸 */
.bannerindex .swiper-banner {
    position: static;
    height: auto;
    /* height: 100vh; */
    margin: auto;
    width: 100%;
    overflow: hidden;
}
.swiper-wrapper {
    height: 100%;
}
.swiper-slide {
    height: 100%;
}










/* 大圖點點按鈕 */
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 12px;
    display: none;
}
/* 大圖點點按鈕END */




/* 大圖外層文字 */
.bannerindex .swiper-wrapper:before{

}
.bannerindex .swiper-wrapper:before{

}

.bannerindex .swiper-banner .swiper-slide img, .bannerindex .swiper-banner .swiper-slide-active img{
    /* 大圖切換閃爍-opacity */
    opacity: unset !important;
    width: auto;
    object-fit: contain;
    height: 100%;
    object-fit: cover;
    width: 100%;
    height: 100%;
    max-width: 100%;
}
.bannerindex .swiper-banner .swiper-slide img {
    height: auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 大圖內層 */
.bannerindex .swiper-banner .swiper-slide:before,.bannerindex .swiper-banner  .swiper-slide:after {
    content: "";
    position: absolute;
    z-index: 100;
    pointer-events: none;
}
/* banner01 */
.bannerindex .swiper-banner .swiper-slide:before {
background: url(https://pic03.eapple.com.tw/peakpower/bnA_txt01.png) no-repeat;
content: "";
display: block;
position: absolute;
bottom: 0%;
width: 100%;
height: 100%;
background-position: center;
background-size: 54%;
background-position: 8% 60%;
opacity: 0;
}
.bannerindex .swiper-banner .swiper-slide:after {}

/* banner02 */
.bannerindex .swiper-banner .swiper-slide:nth-child(2):before{    
background: url(https://pic03.eapple.com.tw/peakpower/bnB_txt01.png) no-repeat;
content: "";
display: block;
position: absolute;
bottom: 0%;
width: 100%;
height: 100%;
background-position: center;
background-size: 28%;
opacity: 0;
content: none;
}



/* animation= */
.bannerindex .swiper-banner .swiper-slide.swiper-slide-active:before{
    /* animation-delay: .3s; */
	/* -webkit-animation: NslideCenter 1s cubic-bezier(0.215, 0.610, 0.355, 1.000) both; */
    /* animation: NslideCenter 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both; */
}
.bannerindex .swiper-banner .swiper-slide.swiper-slide-active:before {    
    animation: NslideLeft 0.8s cubic-bezier(0.17, 0.9, 0.68, 1.04) both;
}
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2):before{
    animation: NcenterBig 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}



@keyframes NslideLeft {0% {opacity: 0;transform: translateX(300px);}100% {opacity: 1;transform: translateX(0px);}}
@keyframes NcenterBig {0% {transform: scale(.8);opacity: 0;}100% {transform: scale(1);opacity: 1;}}










/* = = = 分隔線-共用樣式 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =*/

/* 麵包屑 */
.path{display: none;}
.path p, .path p a {font-size: 14px;color: #767676;font-family: var(--SFontE);letter-spacing: 2px;text-align: left;}
.path p a:last-child{color: #fff;}
.path p a:hover {color: var(--SubColor8);}

/* main */
div#page {position: relative;overflow: clip;padding: 0;position: relative;width: 100%;}
#content_main, #content {margin: 0;background: #05070B;padding: 80px 0;background-repeat: repeat;padding: 0;z-index: 100;}
#content_main {min-height: 80vh;}

.edit_part{padding: 0;}
.main_part {width: 90%;max-width: 1600px;margin: auto;padding: 120px 25px;}
.show_content {margin: auto;padding: 0;font-family: var(--SFont);}

.subalbum-menu {margin: 0;padding: 0;}

/* 下方頁碼 */
.page {width: 100%;margin: 40px auto 20px;}
.page li a, .page li {font-family: var(--SFontET);display: inline-block;font-size: 17px;margin: 4px 8px;border-color: transparent;color: #fff;border-radius: 0;width: 22px;height: 30px;line-height: 30px;text-align: center;padding: 0;font-weight: 800;transition: all 0.4s ease-in-out;}
.page li a {color: #fff;margin: 0;}
.page strong, li.activeN {background: transparent;color: #ffffff;border-color: transparent;border-bottom: 1px solid var(--SubColor8);}
.page strong, .page a:hover {background: transparent;color: var(--SubColor8);transition: all 0.1s ease-in-out;}


/*內頁BANNER 設定 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.banner {
position: relative;
    width: 100%;
    object-fit: cover;
    background-size: cover;
    /* display: none; */
    height: 70vh;
    /* max-height: 800px; */
    background: url(https://pic03.eapple.com.tw/peakpower/banA.jpg) no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: 50%;
}
.banner:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: #000;
    background: linear-gradient(0deg, #04090d 0%, #00000000 90%);
    z-index: 0;
        bottom: -1px;
}
.banner h5{position: relative;color: #fff;z-index: 1;font-family: var(--SFont);font-weight: 400;letter-spacing: 4px;font-size: 20px;display: flex;justify-content: flex-end;flex-direction: column;align-items: flex-start;width: 100%;height: 100%;bottom: 0;padding: 0 20px;}
.banner h5:after {
    content: 'NEWS';
    width: fit-content;
    color: #fff;
    position: relative;
    font-weight: 800;
    bottom: 0;
    left: 0;
    text-align: center;
    letter-spacing: 2px;
    font-size: 140px;
    font-family: var(--SFontET);
    line-height: 1;
    transition: .3s;
}


.banner.banF h5:after {
    content: 'PROJECT';
}
.banner.banE h5:after {
    content: 'VOICE';
}
.banner.banB h5:after {
    content: 'CONTACT';
}

.banner.banA {}
.banner.banB {}
.banner.banC {}
.banner.banD {}
.banner.banE {}
.banner.banblog {}






/* RWD設定 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

/* @1600上方區域_大於捉雞版面1600 */
@media screen and (min-width: 1600px) {
.bannerindex .swiper-banner {margin: auto;width: 100%;overflow: hidden;}
.bannerindex .swiper-banner .swiper-slide:before {font-size: 1.6rem;}

/* 內頁bn */
.banner h5:after{font-size: 160px;}
}


/* @1600上方區域_大於捉雞版面1400 = = = = = = = = = = = = = = = =  */
@media screen and (min-width: 1400px) {
.bannerindex {position: fixed;}
.bannerindex, .bannerindex .swiper-banner {height: 100vh;}
.bannerindex .swiper-banner .swiper-slide:before {font-size: 1.4rem;}
#content_main { margin-top: 100vh;}
}

/* @1024上方區域_平板版面1300 */
@media screen and (max-width: 1300px) {
.header_area .main_header_area {padding: 10px 2vw ;}
}

/* @1024上方區域_平板版面1200 */
@media screen and (max-width: 1200px) {
.nav-header { padding-top: 6px;}
/* header */
.header_area .main_header_area {padding: 10px 2vw 0;padding-top: 20px;}
.navigation {display: flex;align-items: center;gap: 15px;flex-direction: column;}
/* 導覽列 */
.stellarnav ul {text-align: center;}
.stellarnav > ul > li:after { bottom: 0;}
.stellarnav > ul > li:hover:after { height: 60px;}
}




/* @1024上方區域_平板版面1024 */
@media screen and (max-width: 1024px) {
/* = = header = = */
.header_area { }
.header_area.sticky { }
.main_header_area .container {  }

/* logo*/
.nav-header {padding-bottom: 0;}

/* 導覽列 */
.stellarnav {opacity: 1;pointer-events: unset;height: auto;}
.stellarnav ul {text-align: center;height: auto;}
.stellarnav > ul > li {padding: 0;}  
.stellarnav > ul > li > a {letter-spacing: 1px;font-size: 14px;min-width: 90px;}
.stellarnav.desktop > ul > li > a b:last-child {font-size: 12px;}
.stellarnav.desktop li.has-sub li a {font-size: 13px;padding: 8px;letter-spacing: 1.5px;}

/* 內頁BN */
.banner h5:after {font-size: 120px;}
}





/* @768上方區域_大於手機版面768 */
@media screen and (min-width: 768px) {
.bannerindex {padding: 0;}
}

/* @768上方區域_小於手機版面768 */
@media screen and (max-width: 768px) {
/* = = 大圖 = = */
.bannerindex {height: 90vh;padding: 0;margin: 0;overflow: hidden;
height: auto;
aspect-ratio: 1 / 1;
/* position: fixed; */
}
.bannerindex .swiper-banner {width: 100%;height: 100%;}
.bannerindex .swiper-banner .swiper-slide:before {background-size: 80%;background-position: 15% 55%;}
.bannerindex .swiper-banner .swiper-slide:nth-child(1) img {object-position: 20%;}
.bannerindex .swiper-banner .swiper-slide:nth-child(2) img {object-position: 60%;}

/* #content_main {margin-top: 90vh;} */



    

/* logo*/    
.nav-header {padding: 0;width: calc(100% - 60px);width: 100%;text-align: center;position: relative;z-index: 100;margin-left: calc(50% );transform: translateX(-50%);height: 100%;padding: 20px 0;display: flex;align-self: center;opacity: 0;pointer-events: none;transition: all 0.5s 
ease-out;}
.sticky .nav-header {opacity: 1;pointer-events: unset;}
.nav-brand {max-width: 220px;width: 100%;}
.nav-brand img { }




/* = = header = = */
.header_area .main_header_area, .header_area.sticky .main_header_area {padding: 0;opacity: 1;}
.main_header_area .container {padding: 0;}
.navigation {display: flex;justify-content: space-between;flex-direction: row;gap: 0;}


/* 導覽列 */

/* 導覽列漢堡選單 */
.stellarnav.mobile .menu-toggle {left: unset;right: 0;align-items: center;justify-content: center;max-width: 60px;position: relative;z-index: 100;width: 60px;height: 70px;display: flex;margin: auto;margin-right: 0;padding: 0;flex-direction: column;gap: 8px;}
/* 漢堡選單樣式 */
.stellarnav .menu-toggle:after {
text-transform: capitalize;
content: 'Menu';
font-size: 10px;
text-transform: uppercase;
color: #fff;
transform: scale(1);
font-family: var(--SFontE);
letter-spacing: 0.04em;
}
.stellarnav .menu-toggle span.bars {
display: block;
margin: 0;
}
.stellarnav .menu-toggle span.bars span {
width: 28px;
height: 1px;
border-radius: 0;
background: #fff;
margin: 0 auto 6px;
}
.stellarnav .menu-toggle span.bars span:nth-child(3) {margin: 0 auto;}




/* 導覽列展開 */
.stellarnav.mobile {position: fixed;width: 100%;display: block;overflow: inherit;height: 0;}

/* 遮罩 */
.stellarnav:before, .stellarnav.mobile:before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background: rgb(23 21 21 / 0%);
transition: all 1.2s;
pointer-events: none;
}
.stellarnav.active:before, .stellarnav.mobile.active:before {
background: rgb(23 21 21 / 60%);
transition: all 1.2s;
transition-timing-function: ease-in-out;
backdrop-filter: blur(3px);
pointer-events: inherit;
}


.stellarnav.mobile.left > ul {left: unset;right: 0;font-size: 0;max-width: 100%;padding: 0 30px;overflow-y:auto;
/*右滑出現*/right: -100vw;transition: all .5s ease;border: 0;background: #191818;}
.stellarnav.mobile.left.active > ul{right: 0;max-width: 80%;}

/*卷軸*/
.stellarnav.mobile.left > ul::-webkit-scrollbar {background: #323232;width: 12px;height: 10px;}
.stellarnav.mobile.left > ul::-webkit-scrollbar-button {display: none;}
.stellarnav.mobile.left > ul::-webkit-scrollbar-track-piece {background: #323232;}
.stellarnav.mobile.left > ul::-webkit-scrollbar-thumb {background-color: #1c1c1c;/* width: 5px; */border-radius: 15px;border: 2.5px solid #323232;}
.stellarnav.mobile.left > ul::-webkit-scrollbar-track {
border-radius: 6px;height: 8px;background-color: #1b4ea6;}
.stellarnav.mobile.left.active > ul{right: 0;max-width: 480px;width: 80%;}






.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {display: inline-block;font-size: 12px;background: transparent;height: 76px;width: fit-content;padding: 0;margin: 26px 0 28px;text-transform: capitalize;content: 'Menu';font-size: 14px;color: #fff;transform: scale(1);font-family: var(--SFontE);letter-spacing: 0.04em;height: fit-content;width: 100%;text-align: right;display: flex;flex-direction: row-reverse;}
.stellarnav .icon-close {box-sizing: border-box;width: 18px;height: 12px;position: relative;display: inline-block;margin: 2px 9px 0 3px;}
.stellarnav .icon-close:before , .stellarnav .icon-close:after {width: 18px;height: 0px;border-bottom: solid 1px var(--SubColor1);}
/* 導覽列選取Hover效果 */
.stellarnav ul:hover li a {opacity: 1;transition: all 0.3s ease-in-out;}


/* 第一層 */
.stellarnav.mobile  > ul > li:after {content: none;}
.stellarnav.mobile > ul > li {border-bottom: 1px #eee solid;padding: 10px 0;display: block;border-bottom: 1px solid rgba(255, 255, 255, 0.15);}
.stellarnav.mobile li.open {background: #313131;color: #fff;padding: 0 0 5px;border-bottom-width: 0;}
.stellarnav.mobile > ul > li > a {text-align: left;overflow: auto;height: auto;line-height: 150%;display: block;border: 0;color: #fff;font-size: 15px;letter-spacing: 0.08em;font-weight: 600;}
.stellarnav.mobile > ul > li > a:hover b, .stellarnav.mobile li.open > a b  {color: var(--SubColor1);}
.stellarnav.mobile > ul > li > a b {font-weight: 500;}
.stellarnav.mobile li.open > a {border: 0;padding: 20px 10px 5px;}    
.stellarnav > ul > li > a:before{content: none;}
/* +符號修改 = = */
.stellarnav.mobile > ul > li > a.dd-toggle {top: 5px;min-width: fit-content;}
.stellarnav.mobile > ul > li.open > a.dd-toggle {top: 0;}
.stellarnav a.dd-toggle .icon-plus:before {width: 8px;height: 8px;border-bottom: solid 1px #666;top: 50%;top: 0;left: 0;transform: rotate(-45deg);}
.stellarnav a.dd-toggle .icon-plus:after {width: 8px;height: 8PX;top: 50%;border-bottom: solid 1px #666;transform: rotate(45deg);}
.stellarnav li.open > a.dd-toggle .icon-plus {-webkit-transform: translateY(10px) scaleY(-1);transform: translateY(10px) scaleY(-1);}/* +符號修改END = = */


/* 第二層 */
.stellarnav.mobile ul ul {left: unset;margin: 0 auto;box-shadow: none;width: calc(100% - 10px);margin: auto;left: unset;box-shadow: none;background: transparent;}
.stellarnav li li {font-size: 14px;color: #333;font-family: var(--SFontE);border: 0;font-size: 15px;color: #333333;letter-spacing: 0.04em;}
.stellarnav li li a {font-size: 14px;}
.stellarnav.mobile li li a {border-bottom: 1px solid rgba(255, 255, 255, .05);}
.stellarnav.mobile li li a:hover {color: #fff;}
.stellarnav.mobile li li:last-child a {border-bottom-width: 0;}


/* 內頁BN */
.banner {background-attachment: scroll;background-size: cover;}
.banner h5 {font-size: 1.2rem;gap: 8px;padding: 0 20px;}
.banner h5:after {font-size: 80px;}
/* 麵包屑 */
.path p, .path p a {font-size: 12px;letter-spacing: 1.5px;}
}


@media screen and (max-width: 600px) {
/* 導覽列漢堡選單 */
.stellarnav.mobile.left > ul { padding: 0 20px;}
.stellarnav.mobile > ul > li > a {margin: 0;}
/* 內頁BN */
.banner h5 {font-size: var(--f18);}
.banner h5:after {font-size: 60px;}
/* 麵包屑 */
.path p, .path p a {font-size: 10px;letter-spacing: 1px;}
}


@media screen and (max-width: 480px) {
.banner h5:after {font-size: 48px;}
.banner h5 {font-size: 14px;padding: 0 10px;}
}




/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = =*/
/* 購物車 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
/* .product_page .main_part {max-width: 1400px;} */
/* .product_info_page .main_part { max-width:1200px;} */

/* 麵包屑/僅商品頁面 */
.product_page .path, .product_info_page .path {display: block;padding: 30px 0;}



.product_info_page .products-list, .product-wrapper {width: 100%;}
/* 功-外層 */
.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;
    width: min(240px, 25%);
    min-height: 30vw;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 2vw;
    padding: 0;
    /* max-height: 40vh; */
    scrollbar-gutter: stable;
    overflow-x: hidden;
    margin: 0px;
}
.product-layer-two > li {
    width: 100%;
    max-width: 100%;
    padding: 0;
    text-align: left;
    border-bottom: 0;
    padding: 5px;
    border-top: 1px solid rgb(214 235 253 / 15%);
    transition: .3s;
}
.product-layer-two li a {
    position: relative;
    border: 0;
    background: transparent;
    padding: 5px 10px;
    display: block;
    font-size: 15px;
    color: #999;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 1px;
}
.product-layer-two > li:hover {
    background: linear-gradient(45deg, #1B4EA6, #235FC7, #1D52AC, #13418F);
    border-radius: 10px;
}
.product-layer-two li:hover a{
    color: #fff;
}
/* 當前頁面 */
.product-layer-two li.active {
    background: linear-gradient(45deg, #1B4EA6, #235FC7, #1D52AC, #13418F) !important;
    border-radius: 10px;
}
.product-layer-two li.active a {
    font-weight: 400;
    border: 0;
    color: #fff;
}


/* 右側商品區 */
.product_page .products-list {
    width: calc(100% - 240px);
    padding: 0 0 0 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0 auto;
}
.products-list .item a{
    padding-bottom: 10px;
}
/* 商品 */
.products-list .pic {
    aspect-ratio: 1 / 1;
    border-radius: 30px;
}
.products-list .pic img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    z-index: 1;
    transition: .3s ease;
    transform: scale(1);
}
.products-list .pic:after {
    content: '';
    width: 100%;
    height: 100%;
    background: #154f96;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
.products-list .item:hover .pic img{
    opacity: 0.3;
    transform: scale(1.05);
}
/* 品名 */
.products-list .name {
    color: #fff;
    letter-spacing: 2px;
    font-size: 17px;
    transition: .3s;
    line-height: 1.8;
    height: fit-content;
}
.products-list .name .numbering {
    display: block;
    font-size: 13px;
    line-height: 1.8;
    color: #767676;
}
.products-list .item:hover .name{
    opacity: 0.3;
}
/* 價錢 */
.products-list .price b {
    color: var(--SubColor1);
    font-family: var(--SFontE);
    font-size: 18px;
    width: 100%;
    margin: 0;
    letter-spacing: 1px;
    line-height: 1.8;
    display: none;
}
.products-list .more{
    display: none;
}




/* .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 li a {
    padding: 5px 10px;
}
.product-layer-two li li:hover>a {
    background: #fff;
    color: #ad925e;
} */






/* 功-內層 */
.product_info_page .main_part {width: 90%;}
.product_info_page .product_menu_list, .product_info_page .product-layer-two {display: none;}

/* 左輪播圖 */
.product-wrapper .product_main {
    padding: 0 10px;
    display: inline-block;
    width: 61%;
    vertical-align: top;
}
.product_main  .swiper-backface-hidden .swiper-slide {
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
}
.product_main #prod_thumbSwiper .swiper-slide {
    position: relative;
    margin-bottom: 20px !important;
}

/* 右資訊區 */
.sidebarBtn {
    padding: 20px;
    display: inline-block;
    width: 38%;
    vertical-align: top;
    border: 0;
    background: transparent;
    color: #fff;
    letter-spacing: .5px;
}
/*商品側邊規格*/
.sidebarBtn h2 {
    font-size: 24px;
    color: #fff;
    /* border-bottom: 1px solid rgb(214 235 253 / 15%); */
    padding: 0 0 20px;
    margin: 0 0 10px;
    letter-spacing: 2px;
    font-weight: 500;
}
.product_info li .txt_box {
    color: #fff;
}
/* 規格 */
.product_info li span {
    font-size: 14px;
    color: #767676;
    margin-bottom: 5px;
    font-family: var(--SFontE);
    letter-spacing: 1px;
}
.sidebarBtn .toShare {
    border-top: 1px solid rgb(214 235 253 / 15%);
    border-bottom: 0;
    font-size: 12px;
    color: #888;
    margin-top: 20px;
    padding-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.toShare b {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #767676;
}
.toShare a {
    filter: invert(1) grayscale(1) brightness(.6);
    transition: .3s;
}
.toShare a:hover{
    filter: unset;
}
.toShare a object {
    max-width: 22px;
}

.mobile_product_name {font-size: 0;}
/*按鈕顏色*/
/* .inquiry_a1 {background: #cbc0a0;}
.inquiry_a2 {background: #bdab77;}
.inquiry_a3 {background: #ADA17E;}
.inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover {background: #222;}
.lastaction {color: #ADA17E;background-color: #f2f2f2;}
.nextaction {background-color: #ADA17E;}
.lastPage {background: #ADA17E;} */



/* 下方資訊 */
.prod_tabs {
    margin-top: 80px;
    color: #fff;
    line-height: 1.7;
    letter-spacing: 1px;
}
/* 標 */
.pd_tabTitle li {
    position: relative;
    z-index: 5;
    flex: 1;
    border-bottom: 1px solid rgba(118, 118, 118, 0.20000000298023224);
}
.pd_tabTitle li a {
    font-size: 14px;
    letter-spacing: 1.5px;
}
.pd_tabTitle li.activeTab::after {height: 1px;background: transparent;}
/* 編輯器 */






/*相關推薦*/
/*文章-相關推薦*/
.prod_related {
    font-family: var(--SFontE);
    background: transparent;
    padding: 100px 25px;
    margin: auto;
    width: 90%;
    max-width: 1600px;
    margin: auto;
    padding: 120px 25px;
}
/* 標 */
.prod_related h6 span:before {
    font-size: 24px;
    color: #fff;
    font-weight: 500;
    letter-spacing: 2px;
    content: '相關案例';
}
/* 商品 */
.related_list {
    margin: 40px auto;
    max-width: 100%;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.related_list li {
    display: block;
    padding: 0px;
}
.related_list li a {
    padding: 20px;
    background: #18191E;
    height: 100%;
    border: 1px solid rgba(118, 118, 118, 0.2);
    border-radius: 25px;
    transition: .3s ease;
    background: #05070b;
}
.related_list li figure {
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(118, 118, 118, 0.2);
    border-radius: 15px;
}
.related_list li a img{
    transform: scale(1);
    transition: .6s ease;
}
.related_list li a p {
    font-size: 16px;
    letter-spacing: .8px;
    color: #fff;
    padding: 10px 0 5px;
    line-height: 1.8;
}
.related_list li a:hover {
    transition: .3s ease;
    border: 1px solid var(--SubColor8);
}
.related_list li a:hover img{
    transform: scale(1.1);
}
/* 按鈕 */
.prod_related_b_box {display: none;}





@media screen and (max-width: 1400px) {
.product_page .product_menu_list{width: 220px;}
.product_page .products-list {width: calc(100% - 220px);}
/* 內層 */
.related_list {grid-template-columns: repeat(3, 1fr);}
.related_list li:nth-last-child(1) {display: none;}
.related_list li figure {aspect-ratio: 4 / 3}}


@media screen and (max-width: 1200px) {
.product_page .products-list {grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));}
/* 內層 */
.product_info_page .main_part, .prod_related {width: 95%;}
.prod_related {padding-top: 80px;}
.product-wrapper .product_main {width: 69%;}
.sidebarBtn {width: 30%;padding-right: 10px;}
.related_list {grid-template-columns: repeat(2, 1fr);}
.related_list li:nth-last-child(2) {display: none;}
.product_main .swiper-backface-hidden .swiper-slide {border-radius: 10px;}
}

@media screen and (max-width: 1024px) {
/* 內層 */
.prod_related {padding: 60px 20px;}
}

@media screen and (max-width: 980px) {
.product_page .path, .product_info_page .path { padding: 20px 0;}
.product_page .products-list {  padding-left: 60px; }
/* 內層 */
.product-wrapper .product_main, .sidebarBtn {width: 100%;}
.sidebarBtn {border: 6px solid #282828;margin-top: 40px;}
}


@media screen and (max-width: 768px) {
.product_menu_list, .products-list, .product-wrapper {width: 100%;}
.product-layer-two {margin-right: 0;grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));grid-gap: 5px;}
.product_page .product-layer-two, .product_page .products-list {width: 100%;border-right: none;padding: 0;}
.product_page .product_menu_list>h5 {display: block;}
.product_page .product_menu_list {width: 100%;order: 0;min-height: unset;display: none;}
/* 內層 */
.sidebarBtn h2 {font-size: var(--f28);}
.prod_related h6 span:before {font-size: var(--f36);}
.sidebarBtn {margin-top: 20px;}
.related_list {gap: 20px;}
.pd_tabInner_contain {font-size: 15px;}
}

@media screen and (max-width: 600px) {
.product_page .path, .product_info_page .path { padding: 10px 0;}
/* 內層 */
.product_info_page .main_part, .prod_related {width: 100%;}
.prod_related {padding-top: 40px;}
.related_list {grid-template-columns: repeat(1, 1fr);}
.pd_tabInner_contain {font-size: 14px;}
.related_list li a {border: 1px solid rgba(118, 118, 118, 0.8);}
}





/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/*文章設定 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

.blog_in_page .main_part{  
max-width: 1400px;
}

/*文章功能頁/ = = = = */
/* 左側分類欄位 */
.blog_le {
    /* width: 100%; */
    padding: 0;
}
h5.blog_le_t {
    margin-bottom: 10px;
    text-align: center;
    padding-bottom: 20px;
    display: none;
}
h5.blog_le_t em {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--SubColor);
}
.blog_search {
    position: relative;
    margin-bottom: 10px;
    opacity: .8;
    display: none;
}
.blog_search input[type=search] {
    width: 100%;
    font-size: 14px;
    color: #999;
    border: 0;
    background: #eee;
    border-radius: 0;
    padding: 10px 40px 10px 10px;
}
/* 分類列 */
.blog_le .accordion {
    border-radius: 0;
    border: 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    border-top: 0;
    border-bottom: 0;
    font-size: 0;
    gap: 15px;
}
.blog_le .accordion li {
    transition: .6s ease-out;
    border-radius: 50px;
    background: linear-gradient(45deg, rgb(255 255 255 / 5%), #ffffff00);
}
.accordion li+li .link {
    border: 0;
    border-left: 0;
}
.accordion li .link a {
padding: 5px 10px;
    text-align: center;
    line-height: 1.7;
    letter-spacing: 2px;
    font-size: 16px;
    color: #DADADA;
    font-weight: 500;
    margin: 10px 0;
}
.blog_le .accordion > li.on_this_category{
        background: linear-gradient(45deg, #1B4EA6, #235FC7, #1D52AC, #13418F) !important;
}
.blog_le .accordion > li.on_this_category:hover .link a, .blog_le .accordion > li:hover .link a{
    color:#181818  !important;
}
.blog_le .accordion > li:hover {
    background: #eee !important;
}
.blog_le .accordion > li.on_this_category .link a {
    color: #fff  !important;  
}

/* 右側圖文區 */
.blog_ri {
    padding: 0 0 0 40px;
}
h4.blog_category_title {
    width: fit-content;
    font-weight: 600;
    letter-spacing: 0.04em;
    display: none;
}
/* 圖文區塊 */
 .blog_subbox {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
    display: flex;
    flex-wrap: wrap;
}
.subbox_item {
    position: relative;
    width: 100%;
    background: rgb(255 255 255);
    /* background: #f3efe8; */
    border-radius: 0;
    overflow: hidden;
    transition: .5s ease-out;
    border: 0;
    height: fit-content;
    width: 100%;
    margin: 0 0 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(118, 118, 118, 0.20000000298023224);
    background: transparent;
}
.subbox_item:hover {
    transition: .5s ease-out;
    /* box-shadow: 9px 12px 20px 0px rgb(181 177 172 / 35%); */
}
.subbox_item li:hover {
    transition: .5s ease-out;
    box-shadow: 9px 12px 20px 0px rgb(181 177 172 / 35%);
}
.subbox_item a {
    grid-template-columns: 1fr;
    gap: unset;
    /* flex-direction: column; */
    height: 100%;
    padding: 0;
    display: flex;
}
.module_i_news li a:before, .module_i_news li a:after, .subbox_item a:after, .subbox_item a:before {
    content: none;
}
/* 圖 */
.blog_list_le {
    max-width: 50%;
}
.i_blog_le, .blog_list_le {
    overflow: hidden;
    position: relative;
    aspect-ratio: 5 / 4;
    background-color: black;
    border-radius: 15px;
}
.i_blog_le img, .blog_list_le img {
    width: 100%;
    transition: .4s ease;
}
.module_i_news li a:hover img, .subbox_item a:hover img {
    z-index: 1;
    transition: 0.4s;
    /* filter: grayscale(1); */
    opacity: 0.3;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}
.module_i_news li a:hover .i_blog_le::before,  .subbox_item a:hover .blog_list_le::before{
    opacity: 1;
    transition: 0.5s;
    margin-top: -20px;
}
.module_i_news li a .i_blog_le:before, .blog_list_le::before{
    content: "MORE +";
    position: absolute;
    line-height: 1.462;
    font-family: var(--SFontE);
    left: 50%;
    top: 50%;
    z-index: 99;
    transform: translateX(-50%);
    /* margin-left: -45px; */
    margin-top: -80px;
    display: block;
    padding: 10px 20px 7px;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: #fff;
    border: 2px solid #fff;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
/* 文字 */
.blog_list_ri {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 15px 35px;
}
.i_blog_ri, .blog_list_ri {
    padding: 20px 40px;
    width: 100%;
}
.i_blog_ri h5, .blog_list_ri h5 {
    font-size: var(--f24);
    text-align: left;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.08em;
}
.i_blog_ri em, .blog_list_ri em {
    font-size: 12px;
    color: #767676;
    margin: 10px 0;
    padding: 5px 0;
    letter-spacing: 1px;
}
.blog_list_ri em {
    /* margin: 10px 0 30px 0; */
}
.i_blog_ri p, .blog_list_ri p {
    font-size: 14px;
    letter-spacing: 2px;
    line-height: 1.8;
    font-weight: 400;
    color: #DADADA;
}



/*文章內層/ = = = = */
.blog_in_page .blog_box{display: flex;flex-wrap: wrap;justify-content: flex-end;gap: 10px;}
.blog_in_page h5.blog_le_t em {color: transparent;}
.blog_in_page .blog_ri {
    width: 90%;
    max-width: unset;
    margin: auto;
    width: calc(100% - 250px);
    padding-left: 50px;
    margin-left: 20px;
}
.blog_in_page h4.blog_category_title {
    width: 100%;
    letter-spacing: 2.5px;
    text-align: left;
    padding-top: 0;
    line-height: 1.6;
    font-size: var(--f24);
    display: block;
    color: #fff;
    font-weight: 500;
    margin-bottom: 25px;
    padding: 10px 0 15px;
    position: relative;
}
.blog_in_page h4.blog_category_title:before {
    content: "";
    width: 100%;
    height: 1px;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #555;
    background-size: 10px 100%;
    background-repeat: repeat-x;
}


/* 分享按鈕 = = */
.blog_shareData {align-items: center;align-content: center;flex-wrap: wrap;flex-direction: row;width: fit-content;padding: 0;border-radius: 5px;margin: 20px 0;}
.toShareNews b, .toShareNews a, .toShareNews a object, .toShareNews a i {font-weight: 300;font-size: 13px;color: #8B8B8B;}
.toShareNews a object {filter: grayscale(1) contrast(1) brightness(.5);width: 18px;transition: all .4s;}
.toShareNews > a:hover > object {filter: grayscale(1) contrast(1) brightness(.3);}

/* 文章編輯器 */
.blog_box_edit {background: transparent;margin: 10px 0;font-size: var(--f16);color: #fff;line-height: 1.8;padding: 0;font-weight: 300;letter-spacing: 1px;}
.articel_mainPic {display: none;}
.blog_box_edit * {line-height: 1.8;font-size: 15px;}
.blog_box_edit a {color: #74d3d2;}

/* 上下篇按鈕 */
.blog_back {z-index: 1;width: 100%;margin-left: 0;margin-top: 30px;padding-top: 40px;display: flex;justify-content: space-between;border-top: 1px solid #666;width: calc(100% - 250px - 50px);margin-left: 20px;}
.blog_back a {font-size: 13px;letter-spacing: 1px;}
.blog_back a.article_btn_back {background: #666;transition: .4s ease;display: none;}
.blog_back a.article_btn_back:hover {opacity: .6;}

.blog_back a.article_btn_prev, .blog_back a.article_btn_next {color: #666;width: fit-content;background: transparent;font-size: 0;border: 1px solid #666;min-width: 180px;display: flex;justify-content: space-between;border-radius: 5px;transition: all 0.5s ease-in-out;}
.blog_back a.article_btn_prev:hover, .blog_back a.article_btn_next:hover {background: #fff;border: 1px solid #fff;}
a.article_btn_prev:before, a.article_btn_next:after, a.article_btn_prev:after, a.article_btn_next:before {content: '< ';padding: 4px;font-size: 13px;text-decoration: none;font-family: var(--SFontET);color: #666;letter-spacing: 1.5px;font-weight: 500;}
a.article_btn_prev:after, a.article_btn_next:before{content: 'Previous';}
a.article_btn_next:after{content: '>';}
a.article_btn_next:before{content: 'Next';}

/*文章-相關推薦*/
.news_related{display: none;}




@media screen and (max-width: 1200px) {
/* 內層 */
.blog_in_page .blog_ri {width: calc(100% - 230px);padding-left: 30px;margin-left: 0;}
}


@media screen and (max-width: 1024px) {
.accordion li .link a {font-size: 14px;}    
.blog_subbox {gap: 30px;}
.subbox_item {margin: 0;padding-bottom: 30px;}
.i_blog_ri, .blog_list_ri {padding: 20px 0 20px 30px;}
.i_blog_ri h5, .blog_list_ri h5 {-webkit-box-orient: unset;letter-spacing: 0.06em;-webkit-line-clamp: 2;-webkit-box-orient: vertical;line-height: 1.5;}
.i_blog_ri p, .blog_list_ri p {letter-spacing: 0.08em;-webkit-line-clamp: 3;}
.i_blog_ri em, .blog_list_ri em {padding: 0;}
/* 內層 */
.blog_in_page .blog_le {display: none;}
.blog_in_page .blog_ri {width: 100%;padding: 0;}
.blog_in_page .blog_back {width: 100%;margin: 30px 0 20px;}
}

@media screen and (max-width: 768px) {
.blog_ri {padding: 0;padding-top: 60px;}
/* 內層 */
.blog_in_page h4.blog_category_title {font-size: var(--f28);}
.blog_back a.article_btn_prev, .blog_back a.article_btn_next {min-width: 120px;padding: 6px 10px;}
a.article_btn_prev:before, a.article_btn_next:after, a.article_btn_prev:after, a.article_btn_next:before {letter-spacing: 1px;font-size: 12px;}
.blog_in_page .blog_back {margin: 20px 0 40px;padding-top: 20px;border-top: 1px solid rgba(255, 255, 255, 0.15);}
}


@media screen and (max-width: 600px) {
.blog_ri {padding: 0;padding-top: 40px;}
.subbox_item a {display: flex;flex-direction: column;}
.i_blog_le, .blog_list_le { max-width: 100%;;aspect-ratio: 16 / 9;}
.i_blog_ri, .blog_list_ri {padding: 25px 0 0;}
.i_blog_ri h5, .blog_list_ri h5 {font-size: var(--f28);letter-spacing: 0.08em;}
/* 內層 */
/* .blog_in_page .banner h5 {padding: 0;}
.blog_in_page .main_part {width: 100%;} */
.blog_box_edit * {    font-size: 14px;}
}

@media screen and (max-width: 480px) {}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = = = = = */
/*促銷活動設定 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/* 促銷首頁 */
.news_part {
    width: 100%;
    padding: 50px 20px;
    background: #fff;
}
.animated-arrow {
    background: #2f68ab;
}






/* = = = 分隔線 相本主分類= = = = = = = = = == = = = = = = = = = = = = = = = = = = */
/*相本分類全版面 ( 限制最寬2000px  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.show-list .item:hover .show_name{}

/*相簿*/
.other_album_choice li {
    background: #ccc;
}
/*相簿下方隱藏*/
.other_album_choice{display:none;}
.album_fixed_title{display:none;}

/* 主分類相簿名 */
.subalbum-menu h2 {font-size: 0;}


/*大分類頁*/
.show-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: clamp(20px, 4%, 50px);
    gap: 30px;
}


.album_class_page .show-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
.show-list .show_pic {
    aspect-ratio: 16 / 11;
    aspect-ratio: 12 / 7;
    /* border-radius: 25px; */
}
.show-list .item {
    text-align: center;
    width: 100%;
    background: transparent;
    border-radius: 25px;
    overflow: hidden;
}
.show-list .item a .show_pic img {
    transform: scale(1);
    transition: .5s cubic-bezier(.4,.4,0,1);
}
.show-list .item a:hover .show_pic img {
    transform: scale(1.05);
}
/* 次分類相簿名 */
.other_subalbum li a p {
    margin: 0;
    display: inline-block;
    padding: 20px;
    font-size: var(--f18);
    font-weight: 600;
    line-height: 1;
    letter-spacing: 2px;
    color: #fff;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;    
    transition: .3s cubic-bezier(.4,.4,0,1);
    opacity: 0;
}


/* 外層hover */
.overlay {
    position: absolute;
    content: '';
    width: 100%;
    display: block;
    left: 0;
    top: 0;
    opacity: 0;
    transform: scale(1);
    transition: all .4s 100ms cubic-bezier(.42,0,.58,1);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    background: #06090b33;
    bottom: 0px;
    flex: none;
    height: 100%;
    left: 0px;
    margin: 0 0 0 0;
    position: absolute;
    right: 0px;
    top: 0px;
    width: 100%;
    z-index: 1;
    max-width: 100%;
    transition: .3s cubic-bezier(.4,.4,0,1);
}
figure.show_pic:before {
    content: '';
    bottom: 0px;
    flex: none;
    height: auto;
    left: -6px;
    margin: 0 0 0 0;
    position: absolute;
    right: 0px;
    top: -5px;
    width: 102%;
    z-index: 2;
    /* max-width: 102%; */
    background: url(https://pic03.eapple.com.tw/peakpower/photo_mask.svg) no-repeat;
    background-size: cover;
    background-position: 50%;
    opacity: 0;
    transition: .3s cubic-bezier(.4,.4,0,1);
}
.show-list .item:hover figure.show_pic:before, .show-list .item:hover a p{
    opacity: 1;
}








/* = = = 分隔線 相本分類= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/*相本內頁*/

.album_info_page{}
.album_descrip p {
    font-weight: 700;
    text-align: center;
    padding-bottom: 20px;
    width: 100%;
    color: #333;
    font-size: 20px;
    letter-spacing: 0.12em;
    display: none;
}
/*相簿瀑布流*/
.album_info_page .pic-list {
    -webkit-column-count: 3;
    -webkit-column-gap: 10px;
    column-count: 3;
    column-gap: 10px;
    width: 100%;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    grid-gap: 20px;
}
.album_info_page .pic-list .item { 
    width: 100%;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
    padding: 0;
    margin: 0;
}
.album_info_page .pic-list .show_pic {
    height: auto;
    padding: 0;
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    overflow: hidden;
}
.pic-list .item h6 {
    padding: 0;
    margin: 10px 0;
    color: #ccc;
    line-height: 2;
    letter-spacing: 1.5px;
    font-weight: 400;
}
.pic-list .item a img {
    transition: .6s ease;
}
.pic-list .item a:hover img {
    transform: scale(1.05);
    transition: .6s ease;
}




@media screen and (min-width: 1400px){
    .album_info_page .pic-list {grid-template-columns: repeat(3, 1fr);}
}


@media screen and (max-width: 980px){}

@media screen and (max-width: 768px){}

@media screen and (max-width: 600px){}





/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/*聯絡我們 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

.contact_form li.last cite {
    background: #d3af79;
}

.contact_editbox{
	padding: 0;
}
.contact_content .information_left{
	display: none;
}

/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
@media screen and (min-width: 1700px) {
/* footer */
.footer_info {margin: auto;}
}

@media screen and (max-width: 1400px) {
/* main */
.main_part{width: 95%;}
}


/* 下方區域_平板版面1280 */
@media screen and (max-width: 1280px) {
/* footer */
.footer .center{padding: 60px 80px;}
/* .footer_info {
    grid-template-columns: 1fr;
    gap: 30px;
}
.footer_info ul {
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    padding-top: 20px;
}
.footer_info li:nth-child(2) {
    display: block;
    width: 100%;
    margin: auto;
    margin-top: 20px;
    padding-top: 20px;
}
.footer_menu {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px 20px;
    width: fit-content;
    margin: auto;
    display: flex;
} */

}

/* @1024下方區域_平板版面1024 */
@media screen and (max-width: 1024px) {
/* main */
.main_part {padding: 80px 25px;}
    
}

/* 下方區域_平板版面768 */
@media screen and (max-width: 768px) {
/* main */
.main_part {padding: 60px 25px;}
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu { display: none    }
.footer.with_shopping_mode { padding: 0; }
#to_top {
bottom: 20px;       
padding: 0;
left: unset;
width: 44px;
height: 44px;
right: 16px;
}
#to_top::before { top: 18px; }
#to_top::after { top: 20px; }

/* footer */
.footer .center {padding: 60px 40px 0px 40px;}
.footer_info {padding-bottom: 40px;gap: 20px;}
.footer_info ul {
align-content: flex-start;
align-items: flex-start;
flex: none;
flex-direction: row;
height: auto;
justify-content: space-between;
display: flex;
flex-wrap: wrap;
gap: 40px 0px;
padding: 0;
}
.footer_info li:nth-child(1) {grid-template-columns: 1fr;width: 100%;}
.footer_info li p a {color: #767676;}
.footer_info li p.tel a, .footer_info li p.taxid a {font-size: 22px;color: #fff;}
.footer_info li p.taxid a {color: #5DDADB;}

.footer_info li:nth-child(2) {
display: block;
width: 100%;
margin: auto;
margin-top: 20px;
padding-top: 20px;
align-items: flex-start;
flex-direction: column;
flex-wrap: nowrap;
gap: 40px;
height: auto;
margin: 0;
padding: 0px;
flex: none;
width: calc(100% - 40px);
max-width: calc(100% - 40px);
}
.footer_menu {
align-items: flex-end;
gap: 0;
width: fit-content;
margin: auto;
display: flex;
flex-wrap: wrap;
width: 100%;
display: flex;
flex: none;
position: relative;
align-items: flex-start;
flex-direction: column;
flex-wrap: nowrap;
height: auto;
justify-content: center;
padding: 0px;
width: auto;
gap: 15px;
}
.footer_menu a {
background: transparent;
border: 0;
transition: all .3s ease;
position: relative;
align-items: center;
display: flex;
flex-direction: row;
overflow: visible;
color: #DADADA;
font-weight: 800;
height: auto;
letter-spacing: 0.1em;
line-height: 1;
margin: 0px 0px 0px 0px;
text-align: left;
width: auto;
max-width: 100%;
justify-content: flex-start;
font-size: 0;
padding: 0;
}
.footer_menu a:before {font-size: 13px;letter-spacing: 1.5px;}

.copy {text-align: left;padding: 20px 40px 30px;justify-content: flex-start;}
.copy a {padding: 0;padding-right: 5px;}
.privacyLinks {margin: 0;}
.privacyLinks a+a {padding-left: 5px;}
}

@media screen and (max-width: 600px) {
/* footer */
.footer .center {padding: 60px 25px 0;}
.footer_info li p.tel a, .footer_info li p.taxid a {font-size: 20px;}
.copy {padding: 20px 25px 30px;}
.total_view {width: fit-content;}
}



@media screen and (max-width: 480px) {}