@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');




/* 英文字體 Lexend */
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');
/* 英文手寫字體 Smooch */
@import url('https://fonts.googleapis.com/css2?family=Smooch&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: #1c3459; */
  --MainColor: #2f68ab; /*網站主要色系*/
  --SubColor: #2c3034; /*網站文字色*/
  --SubColor1: #f1f7fb; /*網站輔助色系1*/
  --SubColor2: #17477f; /*網站輔助色系2*/
  --SubColor3: #2f68ab40; /*網站輔助色系3*/
  --SubColor4: #0e759d; /*網站輔助色系4*/  
  --SubColor5: #1f91be; /*網站輔助色系5*/ 
  --SubColor6: #f8f8f8; /*網站輔助色系6*/ 
  --SubColor7: #101010; /*網站輔助色系7*/ 
  --SubColor8: #1893AA; /*網站輔助色系8*/
  --SubColor9: #42bcc6;/*網站輔助色系9*/
  --SFonts: "Inter", "Noto Sans TC",sans-serif;/*英文字體-無襯線*/
  --SFontH: "Smooch", "Noto Sans TC", sans-serif;/*英文標字體手寫*/
  --SFontE: "Lexend", "Noto Sans TC", sans-serif;/*英文標字體*/
  --SFont: "Noto Sans TC", sans-serif;/*內文黑體字*/
  --pd100:100px 0;
  --m100:100px;
  --m50:50px;
  --m30:30px;
  --f80:80px;
  --f60:60px;
  --f52:52px;
  --f48:48px;
  --f44:44px;
  --f40:40px;
  --f36:36px;
  --f32:32px;
  --f28:28px;
  --f24:24px;
  --f22:22px;
  --f20:20px;
  --f18:18px;
  --f17:17px;
  --f16:16px;
}
@media (min-width:1520px) {
  :root{ }
}
@media (max-width:1024px) {
:root{
  --f80:70px;
  --m50:40px;
  --m30:25px;
  --f52:48px;
  --f48:40px;
  --f44:38px;
  --f40:36px;
  --f36:32px;
  --f32:28px;
  --f28:24px;
  --f24:22px;
  --f22:20px;
  --f20:18px;
}
}
@media (max-width:768px) {
:root{
  --pd100:70px 0;
  --m100:70px;
  --f80:60px;
  --m50:30px;
  --m30:20px;
  --f52:44px;
  --f48:32px;
  --f44:30px;
  --f40:28px;
  --f36:26px;
  --f32:24px;
  --f28:22px;
  --f24:20px;
  --f20:17px;
  --f18:16px;
  --f17:16px;   
  --f16:15px;
}
}
@media (max-width:600px) {
:root{
  --pd100:50px 0;
  --m100:50px;
  --m50:25px;
  --f80:52px;
  --f52:36px;
  --f48:28px;
  --f44:26px;
  --f40:24px;
  --f36: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 {
    /* border-radius: 4px; */
    background-color: #c1c1c1;
}
&::-webkit-scrollbar-track {
    box-shadow: transparent;
}



/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/

.header_area {
    position: sticky;
    /* position: fixed; */
    z-index: 9999;
    width: 100%;
    background: transparent;
    padding: 0;
}

.header_area.sticky {
}



.main_header_area .container {
    max-width: 100%;
    padding: 0 30px;
    transition: 0.5s;
}

.header_area .main_header_area {
    background: rgb(255 255 255 / 100%);
    transition: all 0.3s;
    position: relative;
    /* box-shadow: 0 2px 4px 0 rgb(0 0 0 / 10%); */
}

.header_area.sticky .main_header_area {
    /* background: rgb(255 255 255); */
    transition: all 0.3s;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.05);
}

.navigation {
    grid-template-columns: 200px 1fr;
    align-items: center;
}




/*選單 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =*/





/* header */
.navigation{
    padding: 0;
}
.header_area.sticky .stellarnav {

}
.stellarnav ul {
    font-size: 0;
}
.stellarnav > ul > li:last-child:after { 
    content: none;
}
.stellarnav > ul > li:last-child > a:after {
    content: none;
}
.stellarnav > ul > li:last-child {
    display: none !important;
}




/* 第一層 */
.stellarnav > ul > li {
    position: relative;
    padding: 0 10px;
    font-size: 0;
    padding: 0;
}
.stellarnav > ul > li > a {
    font-family: var(--SFontE);
    color: #1F1F1F;
    letter-spacing: 1.25px;
    font-size: 14px;
    margin: 0;
    font-weight: 500;
    padding: 0 25px 0 15px;
    height: var(--m30);
    line-height: var(--m30);
    margin: 10px 0;
}
.stellarnav > ul > li:after {
    content: "|";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(-50%, -50%);
    color: #888;
    font-size: 14px;
}

.stellarnav > ul > li:last-child > a, .pageIndex .sticky .stellarnav > ul > li:last-child > a{

}




.stellarnav > ul > li > a:hover {
    color: #000;
    transition: .5s cubic-bezier(0.77, 0, 0.65, 0.99);
}
.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 > ul > li.has-sub > a, .pageIndex .sticky > .stellarnav > ul > li:last-child {
    padding-right: 20px;
}
/* 下拉符號移除 */
.stellarnav li.has-sub > a:after{
    content: none;
}




/* 第二層 */
.stellarnav ul ul {
    background: #fff;
    width: 140px;
    left: 50%;
    margin-left: -75px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, .175);
}
.stellarnav li li {
    border: 0;
}
.stellarnav.desktop li.has-sub li a {
    font-size: 14px;
    text-align: center;
    padding: 10px;
    letter-spacing: 0.06em;
    font-family: var(--SFont);
    border-bottom: 1px solid #f6f6f6;
}
.stellarnav.desktop li.has-sub li a:hover {
    color: #1c1c1c;
    background: #f4f3f3;
}

.me_tp_features {
    display: none;
}


/*電腦LOGO = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.nav-header{
    transition: all 0.3s;
    /* margin-top: -10px; */
    padding: 15px 0;
}
.nav-header{
    grid-row: 1;
    width: auto;
    margin: 0 auto;
    max-width: 100%;
    /* padding: 10px 0; */
    align-self: start;
    filter: unset;
}
.nav-brand {
    max-width: 130px;
    font-size: 0;
}




/*手機LOGO
.nav-brand-m {}
*/


/*footer = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.box_link{display: none;}
.footer {
    position: relative;
    margin: auto;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-top: 0;
    background: #2f68ab;
    background: #f1f7fb;
    z-index: 100;
}
.footer .center {
    position: relative;
    max-width: 90%;
    padding: 80px 0;
    font-size: 13px;
}
.footer_info {
    /* display: flex; */
    width: 100%;
    grid-template-columns: 220px 1fr;
    max-width: 100%;
    margin: auto;
    padding: 0;
    position: relative;
    flex-direction: row;
    gap: 20px;
    font-family: var(--SFontE);
    justify-content: space-between;
}

.footer_info ul {
    position: relative;
    /* border-top: 1px solid #0000001a; */
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* logo */
.footer_logo {
    max-width: 180px;
    width: 100%;
    margin: auto;
}

/* 聯絡資訊 */
.footer_info li{
    padding: 0;
}
.footer_info li:nth-child(1) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px 40px;
}
.footer_info li p {
    font-size: 13px;
    line-height: 1.8;
    letter-spacing: 0.8px;
    padding-left: 20px;
    position: relative;
}
.footer_info li p:before {
    margin: 0;  
}
.footer_info li p:after {
    font: normal normal normal 14px / 1 FontAwesome;
    position: absolute;
    left: 1px;
    top: 50%;
    color: #666;
    font-size: 13px;
    transform: translate(0%, -50%);
}
.footer_info li p.tel:after {
    content: "\f095";
}
.footer_info li p.line:after {
    content: "\f3c0";
}
.footer_info li p.fax:after {
    content: "\f1ac";
}
.footer_info li p.phone:after {
    content: "\f3ce";
}
.footer_info li p.mail:after {
    content: "\f0e0";
}
.footer_info li p.add:after {
    content: "\f3c5";
}
/* 網頁連結 */
.footer_info li:nth-child(2) {

    right: 0;
    top: 0;
}
.footer_menu {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px 20px;
}
.footer_menu a:first-child, .footer_menu a:last-child{
    display: none;
}
.footer_menu a {
    background: transparent;
    border: 0;
    letter-spacing: 1px;
    margin: 0 0 8px;
    padding: 0;
    transition: all .3s cubic-bezier(.165,.84,.44,1);
    color: #3e3a39;
    font-weight: 500;
    padding-left: 18px;
    position: relative;
    font-size: 13px;
}
.footer_menu a:before {
    position: absolute;
    content: "";
    left: 3px;
    top: 4px;
    width: 6px;
    height: 9px;
    background: url(https://hokenpoint.jp/wp/wp-content/themes/wp-templ/assets/img/common/icon/ico_arr1.png) no-repeat left center;
    background-size: 6px auto;
}
.footer_menu a:hover {
    background: transparent;
    color: #443f37;
    opacity: 0.6;
}






/* ------------------------------------------------------------------------------------------------------------ */

.copy {
    color: #fff;
    border: none;
    margin: 0;
    font-size: 11px;
    letter-spacing: 0.08em;
    font-family: var(--SFontE);
    font-weight: 300;
    /* border-top: 1px solid #d2d2d2; */
    text-align: center;
    padding: 10px 0 12px;
    position: relative;
    background: #2f68ab;
}
.copy a {
    color: #fff;
} 

/* 浮動按鈕 */
.info_fix{ }

/* 置頂按鈕 */
#to_top {
    left: unset;
    right: 0;
    padding-top: 10px;
    font-size: 0;
    color: #fff;
    background: #000;
    box-shadow: none;
    border-radius: 0;
    -webkit-transition: 1.6s;
    -o-transition: 1.6s;
    transition: 1.6s;
    background: #fff;
    box-shadow: 0 0 5px 1px rgba(44, 48, 52, 0.1);
    width: 54px;
    height: 54px;
    bottom: 20px;
    right: 20px;
    position: fixed;
    transition: all 0.5s ease-out;
}
#to_top::before {
    content: '';
    border-bottom: 8px solid #2f68ab;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    position: absolute;
    width: 0;
    height: 0;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
}
#to_top::after {
    content: '';
    border-bottom: 5px solid #fff;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    position: absolute;
    width: 0;
    height: 0;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
}
#to_top i.top:before, #to_top i.top:after {
    display: none;
}
#to_top:hover {
    opacity: 0.8;
    transition: opacity 0.2s;
   }





/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = =*/
/* 商品下拉超過30個變大 */
.stellarnav.desktop li.bigMenu>ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    left: 0;
    width: 100%;
    position: fixed;
    padding: 20px;
}
.stellarnav.desktop li.bigMenu ul ul {
    top: 100%;
    left: 0;
    width: 100%;
    background: #efefef;
    height: auto;
    max-height: 300px;
    overflow: auto;
}
.stellarnav.desktop li.bigMenu ul ul li {
    margin: 0;
}
.stellarnav.hasBigMenu li.bigMenu li.has-sub>a:after {
    border-left: 6px solid transparent;
    border-bottom: unset;
    border-right: 6px solid transparent;
    border-top: 6px solid #898989;
    right: 5px;
}


/* 主分類超過30個但次分類直接顯示 
.stellarnav.desktop li.bigMenu>ul{grid-gap: 10px;}
.stellarnav.desktop li.bigMenu li{border: 0;}
.stellarnav.desktop li.bigMenu>ul>li>a{border: 1px solid #ddd;}
.stellarnav.desktop li.bigMenu ul ul{display: block !important; position: relative; top: 0; background: unset; border: 0;}
.stellarnav.desktop li.bigMenu ul ul li{border: 0;}
 主分類超過30個但次分類直接顯示-結束 */
/* 商品下拉超過30個--結束 */





/* = = = 大圖-分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = *
/*預設解除背景輪播*/
.bannerindex {
    position: relative;
    height: auto;
    padding: 0;
}
/* 大圖尺寸 */
.bannerindex .swiper-banner {
    position: static;
    height: auto;
    /* height: 100vh; */
    margin: auto;
    width: 100%;
    overflow: hidden;
}
.bannerindex .swiper-wrapper {
    height: 100%;
}
.bannerindex .swiper-slide {
    height: 100%;
}










/* 大圖點點按鈕 */
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 12px;
    display: none;
}
/* 大圖點點按鈕END */




/* 大圖外層文字 */
.bannerindex .swiper-wrapper:before{
background: url(https://pic03.eapple.com.tw/junthai/bnA_txt00v2.svg);
    content: "";
    display: block;
    position: absolute;
    bottom: calc(3vw + 1.2rem);
    left: 50%;
    width: 120%;
    height: auto;
    /* max-width: 1200px; */
    transform: translateX(-50%);
    aspect-ratio: 1164 / 110;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1; 
    opacity: 0;
    -webkit-animation: NfadeInUp 1s cubic-bezier(0.29, 0.76, 0.72, 1.01) both;
    animation: NfadeInUp 1s cubic-bezier(0.29, 0.76, 0.72, 1.01) both;
    animation-delay: .6s;
}
.bannerindex .swiper-wrapper:before{

}

.bannerindex .swiper-banner .swiper-slide img, .bannerindex .swiper-banner .swiper-slide-active img{
    /* 大圖切換閃爍-opacity */
    opacity: unset !important;
    object-fit: cover;
    width: 100%;
    height: 100%;
    max-width: 100%;
}
.bannerindex .swiper-banner .swiper-slide img {
    height: auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 80% 100%;
}

/* 大圖內層 */
.bannerindex .swiper-banner .swiper-slide:before,.bannerindex .swiper-banner  .swiper-slide:after {
    content: "";
    position: absolute;
    z-index: 100;
    pointer-events: none;
}
/* banner01 */
.bannerindex .swiper-banner .swiper-slide:before {
    /* background: url(https://pic03.eapple.com.tw/junthai/bnA_txt01.svg); */
    content: "傾聽您的需求 ，電梯服務以客戶為核心";
    font-family: var(--SFont);
    font-size: 32px;
    display: block;
    color: #fff;
    position: absolute;
    bottom: 3vw;
    width: 100%;
    height: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    font-size: 1.8rem;
    letter-spacing: 0.16em;
    text-align: center;
    opacity: 0;
    text-shadow: 4px 4px 20px #081d37;
}
.bannerindex .swiper-banner .swiper-slide:after {
background-image: linear-gradient(0deg, rgb(13 45 79 / 80%), rgb(13 45 79 / 0%));
    background-repeat: no-repeat;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 300px;
    max-height: 50%;
    background-size: contain;
    z-index: 0;
    mix-blend-mode: multiply;
    opacity: .8;
}

/* banner02 */
.bannerindex .swiper-banner .swiper-slide:nth-child(2):before {
    content: "陪伴您一生一世以電梯安全為優先";
}



/* animation= */
.bannerindex .swiper-slide.swiper-slide-active:before {
    animation-delay: .3s;
	-webkit-animation: NtxtTrackingIN 0.7s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
	animation: NtxtTrackingIN 0.7s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}

@keyframes NtxtTrackingIN {
  0% { letter-spacing: -0.5em; opacity: 0; }
  40% { opacity: 0.6; }
  100% { opacity: 1; }
}

@keyframes NfadeInUp{
    0%{opacity:0;-webkit-transform:translate3d(-50%,-100%,0);transform:translate3d(-50%,-100%,0)}to{opacity:1;-webkit-transform:translate3d(-50%,0%,0);transform:translate3d(-50%,0%,0)}
}











/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =*/

/* 麵包屑 */
.path {
    padding: 0 10px;
    background: #2f68ab;
    min-height: 38px;
    padding: 8px 30px;
    display: flex;
    align-items: center;
}
.path p, .path p a {
    text-align: right;
    line-height: 24px;
    font-size: 13px;
    color: #fff;
    font-family: var(--SFonts);
    letter-spacing: 1px;
    font-size: 11px;
    font-weight: 300;
    line-height: 18px;
    transition: 0.3s;
}
.path p a:hover{
    opacity: 0.6;
    color: #fff;
}


/* main */
div#page {
    position: relative;
    overflow: clip;
    padding: 0;
    position: relative;
    width: 100%;
    min-height: 100vh;
}
#content_main, #content {
    margin: 0;
    background: #fff;
    padding: 80px 0;
    background-repeat: repeat;
    padding: 0;
    z-index: 1;
}

.edit_part{
    padding: 0;
}
.main_part {
    width: 100%;
    max-width: 2000px;
    margin: auto;
    padding: 50px 20px;
    padding-left: 3.5%;
    padding-right: 3.5%;
    padding: 0;
}
.show_content {
    margin: auto;
    padding: 0;
    font-family: var(--SFont);
    max-width: 1200px;
    padding: 100px 20px;
}
.subalbum-menu {
    margin: 0;
    padding: 0;
}


/*內頁BANNER 設定 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.banner {
    padding: 0;
    position: relative;
    background: #f2f2f2;
    width: 100%;
    object-fit: cover;
    background-size: cover;
    /* display: none; */
    background-image: url(https://pic03.eapple.com.tw/junthai/banA.jpg);
    background-position: 50% 100%;
    aspect-ratio: 19 / 5;
    display: flex;
    flex-direction: column-reverse;
    padding: 0 40px;
    justify-content: flex-start;
    align-content: flex-start;
}
.banner h5 {
    z-index: 1;
    position: relative;
    border: 0;
    outline: 0;
    font: inherit;
    vertical-align: baseline;
    background: transparent;
    padding: 5px 40px;
    max-width: 100%;
    margin-bottom: 70px;
    font-weight: 500;
    font-style: italic;
    font-size: var(--f40);
    letter-spacing: 6px;
    color: #fff;
    text-align: justify;
    width: fit-content;
    margin-right: unset;
    margin-left: 40px;
    display: flex;
    justify-content: flex-start;
    animation: NTfadeInLeft 1s ease-out both;
    animation-delay: .6s;
    font-family: var(--SFontE);
}
@keyframes NTfadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}
.banner h5:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    background: rgb(108 180 216 / 70%);
    transform: skew(-22deg, 0deg);
    z-index: -1;
} 


.banner.banA {}
.banner.banB {}
.banner.banC {}
.banner.banD {}
.banner.banE {}
.banner.banblog {}






/* RWD設定 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

/* @1600上方區域_大於捉雞版面1600 */
@media screen and (min-width: 1600px) {
/* 大圖 */
.bannerindex .swiper-banner {margin: auto;width: 100%;overflow: hidden;height: calc(100vh - 100px);}
.bannerindex .swiper-banner .swiper-slide:before {font-size: 2rem;}
}

/* @1400上方區域_大於捉雞版面1400 */
@media screen and (min-width: 1400px) {
/* 大圖 */
.bannerindex .swiper-banner .swiper-slide:before {font-size: 1.9rem;}
}




/* @1200上方區域_平板版面1200 */
@media screen and (max-width: 1200px) {
.banner{min-height: 400px;}
.banner h5 {font-size: var(--f32);margin-bottom: 50px;margin-left: 30px;}

}


/* @1024上方區域_平板版面1024 */
@media screen and (max-width: 1024px) {
/* 大圖 */
.bannerindex .swiper-banner .swiper-slide:before {font-size: 1.2rem;}

    /* = = header = = */
    .header_area { }
    .header_area.sticky { }
    .main_header_area .container {  }
    .navigation {
        grid-template-columns: 1fr;
        align-items: center;
        gap: 5px;
    }


    /* logo*/
    .nav-brand img { }
    .sticky .nav-brand img{ }
    .nav-header {
    padding-bottom: 0;
}




    /* 導覽列 */
    .stellarnav {
        opacity: 1;
        pointer-events: unset;
        height: auto;
    }
    .stellarnav ul {
        text-align: center;
        height: auto;
    }
    .stellarnav > ul > li {
        padding: 0;
    }  
    .stellarnav > ul > li > a {
        letter-spacing: 1px;
        height: auto;
        margin: 0;
        font-size: 15px;
        padding: 15px 20px;
    }
    .stellarnav>ul>li:after {
        /* height: 3px; */
        /* top: 100%; */
        /* bottom: unset; */
        transform: translate(.5px, -50%);
    }
}

/* @768上方區域_大於手機版面768 */
@media screen and (min-width: 768px) {
.bannerindex {padding: 0 20px 20px;}
}

/* @768上方區域_小於手機版面768 */
@media screen and (max-width: 768px) {
/* = = 大圖 = = */
.bannerindex .swiper-banner .swiper-slide:before {
font-size: 1rem;
}


    

    /* logo*/    
    .nav-header {
        padding: 0;
        background: #fff;
        width: calc(100% - 60px);
        text-align: center;
        position: relative;
        z-index: 100;
        margin-right: 50px;
        height: 100%;
        display: flex;
        align-self: center;
    }
    .nav-brand {
        /* margin-left: 0; */
        max-width: 120px;
        width: 50%;
    }
    .nav-brand img { }




    /* = = header = = */
    .header_area { }
    .main_header_area .container {
        padding: 0;
    }
    .navigation {
        display: flex;
        justify-content: space-between;
        flex-direction: row-reverse;
        gap: 0;
    }


    /* 導覽列 */
    .stellarnav.mobile {
        right: 0;
        left: unset;
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 60px;
        margin-left: auto;
        position: relative;
        z-index: 100;
        width: 60px;
        height: 60px;
        background: #2f68ab;
        padding: 8px;
    }
    /* 導覽列漢堡選單 */
    .stellarnav.mobile .menu-toggle {
        display: flex;
        margin: auto;
        padding: 0;
        flex-direction: column;
        gap: 8px;
    }
    /* 漢堡選單樣式 */
    .stellarnav .menu-toggle:after {
        text-transform: capitalize;
        content: 'Menu';
        font-size: 10px;
        text-transform: uppercase;
        color: #fff;
        transform: scale(1);
        font-family: var(--SFontE);
        letter-spacing: 0.04em;
    }
    .stellarnav .menu-toggle span.bars {
        display: block;
        margin: 0;
    }
    .stellarnav .menu-toggle span.bars span {
        width: 28px;
        height: 1px;
        border-radius: 0;
        background: #fff;
        margin: 0 auto 6px;
    }
    .stellarnav .menu-toggle span.bars span:nth-child(3) {
        /* width: 24px; */
        /* margin-right: 0; */
        margin: 0 auto;
    }
    
    /* 導覽列展開 */
    .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;
    }
    .stellarnav.mobile.left.active > ul{        
        right: 0;
        max-width: 100%;
    }


    .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(--SFontE);
        letter-spacing: 0.04em;
        height: fit-content;
        width: 100%;
        text-align: right;
        display: flex;
        flex-direction: row-reverse;
    }
    .stellarnav .icon-close {
        box-sizing: border-box;
        width: 18px;
        height: 12px;
        position: relative;
        display: inline-block;
        margin: 2px 9px 0 3px;
    }
    .stellarnav .icon-close:before , .stellarnav .icon-close:after {
        width: 18px;
        height: 0px;
        border-bottom: solid 1px #000;
    }
    /* 導覽列選取Hover效果 */
    .stellarnav ul:hover li a {
        opacity: 1;
        transition: all 0.3s ease-in-out;
    }


    /* 第一層 */
    .stellarnav.mobile  > ul > li:after {
        content: none;
    }
    .stellarnav.mobile > ul > li {
        border-bottom: 1px #eee solid;
        padding: 10px 0;
        display: block;
        border-bottom: 1px solid #f0f0f0;
    }
    .stellarnav.mobile li.open {
        background: #f3f3f3;
        color: #fff;
        padding: 0 0 5px;
    }
    .stellarnav.mobile > ul > li > a {
        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;
    }
    .stellarnav.mobile li.open > a {
        /* color: #fff; */
        /* padding-bottom: 15px; */
        border: 0;
        padding: 20px 10px;
    }    
    .stellarnav > ul > li > a:before{
        content: none;
    }
    /* +符號修改 = = */
    .stellarnav.mobile > ul > li > a.dd-toggle {
        top: 5px;
        /* transform: translateY(-50%);*/
    }
    .stellarnav.mobile > ul > li.open > a.dd-toggle {
        top: 0;
    }
    .stellarnav a.dd-toggle .icon-plus:before {
        width: 8px;
        height: 8px;
        border-bottom: solid 1px #666;
        top: 50%;
        top: 0;
        left: 0;
        transform: rotate(-45deg);
    }
    .stellarnav a.dd-toggle .icon-plus:after {
        width: 8px;
        height: 8PX;
        top: 50%;
        border-bottom: solid 1px #666;
        transform: rotate(45deg);
    }
    .stellarnav li.open > a.dd-toggle .icon-plus {
        -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;
    }
    .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;
    }




/* 內頁BN= */
.banner {min-height: 320px;}
.banner h5 {font-size: var(--f28);margin-bottom: 40px;margin-left: 0;padding: 5px 20px;letter-spacing: 4px;}

}








/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = =*/
/* 購物車 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.product_page .main_part {
    max-width: 100%;
}

.product_page .show_content, .product_info_page .show_content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
}

/* 外層 */
.product_page .show_content, .product_info_page .show_content{
    max-width: 1300px;
}
/* 左側分類區 = = */
.product_page .product_menu_list {
    position: relative;
    width: 220px;
    letter-spacing: 1px;
    min-height: 30vw;
}
.product-layer-two {
    width: 220px;
    margin: 0;
}
.product_info_page .product-layer-two {
    display: none;
}
.product-layer-two li {
    margin: 0;
    width: 100%;
    padding: 0 10px;letter-spacing: 2px;color: #666;
}
.product-layer-two>li.active {
    background: #F1F7FB;
}
.product-layer-two li.active a {
    border: unset;
    border-bottom: 1px dotted #ccc;
}
.product-layer-two li a {
    color: #222;
    border: none;
    background: transparent;
    line-height: 2;
    transition: all 0.3s;
}
.product-layer-two>li>a {
    border-bottom: 1px dotted #ccc;
    padding-left: 25px;
}
.product-layer-two li:hover>a, .product-layer-two li.active>a {
    color: #222;
}
.product-layer-two li:hover>a:before, .product-layer-two li.active>a:before {
    background: #3469a8;
    color: #fff;
}
.product-layer-two>li>a:before {
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    height: 18px;
    content: "＞";
    color: #3469a8;
    background: #f3f7f9;
    width: 18px;
    text-align: center;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
    padding-left: 2px;
    font-size: 10px;
}
.product-layer-two li ul {
    position: relative;
    padding-top: 1px;
}
.product-layer-two li li {
    border: none;
    background: transparent;
}
.product-layer-two li li a {
    background: transparent;
}
.product-layer-two li li:hover a {
    color: #222;
}
.product-layer-two li li {
    display: block;
}


/* 商品區  = =*/
.products-list .price { display: none;}
.product_page .products-list{
    width: calc(100% - 250px);
}
.products-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 15px;
}
.products-list .item {
    position: relative;
    padding: 0 5px;
    margin-bottom: 20px;
}
/* 商品圖 */
.products-list .pic {
    position: relative;
    display: block;
}
.products-list .pic::before, .products-list .pic::after {
    position: absolute;
    content: "";
    display: block;
    height: 100%;
    width: 0;
    background-color: rgba(110, 197, 207, 0.8);
    background: rgba(0, 0, 0, .4);
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    transition: all 0.6s;
}
.products-list .pic::before {
    top: 0;
    left: 0;
    right: unset;
}
.products-list .pic::after {
    left: unset;
    right: 0;
    bottom: 0;
}
.products-list .pic:hover::before, .products-list .pic:hover::after {
    width: 50%;
    opacity: 1;
}
/*BTN顏色*/
.products-list .more {
    border: 1px solid #2F68AB;
    color: #2F68AB;
    font-weight: 500;
}
.products-list .item a:hover .more {
    background: #2F68AB;
}


/* 頁數 = = */
ul.page {
    width: 100%;
}











/*購物車/內層＝＝*/
.product-wrapper {
    width: 100%;
    max-width: 1200px;
}
.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;
}
/* 商品資訊 */
.pd_tabTitle li{
    border: 0;
}
.pd_tabTitle li.activeTab a {
    color: #222;
    border-bottom: 1px solid #cfdee5;
    font-size: var(--f24);
    letter-spacing: 1px;
    font-weight: 600;
}
.pd_tabTitle li.activeTab::after{
    content: none;
}


/*按鈕顏色*/
.inquiry_a1 {
    background: #cbc0a0;
}
.inquiry_a2 {
    background: #bdab77;
}
.inquiry_a3 {
    background: #ADA17E;
}
.inquiry_a1:hover,
.inquiry_a2:hover,
.inquiry_a3:hover {
    background: #222;
}
.lastaction {
    color: #ADA17E;
    background-color: #f2f2f2;
}
.nextaction {
    background-color: #ADA17E;
}
.lastPage {
    background: #ADA17E;
}

/*商品側邊規格*/
.product_info li .txt_box {
    color: #222222;
    width: 100%;
}
.sidebarBtn .sp_price {
    color: #cbc0a0;
}
.mobile_product_name {
    font-size: 24px;
}
/*相關推薦*/
.prod_related h6 span:before {
    font-size: 28px;
}



@media screen and (max-width: 1200px) {}
@media screen and (max-width: 980px) {}
@media screen and (max-width: 768px) {
.product_menu_list, .products-list, .product-wrapper {width: 100%;}
.product-layer-two {margin-right: 0;grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));grid-gap: 5px;}
.product_page .product-layer-two, .product_page .products-list {width: 100%;border-right: none;}

/* .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;}
}
@media screen and (max-width: 600px) {}

@media screen and (max-width: 560px) {

}



/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/*文章設定 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

/* .blog_page .main_part, .blog_in_page .main_part{  background: #f6f4f0;} */

/*文章功能頁/ = = = = */
.blog_box {
    display: flex;
    margin: auto;
    font-family: var(--SFonts);
    justify-content: space-between;
    flex-wrap: wrap;
}
/* 左側分類欄位 */
.blog_le {
    width: 220px;
    padding: 0;
}
h5.blog_le_t {
    margin-bottom: 10px;
    text-align: left;
    padding-bottom: 20px;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 1px;
    font-weight: bold;
    padding: 10px 0;
    position: relative;
    border-bottom: 2px solid #2f68ab;
}
h5.blog_le_t em {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--SubColor);
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 1px;
    font-weight: bold;
    /* padding: 10px 0; */
    position: relative;
}
.blog_search {
    position: relative;
    margin-bottom: 10px;
    opacity: .8;
}
.blog_search input[type=search] {
    width: 100%;
    font-size: 14px;
    color: #999;
    border: 0;
    background: #eee;
    border-radius: 0;
    padding: 10px 40px 10px 10px;
}
/* 分類列 */
.blog_le .accordion {
    border-radius: 0;
    border: 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    font-size: 0;
}
.blog_le .accordion li {
    transition: .2s ease-out;    
    border-bottom: 1px solid #C8D6DE;
}
.accordion li+li .link {
    border: 0;
    border-left: 1px solid #dadbdb;
}
.accordion li .link a {
    padding: 15px;
    text-align: left;
    line-height: 1.7;
    letter-spacing: 0.12em;
    font-size: 14px;
    color: #2c3034;
    font-weight: 500;
    margin: 0;
}
.blog_le .accordion > li.on_this_category{
    background: #F1F7FB !important;
}
.blog_le .accordion > li.on_this_category:hover .link a, .link a ,.blog_le .accordion > li:hover .link a{
    color:var(--SubColor)  !important;
}
.blog_le .accordion > li:hover {
    background: #d3e2f373 !important;
}
.blog_le .accordion > li.on_this_category .link a {
    color: var(--SubColor)  !important;  
}
/* 右側圖文區 */
.blog_ri {
    width: calc(100% - 240px);
    padding: 0 0 0 40px;
}
h4.blog_category_title {
    width: fit-content;
    font-weight: 600;
    letter-spacing: 0.04em;
    display: none;
}
/* 圖文區塊 */
.blog_subbox {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    display: flex;
    flex-wrap: wrap;
}
.subbox_item {
    position: relative;
    width: 100%;
    background: rgb(255 255 255);
    border-radius: 0;
    overflow: hidden;
    transition: .5s ease-out;
    border: 0;
    height: fit-content;
    width: 100%;
    margin: 0;
    background: transparent;
    padding: 25px 0;
}
.subbox_item:not(:first-child) {
    border-top: 1px solid #e4eff3;
}
.subbox_item:hover {
    transition: .5s ease-out;
    /* box-shadow: 9px 12px 20px 0px rgb(181 177 172 / 35%); */
}
.subbox_item li:hover {
    transition: .5s ease-out;
    box-shadow: 9px 12px 20px 0px rgb(181 177 172 / 35%);
}
.subbox_item a {
    grid-template-columns: 1fr;
    gap: unset;
    /* flex-direction: column; */
    height: 100%;
    padding: 0;
    display: flex;
}
.module_i_news li a:before, .module_i_news li a:after, .subbox_item a:after, .subbox_item a:before {
    content: none;
}
/* 圖 */
.blog_list_le {
    overflow: hidden;
    position: relative;
    aspect-ratio: 1/1;
    background-color: #004e8a;
    margin-right: 25px;
    border: 2px solid #e4eff3;
    max-width: 30%;
}
.i_blog_le img, .blog_list_le img {
    width: 100%;
    transition: .4s ease;
}
.module_i_news li a:hover img, .subbox_item a:hover img {
    z-index: 1;
    transition: 0.4s;
    opacity: 0.6;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}
 .subbox_item a:hover .blog_list_le::before{
    opacity: 1;
    transition: 0.5s;
    margin-top: -20px;
}
.module_i_news li a .i_blog_le:before, .blog_list_le::before{
    content: "MORE +";
    position: absolute;
    line-height: 1.462;
    font-family: var(--SFontE);
    left: 50%;
    top: 50%;
    z-index: 99;
    transform: translateX(-50%);
    /* margin-left: -45px; */
    margin-top: -80px;
    display: block;
    padding: 10px 20px 7px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    background: #fff;
    color: var(--MainColor);
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
/* 文字 */
.blog_list_ri {
    /* width: 50%; */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    max-width: 600px;
    margin: 0 auto;
    padding: 15px 35px;
    padding: 0;
    width: 100%;
    margin: 0;
}
.blog_list_ri h5 {
    font-size: var(--f20);
    text-align: left;
    color: var(--SubColor);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 5px;
}
.blog_list_ri em {
    font-size: 14px;
    color: #aaa;
    margin: 10px 0 0;
    font-size: 14px;
    letter-spacing: 1px;
    margin: 0;
    order: -1;
    padding: 10px 0;
    color: #2F68AB;
    font-family: var(--SFontE);
    font-weight: 600;
}
.blog_list_ri p {
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 1.7;
    font-weight: 400;
    color: #999;
}



/*文章內層/ = = = = */
.blog_in_page h5.blog_le_t em {
    /* color: transparent; */
}
.blog_in_page .blog_ri {
background: rgb(241 247 251 / 44%);
padding: 10px 40px;
}
.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 {
    z-index: 1;
    width: calc(100% - 200px - 40px);
    /* text-align: center; */
    /* justify-self: end; */
    display: flex;
    justify-content: space-between;
    z-index: 1;
    justify-self: flex-end;
    width: calc(100% - 240px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 5px;
    margin: auto;
    margin-top: 10px;
    text-align: center;
    margin-right: 0;
    justify-items: start;
}
.blog_back a {
    font-size: 13px;
    letter-spacing: 0.08em;
}
.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 {        
    background: transparent;
    color: #555;
    transition: .4s ease;
    transition: .4s ease;
    border: 1px solid #c2c2c2;
    background: #fff;
    color: #333333;
    display: block;
    font-size: 15px;
    /* border-radius: 5px; */
    width: 180px;
    height: 45px;
    font-weight: 300;
    line-height: 43px;
    padding: 0 20px;
    position: relative;
}
a.article_btn_next {
    justify-self: flex-end;
}
.blog_back a.article_btn_prev:hover, .blog_back a.article_btn_next:hover {
    /* opacity: .6; */
    border-color: #CAE7F2;
    color: #CAE7F2;
}



@media screen and (max-width: 1024px) {
/* 外層 */
.blog_le {width: 100%; margin-bottom: 40px;}
h5.blog_le_t {display: none;}
.blog_le .accordion {grid-template-columns: repeat(auto-fill,minmax(200px, 1fr));}
.blog_le .accordion li {border: 1px solid #C8D6DE;}

.blog_ri {width: 100%;padding: 0;}
.blog_list_le {max-width: 250px;}
.i_blog_ri h5, .blog_list_ri h5 {font-size: var(--f22);}
.blog_list_ri p {letter-spacing: 1.5px;}
}

@media screen and (max-width: 768px) {
/* 外層 */
.blog_le {margin-bottom: 20px;}
.blog_list_ri p {font-size: 13px;}
.blog_list_le {max-width: 200px;margin-right: 15px;}
.subbox_item a .blog_list_le::before, .subbox_item a:hover .blog_list_le::before {letter-spacing: 1px;font-size: 14px;padding: 6px 15px;}
}

@media screen and (max-width: 640px) {
/* 外層 */
.subbox_item a {flex-direction: column;gap: 10px;}
.blog_list_le, .blog_list_ri {margin: 0 auto;max-width: 500px;}
}

@media screen and (max-width: 480px) {
    .i_blog_ri h5, .blog_list_ri h5 {
        order: 2;
    }
    .blog_list_ri em {
        order: 1;
        font-size: 13px;
        margin: 0;
    }
    .i_blog_ri p, .blog_list_ri p {
        order: 3;
    }

}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = = = = = */
/*促銷活動設定 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

/* 首頁 = = */
.news_part {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 100px 20px;
    background: #fff;
}
.news_part section {
    max-width: 1300px;
    margin: auto;
    display: flex;
    position: relative;
    /* grid-template-columns: 240px 1fr; */
    justify-content: space-between;
}
/* 標 */
.news_part .title_i_box {
    margin-bottom: 30px;
    text-align: center;
    width: 280px;
    padding-bottom: 126px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.news_part .title_i_box h6 {
    font-size: unset;
    color: #212121;
    margin-bottom: 10px;
}
.news_part .title_i_box h6:after {
    content: 'News';
    color: #005b9699;
    font-family: var(--SFontE);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 1.5px;
}
.news_part .title_i_box h4 {
    text-align: left;
    font-size: var(--f32);
    color: #222;
    font-weight: 600;
    letter-spacing: 1.5px;
    font-family: var(--SFont);
}
.news_part .title_i_box h4:after {
    display: block;
    color: #222;
    font-size: var(--f18);
    content: '安全升降，溫暖不斷線';
    font-weight: 500;
    margin-top: 4px;
}
/* 方案 */
.news_list {
    width: calc(100% - 320px);
    max-width: 960px;
    padding-top: 7px;
    font-family: var(--SFont);
}
.news_list ul li {
    display: block;
    border: 0;
    background: transparent;
    border-bottom: 1px dashed #969ca74d;
    border-top: 1px dashed #969ca74d;
}
.news_list ul li+li{
    border-top: 0;
}
.news_list ul li span {
    padding: 20px 0;
    font-size: 11px;
    width: 110px;    
    letter-spacing: 1px;
    color: #969ca7;
    font-family: var(--SFontE);
}
.news_list ul li p {
    padding: 20px 70px 20px 0;
    font-size: 15px;
    color: #2c3034;
    width: calc(100% - 110px);
    letter-spacing: 1px;
    font-weight: 400;
    padding-right: 0;
}
.news_list ul li p:after{
    content: '';
}
.news_list ul li a:hover {
    background: #f8f9fc;
}
.news_list ul li a:hover p {
    color: var(--MainColor);
}


/* btn */
.i_news_b a i.fa-solid.fa-arrow-right{display: none;}
.i_news_b {
    max-width: 1200px;
    margin: auto;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 0;
    padding: 0;
    overflow: unset;
}
.i_news_b a {
    position: relative;
    margin: 0;
    overflow: unset;
    height: max-content;
    background: transparent;
    overflow: unset;
    /* width: 100%; */
    max-width: 240px;
    padding: 5px;
}
.i_news_b a:before, .i_news_b a:after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    top: 0;
    border-top: 1px solid #2f68ab;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.i_news_b a::before {
    border-left: 1px solid #2f68ab;
    left: 0;
}
.i_news_b a::after {
    border-right: 1px solid #2f68ab;
    right: 0;
}
.i_news_b b {
    background: #fff;
    border: 1px solid #2f68ab;
    color: #2f68ab;
    display: block;
    font-size: 15px;
    line-height: 44px;
    letter-spacing: 1.5px;
    font-weight: bold;
    text-align: center;
    position: relative;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.i_news_b b:before, .i_news_b b:after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    bottom: -6px;
    border-bottom: 1px solid #2f68ab;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.i_news_b b:before {
    border-left: 1px solid #2f68ab;
    left: -6px;
}
.i_news_b b:after {
    border-right: 1px solid #2f68ab;
    right: -6px;
}
/* HOVER */
.i_news_b a{
    opacity: 1;
}
.i_news_b a:hover::before {
    top: 5px;
    left: 5px;
}
.i_news_b a:hover::after {
    top: 5px;
    right: 5px;
}
.i_news_b b:hover {
    background: #2f68ab;
    color: #fff;
}
.i_news_b b:hover::before {
    bottom: 0;
    left: 0;
}
.i_news_b b:hover::after {
    bottom: 0;
    right: 0;
}




/* 功 */
/* .promotions_page .show_content {padding: 100px 40px;} */
/* 標 */
.promotion_title {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
.promotion_title * {
    width: 40%;
}
.promotion_title span {
    padding: 0 5px;
    margin: 0;
    border: 0;
    line-height: 1.7;
    color: #969ca7;
    font-size: 14px;
    font-family: var(--SFontE);
    letter-spacing: 1px;
    width: fit-content;
}
.promotion_title em {
    border: 0;
    margin: 0;
    width: fit-content;
    padding: 5px 10px;
    display: block;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    line-height: 14px;
    letter-spacing: 0.5px;
    color: #395273;
    background-color: #dbe0e6;
    display: none;
}
.promotion_title h2 {
    color: #222;
    width: 100%;
    font-weight: 500;
    font-size: var(--f28);
    letter-spacing: 1.5px;
    color: #222;
    line-height: 1.7;
}
/* 下方消息 */
.other_promotion {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    margin-top: 60px;
    grid-template-columns: 1fr;
    padding: 40px 20px;
    gap: 0;
}
.other_promotion li {
    display: flex;
    width: 100%;
    border: none;
    background: transparent;
    /* border-bottom: 1px solid #bcbcbc8c; */
    padding: 0;
    font-family: var(--SFont);
    border-bottom: 1px dashed #969ca74d;
}
.other_promotion li a {
    padding: 20px;
    width: 100%;
    margin: 0;
    position: relative;
    border: 0;
    transition: .5s;
    line-height: 1.6;
}
.other_promotion li a:hover {
    background: #f8f9fc;
}
.other_promotion li a:after, .other_promotion li a:before{
    content: none;
}

.other_promotion .pmtTime {
    float: left;
    font-size: 13px;
    font-style: normal;
    padding-right: 7px;
}
.other_promotion .pmtTime span {
    float: left;
    font-style: normal;
    padding-right: 7px;
    letter-spacing: 1px;
    color: #969ca7;
    font-family: var(--SFontE);
}
.pmtTitle span {
    float: left;
    padding: 0px 15px;
    background: #e3ebf1;
    color: #607083;
    border-radius: 10px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 1px;
    max-width: fit-content;
}
.other_promotion .pmtTitle h3 {
    letter-spacing: 1px;
    font-weight: normal;
    font-size: 15px;
    height: auto;
    /* line-height: 1.6; */
    min-height: auto;
    margin: 0;
    padding-left: 20px;
    color: #3E3A39;
}
.other_promotion > li > a:hover .pmtTitle h3 {
    color: var(--MainColor);
}

.edit {margin: auto;padding: 20px 0;padding: 10px 0 20px;line-height: 1.6;letter-spacing: 0.8px;color: #222;font-weight: 400;}







@media screen and (max-width: 1200px){
/* 首 */
.news_part{padding: 80px 40px 100px;}
}

@media screen and (max-width: 1160px){
/* 首 */
.news_part .title_i_box {width: 240px;}
.news_list {width: calc(100% - 290px);}
.news_part {padding: 60px 40px 80px;}
}

@media screen and (max-width: 1024px){
/* 首 */
.news_part .title_i_box h4:after{font-size: 16px;}
/* 功 */
.other_promotion {width: 100%;margin: 0;}
}

@media screen and (max-width: 768px){
/* 首 */
.news_part section {display: flex;position: relative;justify-content: space-between;flex-direction: column;}
.news_part .title_i_box {width: 100%;padding: 0;}
.news_list {width: 100%;}
.news_list ul li a {display: flex;width: 100%;text-align: center;justify-content: space-between;align-items: flex-start;align-content: center;flex-wrap: wrap;flex-direction: column;padding: 15px 10px;}
.news_list ul li span {text-align: left;width: 100%;padding: 0;}
.news_list ul li p {padding: 0;line-height: 2;width: 100%;text-align: left;}
.i_news_b {position: relative;margin-top: 40px;}

/* 功 */
.other_promotion li a {
    padding: 16px 8px;
    display: flex;
    flex-direction: column;
}
.other_promotion .pmtTime {
    padding-right: 0;
}
.other_promotion .pmtTime span {
    font-size: 11px;
}
.pmtTitle {
    display: flex;
    flex-direction: column;
    margin-top: 5px;
    gap: 5px;
}
.pmtTitle span {
    display: none;
}
.other_promotion .pmtTitle h3 {
    font-size: 14px;
    padding: 0;
}
}


@media screen and (max-width: 560px){
/* 首 */
.news_part {padding: 60px 20px;}
.news_part .title_i_box h6:after{font-size: 14px;}
}





/* = = = 分隔線 相本主分類= = = = = = = = = == = = = = = = = = = = = = = = = = = = */
/*相本分類全版面 ( 限制最寬2000px  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.show-list .item:hover .show_name{
    color: #e14d4b;
}

/*相簿*/
.other_album_choice li {
    background: #ccc;
}
/*相簿下方隱藏*/
.other_album_choice{display:none;}
.album_fixed_title{display:none;}


.show-list .item a .show_pic {
    transition: all .8s;
}
.overlay{
    z-index: 1;    
    /* background: rgba(0, 78, 138, 0.6) */
}
/* .show-list .item a:hover .show_pic {filter: grayscale(0);} */
.show-list .show_pic {
    aspect-ratio: 37 / 25;
}
.show-list .item a .show_pic img {
    transform: scale(1);
    transition: all .8s;
}
.show-list .item a:hover .show_pic img {
    transform: scale(1.05);
    /* opacity: 0.8; */
}

.album_page .banner {
    position: relative;
    background: transparent;
    width: 100%;
    object-fit: cover;
    background-size: cover;
    display: flex;
    padding: 0;
    min-height: fit-content;
}
.album_page .banner h5 {
    text-align: center;
    padding-bottom: 20px;
    width: 100%;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--SubColor);
    font-family: var(--SFont);
    width: fit-content;
    padding: 50px 0 0;
}









/* = = = 分隔線 相本分類= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

/*相本列表*/
.album_page #page, .album_class_page #page, .album_info_page #page{

}
.album_page #content, .album_class_page #content, .album_info_page #content{
    background: transparent;
}

.album_page .show_content, .album_info_page .show_content{ 
    width: 100%;    
    text-align: center;
}

/* 主分類相簿名 */
.subalbum-menu h2 {
    text-align: center;
    padding-bottom: 20px;
    width: 100%;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--SubColor);
    display: none;
}
/*大分類頁*/
.album_class_page .show_content, .album_info_page .show_content {width: 90%;}
.album_descrip { display: none;}
.show-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: clamp(20px, 4%, 50px);
    gap: 30px;
}
.album_class_page .show-list {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}
.show-list .item {
    text-align: center;
    width: 100%;
    background: transparent;
}
/* 次分類相簿名 */
.other_subalbum li a p {
    margin: 0;
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 10px 0;
    font-size: 17px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: .1em;
    color: #333;
    width: 100%;
    text-align: left;
}


