@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200..900&display=swap');

body {
    font-family: "Noto Sans TC";
}


/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/


&::-webkit-scrollbar {
    background: #fff;
    width: 7px;
}

&::-webkit-scrollbar-button {
    background: #fff;
    border-radius: 0;
}

&::-webkit-scrollbar-track-piece {
    background: #eee;
}

&::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #000642;
}

&::-webkit-scrollbar-track {
    box-shadow: transparent;
}

/**/
.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    bottom: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.6);
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #000642;
    transform: scale(1.3);
}

/*大圖********************************* */
/*預設解除背景輪播*/
#content_main {
    margin: 0;
}

.bannerindex {
    position: relative;
    height: auto;
}

.swiper-banner {
    position: relative;
    margin: 0;
    height: auto;
}

.swiper-slide img {
    height: auto;
}

.swiper-slide {
    position: relative;
}

.swiper-slide:before,
.swiper-slide:after {
    content: "";
    position: absolute;
    z-index: 999;
    pointer-events: none;
}

body {
    overflow-x: hidden;
    margin: 0;
}

.stellarnav ul {
    margin: 16px 0 0 0;
    padding: 0;
    text-align: right;
}

.pageIndex .bannerindex .swiper-slide.swiper-slide-active:nth-child(1):before {
    width: 150%;
    height: 100%;
    top: 0;
    left: -150%;
    background: linear-gradient(-45deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 15%,
            rgba(255, 255, 255, 0.15) 50%,
            rgba(255, 255, 255, 0) 75%,
            rgba(255, 255, 255, 0) 100%);
    animation: shine-slide 2s linear infinite;
}





.pageIndex .bannerindex .swiper-slide.swiper-slide-active:nth-child(2):before {
    width: 150%;
    height: 100%;
    top: 0;
    left: -150%;
    background: linear-gradient(-45deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 15%,
            rgba(255, 255, 255, 0.15) 50%,
            rgba(255, 255, 255, 0) 75%,
            rgba(255, 255, 255, 0) 100%);
    animation: shine-slide 2s linear infinite;
}

.bannerindex .swiper-slide.swiper-slide-active:before {
    content: "";
    position: absolute;
    z-index: 999;
    pointer-events: none;
}



@keyframes shine-slide {
    from {
        left: -150%;
    }

    to {
        left: 150%;
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*背景*/
#content {
    min-height: 80vh;
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-size: cover;
}

#content_main {

    width: 100%;
    min-height: 80vh;
    overflow: hidden;
    z-index: 60;
    position: relative;
    margin-top: 100vh;
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-size: cover;
}

#to_top {
    position: fixed;
    left: 10px;
    z-index: 600;
    width: 50px;
    height: 50px;
    padding-top: 10px;
    font-size: 12px;
    color: #000642;
    text-align: center;
    text-decoration: none;
    background: #ffffff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    border-radius: 50%;
}

#to_top i:before,
#to_top i:after {
    content: "";
    display: block;
    position: absolute;
    border-radius: 100px;
    background: #000642;
    transition: all 100ms ease-in-out;
}



/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/

/*Main/＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/*logo*/

.nav-header {
    max-width: 100%;
    width: 192px;
}

.navigation {
    grid-template-columns: 250px 1fr;
}

.nav-brand img {
    margin-top: -12px;
    width: 90%;
}

/*header*/

.header_area {
    background: #ffffff;
    padding: 18px 0 13px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header_area.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: #ffffff;
    transition: box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0.9;
    /* 可依需求調整陰影深淺 */
}

.tp_links {
    display: none;
}

.shop_search_btn {
    background: #1e8ff4;
    display: none;
}

.box_search input[type=text] {
    border: solid 1px #1e8ff4;
    display: none;
}


.me_tp_features {
    padding: 0px 16px;
}

.swiper-banner .swiper-slide img {
    margin-top: 6px;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*第一層*/

.stellarnav>ul>li:hover>a {
    color: #1e8ff4;
    transition: 0.3s;
}

.stellarnav>ul>li>a {
    margin: 0 15px;
    letter-spacing: 0.05em;
    font-weight: 500;
    color: #000642;
}

.stellarnav>ul>li>a:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffd357;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease-in-out;
}

.stellarnav>ul>li:hover>a:before {
    transform: scaleX(1);
    transform-origin: left;
}


.stellarnav>ul>li.has-sub>a {
    padding-right: 0px
}

.stellarnav li.has-sub>a:after {
    display: none;
}

.stellarnav.desktop>ul>li.mega>ul>li>a {
    font-weight: 400;
    background: #1e8ff4;
}

.me_tp_features a i,
.navigation * {
    color: #000642;
}

/*第二層-下拉選單*/
.stellarnav li li {
    border: none;
}

.stellarnav li li>a,
.stellarnav li li.has-sub>a {
    padding: 8px 9px;
    transition: all 0.3s;
    color: #000642;
    font-size: 15px;
}

.stellarnav.desktop>ul>li.mega>ul {
    text-align: center;
}

.stellarnav>ul>li>a b {
    font-weight: 600;
}

.stellarnav a {
    position: relative;
    text-decoration: none;
}

.stellarnav ul ul {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    height: auto !important;
}

.stellarnav ul ul li a::before {
    content: "▶";
    opacity: 0;
    color: #1e8ff4;
    margin: 10px;
}

