@charset "utf-8";

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*預設解除背景輪播*/
#content_main { margin:0;}
.bannerindex { position:relative; 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;}
}
/* 商品下拉超過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個--結束 */

/*copy/＝＝＝＝＝*/
.copy { background: #122A88;border-top: 1px #fff solid;font-size: 10px;padding: 15px 0;margin-top: 33px; }
.copy a{transition:all 0.3s;}
.copy,.copy a{color: #fff;}
.copy a:hover { color: #000;}

@media screen and (max-width: 768px) { 
.copy {margin-top: unset;
    padding-bottom: 30px !important;
    margin-bottom: 40px !important;
}}

.promotion_title {
    display: none;
}

/* -----------------------------------footer------------------------------ */

.footer {background: #fff;text-align: center;}
.footer .center { position: relative; display: flex; flex-wrap: wrap; flex-direction: row; max-width: 100%; padding: 0px;}
.footer_info { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; padding: 0px;  width: 100%;}
.footer_info li:nth-child(1) {display: flex;align-items: center; width: 100%; max-width: 340px; flex-wrap: wrap; justify-content: center; margin: 0 auto; grid-gap: 5px;}
.footer_info li:nth-child(1) a {color: #122A88;}
.footer_info li:nth-child(1) p { width: 100%;position: relative;}
.footer_info ul { width: 100%;}
.footer_info li p { line-height: 300%;}
.footer_info li p.mail, .footer_info li p.add, .footer_info li p.add2 { padding-left: 20px;}
.footer_info li:nth-child(2) { text-align: center; border-top: 1px solid #888;border-bottom: 1px solid #888;  max-width: 1366px;  margin:auto;}
.footer_menu>a:nth-child(1) { display: none;}
.footer_info li:nth-child(2) a:nth-child(2) { border-left: none;}
.footer_menu a { display: inline-block; padding: 6px 45px; border: none; border-left: 1px solid #888; margin: 0px;  font-size: 14px; line-height: 100%; color: #888; background: transparent;}
.footer_menu a:hover { background: transparent; color: #122A88;}
.copy a{ color: #fff; transition:all 0.3s;}
.copy a:hover {color: #fff;}
.box_link { display: none !important;}
.footer_logo {    margin: 0 auto;    max-width: 180px;
}


/*top*/
#to_top {color: #122A88;}
#to_top i:before,#to_top i:after {background: #122A88;}

/*bottom_menu*/

#bottom_menu li a i,#bottom_menu li a em {    color: #122A88;
}

#bottom_menu { position: fixed; bottom: 0; left: 0; width: 100%; z-index: 1000; }

@media screen and (max-width: 1024px) {
.footer_menu a { padding: 6px 30px;}
}

@media screen and (max-width: 900px) {
    .footer_menu a {
        padding: 6px 20px;
    }
}

@media screen and (max-width: 768px) {
    .footer_menu a {
        padding: 8px 10px;
    }
   .footer_info li:nth-child(2) {     border-top: unset;
    border-bottom: unset;}
    #to_top {    bottom: 60px;}

}
@media screen and (max-width: 400px) {
    .footer_menu a {
    font-size: 12px;
    line-height: 10%;
    padding: 12px 15px;
    }
}


/* -----------------------------------大圖------------------------------ */

/* 統一 before / after 的基本設定 */
.pageIndex .bannerindex .swiper-slide::before,
.pageIndex .bannerindex .swiper-slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
}


/* active 才淡入主圖 */
.pageIndex .bannerindex .swiper-slide.swiper-slide-active::before {
    animation: bannerFadeIn 1.2s ease-out forwards;
}

@keyframes bannerFadeIn {
    0% { opacity: 0; transform: translateX(-30px); }
    100% { opacity: 1; transform: translateX(0); }
}

/* active 才亮光掃過 */
.pageIndex .bannerindex .swiper-slide.swiper-slide-active::after {
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.5) 50%,
        transparent 100%
    );
    width: 60%;
    left: -150%;
    transform: skewX(-20deg);
    animation: sweepLight 1.8s ease-out forwards;
    z-index: 999;
}

@keyframes sweepLight {
    0%   { left: -150%; opacity: 0; }
    30%  { opacity: 1; }
    100% { left: 150%; opacity: 0; }
}


/* 滾動條 -------------------- */
/* 捲軸寬度及高度 */
::-webkit-scrollbar {
    width: 8px;
    /*右側捲軸寬度*/
    height: 0px;
    /*下方捲軸高度*/
}

/* 軌道背景底色 */
::-webkit-scrollbar-track {
    background-color: #ffffff;
}

/* 滑桿顏色 */
::-webkit-scrollbar-thumb {
    background-color: #122A88;
}

/* 滑桿滑鼠滑入時的顏色 */
::-webkit-scrollbar-thumb:hover {
    background: #000;
}

/*反白顏色*/
::-moz-selection {
    background-color:#122A88;
    color: #ffffff;
}

::selection {
    background-color:#122A88;
    color: #ffffff;
}

/* -----------------------------------header------------------------------ */

.navigation {
    display: flex;
    align-items: center;
    grid-gap: 0 10px;
}

.nav-header {
    max-width: 280px;
    padding: 8px 0;
    transition: all ease 0.3s;

}


.sticky .nav-header {
    max-width: 240px;
}

.nav-brand,
.nav-brand img {
    display: block;
}



.header_area,.header_area.sticky,.pageIndex .header_area.sticky {
    /* 半透明漸層 + 毛玻璃 */
 background: linear-gradient(180deg, rgba(255,255,255,1), rgba(255,255,255,0.6));

    box-shadow: 0 1px 10px rgba(0,0,0,0.2); /* 微陰影 */
    transition: all 0.5s ease;              /* 平滑過渡 */
    padding: 0;
    position: sticky;
}


.pageIndex .header_area{
    background: #ffffff00;
    position: fixed;
    padding: 5px;
    backdrop-filter:unset;
    box-shadow:unset;
    transition:unset;
}


.main_header_area .container {
    max-width: 93%;
}


/*logo/＝＝＝＝＝*/
.nav-brand img {
max-width: 50%;}
.pageIndex .nav-brand img {
filter: invert(1) brightness(3);
}

.sticky .nav-brand img {filter: unset;
}

@media screen and (max-width: 1165px) {
.nav-brand img {
    max-width: 40%;
}
.nav-header {
    max-width: 220px;}
}

@media screen and (max-width: 1024px) {
/* Logo 居中 */
.nav-brand,
.nav-brand img {
    display: flex;
    justify-content: center;
    max-width: 150px; /* 根據需求調整大小 */}
.header_area {
    position: relative;
    z-index: 9999;
    padding: 10px;
    background: #f0f0f000;
    position: sticky;
    top: 0;
    width: 100%;
}
    .stellarnav ul {
        text-align: center;
    }
        .me_tp_features {
        text-align: center;
    }
        /* header 固定在頂端 */
    .pageIndex .header_area {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;               /* RWD header 高度 */
        background: #fff;
        z-index: 9999;                   /* 保證在最上層 */
        box-shadow: 0 1px 10px rgba(0,0,0,0.2);
        transition: all 0.3s ease;
    }

    /* 大圖容器留空 */
    .pageIndex .bannerindex {
        position: relative;
        overflow: hidden;
    }

    /* Logo 調整大小 */
.main_header_area .container {
    max-width: 100%;
}

}




/* -----------------------------------主選單------------------------------ */
.stellarnav ul {
    font-family: 'Noto Serif TC', sans-serif;
}

.stellarnav li.has-sub>a:after {
    content: none;
}

.stellarnav>ul>li:after {
    width: 0;
    position: absolute;
    height: 2px;
    content: "";
    background: #122A88;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    transition: all ease 0.3s;
}

.stellarnav>ul>li:hover:after {
    width: 100%;
}

.pageIndex .stellarnav>ul>li>a{color: #fff;}
.stellarnav > ul > li.has-sub > a {
    padding-right: 0;
}

.stellarnav>ul>li>a{
    padding: 0 2px;
    letter-spacing:.5px;
    display: flex;
    font-weight: 500;
    margin: 0 12px;
    text-transform: none;
    height: 100%;
    line-height: 83.5px;
    transition: all ease 0.3s;
}

.sticky .stellarnav>ul>li>a {
color: #122A88;}

.stellarnav > ul > li > a {    color: #122a88;}

/*次分類*/
.stellarnav ul ul {
    background: transparent;
}

.stellarnav li li {
    background: #122A88;
    border: none;
    border-bottom: 1px solid #ffffff33;
    margin-bottom: 0;
    transition: all ease .3s;
    font-size: 15px;
}

.stellarnav li li:hover {
    background: #122A88;
}

.stellarnav li li:last-of-type {
    border: none;
}

.stellarnav > ul > li > a {margin: 0 10px;}
.stellarnav li.has-sub > a:after {border-top: 6px solid #122A88;}/* 子選單三角形變色 */
.stellarnav .menu-toggle:after {    color: #122a88;}/* 手機子選單menu變色 */
.stellarnav .menu-toggle:after {
    color: #122a88;
}
.pageIndex .stellarnav .menu-toggle:after {    color: #122A88;}/* 手機子選單menu變色 */
.pageIndex .stellarnav .menu-toggle:after {
    color: #122A88
}
.pageIndex .stellarnav .menu-toggle span.bars span {    background: #122a88;}

.stellarnav > ul.anchorList > li:nth-of-type(1) {
  display: none !important;
}/* 隱藏首頁按鈕 */

.stellarnav li a {    color: #fff;
}


.stellarnav .menu-toggle:after{    color: #122A88;}
.stellarnav .menu-toggle span.bars span{background: #122A88;}

.box_search {display: none;}
.me_tp_features a span {
  display: none; /* 隱藏文字部分 */
}
.me_tp_features a img {
  display: block;
  width: 24px;   /* 調整你要的圖示大小 */
  height: 24px;
}
.tp_links {
    display: none;
}

.me_tp_features {
    width: 9%;}

.stellarnav {
    order: 2; /* 原本中間的菜單放右邊 */
}

.me_tp_features {
    order: 3; /* 原本右邊的按鈕放中間 */
}
.pageIndex .me_tp_features a i {color: #fff;}
.me_tp_features a i {color: #122A88;}
.sticky .me_tp_features a i {color: #122A88}

#bottom_menu li a i,#bottom_menu li a em {color: #122A88;
}


@media screen and (max-width: 1210px) {
.stellarnav>ul>li>a {letter-spacing: .1px;    font-size: 15px;}
.stellarnav ul {    text-align: left;}
.stellarnav {width: 70%;}
.me_tp_features {text-align: left;}
.pageIndex .stellarnav>ul>li>a {margin: 0 5px;}
}

@media only screen and (max-width: 1024px) {
    .me_tp_features {
    margin: 0px 5px 10px;}
.pageIndex .stellarnav>ul>li>a {    line-height: 50px;}
    .pageIndex .nav-brand img {
    max-height: 80px;
    filter: unset;}
.stellarnav ul {    text-align: center;}
.me_tp_features {text-align: center;}
    

.pageIndex .stellarnav>ul>li>a {
    color: #122a88;}
    .pageIndex .me_tp_features a i {
    color: #122a88;
}
.stellarnav > ul > li.has-sub > a {
    padding-right: unset;
}
}  

@media screen and (max-width: 950px) {
.stellarnav>ul>li>a {margin: 0 2px; }

}


@media screen and (max-width: 800px) {
.pageIndex .stellarnav>ul>li>a {margin: 0 2px; font-size: 14px;}

}



@media screen and (max-width:768px) {
.stellarnav .menu-toggle{
padding: 15px;}
   .stellarnav .menu-toggle {
        padding: 16px 10px;
    }

    .stellarnav.mobile.right .close-menu,
    .stellarnav.mobile.left .close-menu {
        background: #122A88;
    }

    .stellarnav.mobile>ul {
        border-top: none;
        border-right: none;
        box-shadow: 0 0 10px rgba(0 0 0 / 12%);
    }

    .stellarnav.mobile li.open {
        background: #FAF7F4;
    }

    .stellarnav.mobile li.open li.open {
        background: #122A88;
    }

    .stellarnav .icon-close:after,
    .stellarnav .icon-close:before,
    .stellarnav.mobile>ul>li>ul>li.has-sub.open>a.dd-toggle .icon-plus:before,
    .stellarnav.mobile>ul>li>ul>li.has-sub.open>a.dd-toggle .icon-plus:after {
        border-color: #fff;
    }

    .stellarnav a,
    .stellarnav.mobile>ul>li>ul>li.has-sub.open>a {
        color: #fff;
    }

    .stellarnav li li {
        text-align: left;
        background: #122A88;
    }

    .stellarnav li li>a.dd-toggle .icon-plus:before,
    .stellarnav li li>a.dd-toggle .icon-plus:after {
        border-color: #fff;
    }

    .stellarnav>ul>li>a {    color: #122A88;}
    .me_tp_features {display: none;}


   .stellarnav.mobile > ul > li > a.dd-toggle {
    padding: 0;}
    .pageIndex .stellarnav>ul>li>a {line-height: unset;}


}

/* -----------------------------------聯絡我們------------------------------ */

.blank_letter{  font-family: "Noto Sans TC" ; color: #35383C;} 
.info_MAIL:before{  content: "Email";}
.list_before.info li{ padding-left: 44px; }

.contact_form{grid-gap:16px; }
.contact_form li.last blockquote{ color: #122A88;}
.contact_form li.last blockquote, .contact_form li.last cite{ border: 1px solid #122A88;}
.contact_form li.last cite{ color: #fff; background: #122A88;}
.contact_content { padding: 50px 10px;}

@media screen and (max-width:1024px) {
    .contact_page #content{
        background-position: left;
    }
}
@media screen and (max-width:600px) {
    .contact_form li .form__label{ background: transparent;}
}


.car_page .information_left {
    display: block;
}
body.car_page .footer_info li p:before{
    position: initial;
    display: inline;
}
.contact_le_map a{background: #2a93d8; }


/* -----------------------------------促銷方案------------------------------ */
/*首頁*/
.pageIndex .news_part {width: 100%; background: url(https://pic03.eapple.com.tw/jinxinequip/news.jpg); max-width: 100%; background-attachment: fixed;
    padding: 110px 0 130px;background-position: center; background-size: cover; background-repeat: no-repeat;position: relative;}
.pageIndex .news_part:after { content: ""; background: linear-gradient(to bottom, #000, #0000); width: 100%; height: 50%; position: absolute; top: 0;}
.pageIndex .news_list { max-width: 1366px;  margin: 0 auto;  z-index: 3; position: relative;}
.news_part .title_i_box { z-index: 2;}
.news_part .title_i_box { position: relative;}
.news_part .title_i_box h4 { font-size: 23px; color: #ffffff; font-weight: 600; letter-spacing: 5px; text-indent: 5px;}
.news_part .title_i_box h6 { font-size: 50px; color: #ffffff;letter-spacing: 3px; text-indent: 3px;}
.pageIndex  .news_list ul { padding: 0 20px;}
.news_list ul li { display: block; border-bottom: none; background: rgb(255 255 255 / 20%);  margin-bottom: 13px; border-radius: 50px; backdrop-filter: blur(3px); border: 1px solid #fff;}
.news_list ul li a:hover { background: #f9f9f9;}
.news_list ul li span { color: #eddab4;}
.news_list ul li p { font-size: 17px;}
.news_list ul li p:after {background: transparent; padding: 3px 20px 3px 5px; border-radius: 5px; color: #fff;}
.news_list ul li a:hover {background: #ffffff24;border-radius: 50px;}
.news_list ul li p ,.news_list ul li a:hover p { color: #fff;}

.other_promotion li a:hover:before , .other_promotion li a:hover:after {border-color:#C5B861;}
.i_news_b a {background: transparent; border: 1px solid #ffffff;  color: #ffffff;}

/*ban*/
.banB,.banC {display: none;}
.path p, .path p a {display: none;}

/* -----------------------------------產品賣場------------------------------ */
/*product*/

.product_page .main_part { max-width:1600px; padding: 100px 20px 50px;}
.product_info_page .main_part { padding: 100px 20px 50px; }

.product_page .show_content,
.product_info_page .show_content { width: 100%; display: flex; justify-content: space-between; flex-wrap: wrap; align-items: flex-start; align-content: flex-start;}
.product_page .product_menu_list { position: relative; width: 220px; letter-spacing: 1px;min-height: 30vw;}
.product_page .products-list,
.product-wrapper { width: calc(100% - 270px);}
ul.page { width: 100%;}

.product-layer-two li ul { position:static; margin-top:5px; width:100%; margin-left:0;}
.product-layer-two li:hover ul { border: none !important;}
.product-layer-two li li { display: block; padding:0; transition:all ease .3s;}
.product-layer-two li li a{ padding:5px 10px;}
.product-layer-two li li:hover > a { background:#fff; color:#122a88;}
.product-layer-two > li { width:100%; max-width:100%; padding:0; text-align:left; border-bottom:0px;}
.product-layer-two > li ul > li + li { margin-top:5px;}

.product_info_page .product_menu_list { 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:#122a88;}

.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;}
.product_info_page  .swiper-wrapper .swiper-slide:nth-child(1)::after { 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) {
    .payment_form{ align-items: baseline;}
}



/* 左邊選單 */

.product-layer-two > li:last-child{ border-bottom: 0px;}
.product-layer-two li a{ background: transparent; color: #444;  padding: 12px 16px; transition: 0.3s; margin-bottom: 12px;} 
.product-layer-two li a:hover{ background: #122a88; color: #fff; border: 0px; border-radius: 40px;}
.product-layer-two li li a{ color: #000; background: unset; }
.product-layer-two li i{ color: #fae5ea; } 
.product-layer-two li.active a{ background: #122a88; border: 0px; color: #fff; border-radius: 40px;}


/* 商品 */
.products-list{grid-template-columns:1fr 1fr 1fr 1fr ; grid-gap: 40px 60px ;}
.products-list .price { text-align: center;  color: #434343;    display: none;/*隱藏金額*/
}
.products-list .price b{ color: #939292;}
.products-list .name{ font-size: 18px; color: #122a88; font-weight: bold; text-align: center;
}
.products-list .item a{ transition: 0.3s;}
.products-list .more{ font-size: 15px; color: #122a88; border: 0px; }
.products-list .item a:hover .more{ background: transparent; color: #797979;}
.products-list .pic img{ width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
    transform: scale(1);
    transition: 0.5s;
}

.products-list .pic{ overflow: hidden; border-radius: 20px;}
.products-list .item a:hover img  {
border-radius: 20px;
background: #2a4c8a1a;
z-index: 999;
transform: scale(1.2);
}


/* 內頁 */
.product_info_page #content .swiper-slide:nth-child(1):before,.product_info_page #content .swiper-slide:nth-child(2):before{ display: none;}
.sidebarBtn{ border-radius: 24px;}
.sidebarBtn h2{ color: #122a88; font-size: 26px;}
.sidebarBtn .sp_price{ color: #939292;}
.sidebarBtn .price{ border-bottom: 3px solid #e6e6e621;}
.proImgSwiper img{object-fit: cover;overflow: hidden;}
.pd_tabTitle li.activeTab a{ color: #332A28; font-size: 22px; font-weight: bold;}

.pd_tabTitle li.activeTab::after{ height: 0px; background: #E4E4E4;}
.sidebarBtn{ border: 1px #ddd solid;}
.inquiry_a3{ background: transparent;  transition: 0.3s; border-radius: 40px; color: #122A88; border: 1px solid #122a88!important;}
.inquiry_a3:hover { background: #122a88; color: #fff;}

.rewrite_simple{ background: #122A88; border-radius:40px; }
.send_simple{ background: #000; border-radius: 40px; }


/* 相關推薦 */
.prod_related h6 span:before{  color: #332A28; font-size: 22px; font-weight: bold;}
.prod_related{ background: transparent; padding: 80px 15px 60px;}
.related_list li a{ background: transparent;}
.related_list li a img{ border-radius: 40px; transition: 0.5s;}
.related_list li a:hover img {
    opacity: 0.75;
    transition: 0.5s;
}
.lastPage{ background: #122a88; border-radius: 40px;}



@media screen and (max-width:1529px) {
    .products-list .name{ font-size: 16px; margin-bottom: 10px; height: 30px;}
    .products-list .price b{ font-size: 14px;}
}

@media screen and (max-width:1024px) {
    .products-list{grid-template-columns:1fr 1fr 1fr ;}
}
@media screen and (max-width:980px) {
    .products-list, .pageIndex .products-list{
        grid-gap:40px 60px;
    }
}
@media screen and (max-width:930px) {
    .products-list{grid-template-columns:1fr 1fr;}
}

@media screen and (max-width:768px) {
    .product-layer-two{ display: block!important;}
    .product_page .product_menu_list>h5{ display: none;}
    .product_info_page #content .main_part{ padding:80px 20px 0px;}
    .mobile_product_name{ display: none;}
    .products-list .price b{ text-align: center!important;}
    /*購物車裡*/
    .total_amount {margin-bottom: 30px;}
    
}

@media screen and (max-width: 500px) {
    .product_info_page #content .main_part {
        padding: 10px 20px 0px;
    }
}

@media screen and (max-width:450px) {
.products-list{grid-template-columns:1fr; gap: 24px;}
/*購物車裡*/
.car_page .information_left {display: none;}
}

/*ban*/
.banF,.banner  {background-image: url(https://pic03.eapple.com.tw/jinxinequip/ban-01.jpg);
}
.banner h5 {
    position: relative;
    color: #fff;
    font-weight: 700;
    font-family: 'Noto Serif TC';
    line-height: 1;
    font-size: 30px;
}

@media screen and (max-width: 500px) {
.banF,.banner  {background-image: url(https://pic03.eapple.com.tw/jinxinequip/ban-02.png);
}
}

@media screen and (max-width: 400px) {
.banF,.banner  {background-image: url(https://pic03.eapple.com.tw/jinxinequip/ban-03.png);
}
}

/* -----------------------------------文章設定------------------------------ */
.blog_page h4.blog_category_title {display: none;}
.blog_page  .main_part {
    max-width: 1600px;
    padding: 100px 20px 50px;
}
.blog_box,
.blog_le {
    padding: 0;
}

.blog_ri {
    padding: 0 0 0 60px;
}

.blog_subbox {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px 15px;
}



.subbox_item,
.module_i_news li {
    width: 100%;
    margin: 0;
    border-bottom: none;
    background: #fff;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .075);
}

.subbox_item a,
.module_i_news li a {
    display: flex;
    flex-flow: column wrap;
    gap: 0;
}

.blog_list_le,
.i_blog_le {
    height: auto;
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}

.blog_list_le:after,
.i_blog_le:after {
    content: 'VIEW MORE +';
    font-family: 'Roboto', 'Noto Sans TC', sans-serif;
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 1px;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 8;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: #122a88;
    opacity: 0;
    transition: all .4s;

}

.subbox_item a:hover .blog_list_le:after,
.module_i_news li a:hover .i_blog_le:after {
    opacity: 1;
}

.blog_list_le img,
.i_blog_le img {
    min-width: 100%;
    margin: 0 auto;
    object-position: center;
    transition: 1s ease;
}

.subbox_item a:hover .blog_list_le img,
.module_i_news li a:hover .i_blog_le img {
    transform: scale(1.1);
}

.blog_list_ri,
.i_blog_ri {
    display: flex;
    flex-flow: column wrap;
    padding: 15px 10px 10px;
    position: relative;
    justify-content: center;
}

.blog_list_ri h5,
.i_blog_ri h5 {
    color: #122a88;
    font-size: 20px;
    font-family: 'Noto Serif TC';
    font-weight: bold;
}

.blog_list_ri em,
.i_blog_ri em {
    font-weight: 400;
    margin: 8px 0 10px;
    font-size: 13px;
}

.blog_list_ri p,
.i_blog_ri p {
    line-height: 160%;
    -webkit-line-clamp: 2;
    margin-top: 0;
    font-size: 14px;
}

.subbox_item a:before,
.subbox_item a:after,
.module_i_news li a:before,
.module_i_news li a:after {
    content: none;
}


.blog_le .accordion {
    border-radius: 0;
}

.accordion li .link a {
    color: #444;
    font-weight: 400;
    font-size: 15px;
    padding: 12px;
}

.accordion li .link {
    border-bottom: none;
}

.accordion li {
    transition: all 0.2s ease;
}

.blog_le .accordion>li:hover,
.blog_le .accordion>li.open:hover,
.blog_le .accordion>li.on_this_category:hover {
    background: #122a88 !important;
}

.blog_le .accordion>li.open,
.blog_le .accordion>li.on_this_category {
    background: #122A88 !important;
}

.blog_le .accordion>li.open .link a,
.blog_le .accordion>li.open .link i {
    color: #fff !important;
}

.submenu {
    background: #fff;
    font-size: 14px;
}

.submenu a {
    font-family: 'Noto Sans TC', sans-serif;
    color: #444;
    letter-spacing: 0px;
    font-weight: 400;
    padding: 12px 12px 12px 36px;
    border-left: #fbf7f4 0 solid;
    transition: all .15s;
}

.submenu li.on_this_category a,
.submenu a:hover {
    background: #fbf7f4;
    color: #222;
}

.submenu a i {
    left: 12px;

}

.submenu a:hover {
    border-left-width: 4px;
}

.blog_search input[type=search] {
    background: #fff;
    font-size: 13px;
    border-radius: 0;
    padding: 10px 36px 10px 12px;
}

.blog_search input[type=submit] {
    filter: grayscale(20);
}

.blog_le .accordion li .link i {
    transition: none;
}

/*內頁*/
.articel_mainPic img {max-width: 60%;
    padding: 40px;
}
.blog_shareData {
    display: none;
}

h4.blog_category_title {
    padding: 0;
    margin-bottom: 0;
    font-size: 26px;
    color: #122A88;
    font-family: 'Noto Serif TC';
}

.blog_box_edit {
    color: #666;
    font-size: 16px;
}

.blog_box_edit * {
    line-height: 170%;
}

.blog_back {
    width: 100%;
    margin: 0 auto;
    grid-gap: 10px;
    justify-content: center;
}

.blog_back a {
    width: 100%;
    font-weight: 500 !important;
}

.blog_back a:hover {
    background: #000 !important;
}

.blog_back a.article_btn_next,
.blog_back a.article_btn_prev,
.blog_back a.article_btn_back {
    background: #122A88;
    transition: all .3s ease;
}

.news_related {
    padding: 48px 0;
    background: #fff;
}

.news_related_list {
    max-width: 1500px;
    width: 90%;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

.news_related_list li {
    width: calc((100% - 60px) / 4);
}

.news_related_list li a {
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.lastPage {
    background: #122A88;
    margin: 40px auto 20px;
}

.news_related h6 span:before {
    color: #666;
    font-family: 'Noto Serif TC';
}

.news_related_list li a p {
    margin: 6px auto 4px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #666;
}



@media screen and (max-width: 1024px) {
  .module_i_news ul {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog_subbox {
    grid-template-columns: repeat(2, 1fr);}
}

@media screen and (max-width: 768px) {
    .blog_ri {padding: 0;}

    .blog_subbox {
    grid-gap: 15px; /* 間距可調整 */
    }

    .blog_search {margin-bottom: 30px;}

    h4.blog_category_title {font-size: 22px;}

    .module_i_news ul {
    grid-template-columns: repeat(3, 1fr); /* 一列三個 */
    grid-gap: 15px; /* 間距可調整 */
    }
    
    .module_i_news {
        padding: 60px 0;
    }

    .articel_mainPic img {max-width: 100%;}
}

@media screen and (max-width: 600px) {
.module_i_news ul  {
    grid-template-columns: repeat(2, 1fr); /* 一列三個 */
    grid-gap: 15px; /* 間距可調整 */}
}

@media screen and (max-width: 450px) {
 .blog_subbox,.module_i_news ul {
    grid-template-columns: repeat(1, 1fr); /* 一列三個 */
    grid-gap: 15px; /* 間距可調整 */}
}


/* -----------------------------------最新消息------------------------------ */
.share_page .main_part {
    position: relative;
    width: 100%;
    max-width: 87.5%;
    margin: auto;
    padding: 150px 6%;
    border-radius: 40px;
    border: 1px #fff solid;
}

.promotion_title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-end;
    padding-bottom: 10px;
    border-bottom: 1px #70707057 solid;
}

.promotion_title h2 {
    font-size: 50px;
    color: #122a88;
}

.promotion_title span {
    color: #122a88;
    border: 0;
    padding: 2px 7px;
    margin: 0;
    width: 100%;
}

.promotion_title em {
    color: #122a88;
    border: 0;
    padding: 0;
    margin: 0;
    height: fit-content;
    word-break: keep-all;
    order: 3;
}

/* 選項 */

.other_promotion {
    margin-top: 5vh;
    padding: 1% 3%;
    grid-template-columns: 1fr;
    background: #ffffff63;
    border-radius: 5px;
    gap: 0;
}

.other_promotion li a:before,
.other_promotion li a:after {
    display: none;
}

.other_promotion li a {
    border: none;
    display: flex;
    align-items: center;
    border-bottom: 1px #70707036 solid;
    padding: 25px 10px 25px;
}

.other_promotion li a:hover {
    background: transparent;
}

.other_promotion li a::after {
    content: "read more";
    display: block;
    width: fit-content;
    height: fit-content;
    border: 0;
    position: absolute;
    top: 50%;
    right: 10px;
    opacity: 0;
    color: #122a88;
    transform: translate(0%, -50%);
    transition: all .5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.other_promotion li a:hover:after {
    width: fit-content;
    height: fit-content;
    opacity: 1;
    transition: all .5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.other_promotion .pmtTitle h3 {
    font-size: 20px;
    color: #707070;
    margin: 0;
}

.other_promotion .pmtTime {
    display: flex;
    color: #808080;
    margin-right: 20px;
    align-items: center;
}

.other_promotion .pmtTime cite {
    font-size: 18px;
    margin-right: 20px;
}

.other_promotion .pmtTime span {
    float: right;
    font-size: 13px;
    padding: 2px 10px;
    border: 1px #7070708a solid;
    border-radius: 30px;
}

@media screen and (max-width: 500px) {
.promotion_title h2 {
    font-size: 30px;}}
/* --------------------------------------------------- */

/*相簿管理******************************************** */
.album_page .main_part {
    max-width: 1600px;
    padding: 100px 20px 50px;
}

/*相簿主分類*/
.subalbum-menu h2 {font-size: 18px;color: #333;letter-spacing: .2rem;}
.show-list .show_pic {aspect-ratio: 4 / 3;}
.show-list .show_pic img {transform: scale(1);transition: all .5s;}
.show-list .show_name{color: #333;letter-spacing: .2rem;text-align: center;}
.show-list .item{margin-bottom: 30px;}
.show-list .item .overlay {-webkit-transform: scale(1);transform: scale(1);}
.show-list .item:hover .show_name {color: #122a88;}

.show-list .item .show_pic {
    overflow: hidden;
    border-radius: 20px; /* 外框固定 */
    transition: 0.3s;
}

.show-list .item .show_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;   /* 平常大圓角 */
    transform: scale(1);   /* 平常正常大小 */
    transition: 0.5s;
}

/* hover 效果（跟商品頁一樣） */
.show-list .item:hover .show_pic img {
    border-radius: 20px;   /* hover 時變小圓角 */
    transform: scale(1.2); /* 放大 */
}

.other_subalbum li a p {position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);color: transparent;
transition: all .5s;}
.other_subalbum li:hover a p{color: #fff; padding:10px;background: #122a88; font-size:20px;} 
.other_album_choice li {background: #122a88;padding: 5px 20px;border-radius: 0;font-size: 13px;}
.album_fixed_title {    color: #122a88;}

/*相簿次分類*/
.pic-list .item h6 {
    display: flex;
    justify-content: center;}

/*相簿特效*/
.show_content {opacity: 0;              /* 初始透明 */
  transform: translateY(10px); /* 從下方浮現 */
  animation: fadeIn 1s ease forwards; /* forwards 保持最終狀態 */
}
@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);}
}




