@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');




/* 英文粗字體 Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins: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: #0a56c9; /*網站主要色系*/
  --SubColor: #242424; /*網站文字色*/
  --SubColor1: #ffffffff; /*網站輔助色系1*/
  --SubColor2: #f6f7f9ff; /*網站輔助色系2*/
  --SubColor3: #757575ff; /*網站輔助色系3*/
  --SubColor4: #edf3ffff; /*網站輔助色系4*/  
  --SubColor5: #6d7177ff; /*網站輔助色系5*/ 
  --SubColor6: #f23a3cff; /*網站輔助色系6*/ 
  --SubColor7: #2264b3; /*網站輔助色系7*/ 
  --SFontE: "Inter", "Noto Sans TC",sans-serif;/*英文字體-無襯線*/
  --SFontEN: "Poppins", "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 (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 {
width: 8px; /*右側捲軸寬度*/
height: 0px; /*下方捲軸高度*/
}
/* 軌道背景底色 */
::-webkit-scrollbar-track {background: #eee; }
/* 滑桿顏色 */
::-webkit-scrollbar-thumb {background: #888; }
/* 滑桿滑鼠滑入時的顏色 */
::-webkit-scrollbar-thumb:hover {background: #444; }




* {  font-family: var(--SFontEN);letter-spacing: .08rem;}
/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

/* header */
.pageIndex .header_area {position: fixed;}
.header_area {padding: 20px 0;}
.header_area, .header_area.sticky {background: #fff;box-shadow: 0 2px 10px rgba(126, 126, 126, 0.3);}
.main_header_area .container {max-width: 1800px;width: 94%;}
/* 導覽列 */
.navigation {display: flex;align-items: center;}



/*選單 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =*/
.pageIndex .stellarnav, .stellarnav {}
.stellarnav, .stellarnav {}
/* 第一層 */
.stellarnav ul {}
.stellarnav > ul > li:nth-of-type(1) {width: 100px;text-align: center;}
.stellarnav > ul > li {padding: 3px .5% 0;}
.stellarnav > ul > li:before {content: "";width: 30px;height: 4px;background: var(--SubColor7);position: absolute;bottom: -23px;
left: 50%;transform: translateX(-50%);opacity: 0;transition: all .5s;}
.stellarnav > ul > li > a {font-size: 16px;letter-spacing: .08rem;font-weight: 500;color: #666;}
/* 下拉符號 */
.stellarnav li.has-sub > a:after {border-left: 5px solid transparent;border-right: 5px solid transparent;border-top: 5px solid #898989;}
.stellarnav > ul > li:hover:before {width: 90px;opacity: 1;}
.stellarnav > ul > li.has-sub:hover > a:after {border-top: 5px solid var(--SubColor7);}
.stellarnav > ul > li:hover > a{color: var(--SubColor7);}


/* 第二層 */
.stellarnav li.has-sub li {border: none;border-bottom: 1px solid #f3f3f3;}
.stellarnav li.has-sub li a {font-size: 14px;padding: 8px 12px;transition: all .5s;letter-spacing: 0rem;}
.stellarnav li.has-sub li:last-child {border-bottom: none;}
.stellarnav li.has-sub li a:hover {background: var(--SubColor7);color: #fff;padding-left: 18px;}
.stellarnav li.has-sub li a:hover:after {border-left: 6px solid #fff;}

.stellarnav ul ul {min-width: 160px;width: fit-content;}
.stellarnav > ul > li.drop-left > ul {right: unset;}


/* 第三層 */
.stellarnav ul ul ul {top: 0;left: 100%;margin: 0;transform: unset;}





.me_tp_features {display: none;}
/*電腦LOGO = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.nav-header {max-width: 300px;}
.header_area .nav-brand {}
.nav-brand img {}

.sticky .nav-header {}
.sticky .nav-brand img {}






/*footer = = = = = = =  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.box_link{display: none;}

.footer {background: #F6F6F6;padding: 60px 0 0;background-size: cover;}
.footer_info {
grid-template-columns: 200px 1fr;
padding-right: 0;
max-width: 1200px;
margin: 0 auto;
align-items: center;
gap: 0 30px;
padding: 0 3%;
}

.footer_logo > a {
display: block;
width: 177px;
height: 160px;
background: url(https://pic03.eapple.com.tw/massagegood/logo3.png) no-repeat;
background-size: contain !important;
background-position: center !important;
margin: 0 auto;
}
.footer_logo > a img {display: none;}

/* footer資訊*/
.footer_info li p, .footer_info li p a {color: #424242;font-weight: 400;line-height: 1.9;letter-spacing: .06em;}
.footer_info li:nth-child(1) {display: grid;grid-template-columns: repeat(2, 1fr);}
.footer_info li p {display: inline-block;width: 100%;font-size: 13px;}

.footer_info li p.tel{order: 1;}
.footer_info li p.tel2 {order: 2;}
.footer_info li p.tel:before, .footer_info li p.tel2:before {content: '聯絡電話：';}
.footer_info li p.fax {order: 3;}
.footer_info li p.fax:before {content: '傳真號碼：';}
.footer_info li p.lin {order: 4;}
.footer_info li p.line:before {content: '聯絡Line ID：';}
.footer_info li p.mail {order: 5;}
.footer_info li p.mail:before {content: '電子信箱：';}
.footer_info li p.add {order: 6;}
.footer_info li p.add:before {content: '辦公地址：';}

.footer_menu {border-top: 1px solid #e2e2e2;padding-top: 15px;}
.footer_menu a {
background: #e5ecf4;
border: none;
color: #407eb6;
font-size: 12px;
font-weight: 500;
transition: all .5s;
border-radius: 3px;
}
.footer_menu a:first-child {display: none;}

/* ------------------------------------------------------------------------------------------------------------ */
.copy {
    border-top: none;
    font-size: 10px;
    padding: 12px 3%;
    background: #204867;
    margin-top: 30px;
}
.copy, .copy a {
    color: #eee;
    letter-spacing: .06rem;
}




/* 置頂按鈕 */
#to_top {
width: 45px;
height: 45px;
border-radius: 0;
box-shadow: none;
right: 0;
left: auto;
bottom: 95px;
background: #4081b9;
color: #fff;
padding-top: 5px;
font-size: 10px;
}
#to_top i:before, #to_top i:after {background: #fff;}
#to_top i.top:before, #to_top i.top:after {height: 8px;top: 8px;}





/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = =*/
/* 商品下拉超過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;--swiper-pagination-color: #fff;}
.bannerindex .swiper-banner {position: static;margin: 0;height: auto;}
.swiper-slide img { height:auto;}


/* 大圖點點切換鈕*/
.bannerindex {--swiper-pagination-color: #fff;}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {bottom: auto;top: 50%;left: 2vw;width: 25px;}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {margin: 5px 10px;width: 5px;height: 15px;border-radius: 2px;}
/* 大圖點點END */



/* 大圖進場-外層 */
.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 {}




/* 動畫 */
/* .bannerindex .swiper-slide.swiper-slide-active:nth-child(1):before {
animation: NfadeInUp .8s ease-in-out forwards;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;
} */




@media screen and (max-width: 1200px) {}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 768px) {}
@media screen and (max-width: 660px) {}
@media screen and (max-width: 480px) {}



/* = = = 主設定共用-分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =*/
/* 麵包屑 */
.path {display: none;}


#content_main {margin: 0;}

/* main */
div#page{background-size: auto;position: relative;}

.edit_part{
padding: 0;
min-height: 80vh;/* 暫時 */
}

.main_part {padding: 80px 0;}
.show_content {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 {
background-size: cover !important;
    background-position: center !important;
    background: url(https://pic03.eapple.com.tw/massagegood/banA.jpg) no-repeat;
    position: relative;
    align-items: center;
    flex-direction: column;
    gap: 4px;
    height: auto;
    justify-content: center;
    padding: 116px 40px;
    margin-bottom: 20px;
    /* width: 1280px; */
    /* max-width: calc(100% - 64px); */
    /* border-radius: 20px; */
    /* overflow: hidden;*/
}
.banner:before {
content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, #000000, #0000006b);
    opacity: .4;
    z-index: 0;
}
.banner h5 {
    z-index: 1;
    font-size: 42px;
    color: #fff;
    font-weight: 600;
}
.banner h5:after {
    content: "專業職能訓練，成就精彩人生";
    font-size: 16px;
    display: block;
    margin-top: 10px;
    font-weight: 400;
    letter-spacing: 0.1rem;
}


.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;}

/* = = 手機板大圖 = = */




/* 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-bottom: 40px;
    }
    .show_content {
        padding: 0 30px;
        width: 100%;
    }
   
    /* 導覽列展開 */
    .stellarnav.mobile.left.active > ul {
        width: 100%;
        max-width: 440px;
    }


}



/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = =*/
/* 購物車-ON = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
/* .product_page .main_part { max-width:1500px;} */
/* .product_info_page .main_part { max-width:1200px;} */

.product_page .show_content, .product_info_page .show_content { width: 100%; display: flex; justify-content: space-between; flex-wrap: wrap; align-items: flex-start; align-content: flex-start;}

/* 左側分類 */
.product_page .product_menu_list { position: relative; width: 220px; letter-spacing: 1px; min-height: 30vw;padding: 0;}
.product_page .products-list, .product-wrapper { width: calc(100% - 270px);}

.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-layer-two > li { width:100%; max-width:100%; padding:0; text-align:left; border-bottom:1px dotted #ccc; padding-bottom: 5px;}
.product-layer-two > li ul > li + li { margin-top:5px;}
.product-layer-two li a {color: #333;font-size: 14px;background: transparent;padding: 10px 0;}
.product-layer-two li a:hover{background: #888;color: #fff;padding-left: 10px;}
.product-layer-two li a:hover ~ i{color: #fff;}


.product_info_page .product-layer-two { display: none;}
.product_info_page .products-list,
.product-wrapper { width: 100%;}

.product-layer-two li li:hover{ margin-left: 15px;}
.product-layer-two li li > a:before { content: ""; position: absolute; width: 12px; height: 8px; background: transparent; left: 0; margin-left: -20px; top: 50%; margin-top: -4px; clip-path: polygon(0 0, 100% 50% , 0 100%);}
.product-layer-two li li:hover > a:before { background:#ad925e;}

.product_info_page .half_box { width: 100%; float: none; padding-right: 0;}
.product_info_page .half_box li.btn_blankTop { margin-top: 50px; justify-content: space-between; display: flex;}
.product_info_page .half_box li.btn_blankTop input { width: calc(50% - 10px); background-image: none; padding: 0; text-align: center;}

/* 右側商品 */
.products-list {grid-template-columns: repeat(2, 1fr);}



/*★★★自訂義區塊↓↓↓↓↓↓↓↓↓↓↓↓*/
.product_menu_list > h5 {color: #444;font-size: 0px;border-bottom: 2px solid #eee;padding: 10px 0;display: block;}
.product_menu_list > h5:before {content: '課程分類';display: block;position: relative;font-size: 16px;}
.product_menu_list > h5 .pd_menu_toggle i {font-size: 16px;}

.product-layer-two {background: transparent;border-radius: 10px;}
.product-layer-two ul {grid-gap: 0;}
.product-layer-two li.active{background: #fff;transition: all .5s;}
.product-layer-two li.active li a {background: #eee;transition: all .5s;}

.fa-circle-plus::before {content: "+";}
.product-layer-two li.active a {font-weight: 500;border: none;color: #fff;background: #666;padding-left: 10px;}
.product-layer-two li.active i.close::before{color: #fff;}
.product-layer-two li.active .fa-circle-plus::before {color: #fff;}
.product-layer-two li li a {padding: 10px;font-size: 12px;background: #eeeeee;}
.product-layer-two > li {padding-bottom: 0;border-bottom: none;}
.product-layer-two > li > a {letter-spacing: 2px;border: none;transition: all .5s;}
.product-layer-two > li.active > a {background: #555;}
.product-layer-two > li.active li.active > a{background: #fff;color: #ad925e;}
.product-layer-two > li ul > li + li {margin-top: 0;}
.product-layer-two li ul {margin-top: 0;}
.product-layer-two li li:hover {margin-left: 0;background: #fff;transition: all .5s;}
.product-layer-two li li:hover > a {background: transparent;}
.product-layer-two li li:hover > a:before{display: none;}
.product-layer-two li i {top: 12px;height: auto;font-size: 12px;font-weight: 300;color: #555;}
.product-layer-two li i.close::before {content: '–';}
/*分類頁*/
.products-list .price {margin: 0 0 10px;}
.products-list .price b {color: #bb1438;}
.products-list .more {font-size: 14px;font-weight: 500;border: 1px solid #ccc;color: #888;}
.products-list .item a:hover .more {background: #aaa;}
.products-list .name {height: 60px;text-align: center;letter-spacing: 1px;line-height: 160%;}
/*商品頁*/
.product_info_page .product_menu_list{display: none;} /*商品頁的選單不顯示*/
/*商品頁-輪播區塊*/
.product_pic {display: flex;flex-direction: column-reverse;max-width: 1200px;margin: 0 auto;}
.product_pic .swiper-slide{max-height: 80vh;}
.product_pic .proImgSwiper{max-height: 80vh;}
.swiper-button-next:after, .swiper-button-prev:after {background: #888;width: 30px;height: 45px;display: block;padding: 0 10px;font-size: 14px;line-height: 45px;}
.proImgSwiper .swiper-button-next:after, .proImgSwiper .swiper-button-prev:after{text-shadow: none;}
/*商品頁-側邊說明*/
.sidebarBtn {border: none;background: transparent;}
.sidebarBtn h2 {color: #333;font-size: 20px;letter-spacing: 1px;font-weight: 500;}
.sidebarBtn .sp_price {color: #E60112;}
.inquiry_a1 {background: #888;border-radius: 0;}
.inquiry_a2 {background: #eee;border-radius: 0;color: #888;}
.inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover{background: #555;color: #fff;}
/*商品頁-商品說明*/
.prod_tabs{margin-top: 120px;}
.pd_tabTitle li {border-bottom: none;background: transparent;border-bottom: 2px solid #ddd;transition: all .5s;}
.pd_tabTitle li a{color: #ddd;letter-spacing: .2rem;transition: all .5s;}
.pd_tabTitle li.activeTab {border-bottom: 2px solid #eee;}
.pd_tabTitle li.activeTab::after {height: 0;}
.pd_tabTitle li.activeTab a {color: #333;font-weight: 400;}
.pd_tabInner.edit{font-weight: 400;font-family: var(--SFont);}
/*商品頁-相關推薦*/
.prod_related {background: transparent;padding: 50px 0 25px;border-top: 1px solid #333;margin-top: 100px;}
.prod_related h6 span:before {color: #333;font-weight: 400;}
.prod_related h6 span:before {font-size: 18px;letter-spacing: .6rem;}
.related_list {grid-template-columns: repeat(4, 1fr);max-width: 1400px;width: 94%;}
.related_list li a{padding: 0;}
.related_list li a p {font-size: 14px;width: 90%;line-height: 1.4;margin: 10px auto 20px;padding: 0;}
/*加入購物車-1*/
/*---流程區*/
.stepImg{margin: 40px auto 80px;width: 100%;}
.stepImg img{display: none;}
.stepImg span {border: 1px solid #4f4949;text-align: center;font-size: 12px;padding: 15px 20px;color: #4f4949;
 margin: 0 -1px 0 0;width: 33.3%;}
.stepImg span.one{text-align: center;margin-left: 0;}
.stepImg span.three{text-align: center;}   
.stepImg span.active {color: #fff;background: #4f4949;}
/*---詳細內容區*/
.shopping-cart .cart_head {background: #b6a292;}
.shopping-cart .cell.product_name {font-weight: 400;padding: 10px 20px;}
/*---金額TOTAL區*/
.total_amount {justify-content: flex-end;margin: 30px 0 80px auto;font-size: 14px;}
.total_amount ul {background: #fff;margin: 40px 0 60px;}
.total_amount ul:after{display: none;}
.rewrite_simple, .send_simple {font-size: 14px;}
.rewrite_simple {background: #4f4949;}
.send_simple {background: #b6a292;margin-left: 20px;}
.blank_letter {letter-spacing: 2px;}
.red {color: #f23a3c;}
/*加入購物車-2*/
.separate_title {padding: 10px 20px;background: #b6a292;color: #fff;font-weight: 400;}
.border200 {width: 100%;border: 1px solid #ccc;padding: 10px 26px 10px 10px;color: #474141;border-radius: 6px;}
.formbox_form{padding: 0;}
.formbox_form li .form__insert select{margin-bottom: 10px;}
.form label {color: #474141;margin-bottom: 0;}
.form label .inputbox {margin-right: 10px;}
.form label.circle .inputbox {background-image: none;border: 1px solid #474141;border-radius: 50%;}
.form label .inputbox.Big {width: 18px;height: 18px;}
.form label.Bigcheck {margin-left: 0;top: 0;margin-top: 10px;}
.form label.Bigcheck .inputbox {background-image: none;border: 1px solid #474141;}
.form label.circle input:checked {background-position: center !important;}
.form label.Bigcheck input:checked {background: #474141;}
.separate_title .note {background: #f3f3f3;font-size: 10px;color: #888;padding: 2px 6px;border-radius: 30px;margin-left: 15px;}
/*結帳完成*/
.order_finish_page .main_part {max-width: 1400px;}
.order_pay {padding: 0;}
.note_edit{background: transparent;padding: 20px;color: #474141;}
.order_list_tit b {font-size: 24px;color: #474141;font-weight: 400;}
.order_list_spec p {font-weight: 400;padding: 10px 20px;background: #b6a292;}
.order_list_tab td {background: #f8f8f8;}
.order_list_tab td:nth-child(1) {background: #474141;color: #fff;width: 150px;font-weight: 400;}
.order_list_tab.payer td:nth-child(1) {border-right: 3px #b6a292 solid;}
.pay_text > a{font-size: 14px;}
.order_list_head p {font-size: 18px;color: #474141;border-bottom: 2px #474141 solid;}
.order_list_pro td:nth-child(1),.order_list_pro td:nth-child(4) {width: 70px;}
.order_list_pro tr:first-child {background: #b6a292;}
.order_list_pro tr:first-child td {color: #fff;font-weight: 400;}
.last_box_money em span {color: #b92c2c;letter-spacing: 0;}
/*---匯款資訊*/
.car_page .information_left {width: 100%;margin: 50px auto;}
.contact_le_map a {background: #888;}
.ACCN1:before, .ACCN2:before, .ACCN3:before, .ACCN4:before {margin-right: 20px;}
/*匯款通知*/
.formbox_form li.last {justify-content: center;}





/*分類頁*/
.products-list .price {display: none;}
.products-list .name {height: 30px;margin: 10px 0;}
/*商品頁*/
.product-wrapper{max-width: 1100px;}
/*--輪播區*/
.product_main {width: 55%;}
.product_pic{padding-left: 0;}
#prod_thumbSwiper{display: none;}
/*---側邊資訊*/
.sidebarBtn {width: 43%;}
.product_info li span {display: none;}
.inquiry_a2 {background: #ddd;color: #555;}
/*加入詢價車*/
.shopping-cart .cart_head {background: #206ed5;}
.rewrite_simple {background: #888;}
.send_simple {background: #aa1a31;}




/* 首頁 */
.prod_part {padding: 60px 20px 120px;}
/* 標 */
.i_prod_tit span, .i_video_tit span {
font-size: 24px;
color: #222222;
font-size: 32px;
font-weight: 600;
height: auto;
letter-spacing: 0.1rem;
line-height: 1.6;
}
.i_prod_tit h2 {
font-size: 36px;
color: #1167B5;
font-size: 16px;
font-weight: 600;
height: 28px;
letter-spacing: 1px;
line-height: 1.75;
margin: 0;
text-align: center;
}
.prod_part .i_prod_tit h2:before {
content: 'COURSE';
}
/* 商品 */
.pageIndex .productsListBox {
margin: 0px auto;
padding: 40px 20px 60px;
max-width: 1200px;
}
.pageIndex .products-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.products-list .item {position: relative;padding: 15px;}
.pageIndex .products-list .item {border: 2px solid #E2E2E2;padding: 25px;border-radius: 10px;background: #FFFFFF;}
.products-list .pic {
aspect-ratio: 5 / 4;
}




@media screen and (max-width: 1200px){
.related_list {grid-template-columns: repeat(2, 1fr);}
.related_list li figure {aspect-ratio: auto;}
.related_list li a img {height: 25vw;}
}

@media screen and (max-width: 1024px){
/*加入購物車-1*/
/*---流程區*/
.stepImg {margin: 40px auto;}
}

@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;grid-gap: 0 5px;}
.product-layer-two li a{width: 100%;padding: 10px 0;}
.product_page .product-layer-two, .product_page .products-list { width: 100%; border-right: none;}
.product_page .product_menu_list>h5{display: block;}

.product_page .show_content > a { order: 1;}
.product_page ul.products-list { order: 2;}
.product_page ul.page { order: 3;}
.product_page .product_menu_list {width: 100%; order: 0; min-height: unset;}

/*清單頁*/
.product_page .product_menu_list > h5 {font-size: 18px;font-weight: 500;letter-spacing: .4rem;margin-bottom: 0;}
.fa-caret-down::before{font-size: 14px;}
.product-layer-two li a{border-bottom: 1px solid #eee;padding: 10px 0 5px;width: 95%;}
/*商品頁*/
.mobile_product_name{display: none;}
.product_main {margin: 0 auto;display: block;}
.sidebarBtn{text-align: center;width: 100%;}



/*加入購物車-1*/
/*---詳細內容區*/
.shopping-cart .cart_content .row{border: 1px solid #b6a292;padding: 15px 10px;}
.shopping-cart .cell {flex-direction: row;border-bottom: none;}
.shopping-cart .cell:before {color: #b6a292;margin-right: 10px;font-weight: 400;}
.shopping-cart .cell.product_name {padding: 0;}
.shopping-cart .cell.product_name p {font-size: 18px;color: #4f4949;padding-right: 30px;}
.small_pic {width: 65px;height: 65px;}
.shopping-cart .cell.amount:last-child {position: absolute;right: 0;top: 0;border-bottom: none;width: 30px !important;height: 30px;background: #b6a292;}
.shopping-cart .cell.amount:last-child:before{display: none;}
.shopping-cart .cell.amount:last-child > a{margin: 0 auto;line-height: 1;}
.fa-lg {font-size: 14px;color: #fff;}
}

@media screen and (max-width: 640px) {
/*結帳完成*/
.order_list_pro td span {font-size: 14px;color: #474141;}
}

@media screen and (max-width: 600px){
/*商品頁*/
.pd_tabTitle li a{font-size: 12px;}
.related_list li a img {height: 150px;}
/*加入購物車-1*/
/*---詳細內容區*/
.shopping-cart .cell, .shopping-cart .cell.amount, .shopping-cart.check .cell.amount, .shopping-cart.check .cell{
width: 100%;}
.shopping-cart .cell {justify-content: space-between;border-bottom: 1px solid #eee;}
.shopping-cart .cell.product_name {min-height: 60px;padding-bottom: 30px;}
.shopping-cart .cell.product_name p {font-size: 14px;}
/*---金額TOTAL區*/
.total_amount {justify-content: space-around;}
.rewrite_simple, .send_simple{margin: 0;}
/*購物完成*/
.pay_text{display: grid;grid-template-columns: 1fr 1fr;grid-gap: 30px;}
.pay_text > a{width: 160px;text-align: center;}
.orderFinish_data .pay_text>*+* {margin-top: 0;}
.order_list_tab td {padding: 6px 12px;}
/*匯款通知*/
.formbox_form li.last {justify-content: space-around;}
}

@media screen and (max-width: 560px) {
/*結帳完成*/
.order_list_tab td:nth-child(1) {width: 100px;}
}

@media screen and (max-width: 520px){
/*結帳完成*/
.order_list_tab td{font-size: 14px;}
}











/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/*文章設定 -ON = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

/*文章功能頁/ = = = = */
.blog_box {
    display: flex;
    margin: auto;
    font-family: var(--SFontEN);
    justify-content: space-between;
    flex-wrap: wrap;
    gap: unset;
    width: 100%;
    padding-top: 0px;
}

/* 左側分類欄位 */
.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;gap: 4px;}
.blog_le .accordion li {transition: .3s ease-out;}
.blog_le .accordion li {
    transition: .3s ease-out;
    border-bottom: 0;
    border-radius: 4px;
    overflow: hidden;
}
.blog_le .accordion li li {
    margin-bottom: 1px;
    border: 0;
}
.accordion li+li .link {border: 0;}
.accordion li .link, .accordion li+li .link {border-bottom: 1px solid rgba(255, 255, 255, 0.1);border: 0;}
.accordion li .link a {
    text-align: left;
    margin: 0;
    border: none;
    background: #f6f6f6;
    transition: all 0.3s;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: .8px;
    padding: 15px 15px;
    position: relative;
    color: #222;
    font-weight: 500;
}
.fa-chevron-down::before, .fa-chevron-down::after {content: "";width: 13px;height: 1px;background-color: #93b5d2;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:#222 !important;} */
.blog_le .accordion > li.on_this_category a{background: rgb(32 96 153) !important;color: #fff !important;}
/* .blog_le .accordion > li.on_this_category:hover .link a, .blog_le .accordion > li:hover .link a{color: #222 !important;} */
.blog_le .accordion > li.open { background:#F4F8FD;}
.blog_le .accordion > li.open > .link a{ background: transparent;}
.blog_le .accordion > li:hover {background: transparent !important;}
.blog_le .accordion > li:hover .link a {    background: rgb(32 96 153); color: #fff !important;}
/* .blog_le .accordion > li.on_this_category .link a {color: #222  !important; } */
/* 子分類 */
.submenu {background: transparent;}
.submenu a {color: #666;transition: all 0.4s ease;line-height: 1.3;background: transparent;letter-spacing: 0.04rem;}
.submenu a:hover {background: #dce6f2;color: #444;}
.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: .4s ease-out;/* border: 0; *//* height: fit-content; *//* width: 100%; */margin: 0;/* background: #fff; *//* padding: 0; *//* border-radius: 0px; *//* height: 100%; */align-items: center;background: rgba(0, 0, 0, 0.0);/* border-bottom: 1px solid #ebebeb; *//* border-left: 1px solid #ebebeb; */border-radius: 8px;/* border-right: 1px solid #ebebeb; */border: 1px solid #ebebeb;box-shadow: 1px 3px 18px 0px rgba(18, 18, 18, 0.03999999910593033);/* flex: none; *//* flex-direction: column; *//* gap: 16px; */height: auto;/* justify-content: flex-start; */padding: 0;/* width: calc(33.33% - (var(--gap-h-68e7ba57-0a49-4405-a54b-9635fa25dc38) * 0.6667)); *//* --gap-h-3c1de8c1-9d93-4c57-9e3d-d0512a261cf8: 0px; *//* --gap-v-3c1de8c1-9d93-4c57-9e3d-d0512a261cf8: 16px; *//* --gap-uuid: 3c1de8c1 -9d93 -4c57 -9e3d -d0512a261cf8; *//* max-width: calc(33.33% - (var(--gap-h-68e7ba57-0a49-4405-a54b-9635fa25dc38) * 0.6667)); */}
.subbox_item:hover {transition: .4s ease-out;border: 1px solid #28588363;}
.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: 4/3;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: 90%;margin: 0 auto;padding: 15px 0 20px;}
.blog_list_ri h5 {font-size: var(--f20);text-align: left;font-weight: 600;margin-bottom: 8px;font-weight: 600;letter-spacing: 0.04rem;color: #2A2A2A;line-height: 1.5;transition: all 0.4s ease;-webkit-line-clamp: 2;}
.subbox_item a:hover h5{color: var(--SubColor7);}
.blog_list_ri em {margin: 0;order: -1;padding: 0;font-family: var(--SFontE);font-weight: 400;margin-bottom: 8px;font-size: 13px;color: #666;letter-spacing: 0;text-transform: uppercase;}
.blog_list_ri p {line-height: 1.6;margin: 0;-webkit-line-clamp: 3;font-weight: 400;font-size: 13px;letter-spacing: 0.5px;color: #444;border-top: 1px solid #e2e2e2;padding-top: 10px;}



/*文章內層/ = = = = */
.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) {}




/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = = = = = */
/*促銷活動設定 -ON = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

/* 促銷首頁 */
.news_part {
    align-content: center;
    align-items: center;
    margin: 120px auto 40px;
    padding: 0px;
    width: 1280px;
    max-width: 100%;
    max-width: calc(100% - 64px);
}
.news_part section {
    max-width: 1220px;
    padding: 0 10px;
    padding-bottom: 60px;
    display: grid;
    grid-template-columns: auto 210px;
}
.news_part .title_i_box {
    padding: 0px 0px 40px 0px;
    width: 100%;
    color: #222222;
    font-size: var(--f32);
    font-weight: 700;
    height: auto;
    letter-spacing: 0.4em;
    line-height: 1.6;
    margin: 0px;
    text-align: left;
    text-align: center;
    margin-bottom: 0;
    text-align: center;
    font-family: var(--SFontE);
    display: flex;
    align-items: flex-start;
    /* padding: 0; */
    flex-direction: column;
}
.news_part .title_i_box h6 {
    color: #1167B5;
    font-size: 16px;
    font-weight: 600;
    height: 28px;
    letter-spacing: 1px;
    line-height: 1.75;
    margin: 0px 0px 0px 5px;
    text-align: left;
}
.news_part .title_i_box h6:before {content: 'NEWS';}
.news_part .title_i_box h4 {
color: #222222;
    font-size: 32px;
    font-weight: 600;
    height: auto;
    letter-spacing: 0.1rem;
    line-height: 1.6;
}
/* 消息 */
.news_list {
    padding: 20px 0 60px;
    margin-top: 0;
    grid-column: 1 / 3;
    width: 100%;
}
.news_list ul li {
    display: block;
    border-bottom: 1px solid #e2e2e2;
}
.news_list ul li a {
    display: flex;
    width: 100%;
    text-align: center;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    gap: 15px;
}
.news_list ul li a:hover {
    background: #F4F8FD;
}
.news_list ul li a:before {
    display: block;
    content: '最新消息';
    background: #243C7A;
    border-radius: 4px;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 500;
    height: auto;
    letter-spacing: 0.1rem;
    line-height: 1.8;
    text-align: center;
    width: 100px;
    max-width: 100%;
    order: 2;
}
.news_list ul li span {
    display: block;
    vertical-align: top;
    padding: 15px 0 15px 10px;
    color: #666;
    font-size: 14px;
    letter-spacing: 0;
    font-weight: 500;
    height: auto;
    line-height: 1.8;
    text-align: left;
    width: auto;
    max-width: 100%;
    order: 1;
}
.news_list ul li p {
    display: block;
    padding: 20px 20px 20px 0;
    width: calc(100% - 160px);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #242424;
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.8;
    text-align: left;
    max-width: 100%;
    letter-spacing: .5px;
    order: 3;
}
.news_list ul li a:hover p {color: #242424;}
.news_list ul li p:after {content: none;}
/* BTN */
.i_news_b {
    max-width: 1200px;
    margin: auto;
    text-align: center;
    max-width: 1300px;
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    width: auto;
    margin-right: 0;
    font-size: 0;
    padding: 0;
    position: relative;
}
.i_news_b a.animated-arrow, .i_prod_b a.animated-arrow {
    font-size: 14px;
    background: transparent;
    color: #444;
    display: inline-block;
    margin: 0 auto;
    height: fit-content;
    line-height: 1.8;
    overflow: hidden;
    width: fit-content;
    text-align: right;
    position: relative;
    max-width: 100%;
    background: #eee;
    padding: 10px 25px;
    border-radius: 25px;
    display: flex;
    gap: 10px;
    align-items: center;
}
.i_news_b a b,  .i_prod_b a b {
    font-weight: 600;
    color: #242424;
}
.i_news_b a i.fa-solid.fa-arrow-right, .i_prod_b a i.fa-solid.fa-arrow-right {margin: 0 5px;}
.i_news_b a:hover i.fa-solid.fa-arrow-right, .i_prod_b a:hover i.fa-solid.fa-arrow-right {margin: 0 0 0 10px;}
.i_news_b a i.fa-solid.fa-arrow-right::before, .i_prod_b a i.fa-solid.fa-arrow-right::before {
    color: #1167B5;
    letter-spacing: 0px;
    display: block;
    transition: all .6s;
    content: "\f178";
    font-family: Font Awesome\ 6 Free;
    font-weight: 900;
    font-size: 16px;
}


/* 內頁 */
.promotions_page .show_content {
    padding: 0;
    max-width: 1100px;
}
/* 標 */
.promotion_title * {}
.promotion_title {
display: flex;
flex-direction: row;
flex-wrap: wrap;
gap: 5px;
justify-content: flex-end;
padding-bottom: 10px;
}
.promotion_title .time {order: 3;}
.promotion_title span {
margin: 0;
border: 0;
color: #444;
padding: 0;
line-height: 28px;
letter-spacing: .04rem;
}
.promotion_title em {
order: 2;
background: #f6f6f6;
border-radius: 2px;
color: #444;
font-size: 12px;
border: 0;
font-weight: 500;
height: 28px;
line-height: 28px;
padding: 0 10px;
margin: 0;
text-align: center;
width: auto;
max-width: 100%;
}
.promotion_title h2 {
order: 1;
border-bottom: 1px solid #e2e2e2;
color: #243C7A;
flex: none;
font-size: var(--f32);
font-weight: 600;
height: auto;
line-height: 1.6;
margin: 0 0 10px;
padding: 0 0 5px 0;
text-align: left;
width: 100%;
max-width: 100%;
}
/* 下方連結 */
.other_promotion {
    padding-top: 20px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    max-width: 1100px;
    gap: 0;
}
.other_promotion li {
    width: 100%;
}
.other_promotion li a:before, .other_promotion li a:after{
    content: none;
}
.other_promotion li a {
    display: flex;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 14px 0;
    border: 0;
    border-top: 1px solid #e2e2e2;
    transition: all .4s;
}
.other_promotion li a:hover {
    background: #F4F8FD;
}
.other_promotion li:last-child a{
    border-bottom: 1px solid #dbdad1;
}
.other_promotion .pmtTime {
    line-height: 1.6;
}
.other_promotion .pmtTime span {
    padding: 10px 0 10px 10px;
    color: #999;
    font-size: 13px;
    letter-spacing: 0;
    font-weight: 500;
    height: auto;
    line-height: 1.6;
    text-align: left;
    width: auto;
    max-width: 100%;
}
.pmtTitle {
    display: flex;
    align-items: center;
}
.pmtTitle span {
    margin: 0 15px;
    display: inline-block;
    padding: 0;
    min-width: 80px;
    letter-spacing: 0.1rem;
    background: #2d5277;
    border-radius: 2px;
    color: #FFFFFF;
    flex: none;
    font-size: 12px;
    font-weight: 500;
    height: auto;
    line-height: 1.8;
    text-align: center;
    width: 110px;
    max-width: 100%;
}
.other_promotion .pmtTitle h3 {
    height: 50px;
    margin: 0;
    line-height: 1.8;
    color: #242424;
    flex: 1;
    height: fit-content;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    max-width: 100%;
    letter-spacing: .5px;
}










/* = = = 分隔線 相本主分類= = = = = = = = = == = = = = = = = = = = = = = = = = = = */
/*相本分類全版面 ( 限制最寬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: 1280px){}


@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= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.contact_content {padding: 0;}

.contact_page .main_part { max-width: 1200px;}
.contact_content > form{display: flex;flex-direction: column;}

/* 標 */
.blank_letter {
font-family: var(--SFontEN);color: #242424;letter-spacing: .2rem;padding-top: 0;font-weight: 600;font-size: var(--f28);width: 680px;}

/*左側資訊*/
.contact_content .information_left{margin-bottom: 80px;padding: 0;width: 100%;}

.list_before {
    width: 44%;
    display: inline-block;
    vertical-align: top;
    margin: 20px 0;
    padding-right: 50px;
}
.list_before.info li {
    word-break: break-word;
    line-height: 1.6;
    font-size: 14px;
    border-bottom: none;
    padding: 5px 0;
    margin: 0;
    display: flex;
    gap: 9px;
    align-items: center;
    border-bottom: 1px dashed #7575756b;
}
.list_before.info li:before {
    letter-spacing: .08rem;
    font-size: 13px;
    font-weight: 500;
    color: #243C7A;
    background: #f3f3f3;
    padding: 5px 10px;
    position: relative;
    width: 110px;
    text-align: center;
    border-radius: 5px;
}
.list_before.info li.info_LINE:before{letter-spacing: 2px;}
.info_ADD:before {
    content: "辦公地址";
}
/* map */
.contact_le_nomap {
width: 55%;
    display: inline-block;
    margin-top: -35px;
    height: 340px;
}
.box {border-radius: 10px;overflow: hidden;}


/*右側表單設定*/
.contact_content .information_right {
padding-left: 0;
width: 100%;
background: #f4f8fd;
border-radius: 20px;
padding: 80px 0;
}
.blank_letter.f {font-size: var(--f28);text-align: center;width: fit-content;margin: 0 auto 40px;}
.blank_letter.f .note {font-size: 0;}
.blank_letter.f:after{content: "若有任何問題，歡迎來電或E-mail聯繫，我們將盡快為您服務！";
content: "若有任何問題，歡迎來電或E-mail聯繫，我們將盡快為您服務！";
display: block;
font-size: 14px;
color: #3667b3;
text-align: center;
padding: 10px 0;
font-weight: 400;
letter-spacing: .06rem;
}
/* 表格 */
.contact_form {
font-size: 15px;
    color: #444;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 15px;
    width: 680px;
    margin: auto;
    max-width: calc(100% - 64px);
}
.contact_form li {
    margin-bottom: 10px;
    grid-template-columns: 1fr;
}
.contact_form li .form__label {
    color: #222222;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.02rem;
    line-height: 1.5;
    margin: 0px 0px 0px 0px;
    opacity: 1;
    padding: 0;
    max-width: 100%;
    display: flex;
    flex-direction: row;
}
.contact_form li .form__label span.star {
    font-size: 12px;
    position: relative;
    left: 0;
    top: 50%;
    padding: 0 5px;
    transform: translateY(-50%);
    order: 2;
}
.contact_form li input.noborder, .contact_form li textarea.noborder {
    background: #FFFFFF;
    border: 1px solid #d6d6d6;
    border-radius: 2px;
    box-shadow: none;
    color: #333;
    font-size: 14px;
    font-weight: 400;
    height: 43px;
    letter-spacing: 0.02rem;
    line-height: 1.4;
    margin: 0px 0px 0px 0px;
    opacity: 1;
    padding: 8px 10px;
    text-align: left;
}
.contact_form li textarea.noborder {
    height: auto;
}
button, input, optgroup, select, textarea{outline: none;}



.contact_form li.last blockquote, .contact_form li.last cite{border: 1px solid #376e9c;padding: 5px;}
.contact_form li.last blockquote{color: #376e9c;}
.contact_form li.last cite {
    background: #376e9c;
}
.contact_form li.last input{font-size: 13px;}
.contact_form li.last blockquote:hover input, .contact_form li.last cite:hover input {letter-spacing: 4px;}
.noborder {padding: 10px;border-radius: 6px;}
.contact_form li:has(input[type=checkbox]) .form__insert, .contact_form li:has(input[type=radio]) .form__insert {
grid-template-columns: repeat(auto-fit, minmax(20px, 20px) minmax(200px, 1fr));line-height: 1.8;}
.form select{width: 100%;border: 1px solid #eee;padding: 6px 26px 6px 6px;}













@media (max-width: 1024px){
	.blank_letter {font-size: 24px;}
	.contact_le_nomap {width: 100%;margin-top: 0;}
	.list_before{width: 100%;}
	.list_before.info li {width: 49%;display: inline-block;}
}
@media screen and (max-width: 768px) {
	/*表單設定*/
	.contact_content .information_right {width: 100%;padding-left: 0;}
	.contact_form li {grid-gap: 5px;}
	.form select{margin: 0;}
	.contact_form li.last blockquote, .contact_form li.last cite{padding: 0;}
	.contact_form li.last input{font-size: 12px;}
}
@media screen and (max-width: 600px){
	.contact_form {margin-top: 20px;}
	.contact_form li {margin-bottom: 10px;}
	.contact_form li .form__label {font-weight: 500;background: transparent;font-size: 14px;}
	.contact_form li:has(input[type=checkbox]) .form__insert, .contact_form li:has(input[type=radio]) .form__insert{
		font-size: 12px;}
	.form select{font-size: 12px;}
	.blank_letter {font-size: 16px;font-weight: 600;}
	.noborder {padding: 5px;}
	.list_before.info li {width: 100%;}
	.blank_letter.f:after {text-align: left;margin: 20px 0;font-size: 14px;}
	.contact_form li .form__label {font-size: 14px;}
}





/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

@media screen and (min-width: 1700px) {}


/* @1200下方區域_平板版面1200px */
@media screen and (max-width: 1200px) {
/* footer*/
.footer_logo > a{width: 160px;height: 140px;}
.footer_info li:nth-child(1) {grid-template-columns: repeat(1, 1fr);}
.footer_menu a {width: 28%;}
}


/* @1024下方區域_平板版面1024px */
@media screen and (max-width: 1024px) {
/* footer */

}


/* @768下方區域_平板版面768px */
@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu { display: none;}
.footer.with_shopping_mode {padding: 60px 0 0px;}
#to_top {bottom: calc(2vw + 55px);right: 2vw;}

/* footer */
.footer_logo{margin: 0 auto;}
.footer_info {grid-template-columns: 1fr;text-align: center;}
}


@media screen and (max-width: 600px) {
/* footer */
.footer_menu a {width: 45%;}

}

@media screen and (max-width: 480px) {
#to_top {right: 20px;left: unset;}


}