@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200..900&display=swap');
/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/

/*動畫入場text-----------------------------------*/
.bannerindex .swiper-slide:nth-child(1):before {
    content: "";
    background-image: url(https://pic03.eapple.com.tw/0902301888/text01.svg);
    height: 100%;
    width: 40%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    transform: translate(130%, 0%);
    opacity: 1;
    z-index: 999;
    position: absolute;
    animation: inside 2.5s;
    backdrop-filter: blur(1px);
}

/*----------------------------------------------------*/
.bannerindex .swiper-slide:nth-child(2):before {
    content: "";
    background-image: url(https://pic03.eapple.com.tw/0902301888/text02.svg);
    height: 100%;
    width: 33%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    transform: translate(105%, -1%);
    opacity: 1;
    z-index: 999;
    position: absolute;
    animation: inside 2.5s;
    backdrop-filter: blur(1px);
    animation-delay: 3.4s;
}

/*動畫在這裡---------------------------------------*/
@keyframes inside {
    0% {
        transform: translate(90%, -30%);
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/*上方選單解除滑動固定*/
/*.header_area.sticky { position:relative;}*/
.header_area {
    position: relative;
    background: #65513f;
    backdrop-filter: blur(10px);
}

.other_page.bodyDesktop .header_area {
    position: relative;
    background: #65513f;
}

/*首頁以外頁面顯示顏色*/
.other_select_page.bodyDesktop .header_area {
    position: relative;
    background: #65513f;
}

/*.nav-header:before {content: "";position: absolute;width: 280px;height: 200px;background: #fff;z-index: -2;transform: translate(0px, -20px);border-radius: 25px;transition: .7s;}*/
/*LOGO底下白色塊*/
/*header.header_area.sticky .nav-header:before {width: 200px;height: 120px;border-radius: 0px;transform: translate(0px, -6px);transition: .7s;}*/
/*白色移動縮放*/
header.header_area.sticky .nav-header {
    width: 90%;
    transition: .7s;
}

.header_area.sticky {
    width: 100%;
    z-index: 9999;
    background: #371d05c4;
    backdrop-filter: grayscale(1);
    transition: .7s;
    position: fixed;
}

.main_header_area .container {
    max-width: 1000px;
    margin: auto;
    transition: .7s;
}

.header_area.sticky .main_header_area .container {
    max-width: 1300px;
    transition: .7s;
}

/*移動時寬度縮放*/
/*---------------------*/
.navigation {
    width: 100%;
    position: relative;
    padding: 0;
    display: grid;
    grid-template-columns: 250px 1fr;
    grid-gap: 15px 20px;
}

/*-----------------*/
.stellarnav li.has-sub>a:before {
    content: '';
    margin-left: 10px;
    border-left: 0px solid #edcfa7;
    border-right: 1px solid #edcfa7;
    border-top: 0px;
    display: inline-block;
    position: absolute;
    top: 34%;
    right: 5px;
    height: 10px;
    transform: rotate(90deg);
    transition: .5s;
}

/*加號*/
.stellarnav li.has-sub>a:after {
    content: '';
    margin-left: 10px;
    border-left: 0px solid #edcfa7;
    border-right: 1px solid #edcfa7;
    border-top: 0px;
    display: inline-block;
    position: absolute;
    top: 35%;
    right: 5px;
    height: 10px;
    transform: translateY(0%);
    transition: .5s;
}

/*加號*/
.stellarnav>ul>li>a {
    transition: .5s;
    padding: 0;
    color: #edcfa7;
    font-weight: 100;
    letter-spacing: 2px;
    text-transform: lowercase;
    position: relative;
    display: inline-block;
    font-size: 16px;
    margin-left: 20px;
    text-align: center;
}

/*------------------------------------*/
.stellarnav li:hover.has-sub>a:before {
    transform: rotate(180deg);
    transition: .3s;
    height: 19px;
    top: 10px;
}

/*hover後加號變形*/
.stellarnav li:hover.has-sub>a:after {
    transform: rotate(36deg);
    top: 37%;
    right: 0px;
    height: 15px;
}

/*hover後加號變形*/
/*------------------------------------*/
.stellarnav>ul>li:hover>a {
    letter-spacing: 4px;
    transition: .5s;
}

/*字距動畫*/
.stellarnav>ul>li:before {
    position: absolute;
    content: "";
    background: #edcfa7;
    width: 0%;
    height: 1px;
    top: 35px;
    opacity: 0;
    transition: .5s;
}

/*底線動畫*/
.stellarnav>ul>li:hover:before {
    opacity: 1;
    transition: .5s;
    width: 70%;
    left: 20px;
}

/*底線動畫*/
/*--------------------------------------*/
.stellarnav ul ul {
    top: auto;
    width: 160px;
    position: absolute;
    z-index: 9900;
    text-align: left;
    background: #3b2c1ec4;
    backdrop-filter: blur(20px);
}

.stellarnav li li {
    display: block;
    border: 0px #eeeeee00 solid;
    border-bottom-width: 0;
}

.stellarnav li a {
    padding: 20px 10px;
    display: block;
    color: #edcfa7;
    transition: .5s;
}

/*選單*/
.stellarnav li li:hover>a {
    letter-spacing: 3px;
    transition: .5s;
}

/*第二層選單hover字距*/
/*------------------------------------------------------------------------------------*/
.box_link a {
    display: block;
    width: 43px;
    border: 0px;
    background: rgb(213 194 149);
    border-radius: 25px;
    padding: 5px;
    font-size: 24px;
    text-align: center;
    margin: 5px;
}

/*footer處聯絡資訊*/
i.fa-brands.fa-facebook-f {
    color: #fff;
}

/*顏色*/
i.fa-brands.fa-line {
    color: #fff;
}

/*顏色*/
i.fa-solid.fa-mobile-screen-button {
    color: #fff;
}

/*顏色*/
i.fa-regular.fa-envelope {
    color: #fff;
}

/*顏色*/
.box_link a:hover {
    transform: rotateY(360deg);
    transition: .5s;
}

/*旋轉效果*/
/*------------------------------------------------------------------------*/
.linksBtn {
    background-color: #fff;
    transition: .5s;
}

/*浮動按鈕*/
.info_fix:hover>.linksBtn {
    background: #fff;
}

/*浮動按鈕hover*/
.fa-lightbulb::before {
    content: "";
    background: url(https://pic03.eapple.com.tw/0902301888/coffee-bean.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
    position: absolute;
    right: 23px;
    top: 7px;
    transition: .5s;
}

/*A狀態*/
.fa-xmark::before {
    content: "";
    background: url(https://pic03.eapple.com.tw/0902301888/coffee-bean.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 22px;
    height: 22px;
    position: absolute;
    right: 24px;
    top: 229px;
    transition: .5s;
    transform: rotate(45deg);
}

/*B狀態*/
/*--------------------------------*/
.info_fix_links a.info_fix_default:nth-child(1) {
    border-radius: 12px 12px 0 0;
}

.info_fix_links a:nth-child(5) {
    border-radius: 0 0 12px 12px;
}

.info_fix_links:before {
    content: "";
    position: absolute;
    border-left: 10px solid #ffffff00;
    border-right: 10px solid #ffffff00;
    border-top: 12px solid #fff;
    position: absolute;
    top: 250px;
}

.info_fix_links a {
    display: flex;
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 0px;
    transition: .5s;
    background: #ffffff;
    margin-bottom: 0px;
    font-size: 1.6em;
    justify-content: center;
    align-items: center;
    align-content: center;
    line-height: 1;
}

i.fa-brands.fa-facebook-f {
    color: #65513f;
}

/*浮動按鈕臉書*/
i.fa-brands.fa-line {
    color: #65513f;
}

/*浮動按鈕賴*/
i.fa-solid.fa-mobile-screen-button {
    color: #65513f;
}

/*浮動按鈕電話*/
i.fa-regular.fa-envelope {
    color: #65513f;
}

/*浮動按鈕信箱*/
.info_fix_links a:hover {
    background: #ffffff;
}

.info_fix_links a>i {
    transition: .3s;
}

/*浮動按鈕動畫*/
.info_fix_links img:hover {
    transform: rotate(20deg);
    transition: .3s;
}

.info_fix_links a:hover>i {
    transform: rotate(20deg);
    transition: .3s;
}

.tp_links>a>i.fa-brands.fa-line {
    color: #fff;
}

/*補上面的缺失顏色*/
/*--------------------------------------------------------------------*/
.me_tp_features a {
    color: #fff;
}

.tp_links a {
    font-size: 16px;
    color: #fff;
}

.copy {
    text-align: center;
    padding: 7px 0;
    font-size: 13px;
    color: #91886c;
    background: #33271e;
    border-top: 0px #ddd solid;
    margin-top: 15px;
}

/*----------------------------------------------------------------------*/
.footer {
    padding: 70px 0 0;
    font-size: 13px;
    background: url(https://pic03.eapple.com.tw/0902301888/footer.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    background-position: center;
}

.footer_logo {
    filter: brightness(20);
    display: inline-block;
    vertical-align: top;
    max-width: 220px;
    margin: 0;
    grid-column: 4 / -4;
}

.footer_info {
    padding: 0;
    display: grid;
    grid-template-columns: 150px 1fr;
    grid-gap: 30px;
    padding-right: 0px;
}

.footer_info li {
    display: block;
    padding: 0px;
    padding-bottom: 20px;
}

.footer_info li:nth-child(1) {
    padding-left: 8px;
}

/*對齊上面*/
.footer_info li p {
    line-height: 175%;
    letter-spacing: 2px;
    color: #edcfa7;
}

.footer_info li p a {
    color: #edcfa7;
    letter-spacing: 2px;
}

.footer_info li:nth-child(1):after {
    content: "營業時間：週一至週五 09:00–18:00 週六 10:00–17:00 週日 10:00–15:00";
    line-height: 175%;
    letter-spacing: 2px;
    color: #edcfa7;
}

/*--------------------------------------------------------*/
.footer_menu a {
    letter-spacing: 2px;
    display: inline-block;
    padding: 10px 10px;
    border: 0px #ccc solid;
    margin: 0 20px 10px 0;
    font-size: 14px;
    line-height: 100%;
    color: #ffffff;
    background: rgb(0 0 0 / 0%);
    transition: .5s;
}

/*主選單*/
.footer_menu a:hover {
    background: #0e0e0e4d;
    padding: 10px;
    transition: .5s;
    color: #fff;
    letter-spacing: 3px;
}

.footer_menu a:before {
    content: "";
    background: #fff;
    position: absolute;
    width: 0%;
    height: 1px;
    top: 90%;
    opacity: 0;
    transition: .5s;
}

.footer_menu a:hover:before {
    opacity: 1;
    transition: .5s;
    width: 5%;
    top: 90%;
}

.double_key {
    grid-column: 1 / 3;
}

/*-----首頁最新資訊------*/
.module_i_news {
    padding: 50px 20px;
    background-color: #3b3226;
}

.module_i_news .title_i_box h4 {
    font-size: 25px;
    color: #fff3df;
    letter-spacing: 2px;
    font-weight: 900;
}

.i_blog_le {
    display: none;
}

.module_i_news ul {
    list-style: none;
    display: flex;
    grid-gap: 25px;
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
}

.module_i_news li {
    display: flex;
    text-align: center;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
}

.module_i_news li a {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
}

.i_blog_le {
    display: none;
}

.i_blog_ri {
    display: flex;
    grid-gap: 20px;
    vertical-align: top;
    padding: 5px;
    max-width: 1200px;
    flex-direction: row;
    justify-content: space-evenly;
}

.i_blog_ri h5 {
    font-weight: 500;
    font-size: 20px;
    color: #ffffff;
    display: flex;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
}

.i_blog_ri em {
    order: 3;
    font-size: 14px;
    color: #edcfa7;
    font-style: normal;
    display: flex;
    margin: 5px 0;
    flex-direction: row;
}

.i_blog_ri p {
    max-width: 600px;
    font-size: 15px;
    color: #b3a08e;
    line-height: 300%;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    word-break: break-all;
}

.animated-arrow {
    background: #af8967;
    color: #fff7e0;
}

.module_i_news li a:before {
    content: 'READ MORE';
    position: absolute;
    z-index: 19;
    bottom: 35%;
    right: 45%;
    opacity: 0;
    text-align: center;
    font-size: 15px;
    color: #9b7e59;
    transition: all .6s;
}

.module_i_news li a:after {
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 8;
    background: rgba(255, 255, 255, 0.8);
    opacity: 0;
    border: 1px #dddddd00 solid;
    transition: all .6s;
}

/*-----------咖啡豆商品--------------------------*/
#content {
    background: url(https://pic03.eapple.com.tw/0902301888/bcg1.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
}

/*背景圖片*/
.prod_part {
    background-color: #3b3226;
    padding: 50px 20px;
}

.products-list .name {
    font-size: 15px;
}

body.pageIndex .products-list .name {

    color: #fff3df;
}

.i_prod_tit span,
.i_video_tit span {
    font-size: 25px;
    color: #fff3df;
    letter-spacing: 2px;
    font-weight: 900;
}

.product-layer-two li a {
    position: relative;
    border: 0px #391911 solid;
    background: #d5c295;
    padding: 7px 16px;
    display: block;
    font-size: 16px;
    color: #391911;
}

/* 商品下拉超過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個--結束 */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.box_search input[type=text] {
    border: solid 0px #ffffff;
}

.shop_search_btn {
    background: #4a3a29
}

.prod_related h6 span:before {
    content: '相關推薦';
    font-size: 25px;
    color: #4a3a28;
}

.prod_related {
    background: #f9f4e2;
    padding: 25px 15px;
}

.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 li a {
    padding: 5px 10px;
}

.product-layer-two li li:hover>a {
    background: #fff;
    color: #ad925e;
}

.product-layer-two>li {
    width: 100%;
    max-width: 100%;
    padding: 0;
    text-align: left;
    border-bottom: 1px dotted #ccc;
    padding-bottom: 5px;
}

.product-layer-two>li ul>li+li {
    margin-top: 5px;
}

.product_info_page .product-layer-two {
    display: none;
}

.product_info_page .products-list,
.product-wrapper {
    width: 100%;
}

.product-layer-two li li:hover {
    margin-left: 15px;
}

.product-layer-two li li>a:before {
    content: "";
    position: absolute;
    width: 12px;
    height: 8px;
    background: transparent;
    left: 0;
    margin-left: -20px;
    top: 50%;
    margin-top: -4px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.product-layer-two li li:hover>a:before {
    background: #ad925e;
}

.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;
}

@media screen and (max-width: 1200px) {}

@media screen and (max-width: 980px) {}

@media screen and (max-width: 768px) {

    .product_menu_list,
    .products-list,
    .product-wrapper {
        width: 100%;
    }

    .product-layer-two {
        margin-right: 0;
        grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
        grid-gap: 5px;
    }

    .product_page .product-layer-two,
    .product_page .products-list {
        width: 100%;
        border-right: none;
    }

    .product_page .product_menu_list>h5 {
        display: block;
    }

    .product_page .show_content>a {
        order: 1;
    }

    .product_page ul.products-list {
        order: 2;
        grid-template-columns: 1fr 1fr;
    }

    .pageIndex .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;
    }

    .contact_content .information_right {
        padding-left: 0px;
        width: -webkit-fill-available;
    }

    /*表單調整*/
}

@media screen and (max-width: 600px) {}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#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;
    }
}

/*----------------------------RWD-------------------------*/
@media screen and (max-width: 1300px) {
    .footer .center {
        position: relative;
        max-width: 1000px;
    }
}

@media screen and (max-width: 1024px) {
    .nav-header {
        width: 75%;
    }

    .box_link {
        display: none;
    }

    .footer .center {
        position: relative;
        max-width: 900px;
    }

    .footer_info {
        grid-template-columns: 30px 1fr;
    }
}

@media screen and (max-width: 800px) {
    .navigation {
        width: 100%;
        position: relative;
        padding: 0;
        display: flex;
        grid-gap: 15px 20px;
    }

    .nav-header:before {
        display: none;
    }

    .nav-brand {
        filter: brightness(20);
    }
}

@media screen and (max-width: 768px) {
    .navigation {
        grid-gap: 0px;
    }

    .stellarnav.mobile {
        position: absolute;
        left: 10px;
        top: 30px;
        width: auto;
        display: inline-block;
    }

    .stellarnav .menu-toggle:after {
        content: 'MENU';
        font-size: 13px;
        color: #edcfa7;
        display: block;
        transform: scale(0.9);
    }

    .stellarnav .menu-toggle span.bars span {
        display: block;
        width: 24px;
        height: 3px;
        border-radius: 6px;
        background: #edcfa7;
        margin: 0 auto 6px;
    }

    .stellarnav.mobile.right .close-menu,
    .stellarnav.mobile.left .close-menu {
        display: inline-block;
        text-align: right;
        font-size: 12px;
        background: #372a2300;
        color: #edcfa7;
    }

    .stellarnav.mobile.right>ul,
    .stellarnav.mobile.left>ul {
        position: relative;
        display: inline-block;
        top: 0;
        bottom: 0;
        width: 100%;
        max-width: 280px;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 9999;
        border-right: 0px #edcfa7 solid;
        background: #372a23cf;
    }

    .stellarnav.mobile>ul>li {
        display: block;
        border-bottom: 0px;
    }

    .stellarnav.mobile li a {
        border-bottom: 0px;
    }

    .stellarnav a.dd-toggle .icon-plus:before {
        border-bottom: solid 3px #edcfa7;
    }

    .stellarnav a.dd-toggle .icon-plus:after {
        border-bottom: solid 3px #edcfa7;
    }

    .stellarnav .icon-close:before {
        border-bottom: solid 3px #edcfa7;
    }

    .stellarnav .icon-close:after {
        border-bottom: solid 3px #edcfa7;
    }

    .stellarnav.mobile li.open {
        background: #372a2300;
        padding: 0px;
    }

    .stellarnav.mobile ul ul {
        background: #372a2300;
    }

    .stellarnav li.has-sub>a:before {
        display: none;
    }

    .footer .center {
        position: relative;
        max-width: 700px;
    }

    .footer_info {
        padding: 0;
        display: flex;
        grid-gap: 30px;
        padding-right: 0px;
        flex-direction: column;
        align-items: center;
    }

    .footer_info li {
        text-align: center;
    }
}

.other_promotion {
    display: none;
}

.page {
    margin: 0px auto;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {}

.banner h5 {
    font-family: 'noto serif tc';
    padding-left: 60px;
    display: grid;
    filter: drop-shadow(1px 1px 0px #ffffff) drop-shadow(1px 1px 0px #ffffff) drop-shadow(1px 1px 0px #ffffff);
}

.banner.banA {
    display: none;
}

/*烘豆介紹*/
.promotion_title {
    display: none;
}

/*烘豆介紹標題隱藏*/
.banner.banB {
    display: none;
}

/*服務項目*/
.banner.banblog {
    background: url(https://pic03.eapple.com.tw/0902301888/banner_all.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/*最新資訊*/
.banner.banC {
    background: url(https://pic03.eapple.com.tw/0902301888/banner_all.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.banner.banD {}

.banner.banE {}

.banner.banF {
    background: url(https://pic03.eapple.com.tw/0902301888/banner_all.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.banner.banblog {}

@media screen and (max-width: 768px) {

    .banner.banblog,
    .banner.banC,
    .banner.banF {
        background-position: top center;

    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*------------------------------最新資訊--------------------------------*/
.banner h5 {
    color: #4a3a28;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 3px;
    position: relative;
    width: 100%;
    line-height: 1;
    width: auto;
    text-align-last: justify;
}

.banner h5:before {
    content: '';
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 50px;
    background-image: url(https://pic03.eapple.com.tw/0902301888/banner_logo.png);
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 10px;
    vertical-align: bottom;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.banner h5:after {
    content: '專業精品咖啡烘豆坊';
    width: 100%;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 10px;
    vertical-align: bottom;
    font-size: 14px;
    letter-spacing: 0.3em;
    margin-top: 5px;
}

.blog_search input[type=search] {
    outline: none;
    box-sizing: border-box;
    width: 100%;
    font-size: 14px;
    color: #ffffff;
    border: solid 0px #ccc;
    border-radius: 6px;
    padding: 10px 35px 10px 10px;
}

h5.blog_le_t {
    font-size: 30px;
    font-weight: 500;
    color: #453e37;
    font-family: serif;
    letter-spacing: 9px;
    margin-bottom: 25px;
    position: relative;
    text-align: center;
}

.blog_le .accordion {
    border: 0px;
    border-radius: 6px;
}

.accordion li .link a {
    transition: .5s;
}

.blog_le .accordion>li:hover .link a,
.blog_le .accordion>li.on_this_category .link a {
    color: #fff !important;
    background: #453e37;
}

.accordion li+li .link {
    border-top: 0px;
}

.subbox_item a:before {
    content: 'READ MORE';
    position: absolute;
    z-index: 19;
    bottom: 10px;
    right: 10px;
    opacity: 0;
    font-size: 15px;
    color: #6b5b4d;
    transition: all .6s;
}

.subbox_item a:after {
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 8;
    background: #4444442e;
    opacity: 0;
    border: 1px #6b5b4d solid;
    transition: all .5s;
}

.blog_list_ri h5 {
    font-weight: 800;
    font-size: 20px;
    color: #6b5b4d;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
}

.blog_list_ri p {
    font-size: 15px;
    color: #6b5b4d;
    line-height: 200%;
    letter-spacing: 1px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    word-break: break-all;
}


/*一排呈現
.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: 768px) {

    /* 開啟手機板下方按鈕所需設定 */
    .footer.with_shopping_mode {
        padding: 30px 0 60px;
    }

    #to_top {
        bottom: 60px;
    }
}

@media screen and (max-width: 600px) {}