@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/

/* 全域變數 */

:root {
    /* 顏色 */
    --main-color: #E8DED2;
    --sub1-color: color-mix(in srgb, var(--main-color) 75%, black);
    --sub2-color: color-mix(in srgb, var(--main-color) 25%, white);
    --sub3-color: color-mix(in srgb, var(--main-color) 3%, white);
    --ac-color: #1F1A17;
    --f1-color: #B9B1A8;
    --f2-color: #C6A86D;
    --f3-color: #f6f6f6;
    --bg-color: white;

    /* 字型 */
    --font: "Noto Sans TC", sans-serif;
    --sfont: "Roboto","Noto Sans TC", sans-serif;

    /*變化*/
    --tr: ease-out 0.5s;
    /*圓角*/
    --br: 0px;
}


/* 文字設定 */

body {
    letter-spacing: .15rem;
    font: normal 16px/1.5 var(--font);
    color: var(--ac-color);
}

/* 填空欄提示字 */
input::placeholder {
    letter-spacing: .15rem;
    font: normal 14px/1.5 var(--font);
    color: color-mix(in srgb, var(--f1-color) 30%, white);
}

/* 客戶編輯區文字 */
.blog_box_edit *,
.promotions_page .edit *,
.edit {
    letter-spacing: .1rem;
    line-height: 200%;
    font-family: var(--font);
}


/* 反白顏色 */
::-moz-selection {
    color: var(--bg-color);
    background: var(--f1-color);
}

::selection {
    color: var(--bg-color);
    background: var(--f1-color);
}


/* 通用設定 */

/* 滾動條 -------------------- */
/* 捲軸寬度及高度 */
::-webkit-scrollbar {
    width: 8px;
    /*右側捲軸寬度*/
    height: 0px;
    /*下方捲軸高度*/
}

/* 軌道背景底色 */
::-webkit-scrollbar-track {
    background-color: var(--bg-color);
}

/* 滑桿顏色 */
::-webkit-scrollbar-thumb {
    background-color: var(--f2-color);
}

/* 滑桿滑鼠滑入時的顏色 */
::-webkit-scrollbar-thumb:hover {
    background: var(--f1-color);
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 大範圍設定 */

/* ＝＝＝ 【【  版型設定(基本) ↓↓↓  】】 ＝＝＝ */

/*背景顏色*/
#content_main,
#content {
    background-color: var(--bg-color);
}

/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */
@media screen and (max-width: 768px) {
    .show_content {
        padding: 10px 0 20px;
    }
}

@media screen and (max-width: 600px) {
    .main_part {
        padding: 10px 20px;
    }
}

/* ＝＝＝ 【【  版型設定(基本) ↓↓↓  】】 ＝＝＝ */

/* 麵包屑 -------------------- */
/* 隱藏 */
.path p,
.path p a {
    display: none;
}

/* 頁碼 -------------------- */
.page li a {
    color: var(--f1-color);
}

.page strong,
.page a:hover {
    background: var(--f1-color);
    color: var(--bg-color);
}

/* ＝＝＝ 【【  客製更動處 ↓↓↓  】】 ＝＝＝ */

.main_part {
    padding: 10px 20px 50px;
}

/* 隱藏新浮動 */
.info_fix {
    display: none;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 開場動畫 */
body.pageIndex::before {
    content: ' ';
    position: fixed;
    z-index: 999999991;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(255 255 255 /100%);
    animation: blurAnimation 3s forwards;
}

@keyframes blurAnimation {
    0% {
        opacity: 1;
    }
    30% {
        backdrop-filter: blur(20px);
        opacity: 1;
    }

    100% {
        backdrop-filter: blur(0px);
        opacity: 0;
        pointer-events: none;
    }
}

body.pageIndex::after {
    content: ' ';
    position: fixed;
    z-index: 999999999;
    top: 50%;
    left: 50%;
    width: 250px;
    aspect-ratio: 10/9;
    background: url(https://pic03.eapple.com.tw/junwei410519/open_logo.svg) center no-repeat;
    background-size: cover;
    animation: fadein 3s forwards;
    transform: translate(-50%, -50%);
}

@keyframes fadein {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 1;
        pointer-events: auto;
    }

    100% {
        opacity: 0;
        pointer-events: none;
    }
}
/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */
/* 平版時隱藏 */
@media screen and (max-width: 1024px){
    body.pageIndex::before,
    body.pageIndex::after{
        display: none;
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 大圖 */

/* ＝＝＝ 【【  預設區塊不動 ↓↓↓  】】 ＝＝＝ */

/*預設解除背景輪播*/
#content_main {
    margin: 0;
}

.bannerindex {
    position: relative;
    height: auto;
}

.swiper-banner {
    position: static;
    margin: 0;
    height: auto;
}

/* .swiper-slide img { height:auto;} */

/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */
@media screen and (max-width: 768px) {
    .bannerindex {
        padding: 0;
        margin: 0;
    }
}

/* ＝＝＝ 【【  版型設定(純文字) ↓↓↓  】】 ＝＝＝ */
.pageIndex .swiper-slide {
    position: relative;
}

.pageIndex .swiper-slide:before {
    content: "一群年輕師傅的夢想，打照出屬於泥的夢想家";
    position: absolute;
    z-index: 2;
    line-height: 10%;
    font-size: 20px;
    color: #FFF;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);letter-spacing: 0.5em;
}
.pageIndex .swiper-slide:nth-child(1):before{right: 15%;top: 15%;writing-mode: vertical-rl;}
.pageIndex .swiper-slide:nth-child(2):before{left: 15%;top: 80%;}

.pageIndex .swiper-slide.swiper-slide-active:nth-child(1):before{animation: an-wm-v 1.5s 1s both;}
.pageIndex .swiper-slide.swiper-slide-active:nth-child(2):before{animation: an-wm-l 1.5s 1s both;}


@keyframes an-wm-v {
    0% {      transform:translateY(5vw);opacity: 0;letter-spacing: 1.5em;   }
    100% {      opacity:translateY(0);opacity: 1;letter-spacing: 0.5em;    }
}
@keyframes an-wm-l {
    0% {      transform:translateX(-5vw);opacity: 0;letter-spacing: 1.5em;   }
    100% {      opacity:translateX(0);opacity: 1;letter-spacing: 0.5em;    }
}


/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */

@media screen and (max-width: 1440px) {
.pageIndex .swiper-slide:before{ font-size: 16px;}
}

@media screen and (max-width: 1200px) {
.pageIndex .swiper-slide:before{ font-size: 14px;}
}

@media screen and (max-width: 1024px) {
.swiper-banner {    height: 100%;}
.swiper-banner .swiper-slide img {
    width: 100%;
    display: block;
    max-width: 100%;
    min-width: 100%;
    height: 100%;
    min-height: 100%;
    max-height: 100%;
    object-position: center;
    object-fit: cover;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    margin: 0;
    transition: all 0.3s;
}
.pageIndex .swiper-slide:nth-child(1):before{right: 22%;}
}

@media screen and (max-width: 768px) {
.pageIndex .swiper-slide:nth-child(1):before{right: 15%;}
.pageIndex .swiper-slide:nth-child(2):before{top: 70%;}
}

@media screen and (max-width: 500px) {
.pageIndex .swiper-slide:before{ font-size: 12px;}
.pageIndex .swiper-slide:nth-child(1):before{top: 8%;}
.pageIndex .swiper-slide:nth-child(2):before{left: 8%;}
}


/* ＝＝＝ 【【  客製更動處 ↓↓↓  】】 ＝＝＝ */
/*切換鈕置左*/
.bannerindex {
    --swiper-pagination-color: var(--bg-color);
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: auto;
    top: 50%;
    left: 2vw;
    width: 25px;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 5px 10px;
    width: 5px;
    height: 15px;
    border-radius: 2px;
}

/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */
@media screen and (max-width: 1024px) {
    .bannerindex {
    aspect-ratio: 3/2;
    margin: 0 auto;
    overflow: hidden;transition:all 0.3s;
    }
/*隱藏下滑提示*/
    .pageIndex .swiper-banner::before{
        display: none;
    }
}
@media screen and (max-width: 768px) {
    .bannerindex { padding:0; margin:0;aspect-ratio:6/7;}
}
@media screen and (max-width: 600px) {
    .pageIndex .swiper-wrapper::before {
        font-size: 16px;
    }
    .pageIndex .swiper-wrapper::after {
        font-size: 12px;
        margin-top: 25px;
    }
}
@media screen and (max-width: 480px) {}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* HEADER */

/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/


/*上方選單右邊設定 臉書/LINE/電話/信箱
.tp_links a:before {寬高大小設定}
.tp_links a.me_tp_fb {}
.tp_links a.me_tp_fb:before {背景換圖/建議.SVG}
.tp_links a.me_tp_line {}
.tp_links a.me_tp_line:before {背景換圖/建議.SVG}
.tp_links a.me_tp_call {}
.tp_links a.me_tp_call:before {背景換圖/建議.SVG}
.tp_links a.me_tp_mail {}
.tp_links a.me_tp_mail:before {背景換圖/建議.SVG}
*/

/*電腦LOGO
.nav-brand {}
*/

/*手機LOGO
.nav-brand-m {}
*/

/* ＝＝＝ 【【  xx 無預設區塊 xx  】】 ＝＝＝ */

/* ＝＝＝ 【【  版型設定(基本) ↓↓↓  】】 ＝＝＝ */
/* 布局 */
.header_area,
.header_area.sticky {
    background: var(--bg-color);

}

.main_header_area .container {
    max-width: 1600px;
}

.navigation {
    display: flex;
    align-items: center;
}

/* +++ 複選單(購物車/社群icon/多語系) -------------------- */
.me_tp_features {
    display: none;
}

/* +++ logo -------------------- */

/*logo大小*/
.nav-header {
    max-width: 250px;
}

.nav-brand img {
    display: block;
    /*填滿h1空白*/
}

/* +++ 主選單 -------------------- */

/* 主選單文字樣式 */
.stellarnav>ul>li>a,
.stellarnav>ul>li>a b {
    color: var(--ac-color);
    font-family: var(--font);
    letter-spacing: .4rem;
    margin: 0;
    /*蓋預設*/
    font-size: 15px;
}

.stellarnav>ul>li:hover a {
    color: var(--f2-color);
    transition: var(--tr);
}

/* 翻轉後文字 */
.stellarnav>ul>li>a b:nth-child(2) {
    font: normal 14px/40px var(--sfont);
    letter-spacing: .05rem;
}

/* 按鈕間距+高度 */
.stellarnav>ul>li {
    padding: 0px 1rem;
}

/* 隱藏三下拉角形 */
.stellarnav li.has-sub>a:after {
    display: none;
}

.stellarnav>ul>li.has-sub>a {
    padding-right: unset;
}

/* +++ 下拉區塊 -------------------- */
/* 整個下拉的外框 */
.stellarnav ul ul {
    border: solid 1px var(--f3-color);
    width: 180px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: rgba(0 0 0/5%) 0px 2px 8px 0px;
}

/*----------*/
.stellarnav li.has-sub li {
    border: none;
    border-bottom: solid 1px var(--f3-color);
    background: var(--bg-color);
}

.stellarnav li.has-sub li:last-of-type {
    border-bottom: none;
}

.stellarnav li.has-sub li:hover {
    background: var(--f3-color);
    transition: var(--tr);
}

/* 下拉選單文字 */
.stellarnav li.has-sub li a,
.stellarnav.mobile li li.has-sub a {
    font-size: 13px;
    padding: .75rem 1rem;
    color: var(--f1-color);
}

/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */

@media screen and (max-width: 1024px) {
    .nav-header {
        width: 40vw;
    }

    .stellarnav>ul>li {
        padding: 5px 5px 0px;
    }

    .stellarnav>ul>li>a {
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    .nav-header {
        min-width: 100px;
    }
}

/* ＝＝＝ 【【  客製更動處 ↓↓↓  】】 ＝＝＝ */

/* logo大小 */
.nav-header {
    max-width: 220px;
}

/* 寬度 */
.main_header_area .container {
    max-width: 1400px;
}

/* 下滑變化 */
.pageIndex .header_area {
    position: fixed;
    background: transparent;
    opacity: 0;
    top: -20px;
    transition: var(--tr);
}

.pageIndex .header_area.sticky {
    background: var(--bg-color);
    opacity: 1;
    top: 0px;
    transition: var(--tr);
}

/* 隱藏次選單 */
.stellarnav ul ul {
    display: none!important;
}

/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */

@media screen and (max-width: 1024px) {
    .header_area{
        padding-bottom: 0px;
    }
}
@media screen and (max-width: 768px) {
    .header_area{
        padding-bottom: 10px;
    }

    .pageIndex .header_area {
        background: var(--bg-color);
        opacity: 1;
        top: 0px;
        position: sticky;
    }

}
@media screen and (max-width: 480px) {}

/* =============== ▲ HEADER ▲ =============== */

/* =============== ▼ 漢堡選單 ▼ =============== */

/* ＝＝＝ 【【  版型設定(基本) ↓↓↓  】】 ＝＝＝ */
@media screen and (max-width: 768px) {

    /* 三 按鈕 ---------- */
    .stellarnav.mobile {
        top: 0px;
    }

    /*三改色*/
    .stellarnav .menu-toggle span.bars span {
        background: var(--f1-color);
    }

    /*隱藏-menu文字樣式*/
    .stellarnav .menu-toggle:after {
        color: var(--f1-color);
        display: none;
    }

    /*打開後 close表頭*/
    .stellarnav.mobile.left .close-menu {
        background: var(--bg-color);
    }

    /*隱藏-close文字*/
    .stellarnav.mobile .close-menu {
        position: relative;
        color: transparent;
    }

    .stellarnav.mobile .close-menu>* {
        display: none;
    }

    .stellarnav.mobile .close-menu:before {
        content: "×";
        position: absolute;
        right: 10px;
        top: 10px;
        color: var(--f1-color);
        font-size: 12px;
    }

    /*選單底色*/
    .stellarnav.mobile.left>ul {
        background: var(--bg-color);
        max-width: 350px;
        /*選單寬度*/
        height: 100vh;
    }

    /*主選單按鈕 ---------- */
    .stellarnav.mobile>ul>li,
    .stellarnav.mobile li.open {
        padding: 0px;
        /*蓋預設*/
        border-bottom: 1px solid var(--f3-color);
    }

    /*選單文字*/
    .stellarnav.mobile>ul>li>a {
        text-overflow: ellipsis;
        padding: 20px 1.5rem;
        /*按鈕高度*/
        display: flex;
        flex-direction: column;
    }

    /*文字*/
    .stellarnav.mobile>ul>li>a b {
        vertical-align: middle;
    }

    .stellarnav>ul>li>a b:nth-of-type(2) {
        color: var(--ac-color);
        font-size: 12px;
        line-height: 1.5rem;
    }

    /*隱藏-偽元素*/
    .stellarnav>ul>li:before {
        display: none;
    }

    /*下拉+號 ---------- */
    .stellarnav.mobile>ul>li>a.dd-toggle {
        padding: 20px 0px;
        /*= 按鈕高度*/
    }

    /*+號顏色*/
    .stellarnav a.dd-toggle .icon-plus:before,
    .stellarnav a.dd-toggle .icon-plus:after {
        border-bottom: solid 1px var(--f2-color);
    }

    /*+號展開區塊 ---------- */
    /*下拉區塊-外層*/
    .stellarnav.mobile li.open,
    .stellarnav.mobile li.open li.open {
        background: transparent;
        padding: 0px;
        /*蓋預設 3px*/
    }

    .stellarnav.mobile ul ul {
        background: transparent;
        border-radius: unset;
        padding-left: .5rem;
        box-shadow: none;
    }
}

@media only screen and (max-width: 570px) {
    .stellarnav .menu-toggle {
        padding: 10px;
        /*蓋預設*/
    }
}

/* ＝＝＝ 【【  客製更動處 ↓↓↓  】】 ＝＝＝ */
/*
@media only screen and (max-width: 768px) {}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 商品下拉超過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  */
.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;}
.product_page ul.page { order: 3;}
.product_page .product_menu_list {width: 100%; order: 0; min-height: unset;}
}
@media screen and (max-width: 600px) {
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {}
.banner h5 {}
.banner.banA {}
.banner.banB {}
.banner.banC {}
.banner.banD {}
.banner.banE {}
.banner.banblog {}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*一排呈現
.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) {
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu {display: block; }
.footer.with_shopping_mode { padding:30px 0 70px; }
#to_top { bottom:60px;}
}

@media screen and (max-width: 600px) { 
}