/*相本內頁-.album_info_page*/
.album_info_page{}
.album_descrip p {
    font-weight: 700;
    text-align: center;
    padding-bottom: 20px;
    width: 100%;
    color: #333;
    font-size: 20px;
    letter-spacing: 0.12em;
}
/*相簿瀑布流*/
.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));
    /* row-gap: clamp(20px, 4%, 50px);
    column-gap: clamp(20px, 4%, 50px); */
    grid-gap: 10px;
}
.album_info_page .pic-list .item { width: 100%;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
    padding: 0;
    margin: 0;
}
.album_info_page .pic-list .show_pic {
    height: auto;
    padding: 0;
    aspect-ratio: 4 / 4;
}
.pic-list .item h6 {
    padding: 0;
}



@media (max-width: 1440px){
.album_info_page .pic-list{ 
    -moz-column-count:3; 
    -webkit-column-count:3;  
    column-count:3;
}
}
@media screen and (max-width: 1280px){
    /* .album_page .show-list .item{width: 49%;}
    .album_info_page .pic-list .item {width: 49%;}	 */
    .show-list {
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (max-width: 980px){
    .main_part {
        width: 100%;
    }
}

@media screen and (max-width: 768px){
    .show-list {
        grid-template-columns: 1fr ;
    }
}

@media screen and (max-width: 600px){
    .album_class_page .show_content{width: 100%;}
    .album_page .show-list .item{width: 100%;}	
    .album_page .show-list .item{margin:auto;}
    .show-list .item{margin:auto;}
    .show-list {gap: 20px;}
    
}





/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/*聯絡我們 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

/*聯絡我們 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.contact_page .contact_content * {transition: all .6s;/* border-bottom: #e6ebf1 solid 1px; */}
.contact_page .path, .contact_page .banner{/* display: none; */}

/* 下方 */
.contact_page .main_part {
    padding: 0;
    width: 100%;
    max-width: 100%;
}
.contact_page .contact_content {
    margin: auto;
    padding: 80px 0 100px;
    position: relative;
    /* background: #efefef; */
}
.contact_content form {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}
/* 左資訊隱藏 */
.contact_content .information_left {
    display: none;
}

/* 右表單顯示 */
.contact_content .information_right {
    padding: 0;
    width: 100%;
    font-family: var(--SFont);
    display: flex;
    flex-direction: column;
}
.contact_content .information_right:before {
    content: '';
    order: 2;
    color: #2f68ab;
    width: 95%;
    margin: auto;
    text-align: center;
    padding: 0;
    line-height: 1.6;
    letter-spacing: 1.5px;
    font-size: 20px;
    font-weight: 500;
    width: 1px;
    height: 30px;
    background: #2f68ab;
}
/* 標 = = = = */
.blank_letter {
    display: flex;
    position: relative;
    margin-top: 0;
    order: 1;
    padding: 35px 0 15px;
    /* border-top: 1px solid #ccc5bb;
    border-bottom: 1px solid #ccc5bb; */
    flex-direction: column;
    text-align: left;
    font-size: var(--f32);
    color: #222;
    font-weight: 600;
    letter-spacing: 1.5px;
    font-family: var(--SFont);
    align-items: center;
}
.note {
    display: none;
    color: transparent;
}
h4.blank_letter.f:before {
    line-height: 1.2;
    color: #27353D;
    content: 'Mail Form';
    color: #005b9699;
    font-family: var(--SFontE);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 1.5px;
}
/* 表單欄位 = = = = */
.contact_form {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 15px;
    color: #4C4C4C;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 25px;
    margin-top: 40px;
    order: 3;
    gap: 20px;
    padding: 40px 5% 0;
    border-top: #e6ebf1 solid 1px;
}
.contact_form li:nth-last-child(-n+3) {
    grid-column: 1 / 3;
}
.contact_form li {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 6px;
    /* border-bottom: #e6ebf1 solid 1px; */
    padding: 0;
}
.contact_form li input.noborder, .contact_form li textarea.noborder {
    line-height: 1.6;border: 0;padding: 6px;border: 1px solid #ddd;background: #fdfdfd;
}
.captcha {
    width: max-content;
}
/* 表單標 */
.contact_form li .form__label {
    text-align: left;
    padding: 0 0 2px;
    color: #2c3034;
    letter-spacing: 1px;
    font-size: 16px;
    position: relative;
    display: flex;
    max-width: 100%;
    align-items: center;
    background: transparent;
    font-weight: 500;
    /* padding-top: 20px; */
}
/* 必填文字 */
span.star.red:before {
    /* content: '必填'; */
    display: block;
    position: relative;
    font-size: 12px;
    color: #fff;
    letter-spacing: 1.4px;
    padding: 2px 0 3px;
    font-weight: 300;
}
.red {
    color: #4c4c4c;
}
.star {
    padding: 3px;
    display: inline-block;
    width: 13px;
    padding: 0;
    position: relative;
    width: fit-content;
    font-size: 16px;
    padding: 0 5px;
    display: flex;
    color: #3469a8;
    align-items: center;
    justify-content: center;
    order: 2;
}
/* 備註文字 = = = = */
.contact_form li .form__label:before {
    /* content: ''; */
    position: relative;
    display: block;
    width: 50px;
    height: 10px;
    background: transparent;
    margin-right: 15px;
    order: 2;
}

/* btn */
.contact_form li.last {
    gap: 30px;
}
i.fa-solid.fa-arrow-right {
    display: none;
}
.contact_form li.last blockquote, .contact_form li.last cite {
    position: relative;
    text-align: center;
    border: 0;
    width: 100%;
    min-width: 140px;
    padding: 0;
    background: #4C4C4C;
    color: #fff;
    transition: all 1s;
    position: relative;
    margin: 0;
    overflow: unset;
    height: max-content;
    background: transparent;
    overflow: unset;
    width: fit-content;
    max-width: 220px;
    padding: 5px;
}
.contact_form li.last blockquote {
    color: #fff;
}
.contact_form li.last cite {
    /* background: #4C4C4C; */
    color: #fff;
}
/* .contact_form li.last blockquote:before, .contact_form li.last cite:before, .contact_form li.last blockquote:after, .contact_form li.last cite:after{
content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    top: 0;
    border-top: 1px solid #2f68ab;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
} */
.contact_form li.last blockquote:before, .contact_form li.last cite:before {
content: "";
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    position: absolute;
    width: 6px;
    height: 6px;
    top: 50%;
    right: 2px;
    -webkit-transform: translateY(-50%) rotate(45deg);
    -moz-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    -o-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    border-color: #2c3034;
}
.contact_form li.last blockquote:after, .contact_form li.last cite:after{
content: "";
    background: #fff;
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    background: #2f68ab;
}
.contact_form li.last input {
    font-size: 15px;
    width: 100%;
    padding: 5px 0;
    font-family: var(--SFont);
    font-weight: 300;
    background: #fff;
    border: 0;
    color: #2c3034;
    display: block;
    font-size: 15px;
    line-height: unset;
    letter-spacing: 1.5px;
    font-weight: 500;
    text-align: center;
    position: relative;
    transition: all 0.3s ease-out;
}
.contact_form li.last blockquote:hover input, .contact_form li.last cite:hover input {
    letter-spacing: 2px;
}
.contact_form li.last blockquote:hover, .contact_form li.last cite:hover {
/* background: #af8c48 */
}
.contact_form li.last blockquote:hover:after, .contact_form li.last cite:hover:after {
    width: 120%;
}

/* 編輯器 = = = = = = = = = = = = = = = = = = = = = = = =  */
.contact_editbox {
    padding: 0;
}


@media screen and (max-width: 1280px) {
.contact_page .main_part {width: 100%;}
.contact_page .contact_content { padding: 80px 0 80px;}
.contact_form li {/* grid-template-columns: 220px 1fr; */}
.contact_content .information_right {width: 95%; margin: auto; padding: 0 20px;}
.contact_form {/* margin-top: 20px; */}
h4.blank_letter.f:before {/* font-size: var(--f52); */}
}

@media screen and (max-width: 1024px) {
.contact_page .contact_content {padding-bottom: 60px;}
.blank_letter {padding: 20px 0;}
.contact_form {display: flex;flex-direction: column;}
.contact_form li {/* padding: 25px 0; *//* grid-template-columns: 170px 1fr; */}
.contact_form li .form__label:before {margin-right: 10px;}
.contact_form li.last {padding: 20px 0 40px;}



}

@media screen and (max-width: 768px) {
.contact_page .contact_content { padding: 60px 0 60px;}
.contact_content .information_right {padding: 0; }
.contact_form { margin-top: 15px;}
.contact_form li {grid-template-columns: 1fr;gap: 10px;}
.contact_form li .form__label {font-size: 15px;}
.contact_form li .form__label:before{content: none;}
.contact_form li.last {justify-content: center;}
.star {position: relative; margin-right: 10px;}
}

@media screen and (max-width: 600px) {
.contact_content .information_right:before {font-size: 15px;text-align: left;font-weight: 400;}
}

@media screen and (max-width: 480px) {
.contact_form {margin-top: 10px;}
.contact_form {grid-gap: 15px;}
.contact_form li.last {margin-top: 20px;}
.contact_form li.last blockquote, .contact_form li.last cite {max-width: calc((100% - 20px) / 2);}
}

























/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
@media screen and (min-width: 1700px) {
    /* footer */
    .footer_info {
        margin: auto;
    }
}

/* 下方區域_平板版面1280 */
@media screen and (max-width: 1280px) {
/* footer */
.footer .center{
    padding: 60px 0;
}
.footer_info {
    grid-template-columns: 1fr;
    gap: 30px;
}
.footer_info ul {
    border-top: 1px solid #cae7f2;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    padding-top: 20px;
}
.footer_info li:nth-child(2) {
    display: block;
    width: 100%;
    margin: auto;
    border-top: 1px solid #cae7f2;
    margin-top: 20px;
    padding-top: 20px;
}
.footer_menu {
    flex-direction: row;
    align-items: flex-end;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px 20px;
    width: fit-content;
    margin: auto;
    display: flex;
}

}

/* @1024下方區域_平板版面1024 */
@media screen and (max-width: 1024px) {
/* footer */

/* main */
.show_content {padding-top: 80px; padding-top:80px;}


    
}

/* 下方區域_平板版面768 */
@media screen and (max-width: 768px) {
/* main */
.show_content {padding: 70px 20px;}
.path{min-height: 30px;padding: 3px 24px;}
.path p, .path p a {font-size: 10px;transition: 0.3s;}

/* 開啟手機板下方按鈕所需設定 */
#bottom_menu { display: none    }
.footer.with_shopping_mode { padding: 0; }
#to_top {bottom: 20px;padding: 0;left: unset;width: 44px;height: 44px;right: 16px;}
#to_top::before { top: 18px; }
#to_top::after { top: 20px; }

    /* footer */
    .footer .center {
        padding: 40px 0 60px;
    }
    .footer_info {
        gap: 20px;
    }
.footer_logo {
    max-width: 180px;
    width: 100%;
    margin: auto;
    margin-left: 0;
    max-width: 160px;
}
.footer_info ul {
    }
.footer_info li:nth-child(1) {
    grid-template-columns: 1fr;
    width: 100%;
    /* order: 2; */
}
    .footer_info li:nth-child(2) {
        display: block;
        width: 100%;
        margin: auto;
        border-top: 1px solid #cae7f2;
        margin-top: 20px;
        padding-top: 20px;
        /* padding-bottom: 20px; */
    }
        .footer_menu {
        flex-direction: row;
        align-items: flex-end;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        width: fit-content;
        margin: auto;
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }
    .footer_menu a {
    background: transparent;
    border: 0;
    letter-spacing: 1px;
    margin: 0 0 8px;
    padding: 0;
    transition: all .3s cubic-bezier(.165,.84,.44,1);
    color: #3e3a39;
    font-weight: 500;
    padding-left: 18px;
    position: relative;
    font-size: 13px;
    width: 48%;
    width: 33.33%;
}


}

@media screen and (max-width: 640px) {
/* main */
.show_content {padding: 70px 20px;}

.copy {font-size: 10px;}
}
@media screen and (max-width: 480px) {
    
}