@charset "utf-8";

/*
關於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 {}
*/

/* header商品下拉超過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個--結束 */


/*預設解除背景輪播*/
#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;}
}
/*預設解除背景輪播--結束*/


 /* 開啟手機板下方按鈕所需設定 */
@media screen and (max-width: 768px) {
    .footer.with_shopping_mode { padding:30px 0 54px; }
    #to_top { bottom:60px;}
}
    
@media screen and (max-width: 600px) { 
}
 /* 開啟手機板下方按鈕所需設定--結束 */    

/* = = = 大圖 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

.bannerindex {
    position: static;
    height: auto;
}
.pageIndex .swiper-banner {
    position: static;
    margin: 0;
    height: auto;
}
/* .pageIndex .swiper-slide.swiper-slide-active:nth-child(1)::before,
.pageIndex .swiper-slide.swiper-slide-active:nth-child(2):after {
    animation: slide-left 2s 0.3s both;
}
.pageIndex .swiper-slide.swiper-slide-active:nth-child(1):after,
.pageIndex .swiper-slide.swiper-slide-active:nth-child(2)::before {
    animation: slide-right 2s 0.3s both;
} */
.pageIndex .swiper-slide.swiper-slide-active:nth-child(1)::before {
    animation: slide-left 2s 0.3s both;
}
.pageIndex .swiper-slide.swiper-slide-active:nth-child(1):after {
    animation: slide-right 2s 0.3s both;
}
.pageIndex .swiper-slide:before, 
.pageIndex .swiper-slide:after {
    content: "";
    position: absolute;
    z-index: 999;
    pointer-events: none;
}
.pageIndex .swiper-slide:before {
    bottom: 0;
    height: 100%;
    mix-blend-mode: multiply;
}
.pageIndex .swiper-slide::after {
    bottom: 12%;
    background-size: contain;
    background-repeat: no-repeat;
}
.pageIndex .swiper-slide:nth-child(1)::before {
    left: 0;
    width: 46%;
    background: rgba(35, 137, 101, 0.5);
}
.pageIndex .swiper-slide:nth-child(1):after {
    background-image: url(https://pic03.eapple.com.tw/wubaotree/ban01_title.png);
    width: 30%;
    left: 8%;
    aspect-ratio: 681/168;
}
/* .pageIndex .swiper-slide:nth-child(2)::before {
    right: 0;
    width: 46%;
    background: rgba(4, 130, 158, 0.7);
    background: rgb(3 93 144 / 60%);
}
.pageIndex .swiper-slide:nth-child(2):after {
    background-image: url(https://pic03.eapple.com.tw/wubaotree/ban02_title.png);
    width: 24%;
    right: 8%;
    aspect-ratio: 526/168;
} */

@keyframes slide-right {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slide-left {
    0% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*--------頁碼設定----------*/
ul.page { 
    width: 100%;
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 600;
}

/* 停留在該頁時 */
.page strong {
    background: #6a3906;
}

/* 其他頁 */
.page li {
	margin: 0;
}
.page li a, .page li strong {
    width: 35px;
    height: 35px;
}
.page li a {
    color: #4C5259;
}

/* hover-點擊其他頁 */
.page a, 
.page a:hover {
    transition: all .2s;
}
.page a:hover {
    color: #aacc03;
    background: transparent;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/* 麵包屑導覽--隱藏 */
.path {
    display: none;
}
#content_main {
    background: transparent;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

.header_area {
    position: fixed;
    background: linear-gradient(to bottom, 
    rgba(255,255,255,1) 0%,
    rgba(255,255,255,0.5) 50%,
    rgba(255,255,255,0) 100%);
    padding: 0;
}
.header_area.sticky {
    background: linear-gradient(to bottom, 
    rgba(255,255,255,1) 0%,
    rgba(255,255,255,0.5) 50%,
    rgba(255,255,255,0) 100%);
}
.main_header_area .container {
    max-width: 100%;
}
.navigation {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.nav-header {
    max-width: 230px;
    padding: 10px 0;
}

/* header購物欄位 */
.me_tp_features {
    display: grid;
    grid-template-columns: 8fr 1fr 1fr;
    position: absolute;
    padding-top: 15px;
}
.me_tp_features a {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 200px;
    color: #727272;
}
.me_tp_features a i {
    margin: 0 3px 4px;
}
.box_search {
    margin: 5px 0 0 50px;
}
.shop_search_btn {
    display: none;
}
.box_search input[type=text] {
    max-width: 160px;
    line-height: 1.5;
    border-radius: 0;
    border: 0;
    border-bottom: solid 1px #959595;
    background: url(https://pic03.eapple.com.tw/wubaotree/hd_search.svg) no-repeat 130px center transparent;
    padding: 5px;
}
.box_search input[type=text]:focus {
    color: #238966;
}
.me_tp_features a i::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
}
.fa-house::before,
.fa-cart-shopping::before,
.fa-credit-card::before{
    content: "";
    display: block;
    width: 20px;
    height: 20px;
}
.fa-house::before {
    background: url(https://pic03.eapple.com.tw/wubaotree/hd_home.svg);
}
.fa-cart-shopping::before {
    background: url(https://pic03.eapple.com.tw/wubaotree/hd_cart.svg);
}
.fa-credit-card::before {
    background: url(https://pic03.eapple.com.tw/wubaotree/hd_card.svg);
}
.me_tp_features a span {
    font-family: '', 'Noto Sans TC', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}
.tp_links {
    display: none;
}

/* .stellarnav */
.stellarnav > ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1300px;
    text-align: center;
    background: rgb(255 255 255 / 80%);
    border-radius: 350px;
    margin: 0 auto;
    backdrop-filter: blur(3px);
}
.stellarnav > ul > li::before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 0;
}
.stellarnav > ul > li > a {
    height: auto;
    font-family: 'Noto Sans TC', sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 3px;
    color: #3E3A39;
    padding: 10px 3px;
    margin: 0 25px;
    overflow: unset;
}
.stellarnav li.has-sub > a:after {
    border-top: 6px solid #3E3A39;
}

/* .stellarnav - 次選單 */
.stellarnav ul ul {
    width: 100%;
    background: rgb(255 255 255 / 80%);
}
.stellarnav li li {
    border: 0;
}
.stellarnav li li.has-sub > a:after {
    border-left: 6px solid #3E3A39;
}
.stellarnav.desktop li.has-sub li a {
    font-family: 'Noto Sans TC', sans-serif;
    font-size: 15px;
    color: #3E3A39;
    letter-spacing: 2px;
    padding: 10px 15px 10px 10px;
}
.stellarnav > ul > li.drop-left > ul {
    border-left: solid 1px #3E3A39;
}
.stellarnav li.drop-left li.has-sub > a:after {
    border-right: 6px solid #3E3A39;
}
.stellarnav ul ul ul {
    background: rgb(255 255 255 / 80%);
}

/* hover */
.me_tp_features * {
    transition: all .1s;
}
.stellarnav > ul * {
    transition: all .4s;
}
.me_tp_features a:hover {
    opacity: .7;
}
.stellarnav > ul > li > a:hover,
.stellarnav > ul > li:hover > a {
    color: #238966;
} /* 主選單一般變色 */
.stellarnav > ul > li.has-sub > a:hover:after,
.stellarnav > ul > li.has-sub:hover > a:after{
    border-top: 6px solid #238966;
} /* 主選單三角形 */
/* .stellarnav li li:hover > a,
.stellarnav li li.has-sub:hover > a,
.stellarnav li li.drop-left:hover > a  {
    color: #fff;
    background: #238966;
}  */
.stellarnav li li:hover > a, 
.stellarnav li li > a:hover, 
.stellarnav.desktop li.has-sub li a:hover, 
.stellarnav.desktop li.has-sub li:hover > a {
    color: #fff;
    background: #238966;
} /* 次分類一般變色 */
.stellarnav li li.has-sub > a:hover:after,
.stellarnav li li.has-sub:hover > a:after{
    border-left: 6px solid #fff;
} /* 次分類三角形 */

@media screen and (max-width: 1300px) {

    .header_area,
    .header_area.sticky {
        background: #fff;
    }
    .header_area {
        position: sticky;
    }

    /* .me_tp_features--開始 */
    .box_search {
        margin: 5px 0 0 100px;
    } /* .me_tp_features--結束 */

    /* 漢堡鈕設定--開始 */
    .stellarnav.mobile {
        position: absolute;
        top: 18px;
        left: 18px;
        width: 60px;
        border-top: 0;
        padding-right: 10px;
    }
    .stellarnav .menu-toggle, 
    .stellarnav .call-btn-mobile, 
    .stellarnav .location-btn-mobile {
        width: 60px;
        height: 40px;
        background: #238966;
        padding: 7px;
    }
    .stellarnav .menu-toggle span.bars span {
        position: relative;
        width: 26px;
        background: #fff;
        margin: 0 auto 3px;
    }
    .stellarnav .menu-toggle span.bars span:nth-child(1) {
        left: 13px;
        margin-bottom: 5px;
    }
    .stellarnav .menu-toggle span.bars span:nth-child(2) {
        left: 5px;
    }
    .stellarnav .menu-toggle span.bars span:nth-child(3) {
        display: none;
    }
    .stellarnav .menu-toggle:after {
        display: none;
    }
    .stellarnav.mobile.right > ul, 
    .stellarnav.mobile.left > ul {
        left: 0;
        max-width: 100%;
        border: 0;
        border-radius: 0;
    }
    .stellarnav.mobile.right .close-menu, 
    .stellarnav.mobile.left .close-menu {
        color: transparent;
        text-align: left;
        background: transparent;
        padding: 20px 10px 10px 20px;
    } 
    .stellarnav .icon-close:before, 
    .stellarnav .icon-close:after {
        width: 20px;
        border-bottom: solid 2px #777;
    } /* 漢堡鈕設定--結束 */


     /* 選單設定--開始 */
    .stellarnav.mobile > ul > li {
        border-bottom: 0;
    }
    .stellarnav.mobile li.open {
        padding: 0;
    }
    .stellarnav.mobile > ul > li::before {
        display: none;
    }
    .stellarnav.mobile li li a, 
    .stellarnav.mobile li li.has-sub a {
        font-size: 15px;
        letter-spacing: 2px;
        padding: 10px 43px 10px 45px;
    }
    .stellarnav a.dd-toggle .icon-plus:before, 
    .stellarnav a.dd-toggle .icon-plus:after {
        border-bottom: solid 1px #90A183;
    }
    .stellarnav.mobile li.open li.open {
        padding: 0;
    }
    .stellarnav.mobile li.open li.open > a {
        background: #D6EBE9;
    }
    .stellarnav.mobile li.open li.open > a.dd-toggle {
        background: transparent;
    }
    .stellarnav.mobile li.open li.open li .mob_main_link {
        padding: 10px 43px 10px 60px;
    } /* 選單設定--結束 */

    /* hover */
    .stellarnav a.dd-toggle:hover .icon-plus:before, 
    .stellarnav a.dd-toggle:hover .icon-plus:after {
        color: #238966;
    }
    .stellarnav li li:hover > a, 
    .stellarnav li li > a:hover, 
    .stellarnav.desktop li.has-sub li a:hover, 
    .stellarnav.desktop li.has-sub li:hover > a {
        color: #238966;
        background: transparent;
    } /* 次分類一般變色 */
}

@media screen and (max-width: 1024px) {
    .me_tp_features {
        margin: 0;
    }
    .stellarnav > ul > li > a {
        margin: 0 10px;
    }
}

@media screen and (max-width: 768px) {

    .nav-header {
        max-width: 150px;
        padding: 12px 0 8px 0;
    }
    .me_tp_features {
        display: flex;
        padding: 14px 10px 0;
        justify-content: flex-end;
    }
    .box_search {
        width: 120px;
        margin: 0;
    }
    .box_search input[type=text] {
        background: url(https://pic03.eapple.com.tw/wubaotree/hd_search.svg) no-repeat 90px center transparent;
    }
    .me_tp_features a {
        display: none;
    }

    /* 漢堡鈕設定--開始 */
    .stellarnav.mobile {
        top: 10px;
        left: 10px;
    }
    .stellarnav .menu-toggle span.bars {
        display: inline-block;
        top: 7px;
    }
}

@media screen and (max-width: 570px) {
}

@media screen and (max-width: 420px) {
    .navigation {
        align-items: flex-start;
    }
    .nav-header {
        position: relative;
        left: 80px;
    }
}

@media screen and (max-width: 360px) {
    .nav-header {
        max-width: 135px;
    }
}


/* = = = 首頁-查看更多 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
.animated-arrow {
    color: #3E3A39;
    background: transparent;
    border: solid 1px #3E3A39;
}
.i_prod_b {
    font-size: 15px;
    letter-spacing: 2px;
}
.i_prod_b a i.fa-solid.fa-arrow-right {
    position: absolute;
    top: 17px;
    right: 0;
    margin: 0 18px 0 0;
}

/* hover */
.i_prod_b a:hover {
    background: rgb(255 255 255 / 70%);
}
.i_prod_b a:hover i.fa-solid.fa-arrow-right {
    margin: 0 10px 0 0;
}


/* = = = 首頁購物車 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
.prod_part {
    padding: 100px 20px 80px 20px;
}
.i_prod_tit {
    font-family: 'Noto Sans TC', sans-serif;
    letter-spacing: 1.5px;
    color: #3E3A39;
}
.i_prod_tit span, 
.i_video_tit span {
    font-size: 26px;
}
.products-list .item *,
.products-list .item .pic:before,
.products-list .item:hover .pic:before,
.products-list .item .pic:after,
.products-list .item:hover .pic:after {
    transition: all .3s;
}
.products-list .pic {
    border-radius: 15px;
}
.products-list .pic::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(79 79 79 / 40%);
    opacity: 0;
}
.products-list .pic::after {
    content: '詳細資料';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    color: #fff;
    letter-spacing: 3px;
    opacity: 0;
}
.products-list .more {
    display: none;
}



/* hover */
.products-list .item:hover .pic:before,
.products-list .item:hover .pic::after {
    opacity: 1;
}

/* = = = footer = = = = = = = = = == = = = = = = = = = = = = = = == = = */

.footer {
    background: transparent;
}
.footer_info {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    padding: 0;
}
.footer_logo {
    max-width: 240px;
    margin-bottom: 20px;
}
.box_link {
    display: none;
}

/* footer聯絡資訊&選單 */
.footer_info ul * {
    font-family: 'Noto Sans TC', sans-serif;     
}
.copy, .cppy a, .copy span {
    font-family: 'Noto Sans TC', sans-serif !important;      
}
.footer_info ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 10px 30px 10px;
}
.footer_info ul:before {
    content: '店內採預約制，來前請電話聯絡。';
    font-family: 'Noto Sans TC', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #238966;
    border: solid 1px #238966;
    padding: 3px 7px 3px 11px;
    margin: 0 0 20px;
}
.footer_info li:nth-child(1) {
    display: flex;
    width: 100%;
    max-width: 1000px;
    justify-content: space-between;
}
/* .footer_info li p.line:after {
    content: '營業時間 ：預約制';
} */
.footer_info li p {
    color: #238966;
    line-height: 200%;
}
.footer_info li p.phone:before {
    content: '手機｜';
}
.footer_info li p.taxid:before {
    content: '統編｜';
}
.footer_info li p.mail:before {
    content: '信箱｜';
}
.footer_info li p.add:before {
    content: '地址｜';
}
.footer_info li p a {
    color: #238966;
}
.footer_menu a {
    color: #8e8c85;
    letter-spacing: 1px;
    line-height: 150%;
    border: 0;
    background: transparent;
    margin: 5px 14px;
}

/* 版權聲明 */
.copy, 
.copy a {
    color: #919191;
}
.copy {
    background: #3E3A39;
    border: 0;
}

/* hover */
.box_link a,
.box_link a:hover,
.footer_menu a,
.footer_menu a:hover,
.copy a,
.copy a:hover {
    transition: all .3s;
}
.box_link a:hover {
    opacity: .7;
}
.box_link a,
.box_link a:hover {
    transition: all .2s;
}
.footer_menu a:hover {
    background: transparent;
    color: #3E3A39;
}
.copy a:hover {
    color: #fbcd4f;
}

@media screen and (max-width: 1200px) {
    .footer_menu {
        display: grid;
        grid-template-columns: repeat(5,1fr);
    }
}

@media screen and (max-width: 1024px) {
    .footer_menu {
        grid-template-columns: repeat(3,1fr);
    }
}

@media screen and (max-width: 980px) {
    .footer_info li:nth-child(1) {
        display: grid;
        grid-template-columns: 1fr 1fr;
        max-width: 750px;
    }
}

@media screen and (max-width: 768px) {
    .footer_info li:nth-child(1) {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .copy {
        padding: 7px 0;
    }
}

@media screen and (max-width: 600px) {
    .footer_menu {
        grid-template-columns: repeat(2,1fr);
    }
}


/* = = = 內頁設定 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

body {
    background: url(https://pic03.eapple.com.tw/wubaotree/bg_texture.jpg) repeat center top;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */

/* 購物車頁面設定 */
.product_page .main_part { 
    max-width:1500px;
}
.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);
}
.product-layer-two {
    border-top: solid 1px #cbcbcb;
    padding-top: 20px;
}
.product-layer-two > li { 
    width:100%; 
    max-width:100%; 
    padding:0; 
    text-align:left; 
    padding-bottom: 5px;
}
.product-layer-two li a {
    color: #888888;
    border: 0;
    background: transparent;
}
.product-layer-two li i {
    font-size: 12px;
    color: #888888;
}
.fa-circle-plus::before {
    content: "\2b";
}
.product-layer-two li ul { 
    position:static; margin-top:5px; 
    width:100%; margin-left:0;
}
.product-layer-two li li {
    display: block;
    background: transparent;
    padding: 0;
    transition: all ease .3s;
}
.product-layer-two li li a { 
    background: transparent;
    padding: 5px 10px 5px 30px;
}
.product-layer-two > li ul > li + li { 
    margin-top:5px;
}
/* .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%);
} */

/* 商品分類hover */
.fa-circle-plus::before,
.product-layer-two li i.close::before {
    transition: all .3s;
}
.product-layer-two li i.close::before {
    content: "\f068";
    transform: rotate(-180deg);
}
.product-layer-two li:hover ul { 
    border: none !important; 
    /*display:block !important;*/
}
.product-layer-two li li:hover{ 
    margin-left: 10px;
}
.product-layer-two li li:hover > a {
    background: transparent;
    color: #238966;
}
.product-layer-two li.active a {
    color: #238966;
    font-weight: bold;
    border: 0;
}
/* .product-layer-two li li:hover > a:before { 
    background:#ad925e;
} */

/* 商品列表 */
.products-list .name {
    font-size: 16px;
    font-weight: 600;
    color: #3E3A39;
}
.products-list .price b.ori_price {
    color: rgba(51, 51, 51, 0.4);
}
.products-list .price b.sp_price,
.products-list .price b {
    color: rgba(51, 51, 51, 1);
}

/* .product_info_page */
.product_info_page .product-layer-two { 
    display: none;
}
.product_info_page .products-list,
.product-wrapper { 
    width: 100%;
}
.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;
}
.sidebarBtn {
    border: 0;
    background: transparent;
}
.sidebarBtn h2 {
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 500;
    letter-spacing: 2px;
    color: #3E3A39;
}
.sidebarBtn .price {
    border: 0;
}
.sidebarBtn .price span.ori_price {
    color: rgba(51, 51, 51, 0.4);
    text-decoration: line-through;
}
.sidebarBtn .price span.sp_price {
    color: rgba(51, 51, 51, 1);
}
.inquiry_a1, 
.inquiry_a2, 
.inquiry_a3 {
    font-size: 15px;
    letter-spacing: 3px;
    border-radius: 0;
    margin-top: 8px;
}
.inquiry_a1 {
    background: #04819E;
}
.inquiry_a2 {
    font-size: 14px;
    letter-spacing: 4px;
    line-height: 25px;
    background: #3E3A39;
}
.inquiry_a3 {
    background: #238966;
}
.toShare {
    border: 0;
}

/* 商品資訊 */
.pd_tabTitle li {
    border: 0;
}
.pd_tabTitle li a {
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    color: #333333;
    border-bottom: 1px solid #c2c2c2;
    margin: 0 5px;
}
.pd_tabTitle li.activeTab a {
    color: #238966;
}
.pd_tabTitle li.activeTab::after {
    height: 1px;
    background: #238966;
}

/* 相關推薦 */
.prod_related *,
.related_list li a figure::before,
.related_list li a figure::after,
.related_list li a figure:hover::before,
.related_list li a figure:hover::after {
    transition: all ease-in .3s;
}
.prod_related {
    background: #F7F5F2;
    padding: 50px 15px 25px 15px;
    margin: 0 auto;
}
.prod_related h6 {
    max-width: 1300px;
    font-size: 16px;
    border-bottom: 1px solid #4D4D4D;
    padding: 10px 10px;
    margin: 20px auto;
}
.prod_related h6 span:before {
    font-family: 'Noto Sans TC', sans-serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #4D4D4D;
}
.related_list li a {
    background: transparent;
}
.related_list li figure {
    position: relative;
}
.related_list li a p {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    text-align: left;
    letter-spacing: 1px;
    line-height: 1.5;
    margin-top: 15px;
}
.related_list li a figure::before,
.related_list li a figure::after {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.related_list li a figure::before {
    content: '';
    width: 100%;
    height: 100%;
    background: rgb(79 79 79 / 40%);
    opacity: 0;
}
.related_list li a figure::after {
    content: '詳細資料';
    font-size: 16px;
    color: #fff;
    letter-spacing: 3px;
    opacity: 0;
}
.lastPage {
    color: #4D4D4D;
    background: transparent;
    border-bottom: solid 2px #4D4D4D;
}

/* .product_info_page *//* hover */
.inquiry_a1:hover, 
.inquiry_a2:hover, 
.inquiry_a3:hover {
    letter-spacing: 3px;
    opacity: .7;
}
.inquiry_a1:hover {
    background: #04819E;
}
.inquiry_a2:hover {
    letter-spacing: 4px;
    background: #3E3A39;
}
.inquiry_a3:hover {
    background: #238966;
}
.related_list li a figure:hover:before,
.related_list li a figure:hover::after {
    opacity: 1;
}

@media screen and (max-width: 1200px) {
}

@media screen and (max-width: 980px) {
}

@media screen and (max-width: 768px) {
    /* 購物車頁面設定 */
    

    /* 商品分類 */
    .product_menu_list,
    .products-list,
    .product-wrapper { 
        width: 100%;
    }
    .product_page .product-layer-two,
    .product_page .products-list {
        width: 100%; 
        border-right: none;
    }
    .product_page .product_menu_list {
        width: 100%; 
        order: 0; 
        min-height: unset;
    }
    .product_page .product_menu_list>h5{
        display: block;
    }
    .product-layer-two { 
        margin-right: 0; 
        grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); 
        grid-gap: 5px;
    }

    /* .product_page頁面物件順序設定 */
    .product_page .show_content > a { 
        order: 1;
    }
    .product_page ul.products-list { 
        order: 2;
    }
    .product_page ul.page { 
        order: 3;
    }
}

@media screen and (max-width: 600px) {
}

@media screen and (max-width: 480px) {
    .product_info_page .main_part {
        padding: 10px 10px;
    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* ------結帳頁面------ */
.rewrite_simple,
.send_simple {
    border-radius: 0;
}
.rewrite_simple {
    background: #333333 url(../images/simple_left.png) 10% center no-repeat;
}
.send_simple {
    background: rgb(138, 138, 138) url(../images/simple_right.png) 88% center no-repeat;
}

/* 訂購資料 */
.separate_title {
    background: #dfdfdf;
    padding: 10px 15px;
}
.clearfix:before, .clearfix:after {
    display: none;
}
.form label {
    color: #000;
}
input[type="checkbox"], input[type="radio"] {
    accent-color: #238966;
}

/* 訂單成立 */
.orderFinish_data .animated-arrow {
    color: #fff;
    border: 0;
}
.pay_text a.animated-arrow:nth-child(1) {
    background: #48AE4F;
}
.pay_text a.animated-arrow:nth-child(2) {
    background: #333333;
}
.order_list_tab td:nth-child(1) {
    color: #3E3A39;
}
.order_list_tit b {
    color: #333;
}
.order_list_pro tr:first-child {
    background: #333;
}
.order_list_pro tr:first-child td {
    color: #fff;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 相簿管理 */
/* .album_page */
.album_page .main_part,
.album_class_page .main_part,
.album_info_page .main_part {
    max-width: 1800px;
}
.album_page .show_content,
.album_class_page .show_content,
.album_info_page .show_content {
    padding: 0;
}
.show-list {
    grid-template-columns: repeat(4,1fr);
}
.show-list .show_pic {
    border-radius: 15px;
}
.show-list .show_pic::after {
    content: '';
    display: block;
    position: absolute;
    background-image: url(https://pic03.eapple.com.tw/wubaotree/zoom_in.svg);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    opacity: 0;
}
.overlay {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%);
    opacity: 1;
    transform: scale(1);
}
.show-list .show_name {
    position: absolute;
    left: 20px;
    bottom: 15px;
    font-weight: normal;
    color: #fff;
}

/* .album_page - hover */
.show-list .item .show_pic::after,
.show-list .item:hover .show_pic::after {
    transition: ease .4s;
}
.show-list .item:hover .show_pic::after {
    opacity: 1;
}
.show-list .item:hover .show_pic .overlay {
    opacity: 0;
}
.show-list .item:hover .show_name {
    color: #fff;
}

/* -------.album_class_page & .album_info_page ---------*/
.album_class_page .show_content,
.album_info_page .show_content {
    display: flex;
    flex-direction: column;
}

/* 查看更多 */
.other_album {
    border-bottom: dashed 1px #b7b7b7;
    margin-bottom: 20px;
}
.album_fixed_title {
    display: none;
    background: transparent;
}
.other_album_choice li {
    background: transparent;
    border-radius: 0;
    padding: 5px 0;
    margin: 0;
}
.other_album_choice li a {
    color: #888888;
    padding: 12px 0;
}
.other_album_choice li a:before {
    content: '/';
    color: #888888;
    margin: 0 6px 0 4px;
}
.other_album_choice li:first-of-type a:before {
    display: none;
}
.other_album_choice li a i.fa-solid.fa-right-from-bracket {
    display: none;
}
.other_album_choice li a:hover {
    color: #c5cac0;
}

/* 頁碼 */
.other_album {
    order: 1;
}
.subalbum-menu,
.pic-list {
    order: 2;
}
.album_class_page ul.page,
.album_info_page ul.page {
    order: 3;
}


/* .album_class_page */
.subalbum-menu h2 {
    color: #238966;
}
.other_subalbum li a p {
    position: absolute;
    left: 20px;
    bottom: 15px;
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: normal;
    color: #fff;
    letter-spacing: 1px;
}


/* .album_class_page - hover */


/* .album_info_page */
.pic-list {
    grid-template-columns: repeat(4,1fr);
}
.pic-list .show_pic {
    border-radius: 15px;
}
.pic-list .show_pic::after {
    content: '';
    display: block;
    position: absolute;
    background-image: url(https://pic03.eapple.com.tw/wubaotree/maximize.svg);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    opacity: 0;
}
.album_info_page .other_album {
    margin-bottom: 50px;
}

/* .album_info_page - hover */
.pic-list .item .show_pic::after,
.pic-list .item:hover .show_pic::after {
    transition: ease .4s;
}
.pic-list .item:hover .show_pic::after {
    animation: appearance 1.5s infinite alternate;
    opacity: 1;
}

@keyframes appearance {
    0% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }

    50% {
        transform: translate(-50%, -50%) scale(1);
        opacity: .7;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

@media screen and (max-width: 1200px) {
    .show-list,
    .pic-list {
        grid-template-columns: repeat(3,1fr);
    }
}

@media screen and (max-width: 768px) {
    .show-list,
    .pic-list {
        grid-template-columns: repeat(2,1fr);
    }
}

@media screen and (max-width: 400px) {
    .show-list,
    .pic-list {
        grid-template-columns: repeat(1,1fr);
    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 文章管理 */

/* ----blog_page---- */
.blog_box {
    display: flex;
    justify-content: space-between;
}
.blog_ri {
    order: 1;
}
.blog_le {
    order: 2;
}

/* 文章分類 */
h5.blog_le_t {
    display: none;
}
.blog_search {
    margin-bottom: 30px;
}
.blog_search input[type=search] {
    border: 0;
    border-bottom: solid 1px #c7c7c7;
    border-radius: 0;
    background: transparent;
}
.blog_search input[type=submit] {
    background: url(https://pic03.eapple.com.tw/wubaotree/hd_search.svg) no-repeat center transparent;
}
.blog_le {
    width: 250px;
}
.blog_le .accordion {
    font-family: "Comme", serif, 'Noto Sans TC', sans-serif;
    border: 0;
    background: #fff;
    padding: 10px 15px;
}
.accordion li .link a {
    font-size: 15px;
    font-weight: normal;
    color: #4D4D4D;
}
.blog_le .accordion li .link i {
    font-size: 14px;
}
.accordion li .link a,
.submenu a {
    letter-spacing: .05em;
}
.submenu {
    background: transparent;
}
.submenu li+li {
    border-top: 0;
}
.submenu a i {
    display: none;
}
.accordion li .link a,
.submenu a {
    letter-spacing: .05em;
}
.accordion li+li .link {
    border: 0;
}
.fa-chevron-down::before {
    content: "\2b";
}
.blog_le .accordion li.open i.fa-chevron-down::before {
    content: "\f068";
    transform: rotate(-180deg);
}
.fa-chevron-down::before,
.blog_le .accordion li.open i.fa-chevron-down::before {
    transition: all .3s;
}

/* 文章列表 */
h4.blog_category_title {
    font-size: 26px;
    color: #3E3A39;
}
.blog_subbox {
    display: flex;
    flex-direction: column;
    grid-gap: 0;
    margin-right: 50px;
}
.subbox_item a {
    grid-template-columns: 180px 1fr;
    grid-gap: 40px;
    align-items: center;
}
.subbox_item a::before,
.subbox_item a:after {
    display: none;
}
.subbox_item {
    margin-bottom: 30px;
}
.blog_list_le {
    border-radius: 15px;
    overflow: hidden;
}
.blog_list_ri em {
    position: absolute;
    top: 0;
    right: 0;
    color: #888888;
}
.blog_list_ri em:before {
    content: "";
    width: 100%;
    height: 7px;
    background: #d5e5a3;
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: -1;
}
.blog_list_ri p {
    letter-spacing: 0.02em;
    line-height: 150%;
    margin-top: 15px;
}

/* ----blog_page-hover---- */

/* 文章分類-hover */
.blog_le .accordion > li.on_this_category {
    color: #238966 !important;
    background: transparent !important;
} /* 當前分類 */
.blog_le .accordion > li:hover {
    color: #238966;
    background: transparent !important;
} /* 點擊分類 */
.blog_le .accordion > li:hover .link {
    color: #238966 !important;
} /* 當前分類 */
.blog_le .accordion > li:hover .link a, 
.blog_le .accordion > li.on_this_category .link a {
    color: #238966 !important;
}
.blog_le .accordion > li.on_this_category .link i {
    color: #238966 !important;
} /* 當前分類 */
.blog_le .accordion > li:hover .link i {
    color: #238966 !important;
} /* 點擊分類 */

.submenu li.on_this_category a, 
.submenu a:hover {
    background: transparent;
    color: #238966;
    padding: 12px 12px 12px 32px;
}
/* 文章列表-hover */
.subbox_item a:hover:not(.blog_list_ri h5) {
    opacity: .7;
}
.subbox_item a:hover .blog_list_ri h5 {
    color: #238966;
}



/* ----blog_in_page---- */
.blog_in_page .blog_box {
    display: grid;
}
.blog_back * , 
.lastPage * {
    transition: all .3s;
}
.article_related_list * {
    transition: 1s .5s cubic-bezier(0.42, 0, 0.02, 0.92);
}
.blog_shareData {
    flex-direction: row;
}
.blog_back {
    grid-column: span 2;
    order: 3;
    width: 500px;
    padding-top: 50px;
    margin: 0 auto;
}
.blog_back a.article_btn_prev, 
.blog_back a.article_btn_next {
    background: transparent;
    color: transparent;
    position: relative;
}
.blog_back a.article_btn_back {
    position: relative;
    color: #888888;
    font-weight: bold;
    letter-spacing: 2px;
    background: transparent;
}
.blog_back a.article_btn_prev:before, .blog_back a.article_btn_next:before {
    display: block;
    position: absolute;
    width: 25px;
    top: 30%;
    aspect-ratio: 25 / 14;
    background-repeat: no-repeat;
}
.blog_back a.article_btn_prev:before {
    content: "";
    background-image: url(https://pic03.eapple.com.tw/wubaotree/left-arrow.svg);
    right: 20px;
}
.blog_back a.article_btn_next:before {
    content: "";
    background-image: url(https://pic03.eapple.com.tw/wubaotree/right-arrow.svg);
}


/* 相關文章 */
.news_related *,
.news_related li a figure::before,
.news_related li a figure::after,
.news_related li a figure:hover::before,
.news_related li a figure:hover::after {
    transition: all ease-in .3s;
}
.news_related {
    background: #F7F5F2;
    padding: 50px 15px 25px 15px;
    margin: 0 auto;
}
.news_related h6 {
    max-width: 1300px;
    font-size: 16px;
    border-bottom: 1px solid #4D4D4D;
    padding: 10px 10px;
    margin: 20px auto;
}
.news_related h6 span:before {
    font-family: 'Noto Sans TC', sans-serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #4D4D4D;
}
.news_related li a {
    background: transparent;
}
.news_related li figure {
    position: relative;
    border-radius: 15px;
}
.news_related li a p {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    text-align: left;
    letter-spacing: 1px;
    line-height: 1.5;
    margin-top: 15px;
}
.news_related li a figure::before,
.news_related li a figure::after {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.news_related li a figure::before {
    content: '';
    width: 100%;
    height: 100%;
    background: rgb(79 79 79 / 40%);
    opacity: 0;
}
.news_related li a figure::after {
    content: '詳細資料';
    font-size: 16px;
    color: #fff;
    letter-spacing: 3px;
    opacity: 0;
}

/* ----blog_in_page-hover---- */
.blog_back a:hover {
    opacity: .7;
}

@media screen and (max-width: 900px) {
    .blog_le {
        width: 220px;
    }
    .blog_subbox {
        margin-right: 20px;
    }
}

@media screen and (max-width: 768px) {
    .blog_box {
        flex-direction: column;
    }
    .blog_le {
        width: 100%;
        order: 1;
    }
    .blog_search {
        margin-bottom: 0;
    }
    .blog_ri {
        order: 2;
    }
    .blog_in_page .blog_box {
        display: flex;
    }
    .blog_back {
        width: auto;
        max-width: 300px;
    }
}

@media screen and (max-width: 600px) {
    .blog_page .main_part {
        padding: 20px 10px 10px;
    }
    .subbox_item a {
        grid-template-columns: 160px 1fr;
        grid-gap: 20px;
    }
}

@media screen and (max-width: 480px) {
    .subbox_item a {
        grid-template-columns: 160px 1fr;
        grid-gap: 20px;
    }
    .blog_list_ri {
        padding: 30px 0 5px 0;
    }
    .blog_list_ri h5 {
        font-size: 18px;
    }
}

@media screen and (max-width: 380px) {
    .subbox_item a {
        grid-template-columns: 1fr;
    }
    .blog_list_ri {
        display: flex;
        flex-direction: column;
        padding: 0;
    }
    .blog_list_ri h5 {
        margin-top: 10px;
        order: 2;
    }
    .blog_list_ri em {
        position: relative;
        width: fit-content;
        margin-left: auto;
        order: 1;
    }
    .blog_list_ri p {
        margin-top: 10px;
        order: 3;
    }
}

/* = = = 促銷方案 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
.other_promotion {
    grid-template-columns: repeat(2,1fr);
    grid-gap: 15px 35px;
}
.promotion_title span {
    position: relative;
    color: #3E3A39;
    border: 0;
}
.promotion_title span::before {
    content: "";
    width: 100%;
    height: 7px;
    background: #d5e5a3;
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: -1;
}
.promotion_title em {
    display: none;
}
.promotion_title h2 {
    display: block;
    color: #238966;
}
.other_promotion li {
    overflow: hidden;
}
.other_promotion li a {
    border: 0;
    border-bottom: 1px #c1b2a5 dashed;
}
.other_promotion li a:before {
    display: none;
}
.other_promotion li a:after {
    content: 'read more +';
    right: -10px;
    bottom: 15px;
    width: auto;
    height: auto;
    text-align: right;
    border: 0;
    transition: all .3s;
}
.other_promotion .pmtTime span {
    float: left;
    position: relative;
    font-size: 13px;
    color: #3E3A39;
}
.other_promotion .pmtTime span:before {
    content: "";
    width: 100%;
    height: 7px;
    background: #d5e5a3;
    position: absolute;
    bottom: 1px;
    left: 0;
    z-index: -1;
}
.pmtTitle span {
    display: none;
}
.other_promotion .pmtTitle h3 {
    width: calc(100% - 80px);
}


/* hover */
.other_promotion li a * {
    transition: all .3s;
}
.other_promotion li a:hover {
    background: transparent;
    border-bottom: 1px #238966 dashed;
}
.other_promotion li a:hover:after {
    width: auto;
    height: auto;
    padding-right: 12px;
    transition: all .3s;
}
.other_promotion li a:hover:after,
.other_promotion li a:hover .pmtTitle h3 {
    color: #238966;
}
.other_promotion li a:hover .pmtTime span {
}


@media screen and (max-width: 768px) {
    .promotions_page .show_content {
        padding: 10px;
    }
    .other_promotion {
        grid-template-columns: repeat(1,1fr);
    }
}


/* = = = 聯絡我們 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 左-聯絡資訊 */

/* 右-表單 */
.contact_form li .form__label {
    text-align: left;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* TOP按鈕 */
#to_top {
    width: 70px;
    height: 70px;
    font-family: "Signika Negative", serif;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 1px;
    background: #238966;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0);
    padding-top: 14px;
}
#to_top i.top {
    width: 19px;
    height: 25px;
    margin-bottom: 5px;
}
#to_top i.top:before, 
#to_top i.top:after {
    left: 0;
    width: 19px;
    height: 25px;
    transform-origin: 0% 0%;
}
#to_top i:before {
    content: "";
    display: block;
    transform: rotate(0);
    background-color: transparent;
    background-image: url(https://pic03.eapple.com.tw/wubaotree/top_arrow.svg);
    background-repeat: no-repeat;
    border: 0;
}
#to_top i:after {
    display: none;
}

/* 手機版置底按鈕 */
#bottom_menu li {
    border: 0;
}
#bottom_menu li a {
    display: flex;
    flex-direction: column;
    align-items: center;
}
#bottom_menu li a {
    color: #fff;
}
#bottom_menu li:nth-of-type(1) {
    background: #3E3A39;
}
#bottom_menu li:nth-of-type(1) a {
    color: #fff;
}
#bottom_menu li:nth-of-type(2) {
    background: #698C00;
}
#bottom_menu li:nth-of-type(3) {
    background: #238966;
}
#bottom_menu li a em {
    font-family: 'Noto Sans TC', sans-serif;
    letter-spacing: 2px;
}


@media screen and (max-width: 768px) {
    #to_top { bottom:65px;}
    .fa-cart-shopping::before {
        background: url(https://pic03.eapple.com.tw/wubaotree/hd_cart_w.svg);
    }
    .fa-credit-card::before {
        background: url(https://pic03.eapple.com.tw/wubaotree/hd_card_w.svg);
    }
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*--------內頁BANNER 設定----------*/

.banner {
    background-image: url(https://pic03.eapple.com.tw/wubaotree/banner.jpg);
	background-size: cover;
    background-repeat: no-repeat;
    height: 31vw;
}
.banner h5 {
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 500;
    color: #fff;
    letter-spacing: 3px;
    text-shadow: 3px 3px 15px #3f3f3f;
    margin-top: 90px;
}

/*促銷方案*/
.banner.banA {
    background-image: url(https://pic03.eapple.com.tw/wubaotree/banA.jpg);
    background-position-x: 50%;
}
.banner.banB {}

/*聯絡我們*/
.banner.banC {
}

/* 匯款通知 */
.banner.banD {
    background-image: url(https://pic03.eapple.com.tw/wubaotree/banD.jpg);
    background-position-x: 0%;
}

/*相簿管理/作品展示*/
.banner.banE {
    background-image: url(https://pic03.eapple.com.tw/wubaotree/banE.jpg);
    background-position-x: 60%;
}

/*商品展示*/
.banner.banF {
    background-image: url(https://pic03.eapple.com.tw/wubaotree/banF.jpg);
    background-position-x: 50%;
}

/*文章管理*/
.banner.banblog {
    background-image: url(https://pic03.eapple.com.tw/wubaotree/banblog.jpg);
    background-position-x: 50%;
}

@media screen and (max-width: 1300px) {
    .banner h5 {
        margin-top: 50px;
    }
}

@media screen and (max-width: 768px) {
    .banner h5 {
        margin-top: 0;
    }
}

@media screen and (max-width: 600px) {
    .banner h5 {
        font-size: 26px;
    }
}

@media screen and (max-width: 400px) {
    .banner h5 {
        font-size: 24px;
    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*一排呈現
.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; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */









