@charset "utf-8";
<style>
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200..900&display=swap');
</style>
/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/


/*上方選單右邊設定 臉書/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 {}
*/


.main_part {
    width: 100%;
    max-width: 1400px;
    margin: auto;
    padding: 50px 20px;
}
.path p, .path p a {
    text-align: left;
    line-height: 21px;
    font-size: 13px;
    color: #9f9f9f;
}
@media screen and (max-width: 768px) {
    .path p, .path p a {padding-left: 7px;line-height: 10px;}
}

/* 商品下拉超過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個--結束 */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = = = = = */
.main_part {
    padding: 10px 10px 10px;
}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = = = = = */

/*進場*/
body.pageIndex::before {
    content: "";
    display: block;
    background-image: url(https://pic03.eapple.com.tw/eternalstory8/進場.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    pointer-events: none;
    opacity: 1;
    animation: zoom-out-center-delay 2s ease forwards;
    transform-origin: center center;
}

@keyframes zoom-out-center-delay {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = = = = = */
/*大圖特效*/
#content_main {
    margin: 0;
}

.bannerindex {
    position: sticky;
    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;
}
.swiper-banner .swiper-slide img {
    width: 100%;
    max-width: unset;
    height: 100vh;
    display: block;
    object-fit: cover;
    transform: none !important;
}
/*======SLOGAN=======*/
.bannerindex .swiper-slide::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url(https://pic03.eapple.com.tw/eternalstory8/Slogan.png);
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 2;
    opacity: 1;
    animation: slide-top .5s linear both;
    animation-delay: 1.8s;
}
@keyframes slide-top {
  0% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0px);
  }
}
@media screen and (max-width: 768px) {
    .bannerindex {
        padding: 0;
        margin: 0;
    }
    .bannerindex .swiper-slide::before{
        display: none;
    }
    .swiper-banner .swiper-slide img {
        height: auto;
    }
}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = = = = = */



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = = = = = */
/*======Header區塊======*/

/*Header*/
.header_area {
    position: fixed;
    background-color: #000000a8;
    backdrop-filter: saturate(100%) blur(10px);
    transition: 1s;
}
.header_area.sticky {
    width: 100%;
    z-index: 9999;
    background-color: #ffffff;
    backdrop-filter: saturate(100%) blur(10px);
    padding: 10px;
    box-shadow: 4px 2px 4px 0px #66666638;
}
.main_header_area .container {
    max-width: 97%;
    margin: auto;
}
.navigation {
    width: 100%;
    position: relative;
    padding: 0 10px;
    display: flex;
    align-items: center;
    flex-direction: row;
}

