@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');




/* 英文粗字體 Fira Sans */
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans: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');
/* 英文字體 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');




/*網站全域設定/＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
:root {
  /* --Color: #0009;#f6f5f5 */
  --MainColor: #ec8430; /*網站主要色系*/
  --SubColor: #2a2a2a; /*網站文字色*/
  --SubColor1: #ffffff ; /*網站輔助色系1*/
  --SubColor2: #FBD254; /*網站輔助色系2*/
  --SubColor3: #feeb52; /*網站輔助色系3*/
  --SubColor4: #fde03b; /*網站輔助色系4*/  
  --SubColor5: #f2f2f2; /*網站輔助色系5*/ 
  --SubColor6: #e6e6e6; /*網站輔助色系6*/ 
  --SubColor7: #f3f6f9; /*網站輔助色系7*/ 
  --SubColor8: #f5dc00; /*網站輔助色系8*/ 
  --SFontE: "Inter", "Noto Sans TC",sans-serif;/*英文字體-無襯線*/
  --SFontEN: "Fira Sans", "Noto Sans TC", sans-serif, system-ui;/*英文標字體*/  
  --SFontC: "Noto Serif 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{
    /* --f52:60px;
    --f28:32px; */
  }
}
@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:22px;
  --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:18px;
  --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: #f1f1f1;
    width: 7px;
}
&::-webkit-scrollbar-button {
    display: none;
    background: #f1f1f1;
    border-radius: 0;
}
&::-webkit-scrollbar-track-piece {
    background: #f1f1f1;
}
&::-webkit-scrollbar-thumb {
    background-color: #c1c1c1;
}
&::-webkit-scrollbar-track {
    box-shadow: transparent;
} */





/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

/* header */
.header_area {position: sticky;z-index: 9999;width: 100%;background: #fff;padding: 0;}
.header_area.sticky {box-shadow: unset;background: #fff;}




.main_header_area .container {
max-width: 100%;
padding: 0 40px;
transition: 0.5s;
padding: 0;
border-bottom: #e8e8e8 solid 1px;
}
.header_area .main_header_area {
background: transparent;
padding: 0 5vw 0;
transition: all 0.3s;
position: relative;
padding: 0;
}
.header_area.sticky .main_header_area {
background: transparent;
padding: 0;
transition: all 0.3s;
border: 0;
}

/* 導覽列 */
.navigation {
    top: 0;
    right: 0;
    left: 0;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    transition: 0.5s ease;
    font-size: 0;
    min-height: 80px;
    width: 98%;
    max-width: 1600px;
    margin: auto;
    background-color: transparent;
}




/*選單 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =*/
.pageIndex .stellarnav, .stellarnav {}
.stellarnav, .stellarnav {}
.header_area.sticky .stellarnav {
    opacity: 1;
    transition: all 0.3s;
    pointer-events: unset;
}

/* 第一層 */
.stellarnav ul {margin: 0;padding: 0;text-align: right;padding: 0;/* padding-left: 200px; */}

.stellarnav > ul > li {
    position: relative;
    padding: 25px 0;
    font-size: 0;
}
.stellarnav.desktop > ul > li:not(:last-child) > a:after {
    content: " ";
    display: block;
    width: 1px;
    height: 16px;
    background-color: #aaa;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(-50%, -50%);
    transition: all .5s;
    pointer-events: none;
    border: 0;
}
.stellarnav > ul > li > a {
    font-family: var(--SFontEN);
    color: #1a1a1a;
    height: fit-content;
    margin: 0;
    font-weight: 500;
    position: relative;
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 1px;
    padding: 0 5px;
}
.header_area.sticky .stellarnav > ul > li > a {}
.stellarnav > ul > li > a, .stellarnav > ul > li.has-sub > a {
    font-weight: 500;
    position: relative;
    padding: 0 20px;
}

.stellarnav.desktop > ul > li > a:hover {
        color: #db9a0e;
}




.stellarnav ul li:hover a {
    opacity: 1;
    transition: all 0.3s ease-in-out;
}
.stellarnav ul ul>li>a:hover, .stellarnav ul ul>li>a:focus {
    color: #131413;
    opacity: 1;
}
/* 下拉符號移除 */
.stellarnav li.has-sub > a:after{
    content: none;
}


/* 第二層 */
.stellarnav ul ul.other_classes li:first-child {display: none;}

.stellarnav.desktop ul ul {
    margin: 0;
    padding: 0;
    position: absolute;
    background: #292929;
    /* background-color: #faf8f2; */
        background: #f8f8ed;
    width: auto;
    border: none;
    min-width: auto;
    width: fit-content;
    min-width: 150px;
    margin: 0;
}
.stellarnav > ul > li > ul {
    background: #fff;
    height: max-content;
    left: 50%;
    transform: translateX(-50%);
    border: 0;
    border-radius: 0;
    padding: 5px 0 5px;
    width: 150px;
    visibility: hidden;
    opacity: 0;
    transition: all .5s ease;
}
.stellarnav.desktop > ul > li > ul {
    display: block !important;
    top: calc(100% + 2px);
    transform: translateX(-50%) scale(1, 0);
    transform-origin: top;
}
.stellarnav.desktop > ul > li:hover > ul {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
    transform: translateX(-50%) scale(1, 1);
    transition: all 0.4s cubic-bezier(0.73, 0.08, 0.11, 0.99);
        border-radius: 0 0 5px 5px;
    overflow: hidden;
}

.stellarnav li li {
    border: 0;
    width: 100%;
    float: left;
    clear: both;
    position: relative;
    text-align: left;
}
.stellarnav li li:last-of-type, .stellarnav.desktop li.has-sub li:last-of-type a {
    border-bottom-width: 0;
}
.stellarnav.desktop li.has-sub li a {
    font-size: 14px;
    padding: 12px 20px;
    white-space: nowrap;
    font-family: var(--SFontEN);
    border: 0;
    transition: all .5s;
    letter-spacing: 1.5px;
    transform: translateX(0);
    text-align: center;
    color: #444;
    font-weight: 500;
    border-bottom: 1px solid #ebdec5ab;
}
/* .stellarnav.desktop li.has-sub li+li a {padding-bottom: 12px;} */
.stellarnav.desktop li.has-sub li a:hover {
opacity: 1;
    background: #f9c84a;
    /* background: #fbda3f; */
}
.news_classes > li:hover > a, .news_classes > li:focus > a {
    /* color: #fff;    
    background: #808080; */
}


/* 第三層 */
.stellarnav ul ul ul {
    top: 0;
    left: 100%;
    margin: 0;
    width: fit-content;
    transform: unset;
}



.me_tp_features {display: none;}

/*電腦LOGO = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.nav-header {
    text-align: center;
    position: absolute;
    left: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    line-height: 0;
    transition: 0.5s 
ease;
    padding-top: 0;
    top: 5px;
    z-index: 10000;
}
.header_area .nav-brand {
    margin: 0;
    max-width: 180px;
    width: 100%;
}
.nav-brand img {
    width: auto;
}


.sticky .nav-header {}
.sticky .nav-brand img {}




/*手機LOGO
.nav-brand-m {}
*/


/*footer = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.box_link{display: none;}

.footer {
    position: relative;
    margin-top: 0;
    padding-top: 60px;
    padding-bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    background: #f3f3f3;
}
.pageIndex .footer {background: #fff;}
.footer::before {content: '';/* background: url(https://pic03.eapple.com.tw/ingenuity/ft_bgtop.svg) no-repeat; */position: absolute;display: block;width: 100%;aspect-ratio: 128 / 5;height: auto;top: 0;background-size: contain;transform: translateY(calc(-100% + 1px));/* background: #000;*/}
.footer .center {
    width: 95%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
}
.footer_logo {
    margin: auto;
    max-width: 180px;
    display: none;
}
.footer_logo a {
    display: block;
    width: fit-content;
    font-size: 0;
}


/* footer資訊*/
.footer_info{ }

.footer_info {
    text-align: center;
    width: 100%;
    display: flex;
    grid-template-columns: 1fr;
    grid-gap: 20px;
    padding: 0;
    justify-content: center;
    flex-direction: row;
    padding-bottom: 20px;
}

.footer_info:nth-child(1) > ul {display: flex;flex-direction: column;}


/* 文字共用 */
.footer_menu a, .footer_info li p {
    position: relative;
    border: 0;
    /* margin: 0; */
    color: #767676;
    background: transparent;
    padding: 0 15px;
    font-family: var(--SFontEN);
    font-size: 13px;
    line-height: 2;
    letter-spacing: 1px;
    font-weight: 400;
    opacity: 1;
    text-align: center;
    margin: 0;
}

.footer_info li:nth-child(1) {display: flex;padding: 0;flex-direction: row;text-align: center;gap: 3px 20px;align-content: center;justify-content: center;}
.footer_info li p:before {
    color: #1A1A1A;
    font-family: var(--SFontEN);
    margin-right: 4px;
    letter-spacing: .5px;
    font-weight: 500;
    font-size: 13px;
}
.footer_info li p{padding: 0;}
.footer_info li p+p{margin-left: 0;}

.footer_info li p.fax:before {content: '營業時間：';}

.footer_info li p.line {order: 1;}
.footer_info li p.taxid {order: 2;}
.footer_info li p.mail {order: 3;}
.footer_info li p.add {order: 4;}
.footer_info li p.fax {order: 5;}

.footer_info li:nth-child(2) {padding: 0;/* border-top: 1px solid #06040499; *//* border-bottom: 1px solid #06040499; */width: fit-content;margin: 10px auto;/* display: none; */order: -1;}
.footer_menu {
font-size: 0;
width: fit-content;
display: flex;
justify-content: center;
margin: auto;
padding: 5px 0;
}
.footer_menu a {       
line-height: 2;
transition: all 0.3s linear;
color: #2f2f2f;
}
.footer_menu a:not(:last-child):after {
    content: "";
    pointer-events: none;
    position: absolute;
    width: 1px;
    height: 50%;
    background-color: #737373;
    top: 50%;
    right: 0;
    z-index: 1;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.footer_menu a:first-child{display: none;}
.footer_menu a:hover {
    background: transparent;
        color: #ecad38;
}


/* ------------------------------------------------------------------------------------------------------------ */

.copy {
    text-align: center;
    padding: 20px;
    width: calc(100% - 40px);
    margin: auto;
    border-top: 1px solid #ddd;
    align-items: center;
    color: #a3a3a3;
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    position: relative;
    justify-content: center;
    font-family: var(--SFontEN);
    font-size: 10px;
    line-height: 2;
    letter-spacing: 1px;
    font-weight: 400;
    background-color: transparent;
}
.copy a {color: #a3a3a3;} 

/* 浮動按鈕 */

/* 置頂按鈕 */
#to_top {
bottom: 35px;
    left: 20px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .04);
    font-family: var(--SFontEN);
    color: #2A2A2A;
    padding: 11px 0 0;
    letter-spacing: .5px;
    transition: all .5s ease;
}
#to_top i.top {
    width: 20px;
    height: 18px;
}
#to_top:hover {
    opacity: 0.6;
}





/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = =*/
/* 商品下拉超過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個--結束 */





/* = = = 大圖-分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = *
/*預設解除背景輪播*/
#content_main, #content {
margin: 0;
background: transparent;
padding: 80px 0 ;
background-repeat: repeat;
padding: 0;
z-index: 1;
}
.bannerindex {position: relative;height: auto;/* min-height: 90vh; */padding: 0;}



