@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*
關於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: #E5C136;
}

&::-webkit-scrollbar-track {
    box-shadow: transparent;
}

:root {
    --swiper-theme-color: #467C50;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*大圖********************************* */


#content_main {  margin: 0;}
.bannerindex { position: static; height: auto;}
.swiper-banner { position: static; margin: 0; height: auto;}
.swiper-slide { padding: 0px !important;}

.swiper-slide img { height: auto;}
.swiper-pagination { display: none;}
.swiper-slide { position: relative;}
.bannerindex .swiper-slide.swiper-slide-active:before {content: ""; position: absolute;  z-index: 999; pointer-events: none;}
.bannerindex .swiper-slide.swiper-slide-active:after {content: ""; position: absolute;  z-index: 999; pointer-events: none;}
@media screen and (max-width: 768px) {
    .bannerindex { padding:0; margin:0;}
    }

.bannerindex .swiper-slide.swiper-slide-active:nth-child(1):after {
     background: url(https://pic03.eapple.com.tw/JCjc/banner01.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: -1%;
    left: 8%;
    width: 30% !important;
    height: 105% !important;
    background-position: left;
    padding-bottom: calc(100% / 1 * 0.12);
    overflow: hidden;
    animation: fade-slide-left 1.5s cubic-bezier(.39, .575, .565, 1.000) both;
}

.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.4) 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:nth-child(2):after {
    background: url(https://pic03.eapple.com.tw/JCjc/banner01.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: -1%;
    left: 8%;
    width: 30% !important;
    height: 105% !important;
    background-position: left;
    padding-bottom: calc(100% / 1 * 0.12);
    overflow: hidden;
    animation: fade-slide-left 1.5s cubic-bezier(.39, .575, .565, 1.000) both;
}

.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.2) 50%,
        rgba(255, 255, 255, 0) 75%, 
        rgba(255, 255, 255, 0) 100% );
    animation: shine-slide 2s linear infinite;
}


@keyframes fade-slide-left {
    0% {
        transform: translateX(-30px);
        opacity: 0;
    }
   50% {
        
        opacity: 0.2;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes shine-slide {
    from {
        left: -150%;
    }
    to {
        left: 150%;
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*背景*/
#content {
    min-height: 80vh;
    background: #ffffff;
    
    background-size: cover;}
#content_main {
    width: 100%;
    min-height: 80vh;
    overflow: hidden;
    z-index: 60;
    position: relative;
    margin-top: 100vh;
    background: #ffffff;
    background-repeat: no-repeat;
    background-size: cover;}

#to_top {
    position: fixed;
    left: 0px;
    z-index: 600;
    width: 50px;
    height: 50px;
    padding-top: 10px;
    font-size: 12px;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    background: #467C50;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    border-radius: 0%;
    }
#to_top i:before, #to_top i:after {
        content: "";
        display: block;
        position: absolute;
        border-radius: 100px;
        background: #ffffff;
        transition: all 100ms ease-in-out;}
        






/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*選單設定*/

.header_area {position: relative; z-index: 9999;padding: 55px;background:#ffffff;position: sticky;top: 0;width: 100%;}
.header_area .main_header_area { position: fixed; background: transparent;top: 0; left: 0;width: 100%;height: 0;transition: all 0.5s;}
.header_area.sticky .main_header_area { transition: all 0.5s;}
.header_area.sticky {width: 100%; z-index: 9999; background:#ffffff;}

.header_area .me_tp_features {   
    display: flex;
    width: auto;
    position: fixed;
    top: 24px;
    right: 10%;
    margin-bottom: 0;
    flex-direction: row;
    align-content: center;
    align-items: center;}
.header_area .stellarnav .menu-toggle,.stellarnav .call-btn-mobile, .stellarnav .location-btn-mobile { display: block;position: fixed;top: 33px;right: 90%;transition: all 0.5s;pointer-events: all;}
.header_area.sticky  .stellarnav .menu-toggle,.stellarnav .call-btn-mobile, .stellarnav .location-btn-mobile {top: 33px;transition: all 0.5s;}



/* 選單 */

.stellarnav .menu-toggle{ text-align: center;}
.stellarnav .menu-toggle:after{ content: "MENU";display: none;font-size: 12px; text-align: center; color: #43453D; margin-top: 10px;}
.stellarnav.desktop .menu-toggle span.bars span { display: block;position: relative; width: 40px;height: 2px;border-radius: 6px;background: #467C50; margin: 0 auto 3px; left: 0;transition: 0.5s;}
.stellarnav.desktop .menu-toggle:hover span.bars span:nth-child(1) {left: -10px;transition: all  0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);}
.stellarnav.desktop .menu-toggle span.bars span:nth-child(2) { opacity: 0;transition: all 1s;}
.stellarnav.desktop .menu-toggle:hover span.bars span:nth-child(3) {left: 10px;transition: all  0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);}


/* 選單關閉 */

.stellarnav .menu-toggle span.bars { top: 0;}

.stellarnav.desktop.active .menu-toggle span.bars span:nth-child(1) {
      margin: 0;
    width: 20px;
    transform: rotate(45deg) translate(15px, 9px);
    border-radius: 0;
    transition: all 0.3s;
}

.stellarnav.desktop.active .menu-toggle span.bars span:nth-child(2) {
    margin: 0;
    opacity: 1;
    transform: rotate(90deg);
    transition: all 0.3s;
}

.stellarnav.desktop.active .menu-toggle span.bars span:nth-child(3) {
    margin: 0;
    width: 20px;
    transform: rotate(-45deg) translate(5px, 21px);
    border-radius: 0;
    transition: all 0.3s;
}


.stellarnav.desktop.active .menu-toggle:hover span.bars span:nth-child(1) { left: -10px;opacity: 0;transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);}
.stellarnav.desktop.active .menu-toggle:hover span.bars span:nth-child(3) { left: 10px;opacity: 0;transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);}