.nav-header {
    z-index: 123;
    top: 0;
    left: 0;
    max-width: 100px;
    width: 100%;
    grid-row: 1 / span 2;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    transition: 1s;
}
.header_area.sticky .nav-header  {
    max-width: 80px;
}
.nav-brand img {
    max-width: 100%;
    opacity: 1;
    transition: .8s all;
}
.header_area.sticky .nav-brand img {
    opacity: 0;
}
.nav-brand::before{
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    background-image: url(https://pic03.eapple.com.tw/eternalstory8/logo-blue.png);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 2;
    opacity: 0;  
    transition: .8s all;
}
.header_area.sticky .nav-brand::before{
    opacity: 1;    
}


.stellarnav > ul > li {
    display: inline-block;
    margin: 0 10px;
}
.stellarnav > ul > li > a {
    padding-right: 0;
    color: #ffffff;
    text-transform: none;
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 40px;
    height: 45px;
    margin: 0;
    overflow: hidden;
    text-align: left;
    letter-spacing: 4px;
    font-family:  "Noto Serif TC", serif;
    font-weight: 600;
    transition: .5s all;
}
.header_area.sticky .stellarnav > ul > li > a {
    color: #1A88CA;
    font-weight: 900;
}
.stellarnav > ul > li > a:hover {
    transition: .5s all;
    letter-spacing: 1px;
    color: #56A8DC;
}
.stellarnav li a {
    padding: 7px 10px;
    display: block;
    color: #888;
    font-size: 14px;
}


/*選單icon隱藏*/
.me_tp_features a i {
    margin: 0 3px;
    display: none;
}

.me_tp_features {
    width: 100%;
    text-align: right;
    display: none;
}

/*下拉ICON*/
.stellarnav li.has-sub > a:after {
    content: '';
    margin-left: 10px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #ffffff;
    border-bottom: 5px solid #ffffff;
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 3px;
    transform: translateY(-50%);
}
.header_area.sticky  .stellarnav li.has-sub>a:after {
    border-top: 5px solid #1A88CA;
    border-bottom: 5px solid #1A88CA;
}
.stellarnav li.has-sub>:hover:after {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #1A88CA;
    border-bottom: 5px solid #1A88CA;
}


/*次分類*/
.stellarnav ul ul li.has-sub>:after {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid transparent;
}
.stellarnav li li.has-sub > a:after {
    right: 15px;
}
.header_area.sticky  .stellarnav li li.has-sub>a:after {
    border-top: 5px solid #888;
    border-bottom: 5px solid #888;
}
/*======*/

.me_tp_features a {
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px;
    font-size: 14px;
    color: #fff;
}

/*子分類*/
.stellarnav ul ul {
    top: auto;
    width: 180px;
    position: absolute;
    z-index: 9900;
    text-align: left;
    display: none;
    background: #fff;
}
/*次分類*/
.stellarnav ul ul ul {
    top: 0;
    left: 100%;
    width: 180px;
}

.stellarnav li.drop-left ul ul {
    left: auto;
    right: 199px;
}

/*首頁文章*/
.module_i_news .title_i_box h4 {
    font-size: 30px;
    color: #1A88CA;
    font-weight: 700;
    font-family: "Noto Serif TC", serif;
    letter-spacing: 4px;
}
.i_blog_ri h5 {
    color: #666;
}
.animated-arrow {
    background: #1A88CA;
    border-radius: 25px;
}

@media screen and (max-width: 1400px) {

}
@media screen and (max-width: 1300px) {

}
@media screen and (max-width: 1200px) {

}

@media screen and (max-width: 1024px) {
    .header_area {    position: sticky;}
    .nav-header {max-width: 80px;}
    .header_area::before{    width: 30vh;} 
    .header_area::after{    width: 32vh;} 
    .stellarnav ul {    text-align: right;}   
    .stellarnav>ul>li>a {    font-size: 14px;}
}
@media only screen and (max-width: 768px) {
/*首頁*/
    .pageIndex  .header_area {
        position: sticky;
        width: 100%;
        padding: 10px 5px;
        background: #000000;
        box-shadow: 4px 2px 4px 0px #66666638;
        backdrop-filter: unset;
    }
    .pageIndex .header_area.sticky {
        position: sticky;
        width: 100%;
        padding: 10px 5px;
        background: #ffffff;
        box-shadow: 4px 2px 4px 0px #66666638;
        backdrop-filter: unset;
    }
/*==========*/
    .header_area {
        position: sticky;
        width: 100%;
        padding: 10px 5px 0;
        background: #58a6dc;
        box-shadow: 4px 2px 4px 0px #66666638;
        backdrop-filter: unset;
    }
    .header_area.sticky {
        padding: 5px;
        backdrop-filter: unset;
    }
    .navigation {
        max-width: 100%;
        position: relative;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .nav-header {
        max-width: 80px;
    }
    .header_area.sticky .nav-header {
        max-width: 70px;
    }
    /*漢堡鈕*/

    .stellarnav.mobile {
        position: absolute;
        left: unset;
        right: 0;
        top: 12px;
        width: 45px;
        height: 45px;
        border-radius: 50px;
        display: inline-block;
        background: #ffffff00;
    }
    .stellarnav .menu-toggle span.bars span {
        display: block;
        width: 35px;
        height: 2px;
        background: #fdfcfc;
        margin: 0 auto 4px;
    }
    .header_area.sticky  .stellarnav .menu-toggle span.bars span {
        display: block;
        width: 35px;
        height: 2px;
        background: #56a8dc;
        margin: 0 auto 4px;
        transition: .5s all;
    }
    
    .stellarnav .menu-toggle:after {
        display: none;
    }

    /* 導覽列展開 */
    .stellarnav.mobile.left > ul {
        left: unset;
        right: 0;
        font-size: 0;
        max-width: 100%;
        padding: 0 15px;        
        /*左滑出現*/
        left: -100vw;
        overflow: hidden;
        transition: all .5s ease;
    }
    .stellarnav.mobile.left.active > ul{
        display: block !important;
        left: 0;
        max-width: 50%;
        background: #fbf4e1;
        border-right: unset;
    }
    .stellarnav.mobile.left .close-menu {
        display: inline-block;
        text-align: right;
        font-size: 0;
        background: unset;
        padding: 30px 15px;
    }
    .stellarnav .icon-close:before {
        content: '';
        display: block;
        width: 25px;
        height: 0px;
        border-bottom: solid 2px #2b92cb;
        position: absolute;
        top: 50%;
        transform: rotate(45deg);
    }
    .stellarnav .icon-close:after {
        content: '';
        display: block;
        width: 25px;
        height: 0px;
        top: 50%;
        border-bottom: solid 2px #2b92cb;
        position: absolute;
        transform: rotate(-45deg);
    }
    .stellarnav.mobile > ul > li > a {
        text-align: left;
        overflow: auto;
        height: auto;
        line-height: 150%;
        display: block;
        color: #555;
        font-size: 15px;
        font-family: sans-serif;
        font-weight: 500;
    }
    .header_area.sticky .stellarnav > ul > li > a {
        color: #2b92cb;
        font-weight: 500;
    }
    .stellarnav>ul>li>a:hover {
        color: #2b92cb;
        letter-spacing: 10px;

    }
    /*導覽列第二層*/
    .stellarnav.mobile > ul > li {
        display: block;
        border-bottom: 1px #dddddd24 solid;
    }
    .stellarnav.mobile ul ul {
        position: relative;
        opacity: 1;
        visibility: visible;
        width: auto;
        display: none;
        -moz-transition: none;
        -webkit-transition: none;
        -o-transition: color 0 ease-in;
        transition: none;
        background: #fbf4e1;
    }
    .stellarnav li a {
        padding: 7px 10px;
        display: block;
        color: #7f7f7f;
    }
    .stellarnav.mobile > ul > li > a.dd-toggle {
        padding: 11px;
        position: absolute;
        text-align: center;
        z-index: 999;
    }
    .stellarnav a.dd-toggle .icon-plus:before {
        content: '';
        display: block;
        width: 12px;
        height: 0px;
        border-bottom: solid 2px #2b92cb;
        position: absolute;
        top: 50%;
        transform: rotate(90deg);
        transition: width 0.3s;
    }
    .stellarnav a.dd-toggle .icon-plus:after {
        content: '';
        display: block;
        width: 12px;
        height: 0px;
        top: 50%;
        border-bottom: solid 2px #2b92cb;
        position: absolute;
    }
    /*點擊後旋轉*/
    .stellarnav li.open > a.dd-toggle .icon-plus {
        transform: rotate(180deg);
    }
    /*次分類*/
    .stellarnav.mobile li.open {
        background: #fbf4e1;
        padding: 3px;
    }
    .stellarnav li li {
        display: block;
        border: unset;
        border-bottom-width: 0;
        font-size: 13px;
    }


}

@media only screen and (max-width: 570px) {

    .stellarnav .menu-toggle span.bars {
        display: inline-block;
        text-align: center;
        position: relative;
        top: 12px;
        left: 9px;
    }
}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = = = = = */



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*======Footer區塊======*/
/*LOGO隱藏*/
.footer {
    padding: 0;
    font-size: 14px;
    background: #ffffff;
    position: relative;
    z-index: 99;
    box-shadow: unset;
}

.footer .center {
    position: relative;
    max-width: 80%;
}
.footer_logo {
    display: none;
    vertical-align: top;
    max-width: 350px;
    margin: 0;
}
.footer_info {
    padding: 35px 0 0;
    display: flex;
    grid-gap: 15px;
    align-items: center;
    flex-direction: column;
}

.footer_info ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}
.footer_info li {
    display: block;
    padding: 0 0 10px 0px;
    text-align: center;
    width: 100%;
}

.footer_info li p {
    line-height: 175%;
    letter-spacing: 1px;
    color: #333333;
    font-size: 16px;
    font-weight: 600;
    font-family: "Noto Serif TC", serif;
}

.footer_info li p a {
    color: #444;
}
.footer_menu {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
.footer_menu a {
    display: inline-block;
    padding: 5px 11px;
    border: unset;
    margin: 5px 15px;
    font-size: 14px;
    font-family: "Noto Serif TC", serif;
    font-weight: 600;
    line-height: 100%;
    color: #6b6b6b;
    background: unset;
    transition: .8s all;
}

.footer_menu a:hover {
    border-bottom: 1px #56A8DC solid;
    background: unset;
    color: #56A8DC;
}
.copy {
    text-align: left;
    padding: 0 35px;
    font-size: 13px;
    color: #4b4a48;
    border-top: unset;
    margin-bottom: 10px;
}
.copy a:hover {
    color: #d5c4b1;
}

.box_link a {
    display: none;
}
.footer_menu a:nth-of-type(1) {
    display: none;
}
/*浮動按鈕隱藏*/
.linksBtn {
    display: none;
}
@media screen and (max-width: 1024px) {
    .footer_info ul {
        width: 100%;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        align-items: flex-start;
    }
    .footer_menu {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        flex-wrap: wrap;
        justify-content: space-between;
    }
}


@media screen and (max-width: 768px) {
    .footer_info {
        padding: 0;
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 20px;
        align-items: center;
    }
    .footer_menu {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .footer_menu a {
        display: inline-block;
        padding: 5px 10px;
        border: unset;
        margin: 0;
        font-size: 14px;
        font-weight: 900;
        line-height: 100%;
        color: #444;
        background: unset;
        border-bottom: unset;
        transition: .8s all;
    }
}
.accordion li .link a {
    cursor: pointer;
    display: block;
    padding: 15px 10px;
    color: #444;
    background: #ffffff;
    font-size: 14px;
    font-weight: 400;
    position: relative;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = = = = = */



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 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;width:100%;margin-left:0;display: block !important;}
.product-layer-two li:hover ul { border: none !important; /*display:block !important;*/}
.product-layer-two li li {display: block;padding-left: 24px;transition:all ease .3s;background: unset;}
.product-layer-two li li a{padding:5px 10px;background: unset;}
.product-layer-two li li:hover > a {background: unset;color: #58a8dd;}
.product-layer-two > li {width:100%;max-width:100%;padding:0;text-align:left;border-bottom:1px dotted #ccc;padding-bottom: 20px;}
.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;}
.product-layer-two li li > a:before {content: "";position: absolute;width: 9px;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:#58a8dd;}

.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 {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 30px;
}
.products-list .pic {
    aspect-ratio: 1 / 1;
    border-radius: 15px;
    box-shadow: 1px 1px 3px 0px #66666638;
}
.product-layer-two li a {
    position: relative;
    border: unset;
    background: unset;
    padding: 14px 16px;
    display: block;
    font-size: 18px;
    color: #666;
}
.product-layer-two li i {
    position: absolute;
    right: 0;
    top: 8px;
    width: 37px;
    height: 37px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.fa-circle-plus::before {
    content: '';
    height: 7px;
    width: 7px;
    display: block;
    border-style: solid;
    border-width: 0 1px 1px 0;
    border-color: transparent var(--FontColor) var(--FontColor);
    transform: rotate(45deg);
}
.product-layer-two li i.close::before {
    content: '';
    height: 7px;
    width: 7px;
    display: block;
    border-style: solid;
    border-width: 0 1px 1px 0;
    border-color: transparent var(--FontColor) var(--FontColor);
    transform: rotate(45deg);
}
.product-layer-two li.active a {
    font-weight: bold;
    border: unset;
    background: #f3f3f39c;
}


.products-list .name {
    font-size: 16px;
    color: #333333;
    letter-spacing: 1px;
    margin-top: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
    height: auto;
    padding-bottom: 10px;
}
.products-list .price {
    margin:  0;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    text-align: center;
    flex-direction: column-reverse;
}
.products-list .price .sp_price {
    text-align: center;
}

/*價格顏色*/
.products-list .price b {
    color: #444;
    font-weight: 500;
    font-size: 14px;
    width: calc(50% - 10px);
}
.products-list .price .sp_price {
    text-align: center;
    color: #55a9d8;/*特價*/
}
.products-list .more {display: none;}

/*hover放大*/
.products-list .pic:hover img {
    transition: all 0.3s;
    transform: scale(1.1);
}

/*第二層*/
.proImgSwiper li {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    align-content: center;
}
#prod_thumbSwiper .swiper-slide::before {
    background: #000000a3;
}
.sidebarBtn {
    padding: 0px;
    display: inline-block;
    width: 28%;
    vertical-align: top;
    border: unset;
    background: unset;
}
.sidebarBtn h2 {
    color: #555;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 2px;
}
.sidebarBtn .price {
    color: #555;
    font-size: 22px;
    font-weight: 400;
    padding: 10px 0;
    border-bottom: unset;
    letter-spacing: 1px;
}
.sidebarBtn .sp_price {
    display: block;
    color: #55a9d8;
    font-size: 22px;
    font-weight: bold;
}
.inquiry_a3 {
    background: #55a9d8;
}
.inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover {
    letter-spacing: 5px;
    background: #55a9d8;
}
.prod_related {
    background: unset;
    border-top: 1px solid #ccc;
    margin: 0 4vw;
    padding: 25px 15px;
}
.prod_related h6 span:before {
    content: '相關推薦';
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 6px;
    color: #444;
}
.related_list li a {
    display: block;
    padding: 4px;
    background: unset;
    height: 100%;
}
.lastPage {
    font-size: 16px;
    color: #fff;
    background: #55a9d8;
    border-radius: 5px;
    padding: 10px 20px;
    display: block;
    margin: 40px auto;
    width: 130px;
    text-align: center;
}

@media screen and (max-width: 1200px) {
    .products-list {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media screen and (max-width: 980px) {
}
@media screen and (max-width: 768px) {
.product_menu_list,
.products-list,
.product-wrapper { width: 100%;}
.product-layer-two { margin-right: 0; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); grid-gap: 5px;}
.product_page .product-layer-two,
.product_page .products-list { width: 100%; border-right: none;}
.product_page .product_menu_list>h5{display: block;}

.product_page .show_content > a { order: 1;}
.product_page ul.products-list { order: 2;}
.product_menu_list>h5 {
    font-size: 1.6em;
    font-weight: 500;
    margin-bottom: 10px;
    padding-right: 1.2em;
    position: relative;
    color: #666;
    display: none;
}
.products-list {
    grid-template-columns: 1fr 1fr;
}
.product_page ul.page { order: 3;}
.product_page .product_menu_list {width: 100%; order: 0; min-height: unset;}
/*第二層*/
 .mobile_product_name {
    display: none;
    margin-bottom: 10px;
    }

.sidebarBtn {
    width: 100%;
}
.related_list {
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
}
    
}


@media screen and (max-width: 600px) {
    .products-list .price b {
        width: 100%;
        text-align: center !important;
    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = = = = = */



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*內頁BANNER 設定*/
.banner {
    background: url(https://pic03.eapple.com.tw/客戶FTP/圖片檔案)center top;
    height: 76px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    padding: 0px;
    background-size: cover;
}
.banner h5 {
    display: flex;
    justify-content: flex-start;
    position: relative;
    top: 25%;
    width: 100%;
    margin: auto;
    padding-left: 10vh;
    color: #656565;
    font-family: "Noto Serif TC", serif;
    font-size: 25px;
    letter-spacing: 15px;
}

.banner.banA {}
.banner.banB {    display: none;}
.banner.banC {}
.banner.banD {}
.banner.banE {}
.banner.banF {}
.banner.banblog {}
@media screen and (max-width: 1024px) {
    .banner {
    min-height: 120px;
    }
    .banner h5 {
        padding-left: 5vh;
        padding-bottom: 5vh;
    }
}


@media screen and (max-width: 768px) {

}

@media screen and (max-width: 600px) {
    .banner h5 {}
}

@media screen and (max-width: 480px) {

}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = = = = = */
/*文章設定*/

.blog_page .main_part {
    max-width: 1450px;
}
.blog_le .accordion>li:hover .link a,
.blog_le .accordion>li.on_this_category .link a {
    color: #fff !important;
    background: #58a6dc;
}
.blog_search input[type=search] {
    border: solid 1px #cccccc5c;
    border-radius: 10px;
}
.blog_le .accordion {
    list-style-type: none;
    margin: auto;
    border-radius: 10px;
    border: 1px #cccccc5c solid;
    overflow: hidden;
}
.submenu li.on_this_category a,
.submenu a:hover {
    background: #f5f5f0;
    color: #4c4c4c;
}
.blog_subbox {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 10px;
    padding: 12px;
}

.subbox_item a {
    display: grid;
    grid-template-columns: 1fr;
    position: relative;
    grid-gap: 20px;
}
.blog_list_le img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.subbox_item a:after {
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 8;
    background: rgb(0 0 0 / 15%);
    opacity: 0;
    transition: all .5s;
}

.subbox_item a:before {
    transform: translate(-50%, -50%);
    left: 50%;
    right: 0;
    bottom: -4%;
    letter-spacing: 5px;
    opacity: 0;
    display: block;
    color: #fff;
    background: #55a6dd;
    border-radius: 15px 15px 0 0;
    width: 100%;
    padding: 8px 0;
    text-align: center;
}

.blog_list_ri h5 {
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 3px;
    color: #3f3f3f;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
}

/*第二層*/
.news_related_list li {
    display: block;
    padding: 0px;
}

.blog_shareData {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    margin-bottom: 20px;
}

.blog_back a.article_btn_back {
    background: #59a9d8;
}

.blog_back a.article_btn_prev {
    background: #c0c0c0
}

.blog_back a.article_btn_next {
    background: #c0c0c0;
}

.lastPage {
    font-size: 16px;
    color: #fff;
    background: #59a9d8;
    padding: 10px 20px;
    display: block;
    margin: 40px auto;
    width: 130px;
    text-align: center;
}
.news_related {
    background: unset;
    padding: 50px 15px;
}
.news_related h6 span:before {
    content: '相關文章';
    font-size: 24px;
    font-weight: 500;
    color: #444;
    letter-spacing: 5px;
}

@media screen and (max-width: 1200px) {}

@media screen and (max-width: 1024px) {}

@media screen and (max-width: 980px) {}

@media screen and (max-width: 768px) {
    .blog_subbox {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 10px;
        padding: 12px;
    }

    /*第二層*/
    .blog_shareData {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        align-content: center;
        flex-wrap: wrap;
        flex-direction: row-reverse;
        margin-bottom: 20px;
    }

    .blog_box_edit * {
        line-height: 150%;
        max-width: 100%;
        width: 100%;
    }

    .blog_box {
        min-height: 20vw;
        padding: 35px;
    }
}

@media screen and (max-width: 600px) {}

@media screen and (max-width: 480px) {
    .blog_subbox {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 30px;
        padding: 20px;
    }

    h4.blog_category_title {
        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;}
*/

.show-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
}

.show-list .show_name {
    font-size: 17px;
    color: #333;
    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;
}

.show-list .item:hover .show_name {
    color: #c8b29c;
    letter-spacing: 9px;
}

.other_album_choice li {
    background: #9a856c;
    font-size: 15px;
    display: inline-block;
    border-radius: 0;
    padding: 7px 20px;
    margin: 0 7px 7px 0;
}
/*相本列表
.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; } 取消連結被點擊效果
*/
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = = = = = */



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = = = = = */
/*促銷方案*/
.promotion_title * {  color: #4c4c4c ;}
.promotion_title em {  border: 1px #4c4c4c  dashed;}
.promotion_title span { border: 1px #4c4c4c  dashed;}
.promotion_title h2 {  display: block;  font-size: 30px;}
.show_content {
    margin: auto;
    padding: 20px 10px;
}
.other_promotion li {
    font-size: 13px;
    line-height: 20px;
    color: #666;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    margin-left: -3px;
}
.other_promotion {
    list-style: none;
    display: grid;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    grid-gap: 30px;
}
.other_promotion li a {  border: none; border-top: 1px solid #e5e5e5;   }
.other_promotion li a:hover {  background: none;}
.other_promotion li a:before { border: 2px #bea77c solid; border-bottom: none;  border-right: none; border-left: none;}
.other_promotion li a:after { display: none;}

@media screen and (max-width: 768px) {
    .other_promotion li {
        font-size: 13px;
        line-height: 20px;
        color: #666;
        display: inline-block;
        vertical-align: top;
        width: 100%;
        margin-left: -3px;
    }
}

@media screen and (max-width: 480px) {
    .other_promotion {
        list-style: none;
        display: grid;
        margin: 0 auto;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        grid-gap: 15px;
    }
    .other_promotion li {
        font-size: 13px;
        line-height: 20px;
        color: #666;
        display: inline-block;
        vertical-align: top;
        width: 100%;
        margin-left: -3px;
    }
    .promotion_title h2 {
        font-size: 22px;
    }
    
}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = = = = = */



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*表單功能*/

.contact_content {
    margin: auto;
    padding: 20px 13vw;
}
.contact_editbox {
    margin: auto;
    padding: 0;
}

.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 {
    position: absolute;
    display: block;
    width: 35px;
    left: 0;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0px;
}
.blank_letter {
    font-family: 'Josefin Sans', 'sans-serif', '微軟正黑體';
    padding-top: 30px;
    font-size: 26px;
    color: #444;
    background-position: left bottom;
    background-repeat: no-repeat;
}

.contact_form li.last blockquote {
    color: #666;
    background: #ffffff;
}

.contact_form li.last cite {
    background: #5d432b;
    color: #fff;
}

@media screen and (max-width: 600px) {
    .contact_form li .form__label {
        width: 100%;
        margin-left: 0;
        text-align: left;
        font-weight: bold;
        padding: 5px;
        background: rgb(130 130 130 / 15%);
    }
}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = = = = = */



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
@media screen and (max-width: 768px) {

    /* 開啟手機板下方按鈕所需設定 */
    #bottom_menu {
        display: none;
    }

    .footer.with_shopping_mode {
        padding: 10px 0;
    }

    #to_top {
        bottom: 60px;
    }
}

@media screen and (max-width: 600px) {}


#content {
    background: url(https://pic03.eapple.com.tw/eternalstory8/BG.jpg) no-repeat top;
    background-size: cover;
}
/*END*/