.stellarnav ul ul li a:hover::before {
    opacity: 1;
    color: #1e8ff4;
}

.stellarnav li li>a:hover {
    color: #1e8ff4;
}

.stellarnav ul ul ul {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    height: auto;
}

.banner.banB {
    display: none;
}


/* = = = 頁尾 = = = =  = = = = = = = = */

.footer {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
    font-size: 0 !important;
    line-height: 0 !important;
    display: block !important;
    clear: both !important;
}


/* .footer::before { */
/* content: "" !important; */
/* display: block !important; */
/* width: 100% !important; */
/* height: 0 !important; */
/* 歸零 height，純靠 padding-top 撐開高度 */
/* padding-top: 20.83% !important; */
/* 400 / 1920 = 20.833% */
/* background-image: url("https://pic03.eapple.com.tw/futian/footer.jpg") !important; */
/* background-position: center top !important; */
/* background-size: 100% 100% !important; */
/* 強制寬高 100% 鋪滿，絕不留左右空白 */
/* background-repeat: no-repeat !important; */
/* } */

/* 全部隱藏 */
/* .footer_info,
.footer_logo,
.footer_menu,
.box_link,
.copy,
.privacyLinks {
    display: none !important;
} */

#to_top i.top {
    height: 15px;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*文章管理*/
h5.blog_le_t {
    font-size: 24px;
    font-weight: 500;
    color: #000642;
    font-family: "Noto Serif TC", serif;
    letter-spacing: 2px;
    margin-bottom: 7px;
}

.openNext a.news_menu_toggle i::before {
    content: '\f0d8';
    color: #000642;
}

/*側邊標題*/
h5.blog_le_t span {
    display: inline-block;
    font-family: "Noto Serif TC", serif;
}

.accordion li .link a {
    cursor: pointer;
    display: block;
    padding: 15px 10px;
    color: #000642;
    font-size: 14px;
    font-weight: 700;
    position: relative;
}

.blog_le .accordion>li:hover,
.blog_le .accordion>li.on_this_category {
    background: #1e8ff4 !important;
}

.blog_le .accordion>li:hover .link a,
.blog_le .accordion>li.on_this_category .link a {
    color: #fbfcff !important;
}


.blog_le .accordion {
    list-style-type: none;
    margin: auto;
    border: 1px #1b2130 solid;
    overflow: hidden;
    border-bottom: 1px #ccc solid;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-radius: 0px
}

/*右側文章排版*/
.blog_subbox {

    padding: 5px;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
    flex-wrap: wrap;
}

/*標題*/
.blog_list_ri h5 {
    font-weight: 700;
    font-size: 21px;
    color: #1b2130;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    padding: 0 5px 0 11px;
}

h5.blog_le_t em {
    font-family: 'Noto Sans TC';
    font-size: 28px;
}


/*時間*/
.blog_list_ri em {
    font-size: 16px;
    color: #999;
    font-style: normal;
    display: block;
    padding: 0 5px 0 11px;
}

/* 【通用/最新消息】預設上下圖文排列 (Flex 上到下) */
.subbox_item a {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* 【收購專欄 article_a】左右圖文排列 (Flex 左到右) */
body.article_a .subbox_item a {
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

/* 【收購專欄】限制左側圖片寬度與比例，防止被擠壓 */
body.article_a .blog_list_le {
    width: 35%;
    max-width: 300px;
    flex-shrink: 0;
}

/* 【收購專欄】讓右側文字區佔滿剩餘空間 */
body.article_a .blog_list_ri {
    flex: 1;
}

/* 手機版 RWD：當螢幕縮小時，收購專欄自動降回上下圖文，避免擠壓 */
@media (max-width: 768px) {
    body.article_a .subbox_item a {
        flex-direction: column;
    }

    body.article_a .blog_list_le {
        width: 100%;
        max-width: 100%;
    }
}

/*內文*/
.blog_list_ri p {
    font-size: 18px;
    color: #000642;
    line-height: 130%;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    word-break: break-all;
    padding: 0 5px 20px 11px;
}

.blog_subbox {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.subbox_item {
    background: #fffaf0;
}

.accordion li .link a {
    font-size: 21px;
}

/* ==========================================
   最新消息 (article_b)：一列 3 欄、上下圖文
   ========================================== */

/* 1. 將最新消息的容器設為 3 欄網格 */
body.article_b .blog_subbox {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    grid-gap: 20px !important;
}

/* 2. 確保卡片內部維持上下圖文排列 */
body.article_b .subbox_item a {
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
    /* 依需求調整 */
    background: transparent;
    /* 若不需要深色背景可在此修飾 */
}

/* 3. 圖片區與文字區滿寬 */
body.article_b .subbox_item .blog_list_le,
body.article_b .subbox_item a>div:first-child {
    width: 100% !important;
    max-width: 100% !important;
}

body.article_b .blog_list_ri {
    width: 100% !important;
    padding-top: 12px;
}

/* 4. RWD 響應式：平板改 2 欄，手機改 1 欄 */
@media (max-width: 992px) {
    body.article_b .blog_subbox {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 576px) {
    body.article_b .blog_subbox {
        grid-template-columns: 1fr !important;
    }
}

/*內文hover*/
/* 內文區塊 */
.subbox_item a {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* 背景淡亮 */
.subbox_item a:after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity .4s ease;
    z-index: 5;
}


/* READ MORE 從下方滑上來 */
.subbox_item a:before {
    content: 'READ MORE';
    position: absolute;
    left: 50%;
    bottom: -40px;
    /* 初始在下面看不到 */
    transform: translateX(-50%);
    background: #1e8ff4;
    padding: 8px 20px;
    font-size: 14px;
    letter-spacing: 2px;
    color: #fff;
    opacity: 0;
    transition: all .45s ease;
    z-index: 15;
}

/* Hover 動畫 */
.subbox_item a:hover:after {
    opacity: 1;
}

.subbox_item a:hover:before {
    bottom: 10px;
    /* 滑上來 */
    opacity: 1;
}

.edit {
    padding: 0;
}

.blog_ri {
    padding: 0 0 0 50px;
}


/* 手機版：改成左右排列 */
@media (max-width: 768px) {
    .subbox_item a:before {
        padding: 8px 8px;
        font-size: 12px;
        letter-spacing: 0px;
        text-align: center;
    }
}


/*文章*/
/*文章內頁*/
h4.blog_category_title {
    color: #000642;
    font-size: 30px;
    padding: 10px 0;
    margin-bottom: 20px;
}

.blog_box_edit * {
    line-height: 150%;
    color: #000642;
    font-size: 18px;
}

.toShareNews b,
.toShareNews a,
.toShareNews a object,
.toShareNews a i {
    font-size: 16px;
}

body.blog_in_page.article_a .accordion li .link a {
    cursor: pointer;
    display: block;
    padding: 15px 10px;
    color: #000642;
    font-size: 28px;
    font-weight: 700;
    position: relative;
}

/*文章封面寢藏*/
.articel_mainPic img {
    display: none;
}

body.blog_in_page.article_a .blog_le .accordion>li:hover,
.blog_le .accordion>li.on_this_category {
    background: #c7c2c2 !important;
}

body.blog_in_page.article_b .blog_le .accordion>li:hover,
.blog_le .accordion>li.on_this_category {
    background: #1e8ff4 !important;
}

body.blog_in_page.article_a h5.blog_le_t {
    font-size: 24px;
    font-weight: 500;
    color: #000642;
}



/*第二顆文章按鈕*/
body.blog_in_page.article_b .accordion li .link a {
    cursor: pointer;
    display: block;
    padding: 15px 10px;
    color: #000642;
    font-size: 14px;
    font-weight: 700;
    position: relative;
}

body.blog_in_page.article_b h5.blog_le_t {
    font-size: 24px;
    font-weight: 500;
    color: #000642;
}

/*分享文字*/
.toShareNews {
    font-size: 1em;
    color: #a1a1a1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

/*文章按鈕*/
.blog_back a.article_btn_back {
    background: #1b2130;
}


.blog_back a.article_btn_back:hover,
.blog_back a.article_btn_prev:hover,
.blog_back a.article_btn_next:hover {
    background: #0e121b;
}

/*相關文章*/
.news_related {
    background: #bebebe40;
    padding: 85px 15px;
}

.news_related h6 span:before {
    content: '相關文章';
    font-size: 24px;
    color: #1b2130;
}

/*上一篇*/
.blog_back a.article_btn_prev {
    background: #1b2130;

}

/*下一篇*/
.blog_back a.article_btn_next {
    background: #1b2130;

}

/*回列表*/
.blog_back a.article_btn_back {
    background: #a5a5a5;

}

.blog_back a {
    font-size: 15px;
    color: #ffffff;
    display: block;
    padding: 7px 15px;
    width: 100%;
}

/*按鈕*/
.lastPage {
    font-size: 16px;
    color: #fff;
    background: #1b2130;
    padding: 10px 20px;
    display: block;
    margin: 40px auto;
    width: 130px;
    text-align: center;
}

/*首頁-文章管理*/
/* 背景淡亮 */
.module_i_news li a:after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    opacity: 0;
    transition: opacity .45s ease;
    z-index: 8;
}

/* READ MORE — 從下方滑上來 */
.module_i_news li a:before {
    content: 'READ MORE';
    position: absolute;
    left: 50%;
    bottom: -40px;
    /* 初始藏在底部 */
    transform: translateX(-50%);
    padding: 8px 20px;
    background: #1b2130;
    font-size: 14px;
    letter-spacing: 2px;
    color: #fff;
    opacity: 0;
    transition: all .45s ease;
    z-index: 19;
}

/* Hover 啟動效果 */
.module_i_news li a:hover:after {
    opacity: 1;
}

.module_i_news li a:hover:before {
    bottom: 10px;
    /* 滑上來 */
    opacity: 1;
}


/*首頁-文章顯示*/
.module_i_news li:nth-child(n+5) {
    display: none !important;
}

/*標題*/

.module_i_news .title_i_box h4 {
    font-size: 32px;
    color: #1b2130;
    font-weight: 900;
    letter-spacing: 3px;
}

.module_i_news .title_i_box h6 {
    content: "NEWS";
    display: block;
    font-family: "Noto Serif TC", serif;
    color: #1b2130;
    font-size: 50px;
    letter-spacing: 3px;
    margin-bottom: -5px;
    font-weight: 500;
}

/*圖片*/

.i_blog_le img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;

}

/*文章標題*/
.i_blog_ri h5 {
    font-weight: 800;
    font-size: 20px;
    color: #1b2130;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
}

/*時間*/
.i_blog_ri em {
    font-size: 14px;
    color: #858585;
    font-style: normal;
    display: block;
    margin: 7px 0;
}

/*內文*/
.i_blog_ri p {
    font-size: 15px;
    color: #3d3938;
    line-height: 130%;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    word-break: break-all;
}

.path p,
.path p a {
    display: none;
}

/* 商品下拉超過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個--結束 */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*按鈕*/
.animated-arrow {
    background: #1b2130;
    color: #fff;
    display: inline-block;
    margin-top: 20px;
    height: 50px;
    line-height: 50px;
    overflow: hidden;
    width: 250px;
    text-align: center;
    position: relative;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*影片*/
/*側邊分類按鈕*/
.video-layer-two li a {
    position: relative;
    border: 1px #fff solid;
    background: transparent;
    padding: 7px 16px;
    display: block;
    font-size: 16px;
    color: #444;
    font-weight: 900;
}

.video-layer-two li a:hover {
    color: #1b2130;
}


/* = = = 相簿分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本分類全版面 ( 限制最寬2000px
.work_page .main_part { max-width:2000px;}
.work_page .show_content { padding:0; width:100%;}
.work_page .show-list .item { width:33%; display:inline-block; float:none; margin:0; padding:0;}
@media screen and (max-width: 768px) {
.work_page .show-list .item { width:49%;}
}
@media screen and (max-width: 570px) {
.work_page .show-list .item { width:100%;}
}
.work_page .show-list .item a { max-width:100%;}
.work_page .show-list .show_pic { height:auto; line-height:0;}
.work_page .show-list .show_pic img { max-width:100%; max-height:100%;}
.work_page .show-list .show_name { position:absolute; top:50%; right:10%; width:80%; height:auto; line-height:160%; font-size: 20px; color: #FFFFFF !important; border: solid 1px #fff; text-align: center; margin: -20px 0 0 -120px; padding:5px 20px; transition:all ease-in .3s; opacity:0;}
.work_page .show-list .item:hover .show_name {opacity:1;}
*/

/*外層*/
.overlay {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background: #1b213069;
    left: 0;
    top: 0;
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    transition: all .4s 100ms cubic-bezier(.42, 0, .58, 1);
}

.show-list .show_pic {
    display: block;
    position: relative;
    overflow: hidden;
    text-align: center;
    line-height: 0;
    height: auto;
    aspect-ratio: 4 / 3;

}

/*相簿名稱*/
.show-list .item:hover .show_name {
    color: #1b2130;
}

/*內層*/
.show-list .show_pic img {
    max-width: 100%;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;

}

/*觀看更多*/
.other_album_choice li {
    background: #1b2130;
    font-size: 15px;
    display: inline-block;

    padding: 7px 20px;
    margin: 0 7px 7px 0;
}

.album_fixed_title span:before {
    content: '觀看更多';
    margin: 0 7px 0 0;
    color: #1b2130;
}

.fa-image::before {
    content: "\f03e";
    color: #1b2130;
}

/*相簿分類名稱*/
.show-list .show_name {
    font-size: 17px;
    color: #1b2130;
    letter-spacing: 0.15em;
    line-height: 1.5;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 26px;
    text-align: center;
}

/*主分類*/
.subalbum-menu h2 {
    font-size: 20px;
    color: #1b2130;
    display: inline-block;
    vertical-align: middle;
}

/*相簿描述文字*/
.album_descrip {
    margin-bottom: 20px;
    color: #1b2130;
    line-height: 1.4;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*購物車*/

/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 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;
    /*border-right: 1px solid #ccc;*/
    min-height: 30vw;
}

.product_page .products-list,
.product-wrapper {
    width: calc(100% - 270px);
}

ul.page {
    width: 100%;
}

.product-layer-two li a {
    background: #ffffff;
    color: #000642;
    font-size: 21px;
    font-weight: 600;
}

.product-layer-two li ul {
    position: static;
    margin-top: 5px;
    /*display:block !important;*/
    width: 100%;
    margin-left: 0;
}

.product-layer-two li:hover ul {
    border: none !important;
    /*display:block !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: #edc04e;
}

.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.active a {
    border: 0;
}

.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: #edc04e;
}

.product-layer-two li li.active a {
    background: none;
}

.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 .more {
    border: 1px solid #1e8ff4;
    color: #1e8ff4;
    line-height: 46px;
}

.products-list .item a:hover .more {
    background: #1e8ff4;
}

.products-list .price b {
    color: #000642;
}

.products-list .name .numbering {
    display: block;
    font-size: 18px;
}

.products-list .name {
    font-size: 18px;
}

.products-list .more {
    font-size: 18px;
}

/*購物車內頁*/
.sidebarBtn {
    border: 0;
}

.inquiry_a3 {}

.toShare {
    display: none;
}


/* 1. 隱藏原本 span 裡的舊文字 */
a.pdinfo_line span {
    font-size: 0 !important;
    /* 隱藏原本的「加LINE諮詢」 */
}

a.pdinfo_line span::before {
    content: "加LINE諮詢";
    font-size: 15px;
}

a.pdinfo_tel {
    background-color: #1e8ff4;
}

/*產品加入購物紐*/
.products-list .price b:first-child:last-child {
    display: none;
}

@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) {}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*影片*/
.video-layer-two li a {
    background: #ffffff;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
@media screen and (max-width: 768px) {

    /* 開啟手機板下方按鈕所需設定 */
    #bottom_menu {
        display: none;
    }

    .footer.with_shopping_mode {
        padding: 30px 0 20px;
    }

    #to_top {
        bottom: 60px;
    }
}

@media screen and (max-width: 600px) {}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/* = = = 聯絡我們(表單) = = = = = = = = = == = = = = = = = = = = = = = = == = = */

.contact_le_map a,
.contact_form li.last cite {
    background: #1e8ff4;
    transition: .3s;
}

.contact_le_map a:hover,
.contact_form li.last cite:hover {
    background: #1e8ff4;
}

.contact_form li .form__label {
    background: transparent;
    font-size: 18px;
    white-space: nowrap;
}

.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(13px, 13px) minmax(120px, 120px));
    margin-bottom: 10px;
}

.form select {
    width: 100%;
    height: 32px;
}

.contact_form li {
    grid-gap: 13px;
}

@media screen and (min-width: 769px) {
    .contact_content form {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        align-content: flex-start;
    }
}

@media screen and (min-width: 601px) {
    /*.contact_form li .form__label {
		max-width: 80px;
	}
	
	.contact_form li {
		grid-template-columns: 85px 1fr;
	}*/
}


@media screen and (max-width: 600px) {
    .contact_content {
        padding-top: 0px;
    }

    .blank_letter.i {
        padding-top: 0px;
    }
}

/*.contact_form li .form__label {
	max-width: 100%;
	text-align: left;
	font-weight: 400;
}

.contact_form li {
	grid-template-columns: 1fr;
}




.list_before.info li {
    padding-left: 37px;
}

.info_TEL:before, .info_TEL2:before, .info_PHONE:before, .info_LINE:before, .info_FAX:before, .info_TAXID:before, .info_MAIL:before, .info_ADD:before, .info_ADD2:before {
    width: 37px;
}*/


/*******************************************/



@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;
    }

    /*產品頁面*/
    a.pd_menu_toggle {
        font-size: 1.6em;
        font-weight: bold;
        margin-bottom: 10px;
        position: relative;
        color: #1b2130 !important;

    }

    #prod_thumbSwiper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /*文章*/
    .path p,
    .path p a {
        text-align: left;
    }

    .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;
    }



    /*表單*/
    .contact_form li {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 600px) {}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#content_main {
    margin: 0;
}

.bannerindex {
    position: static;
    height: auto;
}

.swiper-banner {
    position: static;
    margin: 0;
    height: auto;
}

/* .swiper-slide img { height:auto;} */
@media screen and (max-width: 768px) {
    .bannerindex {
        padding: 0;
        margin: 0;
    }

    /* 手機版替換輪播大圖 */
    /* 1. 隱藏原本後台上傳的 HTML 圖片 */
    .swiper-banner .swiper-slide img {
        display: none !important;
    }

    /* 2. 讓 Swiper Slide 容器轉為顯示背景圖 */
    .swiper-banner .swiper-slide a {
        display: block !important;
        width: 100% !important;
        height: 0 !important;
        padding-top: 50% !important;
        /* 2. 改回 cover 讓圖片滿版填滿容器 */
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }

    .swiper-banner .swiper-slide:nth-child(1) a {
        background-image: url(https://pic03.eapple.com.tw/futian/mobile-banner-1.jpg);
    }

    .swiper-banner .swiper-slide:nth-child(2) a {
        background-image: url(https://pic03.eapple.com.tw/futian/mobile-banner-2.jpg);
    }
}

/*大圖*/
.swiper-banner .swiper-slide img {
    width: 100%;
    height: auto;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/


.banner.banB {
    display: none;
}


.banner.banC {
    display: none;
}

.banner {
    background: url(https://pic03.eapple.com.tw/futian/main-bn.jpg);
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    background-size: cover;
}

.banner h5 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 2px;
}


@media screen and (max-width: 768px) {
    .banner {
        height: auto;
    }

}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本分類全版面 ( 限制最寬2000px
.work_page .main_part { max-width:2000px;}
.work_page .show_content { padding:0; width:100%;}
.work_page .show-list .item { width:33%; display:inline-block; float:none; margin:0; padding:0;}
@media screen and (max-width: 768px) {
.work_page .show-list .item { width:49%;}
}
@media screen and (max-width: 570px) {
.work_page .show-list .item { width:100%;}
}
.work_page .show-list .item a { max-width:100%;}
.work_page .show-list .show_pic { height:auto; line-height:0;}
.work_page .show-list .show_pic img { max-width:100%; max-height:100%;}
.work_page .show-list .show_name { position:absolute; top:50%; right:10%; width:80%; height:auto; line-height:160%; font-size: 20px; color: #FFFFFF !important; border: solid 1px #fff; text-align: center; margin: -20px 0 0 -120px; padding:5px 20px; transition:all ease-in .3s; opacity:0;}
.work_page .show-list .item:hover .show_name {opacity:1;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本列表
.work_info_page .main_part { max-width:2000px;}
.work_info_page .show_content { padding:0; width:100%;}
.work_info_page .subalbum-menu { text-align:center;}
.work_info_page .subalbum-menu h2 { float:none;}
.work_info_page .pic-list .item { margin:0; padding:10px; width:49%; float:none; display:inline-block;}
@media screen and (max-width: 768px) {
.work_info_page .pic-list .item { width:100%;}
}
.work_info_page .pic-list .show_pic { height:auto; line-height:0;}
.work_info_page .pic-list .show_pic img { max-width:100%; max-height:100%;}
.work_info_page .pic-list .item a { max-width:100%; pointer-events: none; cursor: default; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


@media screen and (max-width: 1330px) {
    /*Header/＝＝＝＝＝*/


    .stellarnav li.has-sub>a:after {
        top: 55%;
    }

    .stellarnav ul {
        text-align: right;
    }

    .nav-header {
        position: static;
        text-align: center;
    }
}

@media screen and (max-width: 1250px) {

    /*Logo/＝＝＝＝＝*/
    .header_area .nav-brand {
        width: unset;
    }

    .header_area.sticky .nav-brand {
        max-width: 200px;
    }

    .box_search {
        left: 55%;
    }

    @media screen and (max-width: 1200px) {
        .navigation {
            padding: unset;
        }

        .navigation {
            width: 100%;
            position: relative;
            padding: 0;
            display: grid;
            grid-template-columns: 150px 1fr;
            grid-gap: 0 20px;
        }

        .stellarnav>ul>li>a {
            width: auto
        }

        .nav-header {
            position: static;
            text-align: center;
        }

        .stellarnav ul {
            text-align: right;
        }

    }

    @media screen and (max-width: 980px) {
        .main_header_area .container .navigation {
            grid-template-columns: 1fr;
            width: 100%;
            position: relative;
            gap: 6px;
        }

        .main_header_area .container .navigation>* {
            grid-row: unset;
            grid-column: unset;
            text-align: center;
            margin: auto;
        }

        .nav-menu>li>a {
            padding: 10px 0px;
        }

        .pageIndex .header_area {
            position: relative;
            width: 100%;
            padding: 20px 0 1px 0;
        }

        .header_area.sticky {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 9999;
        }

        .pageIndex .header_area .main_header_area,
        .pageIndex .header_area.sticky .main_header_area {
            background: #ffffff;
        }

        .pageIndex .stellarnav ul li:hover a {
            color: #1b2130;
            font-weight: bold;
        }

        .stellarnav ul {
            text-align: center;
            margin: -2px 0 0 0;
        }

        .nav-menu>li>a {
            padding: 15px 0px;
            letter-spacing: 2px;
        }

        .me_tp_features {
            width: 100%;
            text-align: center;
            margin-bottom: 7px;
        }

        .stellarnav>ul>li>a {
            line-height: 45px;
            height: 60px;
            font-size: 13px;
        }


        /*logo*/
        .nav-brand img {
            transition: all 0.3s;
            text-align: center;
        }

        .nav-brand img {
            max-width: 80%;
            margin-top: 6px;
        }

        .tp_links {
            display: none;
        }

        .box_search {
            display: none;
            opacity: 1 !important;
            margin-bottom: -26px;
            left: 61%;
        }
    }

}

@media screen and (max-width: 768px) {

    /*促銷*/
    .news_list ul li {
        border: 1px #1b2130 solid;
        margin-bottom: 7px;
        background: transparent;
    }

    .news_list ul li a {
        display: flex;
        width: 100%;
        text-align: center;
        justify-content: center;
        align-items: center;
        align-content: center;
        flex-wrap: wrap;
    }

    /*文章*/
    .blog_subbox {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    body.article_b .blog_subbox {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        grid-gap: 20px;
    }

    /*文章-首頁*/
    .module_i_news li a {
        grid-template-columns: 200px 1fr;
    }

    .module_i_news .title_i_box h4 {
        font-size: 20px;
    }

    .path p,
    .path p a {
        display: none;
    }

    /*產品頁面*/

    .product_menu_list>h5 {
        color: #1b2130;
    }

    .product_menu_list>h5 a {
        width: 100%;
        height: 100%;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        text-align: right;
        display: flex;
        align-items: center;
        align-content: center;
        justify-content: center;
    }

    a.pd_menu_toggle {
        width: 100%;
        height: 100%;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        align-content: center;
        justify-content: center;
        border: 0px #1b2130 solid;
        border-radius: 20px;
    }

    /*產品內頁-標題名稱*/
    .mobile_product_name {
        display: block;
        margin-bottom: 10px;
        color: #1b2130;
    }

    /*產品資訊*/
    .sidebarBtn {
        padding: 15px;
        display: inline-block;
        width: 100%;
        vertical-align: top;
        border: 0px #dddddd00 solid;
        background: #b9b9b900;
    }

    /*header*/
    .header_area.sticky .main_header_area {
        background: #ffffff;
        max-width: unset;
        margin: auto;
        width: 100%;
        border-radius: 0px;
        padding: 0px;
        transition: 0.6s;
    }

    .stellarnav .menu-toggle {
        padding: 10px;

    }

    .nav-menu>li>a {
        padding: 5px 15px;
    }

    .main_header_area .container {
        max-width: 100%;
    }

    .me_tp_features {
        padding: 0 0 15px 0;
    }

    /*側邊選單/＝＝＝＝＝*/
    .stellarnav li li:hover>a,
    .stellarnav li li.has-sub:hover>a {
        color: #1b2130;
        padding-left: 10px;
        border-color: #1b2130;
        background: #1b21304f;
    }

    .stellarnav.mobile.right .close-menu,
    .stellarnav.mobile.left .close-menu {
        background: #1b2130;
    }

    .stellarnav.mobile.right>ul,
    .stellarnav.mobile.left>ul {
        position: fixed;
        top: 0;
        bottom: 0;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 9999;
        border-right: 1px #eee solid;
    }

    .stellarnav.mobile>ul>li>a {
        text-align: left;
        overflow: auto;
        height: auto;
        line-height: 200%;
        display: block;
    }

    .stellarnav.mobile {
        left: 10px;
    }

    .stellarnav.mobile li a {
        border-bottom: none;
    }

    .stellarnav li li>a,
    .stellarnav li li.has-sub>a {
        padding: 10px;
        border-left: none;
    }

    .stellarnav li li:hover>a,
    .stellarnav li li.has-sub:hover>a {
        padding: 10px;
        border-color: transparent;
    }

    .stellarnav>ul>li.has-sub>a::before {
        display: none;
    }

    .stellarnav>ul>li:before {
        content: none;
    }

    /*open*/
    .stellarnav.mobile li.open {
        background: transparent;
        padding: 3px;
    }

    /*Logo/＝＝＝＝＝*/
    .nav-brand {
        margin-top: 10px;
    }

    .header_area .nav-brand {
        max-width: 150px;
        margin-top: 1px;
    }

    .header_area.sticky .nav-brand {
        max-width: 200px;
    }

    .nav-brand img {
        max-width: 70%;
    }


    /*表單*/
    .contact_form li .form__label {
        width: 100%;
        margin-left: 0;
        text-align: left;
        font-weight: bold;
        padding: 5px;
        background: transparent;
    }


    /*Footer/＝＝＝＝＝*/
    .footer_info li p {
        text-align: left;
        display: flex;
        color: #ffffff;
        flex-direction: row;
    }

    #to_top {
        bottom: 60px;
    }

    .footer.with_shopping_mode {
        padding: 30px 0 60px;
    }

    .footer_info {
        justify-content: center;
    }

    .footer_logo {
        display: none;
    }

    #bottom_menu li a {
        background: #ffffff;
    }

    #bottom_menu {
        flex: 1;
        float: none;
        border-right: 1px solid #ffffff;
        z-index: 9998;
    }

    #bottom_menu li a:hover {
        color: #1b2130;
    }

    .footer_info li {
        width: 80%;
    }

    .footer_info ul {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: column;
        align-items: center;
    }

    /*footer*/
    .footer_info {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        align-items: flex-start;
        padding: 10px;
        flex-direction: column;
    }

    .box_link {
        display: none;
    }

    .footer_info li:nth-child(1) {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

    .footer_menu {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(min(135px, 100%), 1fr));
        gap: 5px;
    }

    .footer_info li {
        width: 80%;
    }

    .footer_menu a {
        margin: 0;
        text-align: center;
        transition: all 0.3s;
        color: #ffffff;
        background: #ffffff00;
        border: 1px #ffffff solid;
    }

    .footer_menu a:hover {
        border: 1px #e0e0e0 solid;

    }

    /* 開啟手機板下方按鈕所需設定 */
    #to_top {
        bottom: 60px;
    }

    .contact_form li {
        grid-gap: 3px;
    }
}

.list_before.info li {
    padding-left: 55px;
    font-size: 18px;
}

.info_TEL:before,
.info_TEL2:before,
.info_PHONE:before,
.info_LINE:before,
.info_FAX:before,
.info_TAXID:before,
.info_MAIL:before,
.info_ADD:before,
.info_ADD2:before {
    font-size: 18px;
    white-space: nowrap;
}

@media screen and (max-width: 600px) {

    /*Logo/＝＝＝＝＝*/
    .nav-brand {
        margin-top: 10px;
    }

    .header_area .nav-brand {
        max-width: 200px;
    }

    .nav-brand img {
        max-width: 60%;
    }
}

/* 修正主選單下拉選單滑鼠無法移入 */
.stellarnav>ul>li {
    position: relative;
}

.stellarnav>ul>li>ul {
    width: 200px !important;
    height: auto !important;
    min-height: 0 !important;
    margin-top: 0 !important;
    top: 100% !important;
    overflow: visible !important;
    z-index: 99999;
}

.stellarnav>ul>li>ul li a {
    white-space: nowrap;
}

/* ==========================================
   消除內頁與 Footer 之間的白邊
   ========================================== */
/* 解決 Footer 頂部白線與縫隙 */
/* .footer {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 0 !important;
    line-height: 0 !important;
} */

/* .footer::before {
    content: "" !important;
    display: block !important;
    width: 100% !important;
    padding-top: 20.83% !important;
    background: url("https://pic03.eapple.com.tw/futian/footer.jpg") center top / 100% 100% no-repeat !important;
    margin-top: -5px !important; */
/* 向上蓋住白邊 */
/* } */

/* 1. 確保卡片容器本身為相對定位，並隱藏溢出 */
.subbox_item {
    background: #fffaf0;
    position: relative;
    overflow: hidden;
    height: 100%;
}

/* 2. 將 <a> 設定為 full block 撐滿容器 */
.subbox_item a {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

/* 客切footer */
.ftft_container {
    --ftft_ff1: "Noto Sans TC", sans-serif;
    --ftft_f15: clamp(14px, 1.04vw + 0.5rem, 15px);
    --ftft_f18: clamp(16px, 1.39vw + 0.5rem, 18px);
    --ftft_fw1: 400;
    --ftft_fw2: 500;
    --ftft_px: clamp(25px, 5.2vw, 60px);
    --ftft_ctr: 1430px;
    font-family: var(--ftft_ff1);
    font-size: var(--ftft_f15);
    font-weight: var(--ftft_fw1);
    letter-spacing: 10%;
    line-height: 1.6;
    color: #fff;
    background: #0e8be9;
    padding: 40px 0 55px;
    width: 100%;
    overflow-x: clip;
}

.ftft_container * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.ftft_container span {
    display: inline-block;
}

.ftft_container a {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}

.ftft_container a:hover,
.ftft_container a:focus-within {
    opacity: 0.6;
}

.ftft_container ul,
.ftft_container li {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ftft_container .double_key {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
    opacity: 0.85;
    padding-top: 1.5em;
}

.ftft_container .double_key a:not(:first-child)::before {
    content: "、";
}

.ftft_ctr {
    width: 100%;
    padding-right: var(--ftft_px);
    padding-left: var(--ftft_px);
    margin-right: auto;
    margin-left: auto;
    max-width: calc(var(--ftft_ctr) + var(--ftft_px) * 2);
}

.ftft_logo {
    text-align: center;
    padding-bottom: 50px;
}

.ftft_logo a {
    display: inline-block;
    width: min(65%, 250px);
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.ftft_logo img {
    width: 100%;
}

.ftft_wp {
    display: grid;
    gap: 45px clamp(30px, 5.2vw, 70px);
}

.ftft_tt {
    font-size: var(--ftft_f18);
    font-weight: var(--ftft_fw2);
    line-height: 1.2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 0.4em;
    padding-bottom: 1.3em;
    margin-bottom: 1em;
    border-bottom: 1px solid #fff;
}

.ftft_tt::before {
    content: "";
    display: block;
    width: 0.88em;
    aspect-ratio: 16/9;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background: #fff;
    clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
    -webkit-transform: translateY(calc(0.6em - 50%));
    transform: translateY(calc(0.6em - 50%));
    margin-right: 0.4em;
}

.ftft_tt h6 {
    font-size: var(--ftft_f18);
    font-weight: var(--ftft_fw2);
    margin: 0;
}

.ftft_tt small {
    display: block;
    font-size: var(--ftft_f18);
    letter-spacing: 0;
}

.ftft_1 .ftft_g {
    display: grid;
    gap: 0.4em clamp(20px, 3.5vw, 30px);
}

.ftft_1 li+li {
    margin-top: 0.4em;
}

.ftft_2 ul {
    display: grid;
    grid-template-rows: repeat(4, 1fr);
    grid-auto-flow: column;
    grid-template-columns: repeat(2, minmax(0, auto));
}

.ftft_2 ul>* {
    max-width: auto;
    min-width: 0;
}

.ftft_2 ul {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 0.6em 20px;
    width: min(100%, 15.3em);
}

.ftft_2 a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 0.8em;
    padding-left: 0.6em;
}

.ftft_2 a::before {
    content: "";
    display: block;
    width: 4px;
    aspect-ratio: 1;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background: #fff;
    border-radius: 100vmax;
    -webkit-transform: translateY(calc(0.8em - 50%));
    transform: translateY(calc(0.8em - 50%));
}

@media (min-width: 576px) {
    .ftft_1 .ftft_g {
        grid-template-columns: 42% 1fr;
    }
}

@media (min-width: 992px) {
    .ftft_wp {
        grid-template-columns: 69.6% 1fr;
    }
}


/* = = = 聯絡頁面：地圖下移與自適應滿版重構 = = = */

/* 1. 將主容器設為 Flex 排版，並啟用 order 重排 */
.contact_page .main_part {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
}

/* 2. 重新指定區域順序 (Order) */
.contact_page .main_part .path {
    order: 1 !important;
    /* 最上層：麵包屑導覽 */
}

.contact_page .main_part .contact_content,
.contact_page .main_part form,
.contact_page .main_part .information_box {
    order: 2 !important;
    /* 中間層：聯絡資訊與線上表單 */
    width: 100% !important;
    gap: 84px;
}

.contact_page .main_part .contact_editbox {
    order: 3 !important;
    /* 最下層：地圖區塊 */
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 40px !important;
    padding: 0 !important;
}

/* 3. 電腦版地圖尺寸：100% 滿版、高度拉大 */
.contact_editbox iframe {
    width: 100% !important;
    max-width: 100% !important;
    height: 480px !important;
    /* 電腦版地圖高度，可依需求調整 (如 450px ~ 550px) */
    border: 0 !important;
    border-radius: 6px !important;
    display: block !important;
    box-sizing: border-box !important;
}

/* 4. RWD 手機版：地圖自動隨寬度縮小 */
@media screen and (max-width: 768px) {
    .contact_page .main_part .contact_editbox {
        margin-top: 20px !important;
    }

    .contact_editbox iframe {
        height: 300px !important;
        /* 手機版自動縮小高度，避免佔滿畫面 */
    }
}