/* 未開啟 */

.stellarnav.desktop > ul { display: none !important; margin: 0;padding: 0;text-align: center;background: transparent; position: relative;top: 0%; left: 0%;width: 100%;height: 100%;z-index: -5;transition: all 0.3s;}
.stellarnav.desktop{ position: fixed; width: 100%;height: 100%; top: 0;left: 0;z-index: -5;line-height: normal;background-color: transparent;pointer-events: none;transition: 1s;}
.stellarnav.desktop::before{ content: "";position: fixed; width: 100%;height: 100%;top: 50%;left: 50%;z-index: -5; line-height: normal; background-color: transparent;transform: translate(-50%,-50%);opacity: 0;transition: 1s;}



/* 開啟 */
.stellarnav.desktop.active > ul {
    display: flex !important;
    transition: all 0.3s;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    pointer-events: all;
    width: 100%;
    height: 25%;
    background: transparent;
    padding: 200px 5% 70px;
    padding-top: 100px;
}

.stellarnav.desktop.active > ul::before {
    content: "";
    display: block;
    width: 100%;
    height: 0%;
    position: absolute;
    top: 0px;
    left: 0;
    background:#ffffff;
    box-shadow: 1px 1px 5px #0000007a;
    animation: nav-left 0.5s forwards;
}
.stellarnav.desktop.active{
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-content: flex-end;
}
.stellarnav.desktop.active::before{
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 0;
    opacity: 1;
    transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);
}


@keyframes nav-left {
    0%{
        height: 0;
    }
    100%{
        height: 100%;
    }
    
}




@keyframes line-up {
    0%{
        height: 0%;
    }
    100%{
        height: 100%;
    }
}






/* 購物籃 */
.tp_links{
    display: none;
}
.box_search input[type=text] {
     background: url(../images/search-icon.png) no-repeat 9px center transparent;
    border: 0;
    padding: 12px 0px 10px 42px;
    width: 210px;
    font-size: 14px;
    max-width: 100%;
    border-radius: 10em;
    transition: all .5s;
    outline: none;
    background-color: transparent;
    border-bottom: 1px #48763a solid;
    border-radius: 0;
    transition: all 0.3s;
    color: #48763a;
}
.box_search input[type=text]:hover {
    color: #E4C036;
    transition: all 0.3s;
}
.box_search input[type=text]:focus {
    color: #000000;
    transition: all 0.3s;
}
.shop_search_btn {
    display: none;
    background: #3F3F3F;
    color: #48763a;
    font-size: 13px;
    border: none;
    border-radius: 0;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
    padding: 4px 15px;
    cursor: pointer;
}
.box_search {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    margin-bottom: 0;
}
.me_tp_features a {
    margin: 0 0;
}
.me_tp_features a.tp_btn_cart {
    margin-right: 20px;
}

.me_tp_features a.tp_btn_cart span {
    display: none;
}
.me_tp_features a.tp_btn_notice span{
    display: none;
}





/* 選單 */
.stellarnav > ul > li > a {
    margin: 0 20px;
    padding-left: 0;
    color: #467C50;
    display: flex;
    text-transform: uppercase;
    position: relative;
    font-size: 16px;
    line-height: 20px;
    height: auto;
    margin: 0;
    overflow: visible;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
    opacity: 1;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
}
.stellarnav > ul > li > a:hover {
    padding-left: 25px;
    transition: all 0.3s;
    color: #E5C136;
}
.stellarnav > ul > li > a b {
    display: inline;
    line-height: 15px;
    height: 20px;
}
.stellarnav > ul > li > a b:nth-child(1) {margin-right: 20px;}
.stellarnav > ul > li > a b:nth-child(2) {
    font-size: 12px;
    color: #43453D;
    word-break: keep-all;
}
.stellarnav li {
    opacity: 1;
    width: 100%;
}
.stellarnav > ul > li::before {
    content: "";
    display: block;
    width: 0%;
    height: 1px;
    margin: 15px 0;
    background-color: #467C50;
    animation: line-left-right 1s forwards linear;
}
.navigation {
    width: 100%;
    position: relative;
    padding: 0;
}

.stellarnav > ul > li > a:hover b {
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
}











/* 選單線延遲 */

.stellarnav li:nth-child(2):before {
}
.stellarnav li:nth-child(3):before {
    animation-delay: 0.3s;
}
.stellarnav li:nth-child(4):before {
    animation-delay: 0.4s;
}
.stellarnav li:nth-child(5):before {
    animation-delay: 0.5s;
}
.stellarnav li:nth-child(6):before {
    animation-delay: 0.6s;
}
.stellarnav li:nth-child(7)::before {
    animation-delay: 0.7s;
}
.stellarnav li:nth-child(8)::before {
    animation-delay: 0.8s;
}




