@charset "utf-8";




/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/


&::-webkit-scrollbar {
    background: #fff;
    width: 7px;
}

&::-webkit-scrollbar-button {
    background: #fff;
    border-radius: 0;
}

&::-webkit-scrollbar-track-piece {
    background: #eee;
}

&::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #605a70;
}

&::-webkit-scrollbar-track {
    box-shadow: transparent;
}



/* 開場 */

.bannerindex{position: relative;}


.bannerindex::after {
    content: "";
    display: block;
    background-image: url(https://pic03.eapple.com.tw/awei1209/logostart01.png);
    background-size: contain;
    width: 290px;
    height: 139px;
    background-position: center;
    background-repeat: no-repeat;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5); /* 初始縮小 */
    z-index: 1000000000000000000001;
    pointer-events: none;
    animation: banner-logo 3s forwards;
}
.bannerindex::before {
    content: "";
    display: block;
    background: #dad0c7;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1000000000000000000000;
    animation: banner-bg 2.6s forwards;

}


.swiper-banner::after {
    content: "";
    display: block;
    height: 0px;
    background-color: transparent;
    pointer-events: none;
    position: fixed;
    bottom: 240px;
    z-index: 500;
    opacity: 0;
}






@keyframes banner-logo {
    0% {
        opacity: 0;
        filter: blur(10px);
        transform: translate(-50%, 100%) scale(0.5); /* 從底部開始 */
    }

    25% {
        opacity: 1;
        filter: blur(0);
        transform: translate(-50%, 50%) scale(1.2); /* 稍微放大 */
    }

    50% {
        opacity: 1;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1); /* 到達中央 */
    }

    80% {
        opacity: 1;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1); /* 維持中央 */
    }

    100% {
        opacity: 0;
        filter: blur(10px);
        transform: translate(-50%, -50%) scale(1); /* 淡出 */
    }
}



@keyframes banner-bg {
    0% {}

    50% {}

    80% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*背景*/
#content {
    min-height: 80vh;
    background: #dad0c7; 
    background-size: cover;}
#content_main {
    width: 100%;
    min-height: 80vh;
    overflow: hidden;
    z-index: 60;
    position: relative;
    margin-top: 100vh;
    background: #dad0c7;
    background-repeat: no-repeat;
    background-size: cover;}

    #to_top {
        position: fixed;
        left: 10px;
        z-index: 600;
        width: 50px;
        height: 50px;
        padding-top: 10px;
        font-size: 12px;
        color: #ffffff;
        text-align: center;
        text-decoration: none;
        background: #605a70;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
        border-radius: 100%;
    }
    #to_top i:before, #to_top i:after {
        content: "";
        display: block;
        position: absolute;
        border-radius: 100px;
        background: #ffffff;
        transition: all 100ms ease-in-out;}
 



/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/

/*Main/＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*Header/＝＝＝＝＝*/
/*首頁*/

.header_area.sticky .main_header_area {
        background: #dad0c792;
        transition: all 0.3s;
    }

.header_area .main_header_area {
        transition: all 0.3s;
        background-color: #dad0c7;}

.header_area {position:relative;z-index: 9999;padding: 0px;background: #dad0c7; width: 100%;}

/*其他分頁*/

.main_header_area .container {
        max-width: 1700px;
        transition: all 0.3s;}
.header_area.sticky {
    background: #dad0c792;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 1px 1px 5px rgba(169, 169, 169, 0.3);}



 .swiper-banner:after {
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0; }

 .swiper-pagination-bullet {
        display: none; }


/*第一層*/
/*首頁文字顏色*/
.pageIndex .stellarnav  ul  li  a {  color: #3d3938;font-weight:bold ;}
.pageIndex .stellarnav  ul  li:hover  a {color: #605a70; font-weight:bold ;}


/*首頁sticky文字顏色*/
.pageIndex .header_area.sticky a {color: #3d3938;}
.pageIndex .header_area.sticky a:hover { color:#605a70 !important;}

/*其他分頁文字顏色*/
.stellarnav > ul > li > a {padding: 0 10px 0 0;font-weight: bold;font-size: 18px;    line-height: 30px;
    height: 30px;}
.stellarnav  ul  li:hover a {color: #605a70; font-weight:bold ;}
.stellarnav ul li a {color: #3d3938;}
.stellarnav > ul > li > a b {font-weight: bold !important;}
.sticky  .stellarnav ul li a {color: #3d3938 !important;}
.sticky  .stellarnav ul li a:hover  {color: #605a70 !important;}
.nav-menu {    margin: 0 auto;padding: 0;text-align:center;}
.nav-header {    position: relative;}

/*購物車*/
.me_tp_features {  color: transparent;  }

.nav-menu>li:hover>a, .nav-menu>li.active>a, .nav-menu>li.focus>a {
    color: #3d3938;}


.me_tp_features a {color: #3d3938;}
.sticky .me_tp_features a {color: #3d3938;}
.nav-menu>li:not(.tp_links) {
    padding-right: 15px;
}

.nav-menu>li>a {
    color: #3d3938;
    letter-spacing: 3px;
    padding: 25px 7px;
}


.nav-menu>li.focus>a {
    color: #3d3938;
}
.nav-dropdown>li:hover>a .nav-dropdown>li.focus>a {
    color: #3d3938;
}


.stellarnav li.has-sub > a:after {
        content: '';
        margin-left: 10px;
      
        position: absolute;
        top: 40%;
        right: 5px;
        transform: translateY(-50%);}   


.navigation {     padding: 20px 0px 20px 300px;}
.navigation {
    width: 100%;
    position: relative;
    padding: 0;
    display: grid;
    grid-template-columns: 200px 1fr;
    grid-gap: 0 20px;
    align-content: stretch;
    justify-content: center;
    align-items: center;
    justify-items: end;}
/*下拉箭頭*/
.stellarnav li.has-sub > a:after {
            height: 8px;
            width: 8px;
            display: block;
            border-style: solid;
            border-width: 0px 2px 2px 0;
            border-color: transparent #3d3938 #3d3938 transparent;
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
            -webkit-transition: border .2s;
            transition: border .2s;    }    

            



/*第二層*/
.stellarnav li li > a , .stellarnav li li.has-sub > a{    padding: 7px 5px;   transition: all 0.3s; }
.stellarnav li li:hover > a , .stellarnav li li.has-sub:hover > a{color: #3d3938;	padding-left:10px;}
.stellarnav li li.has-sub:hover > a {color: #605a70;}




/*次選單樣式-半透明底色*/
.stellarnav ul ul {
    background:#dad0c792;
    border-radius: 0 0  6px 6px;
    padding: 7px;
    box-shadow: 0px 3px 10px 0px rgb(0 0 0 / 12%);
    -webkit-backdrop-filter: saturate(180%) blur(5px);
    backdrop-filter: saturate(180%) blur(5px);
    width: 180px;
}

/*次選單欄位邊框*/
.stellarnav li li {
    border: 0px var(--f3-color) solid;
}

/*次選單文字樣式*/
.stellarnav li a {
    padding: 7px 10px;
    display: block;
    color: #3d3938;
    font: bold ;
    letter-spacing: .1rem;
}
.stellarnav li li > a ,
.stellarnav li li.has-sub > a {
    padding: 7px 5px;
    border-left: 2px solid transparent ;
}

/*hover欄位樣式-向右滑動*/
.stellarnav li.has-sub ul li a:hover{
    color:#3d3938 ;
    padding-left: 10px;
    font-weight: bold;
}

/*文字底色透明*/
.stellarnav.desktop li.has-sub ul a {
   
    letter-spacing: .1rem;
    position: relative;
}


/*logo*/
.nav-brand img {
    max-width: 80%;}
.sticky .nav-brand img {
        max-width: 50%;}

.header_area .nav-brand {
    transition: all 0.3s;
    margin-top: 10px;}

.header_area.sticky .nav-brand {
        max-width: 80%;
        }


 @media screen and (max-width: 1200px) {

            .nav-brand img {width: 0%;}
            .header_area.sticky .nav-brand h1 {
                    filter: initial;
                    transition: all 0.3s ease-in-out;
                    animation: none;
                    top: 1px;
                
                    position: relative;
                    width: 80%;
                    height: 30px;
                    left: 2vw;}
            
            .nav-brand h1 {
                display: block;
                background: url(https://pic03.eapple.com.tw/awei1209/logo1200.png);
                background-size: contain;
                width: 100px;
                height: 120px;
                background-repeat: no-repeat;
                text-indent: 100%;
                overflow: hidden;
                white-space: nowrap;
                position: absolute;
                left: -20vw;
                top: -2vw;animation: none;
            }
            
          .nav-header {
                position: relative;
                width: 300px;
                margin: auto;
            }
        
            a.nav-brand {
                justify-content: center;
                width: auto;
            }
        
            .nav-brand h1 {
                position: fixed;
                width: 100px;
                height: 100px;
                left: 0;
                top: 0;
            }
            .nav-brand h1{          position: relative;
                width: 80%;
                height: 30px;  left: 2vw;}
        }

/* = = = 頁尾 = = = =  = = = = = = = = */
.center {max-width: 1420px;}
/*換圖*/
.footer {
    padding: 60px 0 0;
    font-size: 16px;
    background-color: #a0978e;
    background-position: center;  /*位置*/
    background-size: cover;  /*尺寸*/
    background-repeat: no-repeat;
    position: relative;
    z-index: 99;}


  

/*換logo*/
.footer_logo img {
    width: 0;
    height: 118px; }
    
.footer_logo {
        background: url(https://pic03.eapple.com.tw/awei1209/logo1200.png) no-repeat center;
        height: 118px;
        max-width: 250px;
        width: 100%;
        margin-top: 10px;
        background-size: contain;}
    



.footer_info {       display: flex;
        flex-wrap: wrap;
        align-items: center;
        padding: 0 0;
        flex-direction: row;}

.footer_menu {display: inline-block; grid-template-columns: repeat(auto-fit, minmax(min(120px,100%), 1fr));  gap: 3px; width: 100%; text-align: center; margin: 0 auto;}/*footer按鈕最小寬度100px*/
.footer_menu a { margin: 0;padding: 5px 20px;
    text-align: center;
    transition: all 0.3s;
    color: #3d3938;
    background: #ffffff00;
    border: 1px #3d3938 solid;
    border-radius: 99em;}

.footer_menu a:hover {    background: #605a70;color: #ffffff; border-radius: 99em;}

.copy {background:transparent; color: #3d3938; border:none; padding: 10px 0;margin: 10px 0 0;}
.copy a{color: #3d3938;transition:all 0.3s;}
.copy a:hover {color: #3d3938;}

.box_link a{transition:all 0.3s;}
.box_link a:hover {background: #3d3938;  color: #bbb;}
.box_link {display: none;}
.footer_logo img {max-width: 200px;}
.footer_logo {text-align: left; margin: 0 20px;}
.footer_info ul {    display: flex;
        width: 100%;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;}
.footer_info li {padding: 10px 1%; display: inline-block;}
.footer_info li p {text-align: left;display: block; color: #ffffff; letter-spacing: 2px; margin: 2px 8px;}
.footer_info li p:before{margin: 0;color: #3d3938;font-weight: bold;}

.footer_info li p a {color: #3d3938;}
.footer_info li:nth-child(1) {display: flex; flex-wrap: wrap;justify-content: center;}
.footer_info li:nth-child(2) {}



/*上方選單右邊設定 臉書/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 {}
*/

/*內頁BANNER 設定*/


.banner.banA {display: none;}
.banner.banB {display: none;}
.banner.banF {}
.banner.banblog {}
.banner.banC {}
.banner {
    background: url(https://pic03.eapple.com.tw/awei1209/banner.jpg);
    height: 376px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    background-size: cover;}

.banner h5 {color:#3d3938;}
.banner h5:after {
    content: "解鎖深層筋膜，重啟身體活力！";
    font-size: clamp(0.9375rem, 0.8813rem + 0.2304vw, 1.25rem);
    white-space: pre-line;
    font-size: 16px;
    display: block;
    color: #605a70;
    font-weight: 400;
    letter-spacing: 5px;
    line-height: 1.7;
    -webkit-animation: imgSlideUpAnimation 1s 0.1s ease-in-out forwards;
    animation: imgSlideUpAnimation 1s 0.1s ease-in-out forwards;
    opacity: 0;}

    @keyframes bannerScrollAnimation {
        0% {
            height: 0;
        }
    
        50% {
            height: 100%;
            -webkit-transform: translateY(0);
            transform: translateY(0);
        }
    
        100% {
            -webkit-transform: translateY(100%);
            transform: translateY(100%);
        }
    }
    
    @-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: 768px) {
        .banner {
            background: url(https://pic03.eapple.com.tw/awei1209/banner.jpg);
            height: 276px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            background-size: cover;
            background-position: center;
            overflow: hidden;
            background-size: cover;
            background-position: 95%;}
            
         .banner h5 {
               margin-top: 40px;
                color: #3d3938;
                font-size: 26px;

        }}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*頁碼*/
.path p, .path p a {display: none;
    text-align: right;
    line-height: 24px;
    font-size: 13px;
    color: #3d3938;}
/*下拉頁碼*/
body.other_select_page .promotion_title {display: none;}
body.other_select_page ul.other_promotion.clearfix  {display: none;}
.page {
    margin: auto;}
body.other_select_page .other_promotion {display: none;}
/*按鈕*/
.animated-arrow {
    background: #716966;
    color: #fff;
    display: inline-block;
    margin-top: 20px;
    /* margin-left: auto; */
    height: 50px;
    line-height: 50px;
    overflow: hidden;
    width: 250px;
    /* padding-left: 5%; */
    text-align: center;
    position: relative;}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */





/*文章管理*/
h5.blog_le_t {
    font-size: 24px;
    font-weight: 500;
    color:  #3d3938;
    font-family: serif;
    letter-spacing: 2px;
    margin-bottom: 7px;}
/*側邊標題*/
.accordion li .link a {
    cursor: pointer;
    display: block;
    padding: 15px 10px;
    color:  #3d3938;
    font-size: 14px;
    font-weight: 700;
    position: relative;}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {    background: #605a7040 !important;}  
/*右側文章排版*/
.blog_subbox {

        padding: 5px;
        display: flex ;
        justify-content: flex-start;
        align-items: stretch;
        align-content: stretch;
        flex-wrap: wrap;}
/*標題*/
.blog_list_ri h5 {
    font-weight: 900;
    font-size: 20px;
    color: #605a70;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;}
/*時間*/
.blog_list_ri em {
    font-size: 14px;
    color: #9d9c9c;
    font-style: normal;
    display: block;}
/*內文*/
.blog_list_ri p {
    font-size: 15px;
    color: #3d3938;
    line-height: 130%;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    word-break: break-all;}
/*內文hover*/
.subbox_item a:after {
        content: '';
        width: 100%;
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        z-index: 8;
        background:#605a7040;
        opacity: 0;
    
        transition: all .5s;}


/*文章*/
/*文章內頁*/
h4.blog_category_title {
    color: #3d3938;
    font-size: 30px;
    padding: 10px 0;
    margin-bottom: 20px;
}
.blog_box_edit * {
    line-height: 150%;
    color:  #3d3938;}
/*分享文字*/
.toShareNews {
        font-size: 1em;
        color:  #a1a1a1;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        align-content: center;
        flex-wrap: wrap;}
/*文章按鈕*/
.blog_back a.article_btn_back {
        background: #51504e;}


.blog_back a.article_btn_back:hover, .blog_back a.article_btn_prev:hover, .blog_back a.article_btn_next:hover {
            background: #51504e;}
/*相關文章*/
.news_related {
    background: #605a7040;
    padding: 25px 15px;}
.news_related h6 span:before {
        content: '相關文章';
        font-size: 24px;
        color: #605a70;}
/*按鈕*/
.lastPage {
        font-size: 16px;
        color: #fff;
        background: #51504e;
        padding: 10px 20px;
        display: block;
        margin: 40px auto;
        width: 130px;
        text-align: center;}
/*首頁-文章管理*/
.module_i_news li a:after {    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 8;
    background:#605a7040;
    opacity: 0;
    border: 1px #3d3938 solid;}
/*首頁-文章顯示*/
 .module_i_news li:nth-child(n+5){
        display:none !important;}
/*標題*/

.module_i_news .title_i_box h4{   
    font-size: 32px;
    color: #605a70;
    font-weight: bold;}
/*文章標題*/
.i_blog_ri h5 {
    font-weight: 500;
    font-size: 20px;
    color: #3d3938;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;}
/*時間*/
    .i_blog_ri em {
        font-size: 14px;
        color: #858585;
        font-style: normal;
        display: block;
        margin: 7px 0;}  
 /*內文*/
 .i_blog_ri p {
    font-size: 15px;
    color: #3d3938;
    line-height: 130%;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    word-break: break-all;}       

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 商品下拉超過30個變大 */
.stellarnav.desktop li.bigMenu>ul{display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); left: 0; width: 100%; position: fixed; padding: 20px;}
.stellarnav.desktop li.bigMenu ul ul{top: 100%; left: 0; width: 100%; background: #2d2d2d; 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個--結束 */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */




@media screen and (max-width: 768px) {



/*文章*/
.path p, .path p a {
    text-align: left;}
    
.product_page .show_content > a { order: 1;}
.product_page ul.products-list { order: 2;}
.product_page ul.page { order: 3;}
.product_page .product_menu_list {width: 100%; order: 0; min-height: unset;}
}
@media screen and (max-width: 600px) {
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#content_main { margin:0;}

.bannerindex { position:static; height:auto;}
.swiper-banner { position:static; margin:0; height:auto;} 
/* .swiper-slide img { height:auto;} */
@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0;}
}
/*大圖*/
.swiper-banner .swiper-slide img {
    width: 100%;
    height: auto;}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */






/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



@media screen and (max-width: 1400px) {
.container {
        max-width: 1200px;
        transition: all 0.3s;}}
 @media screen and (max-width: 1200px) {      
        .stellarnav > ul > li > a {font-size: 16px;}}
 @media screen and (max-width: 980px) {
.stellarnav > ul > li > a {font-size: 16px;}
 .main_header_area .container .navigation {    grid-template-columns: 1fr;}
 .main_header_area .container .navigation> *{grid-row:unset;grid-column:unset;text-align: center;}
.nav-menu>li>a {padding: 10px 0px;}
.pageIndex .header_area {
    position: relative;
    width: 100%;}
.header_area.sticky {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999;}
.pageIndex .header_area .main_header_area , .pageIndex .header_area.sticky .main_header_area{    background: #dad0c7;}

.pageIndex .stellarnav  ul  li:hover  a {font-weight:bold ;}

.nav-menu>li>a {    padding: 15px 0px;letter-spacing: 2px;}
.me_tp_features {
    width: 100%;
    text-align: center;
    margin-bottom: 7px;}
/*logo*/
.nav-brand img {
        transition: all 0.3s;
        text-align: center; }
.nav-brand img {max-width: 80%;}

.navigation {
grid-template-columns: 200px 1fr;
grid-gap: 0 20px;
align-content: stretch;
justify-content: center;
align-items: center;
justify-items: center}

.tp_links {display: none;}

}

@media screen and (max-width: 768px) {


/*footer*/

.footer_info li:nth-child(1) {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    text-align: center;}   
.footer_menu {
    display: grid;
        grid-template-columns: repeat(auto-fit, minmax(min(135px, 100%), 1fr));
        gap: 5px;}
        .footer_info li {
            width: 80%;}   
.footer_menu a {
    margin: 0;
    text-align: center;
   
    transition: all 0.3s;
    color: #3d3938;
    background: #ffffff00;
    border: 1px #3d3938 solid;
    border-radius: 99em;}
.footer_menu a:hover {
    background: #605a70;
    border: 1px #3d3938 solid; border-radius: 99em;
    }

 /*側邊選單*/
 /*menu*/
 .stellarnav.mobile > ul > li:hover > a{color:#605a70 ;}
 .header_area.sticky .main_header_area {
    background: #dad0c7;}
 .stellarnav .menu-toggle span.bars span {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 6px;
    background: #3d3938;
    margin: 0 auto 4px;}
  .stellarnav .menu-toggle:after {
        content: 'MENU';
        font-size: 12px;
        color: #3d3938;
        display: block;
        transform: scale(0.9);}
 .stellarnav > ul > li > a {
        
            font-weight: bold;
            font-size: 18px;}
.stellarnav.mobile > ul > li {
            display: block;
            border-bottom: 1px #a0978e solid;}
/* + */
 .stellarnav a.dd-toggle .icon-plus:after {
                content: '';
                display: block;
                width: 12px;
                height: 0px;
                top: 50%;
                border-bottom: solid 3px #3d3938;
                position: absolute;}
 .stellarnav a.dd-toggle .icon-plus:before {
                    content: '';
                    display: block;
                    width: 12px;
                    height: 0px;
                    border-bottom: solid 3px #3d3938;
                    position: absolute;
                    top: 50%;
                    transform: rotate(90deg);
                    transition: width 0.3s;}

                    
 .stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 280px;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 9999;
    border-right:3px #a0978e solid;
    background:#dad0c7;}

.stellarnav.mobile li.open {
        background: #a9a19b;}
.stellarnav.mobile ul {
background: #dad0c8;}

.pageIndex .stellarnav ul li a {
        color: #3d3938;    border-right: 0;}

.pageIndex .stellarnav ul li a:hover {
            color: #605a70;   }

.stellarnav ul li:hover a {
            color: #605a70;    border-right: 0;}
.stellarnav.mobile .menu-toggle, .stellarnav.mobile .dd-toggle, .stellarnav.mobile .close-menu, .stellarnav.mobile .call-btn-mobile, .stellarnav.mobile .location-btn-mobile {
            display: inline-block;
            padding: 5px 7px;}
 .menu-toggle{margin-top: 15px;}         
.stellarnav.mobile li.open li.open {
                background: #212121;
                padding: 3px;}
/*close*/
 .stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {
                display: inline-block;
                text-align: right;
                font-size: 12px;
                background: #a0978e;
                color: #fff;
            }

.stellarnav .icon-close:after {
                content: '';
                display: block;
                width: 12px;
                height: 0px;
                top: 50%;
                border-bottom: solid 3px #fff;
                position: absolute;
                transform: rotate(-45deg);}
.stellarnav .icon-close:before {
                    content: '';
                    display: block;
                    width: 12px;
                    height: 0px;
                    border-bottom: solid 3px #fff;
                    position: absolute;
                    top: 50%;
                    transform: rotate(45deg);}

/*Footer/＝＝＝＝＝*/
.footer_info li p {
    text-align: left;
    display: flex;
    color: #ffffff;
    letter-spacing: 2px;
    margin: 2px 8px;
    flex-direction: row;}

#to_top { bottom:60px;}
.footer.with_shopping_mode { padding:30px 0 60px; }
.footer_info {    justify-content: center;}
.footer_logo {    text-align: center;}
#bottom_menu li a {  background: #dad0c7;}
.footer_info li{width: 80%;}
.footer_info ul {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;}
/* 開啟手機板下方按鈕所需設定 */
.footer.with_shopping_mode { padding:30px 0 60px; }
#to_top { bottom:60px;}
}

@media screen and (max-width: 600px) { 
}




