@charset "utf-8";
/*chicken888-雞哥嫂放山黑羽雞*/

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
@import url('https://fonts.googleapis.com/css2?family=Advent+Pro:ital,wght@0,100..900;1,100..900&family=Alumni+Sans+Pinstripe:ital@0;1&family=El+Messiri:wght@400..700&family=Kiwi+Maru&family=M+PLUS+Rounded+1c&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+TC:wght@100..900&family=Noto+Serif+JP:wght@300&family=Noto+Serif+TC:wght@200..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Shippori+Mincho&family=Yuji+Mai&family=Zen+Kaku+Gothic+New&family=Zen+Maru+Gothic&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Advent+Pro:ital,wght@0,100..900;1,100..900&family=Alumni+Sans+Pinstripe:ital@0;1&family=El+Messiri:wght@400..700&family=Kiwi+Maru&family=M+PLUS+Rounded+1c&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+TC:wght@100..900&family=Noto+Serif+JP:wght@300&family=Noto+Serif+TC:wght@200..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Shippori+Mincho&family=Yuji+Mai&family=Zen+Kaku+Gothic+New&family=Zen+Maru+Gothic&display=swap');

* {
    font-family: "Noto Serif TC", serif;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*反白顏色*/
::-moz-selection {
    background-color: #3F5929;
    color: #fff;
}

::selection {
    background-color: #3F5929;
    color: #fff;
}

/*滾輪顏色*/
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 8px #FFDD79;
}