@keyframes line-left-right {
    0%{
        width: 0%;
    }
    100%{
        width: 100%;
    }
    
}

/*下拉箭頭*/
.stellarnav li.has-sub > a:after {
    content: '';
    margin-left: 10px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #467C50;
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}


/* 文字 */

.stellarnav > ul > li{
    opacity: 1;
    animation: up 1.5s forwards;
    animation-delay: 0.2s;
}



/* 下拉 */
.stellarnav ul ul {
    width: 100%;
    border-radius: 5px;
    left: 50%;
    background: #ffffee;
    transform: translate(-50%,0px);
}
.stellarnav li li {
    display: block;
    border: 0;
    margin-bottom: -1px;
    background: #dbe7e2;
    transition: all 0.3s;
}
.stellarnav li li:nth-child(1) {
    border-radius: 5px 5px 0 0;
}
.stellarnav li li:nth-last-child(1) {
    border-radius: 0 0 5px 5px;
}
.stellarnav li li:hover {
    background: #467C50;
    border-radius: 5px;
    color: #fff;
    z-index: 100000;
    transition: all 0.3s;
}

.stellarnav li li a {
   
    display: block;
    color: #467C50;
    font-size: 14px;
    transition: all 0.3s;
}
.stellarnav li li:hover > a {
    color: #fff;
    transition: all 0.3s;
}


/* 下拉二層 */

.stellarnav ul ul ul {
    top: 0;
    left: 240px;
}







 /*下拉頁面隱藏下方選單*/
 body.other_select_page .promotion_title {
    display: none;}

body.other_select_page .other_promotion { display: none;}
.path {display: none;}

body.other_select_page .page {
        margin: auto;}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*購物車*/
.car_page .information_left {
    display: block;}
.fa-cart-shopping::before
{content: "\f07a"; color: #467C50;
}   
.shop_search_txt {color: #fff;}
::selection {
    background: rgba(255, 255, 255, 0.444);}
.me_tp_features {
    width: 100%;
    text-align: right;
    z-index: 111;
    padding:5px 0 0 0;}
.me_tp_features a i {
    margin: 0 3px;
    color: #467C50;}


.me_tp_features a {
        display: inline-block;
        vertical-align: middle;
        margin: 0 5px;
        font-size: 14px;
        color: #467C50;}

 .shop_search_btn {
            background: transparent;
            color: #fff;
            font-size: 13px;
            border: none;
            border-radius: 20px;
            position: absolute;
            top: 0;
            right: 0;
            z-index: 5;
            padding: 4px 12px;
            cursor: pointer;
            height: 100%;
            display: none;}


.nav-menu>li:not(.tp_links) {
    display: none;
}

.nav-menu>li>a {
    color: #fff;
    letter-spacing: 3px;
    padding: 25px 7px;
}


.nav-menu>li.focus>a {
    color: #ffffff;
}
.nav-dropdown>li:hover>a .nav-dropdown>li.focus>a {
    color: #ffffff;
}


.stellarnav li.has-sub > a:after {
        content: '';
        margin-left: 10px;
      
        position: absolute;
        top: 40%;
        right: 5px;
        transform: translateY(-50%);}   


.navigation {     padding: 20px 0px 20px 300px;}
.navigation {
    width: 100%;
    position: relative;
    padding: 0;
    display: grid;
    grid-template-columns: 200px 1fr;
    grid-gap: 0 20px;
    align-content: stretch;
    justify-content: center;
    align-items: center;
    justify-items: end;}

/*購物車hover*/
.fa-cart-shopping:hover::before {
    color: #E5C136;
}
.fa-credit-card:hover::before{
    color: #E5C136;
}

/*logo*/

.nav-header {
    position: fixed;
    z-index: 123;
    top: 27px;
    left: 50%;
    opacity: 1;
    transform: translate(-50%, 0px);
    transition: all 0.3s;
    max-width: 300px;
}
.header_area.sticky .nav-header {
    top: 27px;
    opacity: 1;
    transition: all 0.3s;
}

/* = = = 頁尾 = = = =  = = = = = = = = */
.center {max-width: 1420px;}
/*換圖*/

.footer {
    position: relative;
    padding: 60px 0 0;
    font-size: 16px;
    background-color: #ffffff;
    overflow: hidden;
    z-index:99;
}






.footer_logo {max-width: 60%;
}


/*換logo*/
.footer_logo img {width: 0;}
    
.footer_logo {
        background: url(https://pic03.eapple.com.tw/JCjc/footerlogo.png) no-repeat center;
        height: 58px;
        max-width: 30%;
        width: 100%;
        margin-top: 10px;
        background-size: contain;}

.footer_info {     padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    align-content: space-between;
    gap: 0 30px;
    justify-content: center;}
.footer_info ul{display: grid;grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));gap: 0;letter-spacing: 0.15em;}


.footer_info li{ padding: 20px 10px;font-size: 14px;}
.footer_info ul>li:nth-child(1):before{
    content: "聯絡資訊";
    font-family: 'Noto sans TC', sans-serif;
    font-weight: 500;
}
.footer_info ul>li:before{
    font-size: 115%;
    color: #48763A;
    display: block;
    margin: 0 0 20px;
    border-bottom: 1px solid #48763A;
    padding-bottom: 10px;
    letter-spacing: 0.2em;
}
.footer_info li:nth-child(1) { display: inline-block; width: 100%;}
.footer_info li p {color: #48763A;}
.footer_info li p a { color: #48763A;}


/*footer_menu*/
.footer_info ul>li:nth-child(2):before{
    content: "網站地圖";
    font-family: 'Noto sans TC', sans-serif;
    font-weight: 500;
    padding-left: 15px;
}
.footer_info li:nth-child(2) { display: inline-block; width: 100%; vertical-align: top; }
.footer_menu {margin-top: 10px;display: grid;grid-template-columns: 1fr 1fr;gap: 12px 5px;}/*footer按鈕最小寬度100px*/
.footer_menu a:nth-child(1){display: none;}
.footer_menu a {margin: 0 0 0 15px;padding: 0;background: transparent;border: none;text-align: left;color: #48763A;display: block;width: fit-content;}
.footer_menu a:hover { background: transparent; color: #E5C136; border: transparent;}

/*icon*/
.box_link {    display: flex;
        flex-wrap: wrap;
        flex-direction: row;}
.box_link {top: unset;bottom: 0;}
.box_link .me_tp_call, .box_link .me_tp_mail{display: none;}
.box_link a {transition: all 0.3s;border: none;color: #48763A;}

.box_link a:hover { background: #E5C136; }
.box_link a:hover .fa-whatsapp:before, .box_link a:hover .fa-envelope::before, .box_link a:hover .fa-facebook::before, .box_link a:hover .fa-line::before , .box_link a:hover .fa-instagram::before { color: #ffffff;transition: all 0.3s;}

/*版權*/
.copy { background: transparent; color: #48763A; border: none;}
.copy a { color: #48763A; transition:all 0.3s;}
.copy a:hover {
    color: #E5C136;}


/*上方選單右邊設定 臉書/LINE/電話/信箱
.tp_links a:before {寬高大小設定}
.tp_links a.me_tp_fb {}
.tp_links a.me_tp_fb:before {背景換圖/建議.SVG}
.tp_links a.me_tp_line {}
.tp_links a.me_tp_line:before {背景換圖/建議.SVG}
.tp_links a.me_tp_call {}
.tp_links a.me_tp_call:before {背景換圖/建議.SVG}
.tp_links a.me_tp_mail {}
.tp_links a.me_tp_mail:before {背景換圖/建議.SVG}
*/


/*電腦LOGO
.nav-brand {}
*/

/*手機LOGO
.nav-brand-m {}
*/

/*頁碼*/
.path p, .path p a {display: none;
    text-align: right;
    line-height: 24px;
    font-size: 13px;
    color: #48763A}

/*按鈕*/
.animated-arrow {
    background: #467C50;
    color: #fff;
    display: inline-block;
    margin-top: 20px;
    /* margin-left: auto; */
    height: 50px;
    line-height: 50px;
    overflow: hidden;
    width: 250px;
    /* padding-left: 5%; */
    text-align: center;
    position: relative;}


/*相簿*/
.show-list .show_name {
    font-size: 17px;
    color: #ffffff;
    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;
}
.show-list .item:hover .show_name {
    color: #467c50;}
/*標題*/
.subalbum-menu h2 {
    font-size: 20px;
    color: #467c50;
    display: inline-block;
    vertical-align: middle;}
.other_subalbum li {
    display: block;
    background: transparent;}

/*觀看更多*/
.album_fixed_title {
    font-size: 17px;
    color: #ffffff;
    padding-right: 14px;
    display: inline-block;
    position: relative;
    background: transparent;
}
.other_album_choice li {
    background: #467c50;
    font-size: 15px;
    display: inline-block;
    border-radius: 18px;
    padding: 7px 20px;
    margin: 0 7px 7px 0;}
   
 /*相簿內頁*/
 /*說明*/
    .album_descrip {
        margin-bottom: 20px;
        color: #ffffff;
        line-height: 1.4;}
/*文章管理*/
h5.blog_le_t {
    font-size: 24px;
    font-weight: 500;
    color:  #467C50;s
    font-family: serif;
    letter-spacing: 2px;
    margin-bottom: 7px;}



/*側邊標題*/
.accordion li .link a {
    cursor: pointer;
    display: block;
    padding: 15px 10px;
    color:  #467C50;
    font-size: 14px;
    font-weight: 700;
    position: relative;}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {    background: #419a7965 !important;}  
/*右側文章排版*/
.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: 900;
    font-size: 20px;
    color: #467C50;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;}
/*時間*/
.blog_list_ri em {
    font-size: 14px;
    color: #9d9c9c;
    font-style: normal;
    display: block;}
/*內文*/
.blog_list_ri p {
    font-size: 15px;
    color: #0f1f2d;
    line-height: 130%;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    word-break: break-all;}
/*內文hover*/
.subbox_item a:after {
        content: '';
        width: 100%;
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        z-index: 8;
        background:#419a7965;
        opacity: 0;
    
        transition: all .5s;}
 .subbox_item a:before {
            content: 'READ MORE';
            position: absolute;
            z-index: 19;
            bottom: 10px;
            right: 10px;
            opacity: 0;
            font-size: 15px;
            color: #ffffff;
            transition: all .6s;}

/*文章*/
/*文章內頁*/
h4.blog_category_title {
    color: #467C50;
    font-size: 30px;
    padding: 10px 0;
    margin-bottom: 20px;
    font-weight: 500;
}
.blog_box_edit * {
    line-height: 150%;
    color:  #01060a;}
/*文章圖片*/
/*隱藏文章縮圖*/
.articel_mainPic img {
        max-width: 0%;}
/*分享文字*/
.toShareNews {
        font-size: 1em;
        color:  #467C50;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        align-content: center;
        flex-wrap: wrap;}
/*文章按鈕*/
.blog_back a.article_btn_back {
        background: #467C50;}


.blog_back a.article_btn_back:hover, .blog_back a.article_btn_prev:hover, .blog_back a.article_btn_next:hover {
            background: #467C50;}
/*相關文章*/
.news_related {
    background: #467C504a;
    padding: 25px 15px;}
.news_related h6 span:before {
        content: '相關文章';
        font-size: 24px;
        color: #467C50;}
/*按鈕*/
.lastPage {
        font-size: 16px;
        color: #fff;
        background: #467C50;
        padding: 10px 20px;
        display: block;
        margin: 40px auto;
        width: 130px;
        text-align: center;}
/*首頁-文章管理*/

/*首頁-文章顯示*/
 .module_i_news li:nth-child(n+5){
        display:none !important;}

/*第一顆文章管理*/
.module_i_news.module_i_news01.module_i_news li a {
    position: relative;
    display: flex;
    grid-template-columns: 100px 1fr;
    grid-gap: 10px;
    flex-direction: column;
}
.module_i_news.module_i_news01.module_i_news ul {
    width: 100%;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
        
/*標題*/

.module_i_news .title_i_box h4{  
    font-size: 20px;
    color: #467C50;
    font-weight: 600;
}
.module_i_news .title_i_box h4:before {
    content: "CASE";
    display: block;
    font-family: "Prompt", sans-serif !important;
    color: #467C50;
    font-size: 30px;
    letter-spacing: 3px;
    margin-bottom: -5px;
    font-weight: 600;
}

.module_i_news.module_i_news02 .title_i_box h4:before {
    content: "NEWS";
    display: block;
    font-family: "Prompt", sans-serif !important;
    color: #467C50;
    font-size: 75px;
    letter-spacing: 3px;
    margin-bottom: -5px;
    font-weight: 600;
}

.module_i_news {

    background:#ced7d0;
}
.module_i_news_list, .module_i_news_list.swiper {
    padding: 40px;
}
/*文章標題*/
.i_blog_ri h5 {
    font-weight: 500;
    font-size: 20px;
    color: #467C50;
    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: #467C50;
    line-height: 130%;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    word-break: break-all;}       

/* 商品下拉超過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個--結束 */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */





    /*促銷方案*/
    /*促銷內頁*/
    /*標題*/
    .promotion_title h2 {
        font-size: 24px;
        color: #467C50;}
/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 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 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.active a {
    font-weight: bold;
    border: 0px #ccc solid;}
.product-layer-two li a {
    position: relative;
    background: #e9f3f0;
    padding: 7px 16px;
    display: block;
    font-size: 16px;
    color:#467C50; border: 0px #467C50 solid;}
    .product-layer-two li a {
   
        color: #0b3e27;} 
        .product-layer-two li:hover a {
            position: relative;
            background: #a1bdb4;}
.product-layer-two li:hover a { color: #467C50; border: 1px #467C50 solid;}
.product-layer-two li li a{ padding:5px 10px;background-color: #f3f3f32b;}
.product-layer-two li li:hover > a { background:#fff; color:#467C50;}
.product-layer-two > li { width:100%; max-width:100%; padding:0; text-align:left; padding-bottom: 5px;}
.product-layer-two > li ul > li + li { margin-top:5px;}

.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; border-bottom:1px dotted #ccc;}
.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:#467C50;}

.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;}

#prod_thumbSwiper .swiper-slide{padding-top: calc(25% - 2px); position: relative;}
#prod_thumbSwiper img{position: absolute; left: 0; top: 0;}

/*產品資訊標題*/
.pd_tabTitle li.activeTab a {
    color:  #0b3e27;}

.pd_tabTitle li.activeTab::after {
        height: 5px;
        background: #0b3e27;
    }
/*產品資訊*/
element.style {
    font-size: 13pt !important;
}
/*產品資訊內文*/
element.style {
    color: #0b3e27;}
.pd_tabInner_contain {
        padding-top: 20px;
        color: #467C50;}
/*右側商品資訊*/
.product_info li .txt_box {
    display: inline-block;
    vertical-align: top;
    color: #467C50;}


 .product_info li .txt_box {
        display: inline-block;
        vertical-align: top;
        color: #0b3e27;
    }

/*標題*/
.sidebarBtn h2 {
    color: #467C50;
    font-size: 24px;}
.sidebarBtn .price {
        color: #467C50;
        font-size: 22px;}
 .sidebarBtn .sp_price {
            display: block;
            color: #bd2424;
            font-size: 22px;
            font-weight: bold;}


/*加入詢價*/
.inquiry_a1 {
    background: #94cd94;}
.inquiry_a2 {
        background: #467C50;}
/*加入購物車*/
.inquiry_a3 {
            background: #467C50;}
 .inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover {
            letter-spacing: 2px;
            background: #467C50;}
    
 /*底*/   
.sidebarBtn {
            padding: 15px;
            display: inline-block;
            width: 28%;
            vertical-align: top;
             border: 0px #dddddd00 solid; 
            background: #467C504a;}
.pd_tabTitle {
                display: flex;
                justify-content: flex-start;
                align-items: flex-end;
                align-content: flex-end;
                text-align: center;
                color: #0b3e27;
                font-weight: bold;
                font-size: 20px;
            }
/*內文*/
 .product_info li span {
                display: block;
                font-size: 12px;
                color: #000000;
                margin-bottom: 3px;
                font-family: Arial, Helvetica, sans-serif;
                letter-spacing: 1px;}


 /*底下相關商品*/       
.prod_related {
                    background: #467C504a;
                    padding: 25px 15px;}
 .prod_related h6 span:before {
                        content: '相關推薦';
                        font-size: 24px;
                        color: #467C50;}
/*首頁-商品*/
/*首頁-商品顯示*/
.pageIndex .products-list .item:nth-child(n+5){
    display:none;}


/*標題*/
.i_prod_tit span, .i_video_tit span {
    font-size: 20px;
    color: #467c50;
    font-weight: bold;
}

.i_prod_tit span:before {
    content: "PRODUCT";
    display: block;
    font-family: "Prompt", sans-serif !important;
    font-weight: 600;
    font-style: normal;
    color: #467c50;
    font-size: 30px;
    letter-spacing: 3px;
    margin-bottom: -5px;

}
.products-list .more {
    border: 0px solid #467C50 !important;
    color: #467C50 !important;
    font-size: 16px;
    line-height: 32px;
    text-align: center;
    transition: all .5s;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    bottom: 0;}
.products-list .item a:hover .more {
        background: #467C50 !important;
        color: #ffffff !important;
        letter-spacing: 2px;}

.products-list .item {

    padding: 0 3% 2% 3%;
    border-left: 1px solid #467C50;
    border-right: 1px solid #467C50;
    margin: 0;
}
.products-list .name {
            font-size: 15px;
            color: #467C50;
            letter-spacing: 1px;
            margin-top: 15px;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            height: 44px;}
.products-list .price b {
                color: #467C50;
                font-size: 16px;
                width: calc(50% - 10px);}
/*購物車*/
/*繼續購物*/
.rewrite_simple {
    background: #0b3e27 url(../images/simple_left.png) 10% center no-repeat;
}


/*詢價車*/
/*回產品頁*/
.rewrite_simple {
    background: #467C50 url(../images/simple_left.png) 10% center no-repeat;}


/*送出詢價*/
.send_simple {
    background: #467C50 url(../images/simple_right.png) 88% center no-repeat;}

/*聯絡我們*/
/*標題顏色*/
.blank_letter {
    font-family: 'Josefin Sans', 'sans-serif', '微軟正黑體';
    padding-top: 30px;
    font-size: 26px;
    color: #467C50;
    background-position: left bottom;
    background-repeat: no-repeat;}
/*資訊顏色*/
 .list_before {
        margin-top: 30px;
        margin-bottom: 20px;
        font-size: 15px;
        color: #467C50;
        display: block;
        width: 100%;
        position: relative;}
.contact_le_map a {
            display: block;
            background: #467C50;
            text-align: center;
            padding: 10px;
            color: #fff;}


 /*影音管理*/
   .video-layer-two li a {
    position: relative;
    border: 1px #fff solid;
    background: #f3f3f3;
    padding: 7px 16px;
    display: block;
    font-size: 16px;
    color: #000000;
    border-radius: 10px;
}     
 .video-layer-two li a:hover {
    background-color: #419a7965 !important;
}


/*表單*/
.contact_form {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 15px;
    color: #467C50;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 10px;}

.contact_form li.last blockquote, .contact_form li.last cite {
    display: block;
    vertical-align: top;
    font-style: normal;
    padding: 7px;
    text-align: center;
    border: 1px #467c50 solid;
    width: 150px;
    max-width: calc(50% - 10px);
}
.contact_form li.last cite {
       background: transparent;
    color: #467C50;}
.contact_form li.last input {
            background: none;
            border: none;
            outline: none;
            font-size: 15px;
            padding: 7px;
            letter-spacing: 2px;
            color: #467c50;}


/*表單輸入文字*/
 button, input, optgroup, select, textarea {
                color: #000000;
                font: inherit;
                margin: 0;} 
                
                

/*表單*首頁*/
.list_before a {
    color: #467c50;
}



/*******************************************/
.contact_editbox {
    margin: auto;
    padding: 0px;}
    
/*聯絡我們MAP區改滿版編輯區*/
.contact_content {    width: 100%;padding: 0; margin-top: -30px;}
.contact_page .main_part {    max-width: 100%;    padding: 0;}
.contact_page .path {    display: none;}
.contact_content .information_left {    width: 100%;    padding: 0;}
.contact_content .information_right {       width: 90%;
    margin: 0px auto;
    padding: 0 10px;
    display: block;}
.contact_content .information_left > h4.blank_letter {    display: none;}
.contact_content .list_before {    width: 100%;		max-width: 100%;    padding: 0;    margin: 0 auto;}
.contact_content .list_before > li:not(li:last-of-type) {    display: none;}
.contact_content .list_before.info > li:last-of-type {    padding: 0;    margin: 0;display:none;}
@media screen and (max-width: 768px) {.contact_content .information_right {    margin: 50px auto;}}
/**/
/*電腦版表單最大寬度設定*/
.contact_content .information_right {    max-width: 1200px;}
/**/
/*******************************************/


@media screen and (max-width: 1200px) {
    .module_i_news.module_i_news01.module_i_news ul {
    width: 100%;
    grid-template-columns: 1fr 1fr 1fr ;
}


}
@media screen and (max-width: 980px) {
        .module_i_news.module_i_news01.module_i_news ul {
    width: 100%;
    grid-template-columns: 1fr 1fr  ;}
}
@media screen and (max-width: 768px) {

.module_i_news.module_i_news01.module_i_news ul {
    width: 100%;
    grid-template-columns: 1fr  ;}


.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: #ffffff !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;}
.articel_mainPic img {
    max-width: 0%;}

/*產品頁面*/

a.pd_menu_toggle i {
    width: 1.5em;
    text-align: center;
    color: #0e2622;}
.product_menu_list>h5 {
    color: #467C50;
   font-size: 18px;
    padding: 10px;
   }
.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: 1px #467C50 solid;
    border-radius: 20px;}

/*產品內頁-標題名稱*/
.mobile_product_name {
    display: block;
    margin-bottom: 10px;
    color: #467C50;}
/*產品資訊*/
.sidebarBtn {
        padding: 15px;
        display: inline-block;
        width: 100%;
        vertical-align: top;
        border: 0px #dddddd00 solid;
        background: #467C504a;}
}
@media screen and (max-width: 600px) {
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*手機板下方*/
#bottom_menu {     box-shadow: none;}
#bottom_menu li a em {
    display: block;
    font-size: 12px;
    font-style: normal;
    color: #467C50;
}

.fa-house::before {
    content: "\f015";
    color: #467C50;
}
.fa-credit-card::before {
    content: "\f09d";
     color: #467C50;
}
.fa-cart-shopping::before {
    content: "\f07a";
     color: #467C50;
}

/*預設解除背景輪播*/
#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;}
}
/*大圖*/
.swiper-banner .swiper-slide img {
    width: 100%;
    height: auto;}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/


.banner.banB {display: none;}
.banner.banF {}
.banner.banblog {}
.banner.banC {}
.banner {display: none;}


.banner h5 {display: none;}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*一排呈現
.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: 1400px) {
.container {
        max-width: 1200px;
        transition: all 0.3s;}}

 @media screen and (max-width: 980px) {
 .main_header_area .container .navigation {    grid-template-columns: 1fr;}

.nav-menu>li>a {padding: 10px 0px;}
.pageIndex .header_area {
    position: relative;
    width: 100%;
 }
.header_area.sticky {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9997;}
.header_area .main_header_area ,  .header_area.sticky .main_header_area{    background: #467C50;}



.nav-menu>li>a {    padding: 15px 0px;letter-spacing: 2px;}
.me_tp_features {
    width: 100%;
    text-align: center;
    margin-bottom: 7px;}

/*logo*/
.nav-brand img {
        transition: all 0.3s;
        text-align: center; }
.nav-brand img {max-width: 80%;}

.navigation {
grid-template-columns: 200px 1fr;
grid-gap: 0 20px;
align-content: stretch;
justify-content: center;
align-items: center;
justify-items: center}

.tp_links {display: none;}

}

@media screen and (max-width: 910px){
    .footer_info{flex-direction: column;flex-wrap: nowrap;align-content: space-between;}
    .footer_info ul{width: calc(100% - 100px);}
}





@media screen and (max-width: 768px) {



    .nav-brand img {
        width: 0%;
    }
.nav-brand {
    display: block;
    max-width: 50%;
    margin: 0 auto;
}
    .nav-brand h1 {
        display: block;
        background: url(https://pic03.eapple.com.tw/JCjc/logosmall.png);
        background-size: contain;
        width: 70px;
        height: 70px;
        background-repeat: no-repeat;
        text-indent: 100%;
        overflow: hidden;
        white-space: nowrap;
        position: absolute;
        left: 35%;
        top: -2vw;
        animation: none;
    }

.header_area {padding: 45px;}

 /*側邊選單*/
 /*購物車*/
 .me_tp_features a i {
    margin: 0 3px;
    color: #467C50;
}
.navigation * {
    color: #467C50;}
    
 /*搜尋*/
 .me_tp_features {
    width: 100%;
    text-align: center;
    margin-bottom: 0px;
    background-color: transparent;}

 /*menu*/
.stellarnav.mobile > ul > li > a {
        text-align: left;
        overflow: auto;
        height: auto;
        line-height: 200%;
        display: block;
    }
 .stellarnav > ul > li > a {padding: 0 10px 0 0;color: #467C50;font-size: 17px;    line-height: 30px;margin: 5px 5px;
    height: 30px;}
 .stellarnav .menu-toggle span.bars span {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 6px;
    background: #467C50;
    margin: 0 auto 4px;}
  .stellarnav .menu-toggle:after {display: none !important;
        content: 'MENU';
        font-size: 10px;
        color: #467C50;
        display: inline-block ;
        transform: scale(0.9);
        white-space: nowrap;}

        .stellarnav > ul > li::before {
            display: none;}
 .stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 380px;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 9999;
    border-right: 1px #eee solid;
    background:#ffffff;
    display: block;}

.stellarnav.mobile li.open {
        background: #ffffff;}
.stellarnav.mobile ul {
background:#ffffff;}

.pageIndex .stellarnav ul li a {
        color:#467C50;    border-right: 0;}
.stellarnav ul li:hover a {
            color: #467C50;    border-right: 0;}
.stellarnav.mobile .menu-toggle, .stellarnav.mobile .dd-toggle, .stellarnav.mobile .close-menu, .stellarnav.mobile .call-btn-mobile, .stellarnav.mobile .location-btn-mobile {
            display: inline-block;
            padding: 5px 7px;}
/*close*/
 .stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {
                display: inline-block;
                text-align: right;
                font-size: 12px;
                background: #467C50;
                color: #fff;
            }
.stellarnav .icon-close:after {
                content: '';
                display: block;
                width: 12px;
                height: 0px;
                top: 50%;
                border-bottom: solid 3px #fff;
                position: absolute;
                transform: rotate(-45deg);}
.stellarnav .icon-close:before {
                    content: '';
                    display: block;
                    width: 12px;
                    height: 0px;
                    border-bottom: solid 3px #fff;
                    position: absolute;
                    top: 50%;
                    transform: rotate(45deg);}
.stellarnav.mobile li a {border-bottom: 0px solid rgba(255, 255, 255, .15);}
/*側邊下拉*/
.stellarnav li li { background: #ffffff;}        
.stellarnav li li:hover {
    background: #a9c5ae;
    border-radius: 5px;
    color: #ffffff;
    z-index: 100000;
    transition: all 0.3s;
}        
/*表單*/
.contact_form li .form__label {
    width: 100%;
    margin-left: 0;
    text-align: left;
    font-weight: bold;
    padding: 5px;
    background: transparent;}

/*Footer/＝＝＝＝＝*/
        .footer_info { justify-content: center;}
        .footer_logo { text-align: center; max-width: 80%;}
        .footer_info ul { flex-direction: column;}
        .footer_info li:nth-child(1) { width: 100%;}
        .footer_info li:nth-child(2) { width: 100%; border-left: none;}
        .box_link {
            display: flex;
            flex-wrap: wrap;
            flex-direction: row;
            align-content: center;
            justify-content: center;}
    

.footer_info li p {
    text-align: left;
    display: flex;
    color: #467C50;
    letter-spacing: 2px;
    margin: 2px 8px;
    flex-direction: column;}

#to_top { bottom:60px;}
.footer.with_shopping_mode { padding:30px 0 60px; }
.footer_info {    justify-content: center;}
.footer_logo {    text-align: center;}
#bottom_menu li a {  background: #fff;}
 #bottom_menu li a:hover {
        color: #E5C136;
    }
.footer_info li{width: 80%;}
.footer_info ul {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;}

    /*底部按鈕*/
    #to_top { bottom:60px;}
    .footer.with_shopping_mode { padding:30px 0 70px; }



/* 開啟手機板下方按鈕所需設定 */
.footer.with_shopping_mode { padding:30px 0 60px; }
#to_top { bottom:60px;}
}


@media screen and (max-width: 600px) { 
    /*footer*/
    .footer_info{gap: 0;}
    .footer_info ul { width: 90%;}

    
    
}

/* 20250311 */
@media (max-width:1000px) {
     /*修改*/

/* 預設隱藏放大鏡按鈕 */
.shop_search_btn {
    opacity: 0;
    width: 0;
    overflow: hidden; /* 確保寬度 0 時按鈕內容不顯示 */
    transition: opacity 0.3s, width 0.3s;
}

/* sticky 時顯示放大鏡按鈕 */
.sticky .shop_search_btn {
    opacity: 1;
    width: 30px; /* 建議給明確寬度，不要用 auto */
}

/* 輸入框預設樣式 */
.box_search form input[type=text] {
    width: 18px;
    border: solid 1px transparent;
    background: url(../images/search-icon.png) no-repeat 2px center transparent;
    padding: 4px 15px 4px 30px;
   
}

/* 聚焦時放大搜尋欄與顯示放大鏡 */
.box_search form:focus-within .shop_search_btn {
    opacity: 1;
    width: 30px;
}

.box_search form:focus-within input[type=text] {
    width: 140px;
    border: solid 1px #ccc;
    background: url(../images/search-icon.png) no-repeat 9px center #ffffff;
}

/* 取消結尾多餘 } */

}