/* 大圖尺寸 */
.bannerindex .swiper-banner {
position: static;
margin: 0;
height: auto;
}
/* .bannerindex .swiper-wrapper {height: 90vh;} */
.bannerindex .swiper-slide {height: 100%;}
.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%;
transform: scale(1) !important;
}







/* 大圖點點按鈕 */
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
bottom: 12px;
}
.swiper-pagination-bullet {
width: 6px;
height: 6px;
border-radius: 5px;
background-color: #b4b4b3;
transition: all 0.5s 0s ease;
opacity: 1;
}
.swiper-pagination-bullet-active {
background-color: #666;
/* background-color: #FBD254; */
opacity: 1;
width: 28px;
}
/* 大圖點點按鈕END */


.swiper-slide img { height:auto;}
/* 大圖進場 */
.bannerindex .swiper-wrapper:before, .bannerindex .swiper-wrapper:after {
    content: "";
    position: absolute;
    z-index: 100;
    pointer-events: none;    
    opacity: 0;    
} 





/* 圖內層 */
.bannerindex .swiper-banner .swiper-slide:before, .bannerindex .swiper-banner .swiper-slide:after {
    content: '';
    position: absolute;
    z-index: 100;
    pointer-events: none;
    opacity: 0;    
    display: block;
}

/* banner01 */
.bannerindex .swiper-banner .swiper-slide::before {    }
.bannerindex .swiper-banner .swiper-slide:after {}


/* banner02 */
.bannerindex .swiper-banner .swiper-slide:nth-child(2):before {}
.bannerindex .swiper-banner .swiper-slide:nth-child(2):after {}





/* 動畫 */
/* .bannerindex .swiper-slide.swiper-slide-active:nth-child(1):before {
animation: NfadeInUp .8s ease-in-out forwards;
animation: NfadeInDown 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
animation-delay: .4s; 
} */
/* .bannerindex .swiper-slide.swiper-slide-active:nth-child(1):after, .bannerindex .swiper-slide.swiper-slide-active:nth-child(2):after {
animation: NslideRight 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
} */




@keyframes txt-show {0% {opacity: 0;}100% {opacity: 1;}}
@keyframes NfadeInUp {0% {transform: translateY(20px) ;opacity: 0;}100% {transform: translateY(0) ;opacity: 1;}}

@keyframes NslideRight {0% {-webkit-transform: translateX(-100px);transform: translateX(-100px);}100% {-webkit-transform: translateX(0px);transform: translateX(0px);}}







@media screen and (max-width: 1500px) {
/* = = 大圖 = = */

}
@media screen and (max-width: 1200px) {
/* = = 大圖 = = */

}
@media screen and (max-width: 1024px) {
/* = = 大圖 = = */

}
/* @768上方區域_平板版面768px */
@media screen and (max-width: 768px) {
/* = = 大圖 = = */

}

@media screen and (max-width: 660px) {
/* = = 大圖 = = */ 

}

@media screen and (max-width: 480px) {
/* = = 大圖 = = */ 

}



/* = = = 主設定-分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =*/
/* 麵包屑 */
.path {display: none;}


/* main */
div#page{
background-size: auto;
position: relative;
}

.edit_part{
padding: 0;
min-height: 80vh;/* 暫時 */
}

.main_part {
width: 100%;
max-width: 1200px;
margin: auto;
padding: 100px 20px;
padding-bottom: 80px;
}
.show_content {
    margin: auto;
    padding: 0;
    font-family: var(--SFont);
    max-width: 1300px;
    margin: 0 auto;
    padding: 0;
}

.subalbum-menu {margin: 0;padding: 0;}

.edit {
color: #262626;
margin: auto;
padding: 20px 0 60px;
line-height: 1.7;
letter-spacing: 0.5px;
font-weight: 400;
}

/* 頁籤 */
ul.page {
    width: 100%;
    margin: 40px auto;
    font-size: 18px;
    text-align: center;
    font-family: var(--SFontEN);
    margin: 80px auto 40px;
    font-weight: 500;
}
.page li a, .page li {
    width: 22px;
    height: 22px;
    line-height: 22px;
    transition: .4s;
    color: #bbb;
    font-size: var(--f20);
}
.page li {}
.page li.activeN {
    color: #222;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.page strong, .page a:hover {
    background: transparent;
    color: #ecad38;
}



/*內頁BANNER 設定 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.banner {
    position: relative;
    background: #e6e6e6;
    width: 100%;
    background-size: cover;
    background-position: 0 100%;
    position: relative;
    height: 400px;
    object-fit: cover;
    display: none;
}
.banner:before {
    content: '';
    display: block;
    position: absolute;
    /* background-color: #000; */
    opacity: 0.3;
    width: 100%;
    height: 100%;
}
.banner h5 {
    color: transparent;

}



.banner.banA {}
.banner.banB {}
.banner.banC {}
.banner.banD {}
.banner.banE {}
.banner.banblog {}




@media screen and (min-width: 1400px) {}

/* @1200上方區域_平板版面1200px */
@media screen and (max-width: 1200px) {

}

/* @1024上方區域_平板版面1024px */
@media screen and (max-width: 1024px) {
    /* = = header = = */
    .header_area.sticky { position: fixed; }
    .header_area .main_header_area {
        backdrop-filter: blur(5px);
        border-bottom: 1px solid #ffffff9e;
    }
    .header_area.sticky .main_header_area{
        backdrop-filter: none;
        border: 0;
    }


    .navigation {
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
    }
    /* logo*/
    .nav-header {
        max-width: 180px;
        /* padding: 20px 0 10px; */
        margin: auto;
        left: 20px;
    }
    .sticky .nav-header {
        /* padding: 20px 0 0; */
    }




    /* 導覽列 */
    .pageIndex .stellarnav {
        opacity: 1;
        pointer-events: unset;
    }
    .stellarnav ul {
        /* text-align: center; */
    }
    .stellarnav > ul > li {
        /* padding: 10px 0; */
    }    
    .stellarnav > ul > li > a {
        letter-spacing: 0;
        margin: 0;
        font-size: 15px;
    }
    .stellarnav>ul>li:after {
        height: 3px;
        top: 100%;
        bottom: 0;
        transform: translate(-50%, 0);
    }
}


/* @768上方區域_平板版面768px */
@media screen and (max-width: 768px) {
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{display: none;}

/* = = 手機板大圖 = = */
.bannerindex { position: relative;padding:0; margin:0;}
.swiper-banner {position: static;margin: 0;height: auto;}
.pageIndex .swiper-banner .swiper-slide {
height: auto;
width: 100% !important;
aspect-ratio: 46/23;
background-position: center;
background-size: cover;
}
.pageIndex .swiper-banner .swiper-slide:nth-child(1) {
background-image: url(https://pic03.eapple.com.tw/renxing168/BNm01.jpg);
background-position: 0% 50%;
}
.pageIndex .swiper-banner .swiper-slide:nth-child(2) {
background-image: url(https://pic03.eapple.com.tw/renxing168/BNm02.jpg);
background-position: 0% 50%;
}
.pageIndex .swiper-banner .swiper-slide:nth-child(3) {
background-image: url(https://pic03.eapple.com.tw/renxing168/BNm03.jpg);
background-position: 0% 50%;
}
.pageIndex .swiper-banner .swiper-slide img {height: auto;display: none;}



/* logo*/    
.nav-header {max-width: 130px;padding: 0;margin: 0;margin-left: 0;left: 0;top: 0;z-index: 1;position: relative;}
.sticky .nav-header {/* padding: 10px 0; */}
.nav-brand img { }


/* = = header = = */
.header_area {height: 60px;border-bottom: #e8e8e8 solid 1px;}
.header_area .main_header_area {padding: 0 4vw;border: 0;backdrop-filter: none;}
.header_area.sticky .main_header_area {padding: 0 4vw;}
.main_header_area .container {border: 0;}

.navigation {display: flex;justify-content: space-between;flex-direction: row;width: 100%;border: 0;min-height: 60px;}


    /* 導覽列漢堡選單 */    
    .stellarnav.mobile {
        right: 0;
        left: unset;
        width: fit-content;
        /* margin-right: -20px; */
    }
    .stellarnav.mobile .menu-toggle {
        display: flex;
        margin: auto;
        padding: 0;
        width: 60px;
        height: 60px;
        flex-direction: row-reverse;
        align-items: center;
        justify-content: flex-start;
    }

    
    /* 漢堡選單樣式 */
    .stellarnav .menu-toggle:after {
        text-transform: capitalize;
        /* content: 'Menu'; */
        font-size: 14px;
        color: #fff;
        transform: scale(1);
        font-family: var(--SFontEN);
        letter-spacing: 2px;
        content: none;
    }
    .stellarnav .menu-toggle span.bars {
        display: block;
        margin: 0;
        position: relative;
        margin: 0;
        padding: 0;
        /* width: 40px; */
        /* height: 10px; */
        width: 32px;
    }
    .stellarnav .menu-toggle span.bars span {
        width: 32px;
        height: 2px;
        border-radius: 0;
        background: #1A1A1A;
        margin: 0 auto 5px;
        /* background: #fff; */
        height: 1px;
    }
    .sticky .stellarnav .menu-toggle span.bars span {
        background: #000;
    }
    /* 黑色遮罩 */
    .stellarnav.mobile::before {
        content: "";
        position: fixed;
        width: 100%;
        height: 100%;
        top: 50%;
        left: 50%;
        z-index: -5;
        line-height: normal;
        background-color: transparent;
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0;
        transition: 1s;
        content: none;
    }
    .stellarnav.mobile.active::before {
        content: "";
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        border-radius: 0;
        opacity: 1;
        transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);
    }
    
    /* 導覽列展開 */
    .stellarnav.mobile.left > ul {
        left: unset;
        right: 0;
        font-size: 0;
        max-width: 100%;
        padding: 0 30px;        
        /*右滑出現*/
        right: -100vw;
        overflow: hidden;
        transition: all .5s ease;
        overflow-y: auto;
    }
    /*卷軸*/
    .stellarnav.mobile.left > ul::-webkit-scrollbar {
        background: #eaeaea;
        width: 4px;
        height: 15px;
    }
    .stellarnav.mobile.left > ul::-webkit-scrollbar-button {
        display: none;
        background: #eaeaea;
        border-radius: 0;
    }
    .stellarnav.mobile.left > ul::-webkit-scrollbar-track-piece {
        background: #fbfbfb;
    }
    .stellarnav.mobile.left > ul::-webkit-scrollbar-thumb {
        background-color: #888;
        width: 4px;
        border-radius: 15px;
        border: 3px solid var(--MainColor);
    }
    .stellarnav.mobile.left > ul::-webkit-scrollbar-track {
        border-radius: 6px;
        height: 6px;
        background-color: #eaeaea;
    }
    .stellarnav.mobile.left.active > ul{        
        right: 0;
        max-width: 100%;
        width: 70%;
    }


    .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: #000;
        transform: scale(1);
        font-family: var(--SFontEN);
        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 #000;
    }
    /* 導覽列選取Hover效果 */
    .stellarnav ul:hover li a {
        opacity: 1;
        transition: all 0.3s ease-in-out;
    }


    /* 第一層 */
    .stellarnav.mobile > ul > li {
        border-bottom: 1px #eee solid;
        padding: 5px 0;
        display: block;
        border-bottom: 1px solid #f0f0f0;
        display: flex;
        flex-direction: column;
    }
    .stellarnav.mobile li.open {
        background: #f3f3f3;
        /* color: #fff; */
        padding: 0;
        padding-bottom: 5px;
    }
    .stellarnav.mobile > ul > li > a, .header_area.sticky .stellarnav.mobile > ul > li > a:not(.dd-toggle){
        text-align: left;
        overflow: auto;
        height: auto;
        line-height: 150%;
        display: block;
        letter-spacing: 0.08em;
        color: #333;
        font-size: 16px;
        letter-spacing: 0.04em;
        padding: 16px 12px 16px 30px;
    }
    .stellarnav.mobile li.open > a {
        border: 0;
    }    
    .stellarnav > ul > li > a:before{
        content: none;
    }
    /* +符號修改 = = */
    .stellarnav.mobile > ul > li > a.dd-toggle {
        top: 5px;
        padding: 10px;
    }
    .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%;
        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 {
        -moz-transform: translateY(10px) scaleY(-1);
        -webkit-transform: translateY(10px) scaleY(-1);
        -o-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;
        transform: unset;
    }
    .stellarnav li li {
        font-size: 14px;
        color: #333;
        font-family: var(--SFont);
        letter-spacing: 0.04em;
        font-size: 15px;
        color: #333333;
        letter-spacing: 0.04em;
    }
    .stellarnav.mobile li li.has-sub a {
        padding: 10px 30px 10px 20px;
    }
    .stellarnav a.dd-toggle .icon-plus {
        height: 80%;
    }
    .stellarnav li li a.dd-toggle .icon-plus:before, .stellarnav li li a.dd-toggle .icon-plus:after{
        border-bottom: solid 1px #ccc;
        top: 0%;
    }
    .stellarnav.mobile ul li:hover > a {
        opacity: 1;
        transition: all 0.3s ease-in-out;
        background: transparent;
        color: unset;
    }
    .stellarnav.mobile ul ul>li>a:hover{
        color: var(--MainColor);
    }

    /* 第三層 */
    .stellarnav.mobile li.open li.open {
        background: #fbfbfb;
    }
    .stellarnav li li li a{
        font-size: 14px;
    }

}


/* @660上方區域_平板版面660px */
@media screen and (max-width: 660px) {
    /* 共用 */
    .main_part {
        width: 100%;
        padding: 60px 0 40px;
    }
    .show_content {
        padding: 0 25px;
        width: 100%;
    }
   
    /* 導覽列展開 */
    .stellarnav.mobile.left.active > ul {
        width: 100%;
        max-width: 440px;
    }


}



/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = =*/
/* 購物車-OFF = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.product_page .main_part {max-width: 1400px;}


.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);}






@media screen and (max-width: 1200px) {}
@media screen and (max-width: 980px) {}
@media screen and (max-width: 768px) {}
@media screen and (max-width: 600px) {}




/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/*文章設定 -OFF = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

/*文章功能頁/ = = = = */
.blog_box {
    display: flex;
    margin: auto;
    font-family: var(--SFontEN);
    justify-content: space-between;
    flex-wrap: wrap;
    gap: unset;
    width: 100%;
    padding-top: 40px;
}

/* 左側分類欄位 */
.blog_le {
    padding: 0;
    position: relative;
    letter-spacing: 1px;
    float: left;
    box-sizing: border-box;
    width: 20%;
    padding-right: 50px;
}
h5.blog_le_t {margin-bottom: 10px;text-align: left;line-height: 28px;letter-spacing: 1px;font-weight: bold;padding: 0;position: relative;border-bottom: 0;font-size: 0;}
h5.blog_le_t em {
    color: var(--SubColor);
    line-height: 1.5;
    text-transform: uppercase;
    position: relative;
    display: block;
    width: 100%;
    font-weight: 600;
    letter-spacing: 2px;
    font-family: var(--SFontE);
    padding: 10px 5px;
    padding-left: 0;
    border-bottom: 1px solid #d6d6d6;
    font-size: 16px;
}

h5.blog_le_t span {display: none;}
.blog_search {position: relative;margin-bottom: 10px;opacity: .8;}
.blog_search input[type=search] {
    width: 100%;
    font-size: 14px;
    color: #000;
    border: 0;
    background: #fff;
    border-radius: 0;
    border: 1px solid #999;
    padding: 10px 40px 10px 10px;
}
.blog_search input[type=submit] {background: transparent;}
.blog_search form:after {
    background: transparent;
    z-index: 10;
    padding: 0;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    width: 40px;
    content: "\f002";
    font: normal normal normal 14px / 1 FontAwesome;
    height: 38px;
    align-items: center;
    justify-content: center;
}
/* 分類列 */
.blog_le .accordion {border-radius: 0;border: 0;overflow: hidden;display: grid;grid-template-columns: repeat(1, 1fr);font-size: 0;}
.blog_le .accordion li {transition: .3s ease-out;}
.blog_le .accordion li {
    transition: .3s ease-out;    
    border-bottom: 0;
}
.blog_le .accordion li li {
    margin-bottom: 1px;
    border: 0;
}
.accordion li+li .link {border: 0;}
.accordion li .link, .accordion li+li .link {border: 0;border-bottom: 1px solid rgba(255, 255, 255, 0.1);}
.accordion li .link a
 {
    text-align: left;
    margin: 0;
    border: none;
    background: transparent;
    transition: all 0.3s;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: .8px;
    padding: 17px 15px;
    position: relative;
    color: #000;
    font-weight: 400;
}
.fa-chevron-down::before, .fa-chevron-down::after {content: "";width: 13px;height: 1px;background-color: #999999;display: block;position: absolute;top: 50%;right: 15px;z-index: 1;transition: all 0.5s;}
.fa-chevron-down::after {transform: translateY(-50%) rotate(90deg);}
.blog_le .accordion li.open i.fa-chevron-down::before {content: '';}
.blog_le .accordion li.open i.fa-chevron-down::after {transform: translateY(-50%) rotate(0);}

.link a {color:#000 !important;}
.blog_le .accordion > li.on_this_category{background: transparent !important;}
.blog_le .accordion > li.on_this_category:hover .link a, .blog_le .accordion > li:hover .link a{color:#000 !important;}
.blog_le .accordion > li.open { background: transparent;}
.blog_le .accordion > li.open > .link a{ background: rgba(153, 153, 153, 0.6);}
.blog_le .accordion > li:hover {background: transparent !important;}
.blog_le .accordion > li:hover .link a {background: rgba(153, 153, 153, 0.6);}
.blog_le .accordion > li.on_this_category .link a {color: #000  !important; border-bottom:1px solid #fff;}
/* 子分類 */
.submenu {background: transparent;}
.submenu a {color: #ccc;transition: all 0.4s ease;line-height: 1.3;background: #4444444d;}
.submenu a:hover {background: #4444444d;color: #000;}
.submenu a .fa-circle-chevron-right::before {font-size: 11px;padding: 3px;line-height: 1.5;}




/* 右側圖文區 */
.blog_ri {padding: 0;width: 100%;box-sizing: border-box;width: calc(100% - 20% - 1%);}
h4.blog_category_title {width: fit-content;font-weight: 600;letter-spacing: 1px;display: none;}
/* 圖文區塊 */
.blog_subbox {grid-template-columns: 1fr 1fr 1fr;gap: 0;flex-wrap: wrap;gap: 20px;}
.subbox_item {position: relative;border-radius: 0;overflow: hidden;transition: .3s ease-out;border: 0;height: fit-content;width: 100%;margin: 0;background: #fff;padding: 0;border-radius: 5px;height: 100%;}
.subbox_item:hover {transition: .3s ease-out;}
.subbox_item li:hover {transition: .3s ease-out;box-shadow: 9px 12px 20px 0px rgb(181 177 172 / 35%);}
.subbox_item a {grid-template-columns: 1fr;gap: unset;height: 100%;padding: 0;display: flex;flex-wrap: wrap;align-items: flex-start;align-content: flex-start;}
.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 {
        overflow: hidden;
    position: relative;
    aspect-ratio: 1 / 1;
    background-color: #1D1B1C;
    width: 100%;
    height: auto;
    border: 0;
}

.subbox_item a:hover .blog_list_le:after {opacity: .8;transform: translate(-50%, -50%);}
.blog_list_le img {width: 100%;transition: .8s ease;}
.subbox_item a:hover img {z-index: 1;opacity: 0.4;transform: scale(1.08);}
/* 文字 */
.blog_list_ri {display: flex;flex-direction: column;justify-content: flex-start;max-width: 600px;margin: 0 auto;padding: 15px 35px;padding: 0;width: 100%;margin: 0;padding: 15px;}
.blog_list_ri h5 {font-size: var(--f20);text-align: left;font-weight: 600;margin-bottom: 8px;font-weight: 500;letter-spacing: 1px;color: #2A2A2A;transition: all 0.4s ease;}
.subbox_item a:hover h5{color: var(--SubColor2);}
.blog_list_ri em {margin: 0;order: -1;padding: 0;font-family: var(--SFontE);font-weight: 700;margin-bottom: 5px;font-size: 13px;color: #4f4f4f;letter-spacing: 0;text-transform: uppercase;}
.blog_list_ri p {line-height: 1.8;margin: 0;-webkit-line-clamp: 3;font-weight: 400;font-size: 14px;letter-spacing: 0.5px;color: #999;}



/*文章內層/ = = = = */
.blog_in_page h5.blog_le_t em {
    /* color: transparent; */
}
.blog_in_page .blog_ri {
    background: #f5f5f5;
    padding: 20px 40px;
    margin-bottom: 0;
    border-radius: 5px 5px 0 0;
}
.blog_in_page h4.blog_category_title {
    width: 100%;
    letter-spacing: 1.5px;
    font-size: var(--f24);
    display: block;
    text-align: left;
    border-bottom: 1px dashed #969ca74d;
    color: #232323;
    font-weight: 500;
    margin-bottom: 20px;
    padding: 20px 0;
}



/* 分享按鈕 = = */
.blog_shareData {
    border: 1px solid #ccc;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    margin-bottom: 20px;
    width: fit-content;
    padding: 10px;
    border-radius: 5px;
    margin: 0;
    display: none;
}
.toShareNews b, .toShareNews a, .toShareNews a object, .toShareNews a i {
    font-weight: 400;
    font-size: 14px;
    color: #333;
}
.toShareNews a object {
    filter: grayscale(1) brightness(1) contrast(1);
}
.toShareNews > a:hover > object {
    filter: none;
}
/* 文章編輯器 */
.blog_box_edit {
    background: transparent;
}
.blog_box_edit * {
    line-height: 1.7;
}
.articel_mainPic {
    display: none;
}

/*文章-相關推薦*/
.news_related, .prod_related {
    font-family: var(--SFont);
    background: #fff;
    padding: 80px 5%;
    margin: auto;
    display: none;
}


/* 上下篇按鈕 */
.blog_back {
    position: relative;
    justify-content: center;
    z-index: 1;
    justify-self: flex-end;
    width: calc(100% - 20% - 1%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 5px;
    margin: auto;
    margin-top: 0;
    text-align: center;
    margin-right: 0;
    justify-items: start;
    background: #f5f5f5;
    padding: 25px;
    border-radius: 0 0 5px 5px;
}
.blog_back:before {content: '';display: block;position: absolute;width: calc(100% - 40px);height: 1px;left: 20px;background: #ddd;}
.blog_back a {font-size: 13px;letter-spacing: 2px;}
.blog_back a.article_btn_back {background: #a7a9ac;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: #777;transition: .4s ease;width: fit-content;background: transparent;font-size: 0;border: 1px solid #777;}
.blog_back a.article_btn_next {justify-self: end;}
a.article_btn_prev:before, a.article_btn_next:after {content: '< Previous';padding: 8px;font-size: 13px;text-decoration: none;font-family: var(--SFontE);color: #777;letter-spacing: 1px;font-weight: 600;}
a.article_btn_next:after {content: 'Next >';}
.blog_back a.article_btn_prev:hover, .blog_back a.article_btn_next:hover {background-color: #4F4F4F;border-color: #4f4f4f;}
a.article_btn_prev:hover:before, a.article_btn_next:hover:after {color: #ccc;}



@media screen and (max-width: 1024px) {}
@media screen and (max-width: 768px) {}
@media screen and (max-width: 640px) {}
@media screen and (max-width: 480px) {}




/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = = = = = */
/*促銷活動設定 -OFF = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/* 促銷首頁 */
.news_part {}

/* 內頁 */
/* 標 */
.promotion_title {}
.promotion_title * {}
.promotion_title span {}
.promotion_title em {}
.promotion_title h2 {}




/* = = = 分隔線 相本主分類= = = = = = = = = == = = = = = = = = = = = = = = = = = = */
/*相本分類全版面 ( 限制最寬2000px  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.album_a .main_part {
max-width: 1280px;
}

/*相簿*/
.subalbum-menu {margin: 0;padding: 0;}
.subalbum-menu h2 {display: none;}

.show-list {grid-template-columns: repeat(3, 1fr);grid-gap: 60px 15px;}
.show-list .item a {display: flex;flex-direction: column;gap: 10px;}
.show-list .show_pic:before
 {
    content: 'VIEW MORE';
    position: absolute;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
    transform: translate(-50%, -50%);
    top: 50%;
    opacity: 0;
    z-index: 2;
    transition: all .5s 100ms cubic-bezier(.42, 0, .58, 1);
}
.show-list .show_pic {
    border-radius: 5px;
}
.show-list .item:hover .show_pic:before {opacity: 1;}
.overlay {-webkit-transform: unset;transform: unset;z-index: 1;}
.show-list .show_pic img {transition: all .5s ease-in-out;}
.show-list .item:hover .show_pic img {transform: scale(1.1);transition: all .4s ease-in-out;}
.other_subalbum li {background: unset;}
.other_subalbum li a p {
    color: #1A1A1A;
    font-size: 16px;
    letter-spacing: 0.08em;
}



/*相簿下方隱藏*/
.other_album_choice{display:none;}
.album_fixed_title{display:none;}


/*相簿縮圖*/
.pic-list {display: block;column-count: auto;column-width: 400px;column-gap: 15px;break-inside: avoid;}
.pic-list .item {padding: 0 0 15px;}
.pic-list .show_pic {aspect-ratio: inherit;}
.pic-list .item h6 {display: none;}
.pic-list .item figure.show_pic img {transform: scale(1);transition: 1s ease-in-out;}
.pic-list .item:hover figure.show_pic img {transform: scale(1.1);transition: 1s ease-in-out;}


/*相簿瀑布流-OFF*/
.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: 10px;
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
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: 3 / 4;
border-radius: 5px;
}
.pic-list .item h6 {padding: 0;}





@media screen and (max-width: 1440px){}
@media screen and (max-width: 1200px){
    .album_info_page .pic-list {    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));}
}


@media screen and (max-width: 1024px) {
.show-list {grid-template-columns: repeat(2, 1fr);}
.other_subalbum li a p, .show-list .show_pic:before {font-size: 16px;}
}
@media screen and (max-width: 768px) {
.other_subalbum li a p, .show-list .show_pic:before {font-size: 15px;line-height: 1.5;}
}
@media screen and (max-width: 600px) {
.show-list {grid-template-columns: 1fr;grid-gap: 30px 15px;}
}



/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/*影片 -ON= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

/* 首 */
.prod_part {
padding: 120px 20px 100px;
background: #f9f6ef;
position: relative;
}
.prod_part:before {
content: '';
background-image: url(https://pic03.eapple.com.tw/renxing168/video_bg.png);
background-repeat: no-repeat;
background-size: cover;
overflow: hidden;
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0.5;
z-index: 0;
}
.prod_part section {
max-width: 1200px;
margin: auto;
font-family: var(--SFontEN);
z-index: 1;
}

/* 標 */
.prod_part  .i_video_tit {
text-align: center;
display: flex;
flex-direction: column;
z-index: 1;
position: relative;
}
.prod_part .i_video_tit h2 {
font-size: var(--f36);
color: #1A1A1A;
font-weight: 700;
letter-spacing: .1em;
order: 2;
line-height: 1.6;
}
.prod_part .i_video_tit span {line-height: 1;}
.prod_part .i_video_tit span:before {
font-size: 14px;
content: 'VIDEO';
position: relative;
color: #EFAD1E;
letter-spacing: .08em;
font-weight: 700;
}

.pageIndex .videoListBox {padding-top: 40px;padding-bottom: 40px;}
.pageIndex .video-list {grid-template-columns: repeat(2, 1fr);grid-gap: 40px 30px;}
.pageIndex .video-list .vid_item:nth-child(n+3)  {display: none;}
.video-list .vidCover {
aspect-ratio: 53 / 35;
border-radius: 5px;
cursor: pointer;
}
.video-list .vidCover::after {
    background: rgba(0, 0, 0, .5);
    transition: .4s;
}
.video-list .vidCover img , .video-list .vidCover::after {
    transition: .4s ease-in-out;
}
.pageIndex .video-list .vidTitle, .video-list .vidTitle {
font-size: var(--f18);
font-weight: 600;
color: #232323;
letter-spacing: .06em;
margin-top: 15px;
line-height: 1.2;
height: fit-content;
margin-bottom: 10px;
padding-top: 10px;
}
.video-list p {
font-size: 14px;
letter-spacing: 0.02em;
line-height: 1.6;
    max-height: fit-content;
}
.video-list .vidTitle ,.video-list p {
    padding-left: 10px;
    padding-right: 10px;
}



/* BTN */
.i_prod_b a.animated-arrow {
    background: #1A1A1A;
    color: #fff;
    display: flex;
    margin-top: 20px;
    height: fit-content;
    margin: auto;
    line-height: 1.6;
    overflow: hidden;
    width: fit-content;
    text-align: center;
    position: relative;
    padding: 10px 30px;
    letter-spacing: .08em;
    align-items: center;
    justify-content: center;
}
.i_prod_b a.animated-arrow b {
font-weight: 500;
z-index: 1;
position: relative;
}
.i_prod_b a i.fa-solid.fa-arrow-right {
margin: 0 20px;
    margin-right: 0;
    z-index: 1;
    position: relative;
;
}
.i_prod_b a i.fa-solid.fa-arrow-right::before {
content: '';
    display: block;
    width: 22px;
    aspect-ratio: 1 / 1;
    background-image: url(https://pic03.eapple.com.tw/renxing168/arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
    position: relative;
}
.i_prod_b a.animated-arrow:before {
-webkit-transition: width .3s 
cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
transition: width .3s 
cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
position: absolute;
display: block;
content: '';
top: 0;
left: 0;
width: 0;
height: 100%;
background: #fbc935;
z-index: 0;
}
.i_prod_b a.animated-arrow:hover:before {
width: 100%;
}
.i_prod_b a.animated-arrow:hover {
color: #1A1A1A;
}
.i_prod_b a.animated-arrow:hover i.fa-solid.fa-arrow-right::before {
filter: brightness(0);
}



/* 功 = = = = = = = = = = = = = = = = = = = */
.video_page #content {
background: rgb(255 255 248 / 60%);
}
.show_content.video_content {
    max-width: 1280px;
    padding: 0 20px;
}
/* 分類 */
.video_menu_list {
    width: 100%;
    margin-bottom: 60px;
}
.video_menu_list+.video-list {
    max-width: 100%;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}
.video_menu_list>ul {
    grid-gap: 0;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: flex-start;
}
.video-layer-two > li {
    border-bottom: 0;
    padding: 0;
}
.video-layer-two li a {
    position: relative;
    border: 1px solid rgba(251, 201, 53, 0.4);
    background: transparent;
    padding: 7px 16px;
    display: block;
    font-size: var(--f18);
    color: #1A1A1A;
    display: block;
    padding: 4px 20px;
    letter-spacing: .04em;
    border-radius: 50px;
    margin-right: 12px;
    font-weight: 600;
    line-height: 1.5;
    transition: 0.5s ease-in-out;
}
.video-layer-two li a:hover {
    background: #f9c84a;    
    color: #1A1A1A;
    /* color: #fff; */
}
/* 影片 */
.video_menu_list+.video-list {
    max-width: 100%;
}
.video_content .video-list .vidTitle {}




@media screen and (max-width: 768px) {
/* 首 */
.pageIndex .video-list {grid-template-columns: repeat(1, 1fr);grid-gap: 40px 30px;width: 95%;}
.prod_part {padding: 60px 20px;}
.i_prod_b a.animated-arrow b {font-size: 14px;}
}






/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/*聯絡我們 -OFF= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.contact_content {}
/* 聯絡資訊 */
.contact_content .information_left {}
.blank_letter {}




/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

@media screen and (min-width: 1700px) {}


/* @1200下方區域_平板版面1200px */
@media screen and (max-width: 1200px) {
/* footer*/
.footer_info {margin: auto;}
.footer_info li:nth-child(1) {-ms-flex-direction: column;flex-direction: column;}
.footer_info li p {margin-left: 0;}
}


/* @1024下方區域_平板版面1024px */
@media screen and (max-width: 1024px) {
/* footer */
.footer_info {grid-template-columns: 1fr;text-align: center;position: relative;gap: unset;}
.footer_logo {position: relative;left: unset;width: 100%;max-width: 180px;font-size: 0;transform: unset;}
.footer_logo a {position: relative;display: block;width: 100%;}

.footer_info ul {grid-template-columns: 1fr;gap: 20px;}
.footer_info li+li{margin-top: 0;}
.footer_info li:nth-child(2) {/* padding: 15px 0; */}
.footer_menu {display: flex;justify-content: center;margin-left: auto;}
.footer_menu a {font-size: 14px;padding: 0 10px;}
}


/* @768下方區域_平板版面768px */
@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu { display: none;}
.footer.with_shopping_mode {padding: 60px 0 50px;}
#to_top {bottom: calc(2vw + 55px);right: 2vw;}

/* footer */
.footer_info:nth-child(1) > ul {gap: 10px;}
.copy {font-size: 11px;}
}


@media screen and (max-width: 600px) {
.copy {font-size: 10px;}

}

@media screen and (max-width: 480px) {
#to_top {right: 20px;left: unset;}

/* footer */
.footer .center {width: 100%;}
.footer_info:nth-child(1) > ul {
display: flex;
flex-direction: column;
align-items: flex-start;
}
.footer_info li:nth-child(1) {
text-align: center;
gap: 5px 20px;
align-content: center;
justify-content: center;
align-items: flex-start;
padding: 0 10px;
}
.footer_info li p {text-align: left;line-height: 1.5;}
.footer_info li:nth-child(2) {
margin-left: 0;
}
.footer_menu {
display: flex;
justify-content: flex-start;
margin-left: auto;
flex-wrap: wrap;
max-width: 100%;
margin: auto;
display: block;
text-align: left;
margin-left: 0;
}
.footer_menu a {
font-size: 13px;
padding: 0 10px;
width: fit-content;
text-align: center;
}
.copy {
font-size: 9px;
text-align: left;
justify-content: flex-start;
padding: 15px 10px 20px;
}
}