::-webkit-scrollbar-thumb {
    background-color: #677D6D;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
.linksBtn {
    display: none;
}

.edit_part {
    padding: 0;
}

.header_area.sticky {
    backdrop-filter: blur(4px);
    background: #66666642;
    transition: all .5s ease;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*大圖*/
.pageIndex .swiper-slide {
    position: relative;
}

/*因為偽元素，所以要加的*/
.swiper-slide:before,
.swiper-slide:after {
    content: "";
    position: absolute;
    z-index: 999;
    pointer-events: none;
}

/*before+after依樣要寫的內容拆出來寫一起，要寫在個別下方也可以*/
/*第一張大圖的偽元素*/


.pageIndex .swiper-slide:nth-child(1):before {
    background: url(https://pic03.eapple.com.tw/boboge/crystal.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: 19%;
    left: 55%;
    width: 32% !important;
    height: 0 !important;
    background-position: left;
    padding-bottom: calc(100% / 2 * 0.7);
}

.pageIndex .swiper-slide:nth-child(1):after {
    background: url(https://pic03.eapple.com.tw/boboge/banner_ac2.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: 45%;
    left: 60%;
    width: 27%;
    height: 0 !important;
    background-position: left;
    padding-bottom: calc(100% / 2 * 0.18);
}


/*第二張大圖的偽元素*/

.pageIndex .swiper-slide:nth-child(2):before {
    background: url(https://pic03.eapple.com.tw/boboge/crystal2.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: 35%;
    left: 8%;
    width: 30% !important;
    height: 0 !important;
    background-position: left;
    padding-bottom: calc(100% / 2 * 0.4);
}

.pageIndex .swiper-slide:nth-child(2):after {
    background: url(https://pic03.eapple.com.tw/boboge/banner_ac1.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: 45%;
    left: 10%;
    width: 27%;
    height: 0 !important;
    background-position: left;
    padding-bottom: calc(100% / 2 * 0.18);
}

.pageIndex .swiper-slide.swiper-slide-active:nth-child(1):before {
    animation: jump 2.1s infinite linear alternate;
}

.pageIndex .swiper-slide.swiper-slide-active:nth-child(2):before {
    animation: jump 2.1s infinite linear alternate;
}

.pageIndex .swiper-slide.swiper-slide-active:nth-child(1):after {
    animation: slide-top 2s 0.3s both;
}

.pageIndex .swiper-slide.swiper-slide-active:nth-child(2):after {
    animation: slide-left 2s 0.3s both;
}

/*文字出現特效*/
@keyframes slide-left {
    0% {
        -webkit-transform: translateX(-5%);
        /* 一開始的位置 在X-100(最下方)*/
        transform: translateX(-5%);
        opacity: 0;
        /*透明度0*/
    }

    100% {
        -webkit-transform: translateX(0);
        /* 跑到最後終止的位置 在X-0(最上方)*/
        transform: translateX(0);
        opacity: 1;
        /*透明度顯示*/
    }
}

@keyframes slide-top {
    0% {
        -webkit-transform: translateY(-20%);
        /* 一開始的位置 在Y-100(最下方)*/
        transform: translateY(-20%);
        opacity: 0;
        /*透明度0*/
    }

    100% {
        -webkit-transform: translateY(0);
        /* 跑到最後終止的位置 在Y-0(最上方)*/
        transform: translateY(0);
        opacity: 1;
        /*透明度顯示*/
    }
}

/*上下浮動*/
@keyframes jump {
    0% {
        -webkit-transform: translateY(5%);
        transform: translateY(5%);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes run01 {
    0% {
        background-position-x: 200px;
    }

    100% {
        background-position-x: -30px;
    }
}

.pageIndex #page .swiper-slide img {
    height: auto;
    transform: scale(1);
    animation: banner-img 2.8s forwards;
    animation-delay: 3s;
}

@keyframes banner-img {
    0% {
        opacity: 0.5;
        transform: scale(1.2);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/* 頁面的麵包屑 首頁/頁面名稱/ */
.path {
    display: none;
}

/*首頁+聯絡按鈕*/
.animated-arrow {
    background: transparent;
    color: #9f9aa0;
    border-bottom: 1px #9f9aa0 solid;
}

.swiper-pagination {
    display: none;
    left: 50%;
    margin-left: 0;
    transform: translate(-50%, 0);
}


/*預設解除背景輪播*/
#content_main {
    margin: 0;
    background: #f8f3ef;
}

.pageIndex .bannerindex {
    position: relative;
    height: auto;
}

.pageIndex .swiper-banner {
    position: static;
    margin: 0;
    height: auto;
}

.pageIndex .swiper-slide img {
    height: auto;
    animation: none !important;
    transform: scale(1.011);
}

@media screen and (max-width: 768px) {
    .pageIndex .bannerindex {
        position: relative;
        height: 0;
    }

    .pageIndex .swiper-banner {
        position: relative;
        margin: 0;
        height: auto;
    }

    .pageIndex .bannerindex {
        padding-bottom: 71vw;
        background-size: cover;
    }

    .pageIndex .swiper-banner .swiper-slide img {
        max-width: 200%;
        height: auto;
        width: 142%;
    }

    .pageIndex .swiper-wrapper .swiper-slide {
        display: flex;
        justify-content: center;
    }

    .pageIndex .swiper-wrapper .swiper-slide::after,
    .pageIndex .swiper-wrapper .swiper-slide::before {
        top: 40%;
        width: 87% !important;
        height: 75px !important;
        left: 10%;
    }

    .blog_le a.news_menu_toggle {
        display: block;
    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*選單設定*/
.nav-menu {
    margin: 0;
}

.header_area .main_header_area .container {
    max-width: 85%;
    transition: all 0.3s;
}

.header_area.sticky .main_header_area .container {
    max-width: 80%;
    transition: all 0.3s;
}

.nav-menu>li:not(.tp_links) {
    padding-right: 15px;
}

.tp_links {
    display: none;
}

.nav-menu>li:hover>a,
.nav-menu>li.active>a,
.nav-menu>li.focus>a {
    color: #2B3047;
}

.me_tp_features {
    width: 100%;
    text-align: right;
    display: none;
}

.nav-dropdown>li:hover>a,
.nav-dropdown>li.focus>a {
    color: #2B3047;
}

.nav-dropdown>li {
    text-align: center;
}

.nav-header {
    position: absolute;
    top: 50%;
    z-index: 98999999;
    transform: translate(0, -50%);
    transition: all 0.5s;
}

.sticky .nav-header {
    top: 55px;
    transition: all 0.5s;
}


.pageIndex .nav-header::before {
    top: -100px;
    opacity: 1;
    transition: all 0.3s;
    transition-delay: 0.5s;
}

.sticky .nav-header::before {
    top: 50%;
    opacity: 1;
    transition: all 0.3s;
    transition-delay: 0.5s;
}

.nav-header::after {}

.nav-header:hover:after {
    animation-play-state: paused;
    transition: all 0.3s;
}

.nav-header:hover:before {
    transition: all 0.3s;
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}





@keyframes upDown {
    0% {
        margin-top: -10px;
        margin-bottom: 10px;
    }

    100% {
        margin-top: 0;
        margin-bottom: 0;
    }
}

@-webkit-keyframes upDown {
    0% {
        margin-top: -10px;
        margin-bottom: 10px;
    }

    100% {
        margin-top: 0;
        margin-bottom: 0;
    }
}

/*icon-----------------------------------------------------------------------*/



.header_area {
    position: fixed;
    z-index: 9999;
    width: 100%;
    padding: 0 6%;
    top: 0;
    background: transparent;
    transition: all 0.7s;
}

.header_area.sticky {
    top: 0px;
    background: transparent;
    transition: all 0.7s;
}

.main_header_area {
    position: relative;
    background: #06433b;
    border-radius: 0px 0px 50px 50px;
}


.header_area.sticky .main_header_area::before {
    height: 100%;
    top: 0;
    border-radius: 0px 0px 50px 50px;
    transition: all 0.85s cubic-bezier(0.68, 0.1, 0.265, 1);
}

.stellarnav li.has-sub>a:after {
    display: none;
}

.stellarnav>ul>li>a {
    padding: 0px 15px;
    color: #ffdc90;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 50px;
    height: 50px;
    margin: 0 15px;
    cursor: pointer;
    text-align: center;
    transition: all 0.5s;
    font-family: "Noto Serif TC", serif;
}

.sticky .stellarnav>ul>li>a {
    color: #ffdc90;
    transition: all 0.5s;
}



.stellarnav>ul>li>a:hover b {
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
}

.stellarnav>ul>li>a {
    line-height: 90px;
    height: 90px;
}

.stellarnav>ul>li>a b {
    font-weight: 500;
    transition: all 0.5s;
}

.stellarnav>ul>li>a b:nth-of-type(2) {
    color: #FFF;
    line-height: 0;
    height: 0;
    font-size: 10px;
    transition: all 0.5s;
}

.stellarnav>ul>li>a b {
    line-height: 35px;
    height: 35px;
}


.header_area .navigation {
    display: flex;
    width: 100%;
    position: relative;
    opacity: 1;
    transition: all 0.3s;
    justify-content: flex-end;
}

.header_area.sticky .navigation {
    padding: 10px 0 0;
    opacity: 1;
    transition: all 0.5s;
    transition-delay: 0.5s;
}



/*下拉*/
.nav-dropdown>li>a {
    background: #f7f5f5;
    transition: 0.2s;
    letter-spacing: 1.5px;
    width: 100%;
}

.nav-dropdown>li>a:hover {
    transition: 0.2s;
    background-color: #2B3047;
    color: #fff
}

.nav-dropdown>li:hover>a .submenu-indicator-chevron,
.nav-dropdown>.focus>a .submenu-indicator-chevron {
    border-color: transparent #fff #fff transparent;
}

.stellarnav li li a {
    padding: 10px 15px;
    display: block;
    color: #555555;
    background-color: transparent;
    transition: all 0.3s;
}

.stellarnav li li a:hover {
    color: #ffffff;
    background-color: #a4c0ac;
    transition: all 0.3s;
}


.header_area .stellarnav li li a:before {
    display: none;
}

.header_area.sticky .stellarnav li li a:before {
    display: none;
}

.footer_info li p.line:before {
    content: '竹南店：';
}

.footer_info li p.fax: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.add2:before {
    content: '信箱：';
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*HEADER_LOGO設定*/
.header_area .nav-brand {
    display: inline-block;
    width: 100px;
    transition: all 0.5s;
}

.header_area.sticky .nav-brand {
    width: 110px;
    transition: all 0.5s;
}

.header_area .nav-brand img {
    width: 100%;
    max-width: 100%;
    transition: all 0.3s;
}

.header_area.sticky .nav-brand img {
    transition: all 0.3s;
}

.footer_logo img {
    width: 100%;
}

.footer_logo {
    width: 200px;
}

.privacyLinks a+a {
    border-left: none;
}

@media screen and (max-width: 1700px) {
    .header_area {
        padding: 0 0;
    }

    .header_area.sticky .main_header_area .container {
        max-width: 90%;
    }

    .header_area .main_header_area .container {
        max-width: 90%;
    }

    .stellarnav>ul>li>a {
        padding: 0px 5px;
    }

    .sticky .stellarnav>ul>li>a {
        padding: 0px 10px;
    }
}

@media screen and (max-width: 1500px) {
    .header_area.sticky .main_header_area .container {
        max-width: 95%;
    }

    .header_area .main_header_area .container {
        max-width: 90%;
    }

    .sticky .stellarnav>ul>li>a {
        padding: 0px 5px;
    }
}

@media screen and (max-width: 1440px) {
    .main_header_area .container {
        max-width: 90%;
    }

    .header_area.sticky .main_header_area .container {
        max-width: 90%;
    }

    .stellarnav>ul>li>a {
        padding: 0px 10px;
    }
}

@media screen and (max-width: 1300px) {
    .header_area.sticky .main_header_area .container {
        max-width: 95%;
    }

    .header_area .main_header_area::before {
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: -110px;
        left: 0;
        transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .stellarnav ul {
        text-align: right;
    }

    .stellarnav>ul>li.has-sub>a {
        padding-right: 0;
    }

    .stellarnav>ul>li>a {
        padding: 0;
        margin: 0 10px;
    }

    .nav-header {
        max-width: 150px;
    }
}

@media screen and (max-width: 1024px) {
    .header_area.sticky .main_header_area .container {
        max-width: 100%;
    }

    .header_area.sticky .navigation {
        padding: 0 0;
    }

    .header_area .navigation {
        padding: 15px 0;
    }

    .header_area .main_header_area::before {
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: -110px;
        left: 0;
        transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .stellarnav ul {
        text-align: right;
    }

    .stellarnav>ul>li.has-sub>a {
        padding-right: 0;
    }

    .stellarnav>ul>li>a {
        padding: 0;
        height: 65px;
    }


    .navigation {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        align-content: center;
    }

    .nav-header {
        position: relative;
        top: 0;
        transform: translate(0, 0);
    }

    .stellarnav ul {
        text-align: center;
    }

    .pageIndex .header_area .main_header_area::before {
        top: -110px;
    }

    .pageIndex .header_area.sticky .main_header_area::before {
        top: 0;
    }

    .sticky .nav-header {
        top: -50px;
    }

    .pageIndex .nav-header::before {
        opacity: 0;
        top: 40px;
    }

    .header_area.sticky .nav-brand {
        width: 0;
    }

    .sticky .nav-header::before {
        opacity: 0;
    }
}

@media screen and (max-width: 980px) {
    .header_area .main_header_area .container {
        max-width: 100%;
    }

    .header_area .navigation {
        padding: 20px 0;
    }

    .sticky .stellarnav>ul>li>a {
        padding: 0px 0px;
    }
}

@media screen and (max-width: 768px) {
    .header_area .main_header_area .container {
        max-width: 90%;
    }

    .header_area.sticky .main_header_area .container {
        max-width: 90%;
    }


    .nav-header {
        position: absolute;
        top: 10px;
        left: 50%;
        z-index: 0;
        transform: translate(-50%, 0%);
        transition: all 0.5s;
    }

    .nav-brand-m {
        display: block;
        text-align: left;
        padding: 15px 10px;
    }

    .nav-brand-m img {
        max-width: 200px;
        width: 100%;
    }

    .stellarnav.mobile {
        top: 9px;
    }

    .stellarnav .menu-toggle span.bars span {
        background: #fff;
        transition: all 0.3s;
    }

    .stellarnav .menu-toggle:after {
        color: #fff;
        transition: all 0.3s;
    }

    .sticky .stellarnav .menu-toggle span.bars span {
        background: #060c13;
        transition: all 0.3s;
    }

    .sticky .stellarnav .menu-toggle:after {
        color: #060c13;
        transition: all 0.3s;
    }

    .stellarnav.mobile>ul {
        border-top: 0;
    }

    .stellarnav.mobile>ul>li {
        border-bottom: 1px #0e3a34 solid;
    }

    .stellarnav.mobile.right .close-menu,
    .stellarnav.mobile.left .close-menu {
        display: inline-block;
        text-align: right;
        font-size: 12px;
        background: #06433b;
        color: #fff;
    }

    .stellarnav .icon-close:after {
        border-bottom: solid 3px #fff;
    }

    .stellarnav .icon-close:before {
        border-bottom: solid 3px #fff;
    }

    .stellarnav.mobile>ul>li>a {
        padding: 25px 43px 25px 10px;
    }

    .stellarnav.mobile>ul>li>a.dd-toggle {
        position: absolute;
        width: 100%;
        text-align: right;
        padding: 25px;
    }

    .stellarnav a.dd-toggle .icon-plus:before,
    .stellarnav a.dd-toggle .icon-plus:after {
        border-bottom: solid 3px #e8dc70;
    }
}

.stellarnav.mobile.left>ul {
    left: 0;
    padding: 0;
    border: 0;
    max-width: 320px;
    background: #082622;
}

.stellarnav.mobile li.open {
    background: transparent;
    padding: 0px;
}

.stellarnav li li:hover {
    background: inherit;
    border-radius: 0;
    color: inherit;
    transform: none;
    box-shadow: none;
    z-index: 100000;
    transition: all 0.3s;
}

.stellarnav li li:hover>a {
    color: inherit;
    transition: all 0.3s;
}

.stellarnav.mobile li.open li.open {
    background: transparent;
    padding: 0px;
}

.stellarnav.mobile li li.has-sub a {
    padding: 15px 43px 15px 10px;
}

.stellarnav.mobile li.open li.open {
    background: transparent;
    padding: 0;
}

.stellarnav.mobile li a {
    border-bottom: 0;
}

.stellarnav li li a {
    padding: 15px 15px;
    color: #666;
}

.header_area .stellarnav>ul>li:nth-of-type(4)>a,
.header_area .stellarnav>ul>li:nth-of-type(5)>a,
.header_area .stellarnav>ul>li:nth-of-type(6)>a {
    pointer-events: none;
}

.sticky .nav-header::before {
    opacity: 1;
}

.stellarnav .menu-toggle:after {
    color: #FFF;
}

.stellarnav .menu-toggle span.bars span {
    background: #FFF;
}

.pageIndex .nav-header::before {
    opacity: 1;
}

/*menu*/

.stellarnav li a:before {
    display: none;
}

.stellarnav li a:hover:before {
    display: none;
}

header.header_area.sticky .stellarnav li a:before {
    display: none;
}

header.header_area.sticky .stellarnav li a:hover:before {
    display: none;
}

.stellarnav>ul>li>a b:nth-of-type(2) {
    display: none;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*促銷方案*/

.promotions_page .page {
    width: 0%;
}

.other_promotion {
    list-style: none;
    margin: 0;
    padding:10px;
    grid-template-columns: 1fr;
    background: #fff;
}
.other_promotion:before {
    content: "READ MORE >>";
    display: block;
    font-size: 22px ;
    font-weight: bold;
    color: #0d433b;
    letter-spacing: .1rem;
    padding-left: 1rem;
    margin: 1rem .5rem;
    border-left: 4px solid #0d433b;
}
.other_promotion li {
    display: flex;
    margin-bottom: 10px;
    width: 100%;
    border-bottom: 1px solid #0d433b6e;
}

.other_promotion li a {
    display: block;
    padding: 10px;
    width: 100%;
    margin: 0%;
    position: relative;
    border: none;
    background: #ffffff17;
        display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.other_promotion li a:hover ,.other_promotion li a:hover .pmtTitle h3{ color: #0d433b;}
.other_promotion li a:before, .other_promotion li a:after{display: none;}
.pmtTitle {
    display: flex;
    align-items: flex-start;}
.pmtTitle span{padding-right: 20px;}
.other_promotion .pmtTime { padding-right: 20px;}
.other_promotion .pmtTime span { float: left;}
.other_promotion .pmtTitle h3 {
    color: #312c2c;
    letter-spacing: 2px;
   margin: 0;
}

.show_content {
    width: 100% !important;
    margin: 0px;
    padding: 80px 10px;
}

.other_promotion li a:hover {
    background: #fcfcfc00;
}

.promotions_page .show_content {
    padding: 80px 45px;
}

/*手機板*/

@media screen and (max-width: 768px) {
    .promotions_page .main_part {
        display: block;
    }


    .other_promotion {
        width: 100%;
        padding: 11px;
    }

}


/*Banner/＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*＝＝＝＝＝最外層banner區塊的before＝＝＝＝＝ */
@keyframes oxxo {
    0% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.banner {
    background: repeat center center #f9f9f900;
    background-size: 100%;
    background-position: bottom;
    background-repeat: no-repeat;
    width: 100%;
    max-width: 2000px;
    height: 100vw;
    max-height: 550px;
    min-height: 300px;
    margin: 0% auto;
    border-radius: 0vw 0vw 0vw 0vw;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.banner h5 {
    color: #dcc787;
    background: transparent;
    height: auto;
    z-index: 5;
    position: relative;
    right: 0;
    top: 55px;
    font-size: 42px;
    letter-spacing: 2px;
    font-weight: 600;
}

.banner h5:after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    z-index: 2;
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    font-size: 16px;
    -webkit-animation: imgSlideUpAnimation 1s 0.1s ease-in-out forwards;
    animation: imgSlideUpAnimation 1s 0.1s ease-in-out forwards;
    opacity: 0;
    letter-spacing: 4px;
    margin-top: 15px;
}

.banner::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-size: cover;
    background-position: center;
    background-image: url(https://pic03.eapple.com.tw/boboge/bn_01.jpg);
}

.banner.banA::before {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(https://pic03.eapple.com.tw/boboge/bn_01.jpg);
}

.banner.banA h5:after {
    content: "BOBOGE CRYSTAL";
    letter-spacing: 2px;
    margin-top: 6px;
    color: #a4c0ac;
}

.banner.banC::before {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(https://pic03.eapple.com.tw/boboge/bn_01.jpg);
}

.banner.banC h5:after {
    content: "BOBOGE CRYSTAL";
    letter-spacing: 2px;
    margin-top: 6px;
    color: #a4c0ac;
}

.banner.banD::before {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(https://pic03.eapple.com.tw/boboge/bn_01.jpg);
}

.banner.banE::before {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(https://pic03.eapple.com.tw/boboge/bn_01.jpg);
}

.banner.banE h5:after {
    content: "";
    letter-spacing: 2px;
    margin-top: 6px;
    color: #a4c0ac;
}

.banner.banF::before {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(https://pic03.eapple.com.tw/boboge/bn_01.jpg);
}

.banner.banF h5:after {
    content: "BOBOGE CRYSTAL";
    letter-spacing: 2px;
    margin-top: 6px;
    color: #a4c0ac;
}

body.blog_page.article_a .banner.banblog:before {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(https://pic03.eapple.com.tw/boboge/bn_01.jpg);
}

body.blog_page.article_a .banner.banblog h5:after {
    content: "BOBOGE CRYSTAL";
    letter-spacing: 2px;
    margin-top: 6px;
    color: #a4c0ac;
}

body.blog_page.article_b .banner.banblog:before {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(https://pic03.eapple.com.tw/boboge/bn_01.jpg);
}

body.blog_page.article_b .banner.banblog h5:after {
    content: "BOBOGE CRYSTAL";
    letter-spacing: 2px;
    margin-top: 6px;
    color: #a4c0ac;
}



@-webkit-keyframes imgSlideUpAnimation {
    0% {
        opacity: 0;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes imgSlideUpAnimation {
    0% {
        opacity: 0;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@media screen and (max-width: 1024px) {
    .banner {
        padding: 200px 0 60px;
    }

    .banner h5 {
        top: 70px;
    }
}

@media screen and (max-width: 768px) {
    .banner {
        padding: 130px 0 40px;
        height: 39vw;
    }

    .banner h5 {
        font-size: 32px;
        top: -35px;
    }

    .banner h5:after {
        font-size: 16px;
        margin-top: 0px;
    }

}

@media screen and (max-width: 480px) {
    .banner {
        height: 60vw;
        max-height: 500px;
        padding: 130px 0 40px;
    }

    .banner h5 {
        font-size: 32px;
        top: 40px;
    }

    .banner h5:after {
        margin-top: 10px;
        font-size: 10px;
        margin-top: 10px;
        letter-spacing: 2px;
    }
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*文章設定*/
/*文章管理/＝＝＝＝＝*/
.blog_page .main_part {
    max-width: 1300px;
    padding: 50px 20px 50px;
}

.blog_in_page .main_part {
    max-width: 1300px;
    padding: 50px 20px 50px;
}

h4.blog_category_title {
    font-size: 28px;
    color: #657d6c;
    border-bottom: 1px #ffffff solid;
    font-weight: 600;
}

h4.blog_category_title span {
    font-size: 24px;
}

h5.blog_le_t {
    text-align: left;
}

h5.blog_le_t em {
    font-weight: 700;
    color: #505050;
    font-family: 'Noto Sans TC';
    font-size: 22px;
    display: none;
}

h5.blog_le_t span {
    display: none;
}

.blog_search input[type=search] {
    border-radius: 15px;
}

/*文章管理/外層＝＝*/
.module_i_news {
    padding: 100px 20px;
}

.module_i_news ul,
.blog_subbox {
    display: grid;
    gap: 0;
}

.module_i_news li,
.subbox_item {
    width: 100%;
    position: relative;
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition-property: background-color, color;
    transition-property: background-color, color;
    -webkit-transition-duration: .4s;
    transition-duration: .4s;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
    border-radius: 30px;
}

.i_blog_le img,
.blog_list_le img {
    opacity: 1;
    border-radius: 20px;
}

.subbox_item a:hover img {
    opacity: 1;
}

.subbox_item {
    margin-bottom: 0;
}

.module_i_news li:hover,
.subbox_item:hover {
    background-color: #bcbcbc14;
    transition: all 0.3s ease-in-out;
}

.module_i_news li:hover:before,
.subbox_item:hover:before {
    opacity: 0;
}

.module_i_news li:hover::after,
.subbox_item:hover::after {
    opacity: 0;
}

.module_i_news li:before,
.subbox_item:before,
.module_i_news li:after,
.subbox_item:after {
    position: absolute;
    width: 1px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 86.04%;
    background-color: rgb(204 204 204 / 30%);
    -webkit-transition: opacity .4s linear;
    transition: opacity .4s linear;
    content: "";
}

.module_i_news li:before,
.subbox_item:before {
    left: 0;
}

.module_i_news li:after,
.subbox_item:after {
    right: 0;
}

.module_i_news .title_i_box h6 {
    font-size: 17px;
    color: #a5b5a3;
    font-weight: normal;
}

.module_i_news .title_i_box h4 {
    font-size: 36px;
    color: #24221F;
    font-weight: 600;
    letter-spacing: 3px;
}

.i_blog_ri h5,
.blog_list_ri h5 {
    color: #333;
    padding-top: 7px;
    padding-bottom: 7px;
}

.blog_list_ri h5 {
    -webkit-line-clamp: 2;
    height: auto;
}

.i_blog_ri p,
.blog_list_ri p {
    color: #24231f;
    font-size: 14px;
    line-height: 190%;
    -webkit-line-clamp: 2;
}

.module_i_news li a,
.subbox_item a {
    padding: 5px;
    padding: 10% 10%;
}

.subbox_item a {
    grid-template-columns: unset;
    grid-gap: 10px;
}

.module_i_news li a:after,
.subbox_item a:after {
    pointer-events: none;
}

.module_i_news li a:before,
.subbox_item a:before {
    display: none;
}

.module_i_news li a:after,
.subbox_item a:after {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #cccccc;
    -webkit-transition: opacity .4s linear;
    transition: opacity .4s linear;
    content: "";
    opacity: 0;
    border: none;
    top: 100%;
}

.subbox_item a:hover:before,
.subbox_item a:hover:after {
    opacity: 0;
    transition: all .5s;
}

.i_blog_le,
.i_blog_ri,
.blog_list_le,
.blog_list_ri {
    width: 100%;
}

.blog_list_ri {
    padding-top: 15px;
}

.i_blog_le,
.blog_list_le {
    position: relative;
    padding-bottom: 100%;
    height: 0;
}

/*文章縮圖長寬比例，100% →100:100 = 1:1 正方形 */

.i_blog_le img,
.blog_list_le img {
    display: block;
    max-width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.module_i_news li a:hover h5,
.subbox_item a:hover h5 {
    color: #565656;
}

.module_i_news li a:hover:before,
.subbox_item a:hover:before {
    color: #fff;
}

.module_i_news li a:hover em,
.subbox_item a:hover em {
    color: #777;
}

.module_i_news li a:hover p,
.subbox_item a:hover p {
    color: #565656;
}

/*側邊*/
.blog_le {
    margin-top: 0;
}

.blog_le .accordion {
    border: none;
    border-radius: 0px;
}

.blog_le .accordion>li {
    transition: all 0.3s;
}

.blog_le .accordion>li:hover,
.blog_le .accordion>li.on_this_category {
    background: #f6f6f6 !important;
}

.blog_le .accordion>li:hover .link a,
.blog_le .accordion>li.on_this_category .link a {
    color: #565656 !important;
}

.accordion li .link a {
    font-weight: 500;
    font-size: 18px;
    color: #565656;
}

.submenu a:hover {
    background: rgb(245 218 99 / 50%);
}

/*首*/
.module_i_news ul {
    width: 100%;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 1600px;
}

/*功*/
.blog_subbox {
    grid-template-columns: 1fr 1fr 1fr;
}

.blog_subbox:before {
    content: none;
}


/*文章管理/內層＝＝*/
.articel_mainPic {
    display: none;
}

.blog_back a.article_btn_back {
    background: #a4c0ac;
}

.blog_back a.article_btn_prev,
.blog_back a.article_btn_next {
    background: #a4c0ac;
    color: #ffffff;
}

/* 滑入進場效果 */
.blog_list_le:before {
    content: 'MORE';
    font-size: 0.8em;
    color: #ccc;
    position: absolute;
    top: 0;
    right: 0;
    background: #a4c0ac;
    color: #FFF;
    font-family: "Cinzel", serif;
    text-align: center;
    line-height: 35px;
    padding: 0 10px;
    -moz-transform: translate(50px, -40px);
    -ms-transform: translate(50px, -40px);
    -webkit-transform: translate(50px, -40px);
    transform: translate(50px, -40px);
    -moz-transition: -moz-transform 0.6s;
    -o-transition: -o-transform 0.6s;
    -webkit-transition: -webkit-transform 0.6s;
    transition: transform 0.6s;
    position: absolute;
    z-index: 1;
    opacity: 0;
    border-radius: 0 0 0 20px;
}

.subbox_item:hover .blog_list_le:before {
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
}

/*相關推薦*/
.news_related {
    background: #fcfcfc;
}

.news_related h6 span:before {
    color: #333333;
}

@media screen and (max-width:1024px) {
    .blog_subbox {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width:450px) {
    .blog_subbox {
        grid-template-columns: 1fr;
    }

    .module_i_news li a,
    .subbox_item a {
        padding: 5% 8%;
    }

    .blog_list_ri h5 {
        -webkit-line-clamp: 2;
        height: 60px;
    }
}




/*購物車/＝＝＝＝＝*/


.product-wrapper {
    max-width: 1200px;
}

.prod_part {
    width: 90%;
}


.product_pic .swiper-slide img {
    width: 100%;
    object-fit: cover;
}

.products-list {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(5, 1fr);
    width: calc(100% - 280px);

}

.products-list .pic {
    position: relative;
    aspect-ratio: 1/1;
    height: auto;
    overflow: hidden;
    padding-bottom: 0;
}

.products-list .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.products-list:before {
    content: none;
}

.products-list .item {
    width: 100%;
}

.product-layer-two>li>a::before {
    background: #fff !important;
    padding-left: 10px !important;
}

.product-layer-two li li a {
    font-size: 13px;
}

.products-list .item a {
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 400;
}

.products-list .name {
    height: auto;
    margin: 15px 0;
}

.product_page .products-list .price {
    justify-content: flex-end;
}

.products-list .price b {
    font-weight: 400;
}

.products-list .more {
    border: 1px solid #c0c0c0;
    color: #a4baaa;
    font-weight: 400;
    font-size: 14px;
}

.products-list .item a:hover .more {
    background: #a4baaa;
    border: 1px solid #a4baaa;
    transition: 0.5s;
    letter-spacing: 0;
}

.products-list .item a:hover .pic {
    opacity: 0.75;
    transition: 0.5s;
}

.product_pic #bx-pager h6 {
    display: none;
}

.product_main {
    width: 50%;
}

.sidebarBtn {
    border: 1px #ddd solid;
    background: transparent;
    width: 49%;
}

.sidebarBtn h2,
.sidebarBtn .price {
    font-family: 'Noto Sans TC', sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: #101010;
}

.product_info {
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 400;
}

/*按鈕顏色*/
.inquiry_a1 {
    background: #808080;
}

.inquiry_a2 {
    background: #808080;
}

.inquiry_a3 {
    background: #746D65;
}



.lastaction {
    color: #1A1A1A;
    background-color: #f2f2f2;
}

.nextaction {
    background-color: #1A1A1A;
}

.inquiry_a1:hover,
.inquiry_a2:hover,
.inquiry_a3:hover {
    background: #222;
    color: #fff;
    transition: 0.5s;
}

ul.prod li h3.prod-thumb {
    background: transparent;
    font-family: 'Noto Sans TC', sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: #101010;
    border-bottom: 1px solid #c9c9c9;
    margin-bottom: 20px;
    text-align: left;
}

.qaform {
    font-family: 'Noto Sans TC', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #101010;
}

.qaform .breakF {
    border: 1px #cecece solid;
    background: #ffffff;
}

.productBtn {
    width: 100%;
    max-width: 100px;
    padding-left: 0;
    margin-right: 10px;
    font-family: 'Noto Sans TC', sans-serif;
    font-size: 13px;
    font-weight: 400;
}

.half_box li.btn_blankTop {
    margin-top: 180px;
    text-align: end;
}

.lastaction,
.nextaction {
    background-image: none;
    text-align: center;
}

.prod_related h6 span:before {
    font-family: 'Noto Sans TC', sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: #101010;
}

.prod_related {
    background: transparent;
    border-top: 1px solid #e5e5e5;
}

.related_list li a {
    background: transparent;
}

.related_list li a p {
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #333;
    border-bottom: 1px solid #c6c6c6;
    text-align: left;
    padding-bottom: 7px;
}

.related_list {
    max-width: 1250px;
    width: 100%;
    margin: auto;
    text-align: center;
    display: grid;
    gap: 25px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.related_list li {
    width: 100%;
}

.related_list li a:hover img {
    opacity: 0.75;
    transition: 0.5s;
}

.related_list li a:hover p {
    border-bottom: 1px solid #000;
    transition: 0.5s;
}

.rewrite_simple,
.send_simple {
    background-color: #ffffff;
    border: 1px solid #bbb !important;
    border-radius: 0;
    color: #555;
    font-size: 15px;
    width: 120px;
    height: 33px;
    line-height: 31px;
}

.rewrite_simple:hover,
.send_simple:hover {
    border: 1px solid #000 !important;
    transition: 0.5s;
}

/*匯款通知*/
.form_content {
    padding: 120px 10px;
}

.separate_title {
    font-size: 16px;
    color: #444;
    padding: 10px 0 10px 20px;
    background: #e5e3d9;
}

/*購物車/外層＝＝*/
/*顏色*/
/*價格*/
.products-list .price {
    display: flex;
    margin-bottom: 5px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.products-list .price b {
    margin: 0;
    line-height: 180%;
    color: #1A1A1A;
}

.products-list .price b.ori_price {
    font-size: 14px;
}

/*外層版面*/
.product_page .main_part {
    background: #f8f3ef;
}

.product_page .show_content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.product-layer-two {
    width: 250px;
    margin: 0;
}

.product_info_page .product-layer-two {
    display: none;
}

.product-layer-two li {
    margin: 0;
    width: 100%;
}

.product-layer-two li i {
    right: 12px;
    top: 4px;
    color: #C7C2BC;
}

.product-layer-two li.active a {
    border: unset;
    border-bottom: 1px dotted #ccc;
}


.page {
    width: 100%;
}


@media screen and (max-width: 1200px) {}

@media screen and (max-width: 768px) {
    .product_page .products-list {
        width: 100%;
    }

    .product_page .show_content {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .sidebarBtn {
        display: inline-block;
        margin: 0px;
        width: 60%;
        margin-left: 2%;
    }

    .product_main {
        width: 37%;
    }

    .header_area .stellarnav>ul>li:nth-of-type(4)>a,
    .header_area .stellarnav>ul>li:nth-of-type(5)>a,
    .header_area .stellarnav>ul>li:nth-of-type(6)>a,
    .header_area .stellarnav>ul>li:nth-of-type(7)>a {
        pointer-events: auto;
    }
}

@media screen and (max-width: 500px) {
    .product_main {
        width: 92%;
        margin: 4%;
    }

    .sidebarBtn {
        width: 92%;
        margin: 4%;
    }

    .product_menu_list {
        display: none;
    }

    .main_part {
        padding: 15px 10px 10px;
    }

    .related_list {
        grid-template-columns: 1fr 1fr;
    }

    .products-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

/**/
.product-layer-two li a {
    color: #222;
    border: none;
    background: transparent;
    transition: all 0.3s;
    line-height: 200%;
    transition: all 0.3s;
    width: 100%;
    display: block;
}

.product-layer-two>li>a {
    background: #a4baaa;
    color: #ffffff;
    border-bottom: 1px solid #DED9D5;
    padding-left: 18px;
}

.product-layer-two>li:hover>a {
    background: #719f7e;
}

.product-layer-two>li.active>a {
    background: #06433b;
}

.product-layer-two li:hover a {
    transition: 0.5s;
}


.product-layer-two li ul {
    position: relative;
    padding-top: 1px;
}

.product-layer-two li li {
    border-bottom: 1px solid #ccc;
    background: transparent;
}

.product-layer-two li li:hover a {
    background: #e1e0d9;
    color: #958E86;
}

.product-layer-two li li a {
    background: transparent;
}

.product-layer-two li li.active a {
    background: #e1e0d9 !important;
    color: #958E86;
}

/*hover到才顯示副選單 關掉↓*/
.product-layer-two li li {
    display: block;
}

/*購物車/內層＝＝*/
.bx-wrapper img {
    margin: auto;
}

#content {
    background: #f8f3ef;
}

body.product_info_page #content {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    background: #f8f3ef;
}

.pd_tabTitle li,
.pd_tabTitle {
    display: none;
}

.lastPage {
    background: #84998a;
}

/*商品側邊規格*/
.product_info li .txt_box {
    color: #222222;
    width: 100%;
}

.sidebarBtn .sp_price {
    color: #808080;
}

.mobile_product_name {
    font-size: 24px;
}

/*關於我們*/

.contact_le_map a {
    display: block;
    background: #bec8d6;
    text-align: center;
    padding: 10px;
    color: #fff;
}

.contact_form li.last cite {
    background: #bec8d6;
    color: #fff;
}

.contact_form li.last blockquote,
.contact_form li.last cite {
    display: block;
    vertical-align: top;
    font-style: normal;
    padding: 7px;
    text-align: center;
    border: 1px #bec8d6 solid;
    width: 150px;
    max-width: calc(50% - 10px);
}

.contact_content .information_left {
    width: 295px;
    display: none;
}

.contact_content .information_right {
    width: 100%;
    padding-left: 0;
}

.contact_page .main_part {
    width: 100%;
    max-width: 1000px;
    margin: auto;
    padding: 50px 20px;
}

/*******************************************/
/*聯絡我們MAP區改滿版編輯區*/
.contact_content {
    width: 100%;
    padding: 0;
}

.contact_page .main_part {
    max-width: 100%;
    padding: 0;
}

.contact_page .path {
    display: none;
}

.contact_content .information_left {
    width: 100%;
    padding: 0;
}

.contact_content .information_right {
    width: 90%;
    margin: 80px auto;
    padding: 0 10px;
    display: block;
}

.contact_content .information_left>h4.blank_letter {
    display: none;
}

.contact_content .list_before {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.contact_content .list_before>li:not(li:last-of-type) {
    display: none;
}

.contact_content .list_before.info>li:last-of-type {
    padding: 0;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .contact_content .information_right {
        margin: 50px auto;
    }

    .mobile_product_name {
        display: none;
    }

    .header_area .navigation {
        padding: 40px 0;
    }

}

/**/
/*電腦版表單最大寬度設定*/
.contact_content .information_right {
    max-width: 1000px;
}

/**/
/*******************************************/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*footer*/
.footer {
    background: #f8f3ef;
}

.footer .center {
    max-width: 1500px;
}

.footer_logo {
    display: none;
}

.footer_info {
    display: flex;
    gap: 20px 20px;
    padding: 0;
    max-width: 1700px;
    margin: auto;
    padding-top: 60px;
    padding-bottom: 60px;
    flex-direction: column;
}

.footer_info ul {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.footer_info li {
    padding: 0;
}

.footer_info li:nth-child(1) {
    width: 40%;
    border-right: 1px solid #ccc7ba;
}

.footer_info li:nth-child(2) {
    width: 35%;
}



.footer_menu a,
.footer_info li:nth-child(1)>p,
.footer_info li:nth-child(1) a {
    transition: all 0.3s;
    font-weight: 400;
    font-style: normal;
    text-transform: none;
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0;
    color: #333;
    padding: 0;
    letter-spacing: 0.1em;
    font-family: "Noto Serif TC", serif;
}

.footer_info li:nth-child(1) a {
    pointer-events: none;
}

.footer_menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 10px;

}

.footer_menu a {
    margin: 0;
    text-align: left;
    padding: 0;
    border: none;
    background: transparent;
    width: fit-content;
    transition: all 0.3s;
    font-family: "Noto Serif TC", serif;
    padding: 0 7%;
}

.footer_menu a:hover {
    background: #84998a;
}

.box_link {
    display: none;
}


.box_link a:hover:after {
    opacity: 1;
}

.box_link a:hover:before {
    opacity: 0;
}

.copy {
    padding: 8px 0;
    color: #ffffff;
    margin: 0;
    border: none;
    background: #84998a;
}

.copy a {
    color: #ffffff;
}

.copy a:hover {
    color: #ffffff;
}

@media (max-width:1200px) {
    .me_tp_features {
        width: fit-content;
        position: absolute;
        right: 10px;
    }

    .footer_info {
        grid-template-columns: 1fr;
    }

    .footer_logo {
        max-width: 100%;
        padding-left: 63px;
    }

    .footer_logo img {
        width: 130px;
    }

    .footer_info ul {
        max-width: 100%;
    }

    .box_link {
        max-width: 100%;
        padding-left: 65px;
    }
}


@media screen and (max-width: 980px) {

.footer_info li:nth-child(2) {
    width: 45%;
}
}

@media screen and (max-width: 768px) {

    /* 開啟手機板下方按鈕所需設定 */
    /*#bottom_menu {display: block; }*/
    .footer.with_shopping_mode {
        padding: 30px 0 53px
    }

    #to_top {
        bottom: 60px;
    }

    .header_area .nav-brand img {
        width: 75%;
    }

    .header_area {
        position: relative;
    }

    .main_header_area {
        border-radius: 0px;
    }
.footer_info ul { flex-wrap: wrap;}
    .footer_info li:nth-child(1) {
        padding: 0 7%;
        width: 100%;
        border-right: none;
    }

    .footer_info li:nth-child(2) {
        width: 100%;
        padding:0;
    }
 

    .footer_info li+li {
        margin-top: 0px;
    }
       .footer_menu {
        grid-template-columns:1fr 1fr;
    }

}

@media (max-width:600px) {
    .me_tp_features {
        position: relative;
    }

    .footer_info ul {
        grid-template-columns: 1fr;
        padding: 10px 30px 0;
        display: block;
    }

 
    .footer_logo {
        padding-left: 30px;
    }

    .box_link {
        padding-left: 30px;
    }

  
}
@media (max-width:480px) {
    .other_promotion li a { flex-direction: column;}
.pmtTitle {
    flex-direction: column;
    align-items: flex-start;
}

}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */