@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/
@import url('https://fonts.googleapis.com/css2?family=Ephesis&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Huninn&display=swap');

/*網站全域設定/＝＝＝＝＝*/
/*反白顏色*/
::-moz-selection{  background-color: #9692BE ;  color: #fff;}
::selection{  background-color: #9692BE ;  color: #fff;}
:root {
    --f54: 54px;
    --f50: 50px;
    --f48: 48px;
    --f42: 42px;
    --f40: 40px;
    --f36: 36px;
    --f32: 32px;
    --f28: 28px;
    --f24: 24px;
    --f22: 22px;
    --f20: 20px;
    --f18: 18px;
    --f17: 17px;
    --f16: 16px;
}

*{font-family: 'Montserrat','Noto Sans TC', sans-serif;letter-spacing: 2px;}
body{font-weight: 300; font-size: var(--f16);color: #131712;}
.path{display: none;}
.main_part {    padding: 80px 20px;    max-width: 1400px;}

.animated-arrow {    background: #9692beb0;    border-radius: 50px;}
.i_album_b a i.fa-solid.fa-arrow-right {    display: none;}

.animated-arrow:before, .animated-arrow:after, .animated-arrow b:before, .animated-arrow b:after {
    content: '';
    position: absolute;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    background: linear-gradient(130deg, #C6A6C9 0%, #B69EC6 60%, #9692BE 100%);
    z-index: 5;
}
/*.animated-arrow:before, .animated-arrow:after {
    width: 2px;
    height: 100%;
    background: linear-gradient(130deg, #C6A6C9 0%, #B69EC6 60%, #9692BE 100%);
}*/
/*.animated-arrow:before {
    left: 0;
    top: 0;
    -moz-transform: translateY(calc(100% + 2px));
    -ms-transform: translateY(calc(100% + 2px));
    -webkit-transform: translateY(calc(100% + 2px));
    transform: translateY(calc(100% + 2px));
}
.animated-arrow:after {
    right: 0px;
    bottom: 0;
    -moz-transform: translateY(calc(-100% - 2px));
    -ms-transform: translateY(calc(-100% - 2px));
    -webkit-transform: translateY(calc(-100% - 2px));
    transform: translateY(calc(-100% - 2px));
}*/

.animated-arrow b {
    width: 250px;
    display: block;
    font-weight: 300;
}
.animated-arrow:hover b {    letter-spacing: 7px;}
.animated-arrow b:before, .animated-arrow b:after {
    width: 100%;
    height: 2px;
}
.animated-arrow b:before {
    left: -2px;
    top: 0;
    -moz-transform: translateX(calc(-100% - 2px));
    -ms-transform: translateX(calc(-100% - 2px));
    -webkit-transform: translateX(calc(-100% - 2px));
    transform: translateX(calc(-100% - 2px));
}
.animated-arrow b:after {
    right: 0;
    bottom: 0;
    -moz-transform: translateX(calc(100% + 2px));
    -ms-transform: translateX(calc(100% + 2px));
    -webkit-transform: translateX(calc(100% + 2px));
    transform: translateX(calc(100% + 2px));
    /* bottom: -2px; */
}

.animated-arrow:hover:before, .animated-arrow:hover:after {
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
.animated-arrow:hover b:before, .animated-arrow:hover b:after {
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

/*頁碼*/
.page strong, .page a:hover {    background: #C4B0CF;}
.page li.activeN {    color: #C4B0CF;}


/*★★★卷軸設定↓↓↓↓↓↓↓↓↓↓↓↓*/
/* 捲軸寬度及高度 */
::-webkit-scrollbar {
    width: 6px; /*右側捲軸寬度*/
    height: 0px; /*下方捲軸高度*/
}

/* 軌道背景底色 */
::-webkit-scrollbar-track {    background: #EBEDE8; }

/* 滑桿顏色 */
::-webkit-scrollbar-thumb {    background: linear-gradient(130deg, #C6A6C9 0%, #B69EC6 60%, #9692BE 100%); border-radius: 4px;}
/* 滑桿滑鼠滑入時的顏色 */
::-webkit-scrollbar-thumb:hover {    background: #323A2D; }

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*電腦LOGO*/
.nav-brand {
    display: flex;
    align-items: center;
    padding: 20px 0 10px 10px;
    animation: down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 3s;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}
@keyframes down {
    0%{        opacity: 0;        transform: translate(0,-20px);    }
    100%{        opacity: 1;        transform: translate(0,0);    }
}

.footer_logo { max-width: 180px;}

/*手機LOGO
.nav-brand-m {}
*/

/* 商品下拉超過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個--結束 */


/*漢堡*/
/* === 只在螢幕寬度769以上螢幕呈現 === */

/*@media (min-width:769px) {*/
.me_tp_features { display: none;}
#to_top {    left: 30px;    bottom: 30px;}

/* header */
.pageIndex .header_area {
    transition: all 0.8s cubic-bezier(0.4, 0, 1, 1);
}
.header_area {
    position: fixed;
    padding: 0 30px 0 0;
    transition: .3s;
    background: transparent;
}
/*.header_area .main_header_area,*/

/*下滑*/
.header_area.sticky .main_header_area { width: 100%; height: 100%; transition: all 0.5s; padding: 0px;}
.header_area.sticky {
    padding: 0 30px 0 0;
    background: linear-gradient(2deg, #c4b0cf00, #9692be00);
    height: auto;
    transition: 0s;
}
.header_area.sticky .stellarnav .menu-toggle span.bars span { background: #C6A6C9;}


.header_area a.nav-brand::before {
    content: "";
    display: block;
    background: linear-gradient(225deg, #C6A6C9 0%, #C4B0CF 60%, #9692BE 100%);
    /*box-shadow: 1px 1px 5px #00000059;*/
    width: 130%;
    height: 120%;
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translate(-50%, 0px);
    z-index: -2;
    border-radius: 0 0 20px 0px;
    transition: all 0.3s;
}
.header_area.sticky a.nav-brand::before {    top: 0;    transition: all 1s;}

.main_header_area .container,  .navigation {
    height: 100%;
    width: 100%;
    max-width: 100%;
}

.navigation {
    padding: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}

.navigation>* {    order: 2;}

/* ----- topLogo ----- */
.nav-header {
    width: auto;
    display: block;
    position: relative;
    z-index: 5;
    max-width: 150px;
    transition: all 0.3s cubic-bezier(0.4, 0, 1, 1);
}
/*下滑*/
.header_area.sticky .nav-header {
    max-width: 120px;
    transition: all 0.3s cubic-bezier(0.4, 0, 1, 1);
}

/* ----- menu列 ----- */
.stellarnav.desktop {
    transition: 1s;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    width: auto;
}

/* --- 漢堡 --- */
.stellarnav .menu-toggle {
    display: block;
    width: 60px;
    max-width: 100%;
    padding: 15px;
    border-radius: 99em;
}

.stellarnav .menu-toggle:after {    display: none;}

.stellarnav .menu-toggle span.bars {
    top: 0;
    display: flex;
    height: 20px;
    padding: 0;
    transition: 0.5s;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.stellarnav .menu-toggle span.bars span {
    width: 100%;
    height: 2px;
    background: #fff;
    transition: 0.5s;
    margin: 0;
    padding: 0;
}

.stellarnav .menu-toggle:hover span.bars span:nth-child(2) {    width: 60%;}

  /* 選單開啟 - 漢堡改變 */
.stellarnav.active .menu-toggle span.bars {    height: 35px;}
.stellarnav.active .menu-toggle { background: transparent;}
.stellarnav.active .menu-toggle span.bars span {
    transform: translate(-50%, -50%) rotate(90deg);
    position: absolute;
    top: 50%;
    left: 50%;
    background: #C6A6C9;
}

.stellarnav.active .menu-toggle span.bars span:first-child {    left: 20%;}
.stellarnav.active .menu-toggle span.bars span:nth-child(2) {    top: 60%;}
.stellarnav.active .menu-toggle span.bars span:last-child {    left: 80%;}
.stellarnav.active .menu-toggle:hover span.bars span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
    top: 50%;
    left: 50%;
}

.stellarnav.active .menu-toggle:hover span.bars span:nth-child(2) {    width: 100%;    opacity: 0;}

.stellarnav.active .menu-toggle:hover span.bars span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
    top: 50%;
    left: 50%;
}

/* menu按鈕列表 */
.stellarnav.desktop {    z-index: 1;  }
.stellarnav.desktop>ul {
    position: fixed;
    width: 0vw;
    max-width: 400px;
    height: 100%;
    top: 0;
    bottom: 0;
    right:0;
    display: flex !important;
    margin: 0;
    padding: 0px;
    text-align: center;
    height: 100%;
    transition: .5s;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: -1;
    opacity: 0;
    background: linear-gradient(225deg, rgb(198 166 201 / 80%) 0%, rgb(196 176 207 / 80%) 60%, rgb(150 146 190 / 80%) 100%);
    display: block !important;
    backdrop-filter: blur(10px);
}
.pageIndex .stellarnav.left.desktop { animation: menu-in 2.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards; animation-delay: 2.5s; }

@keyframes menu-in{
    0%{opacity: 0;}
    100%{opacity: 1;}
}


/* 墊在按鈕下的背景
.stellarnav.desktop>ul::before {
    content: '';
    width: 100%;
    height: 100%;
    background: #6d7b63cc;
    backdrop-filter: blur(10px);
    position: absolute;
    left: 0;
    top: 0;
    transition: 1s;
    transform: translate(50%, 0%);
} */

.stellarnav.desktop.active>ul { transform: unset; opacity: 1; width: 100vw; max-width: 600px; padding: 20px 50px;
overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-top: 100px;
}

.stellarnav.desktop.active>ul::before {
    transition: 1s;
    transform: translate(0%, 0%);
}


.stellarnav>ul>li {
    display: block;
    width: 100%;
    max-width: 100%;
    text-align: center;
}

.stellarnav>ul>li a {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    flex-direction: column;
    text-align: left;
    padding: 5px 10px;
    margin: 0;
    position: relative;
    font-size: 15px;
    line-height: 140%;
    line-height: 60px;
    height: 60px;
    color: #FEFEFE;
}

.stellarnav>ul>li>a::before { 
    content: '';
    width: 0;
    height: 1px;
    border-bottom: 1px solid #fefefe47;
    transition: 1s;
    position: absolute;
    left: 0;
    bottom: 0;
}
.stellarnav.desktop.active>ul>li>a::before {         width: 100%; transition-delay: .3s;}

.stellarnav>ul>li>a:nth-of-type(1)::after, .stellarnav>ul>li.has-sub>a:nth-of-type(1)::after {
    content: "";
    width: 30px;
    height: 2px;
    border-bottom: 2px solid #C6A6C9;
    transition: 1.5s;
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    transition: all 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.stellarnav li.has-sub > a:after {
    content: '';
    margin-left: 0px;
    border-left: unset;
    border-right: unset;
    border-top: unset;
    display: inline-block;
    position: absolute;
    top: 97%;
    right: 0;
    transform: translateY(0px);
}
.stellarnav>ul>li>a:hover:nth-of-type(1)::after, .stellarnav>ul>li.has-sub>a:hover:nth-of-type(1)::after {        width: 100%;}

/* 主按鈕中英翻轉 - 不用可以刪掉 */
.stellarnav>ul>li>a b {
    height: 100%;
    transform: translateY(25px);
}

.stellarnav>ul>li>a b+b {    margin-top: 10px;}
.stellarnav>ul>li>a:hover b {    transform: translateY(-25px);  }

/*下拉+*/
.stellarnav a.dd-toggle .icon-plus:before, .stellarnav a.dd-toggle .icon-plus:after {
    border-bottom: solid 1px #FEFEFE;
}

/* 次分類 */
.stellarnav ul ul { left: 0%; position: relative; width: 100%; background: transparent; transition: all 0.3s ease-in-out; 
overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.stellarnav.desktop li.has-sub a { position: relative;}

.stellarnav.desktop li.has-sub a.dd-toggle { display: inline-block;  position: absolute;  text-align: center;  z-index: 999; padding-right: 0;}
.stellarnav .dd-toggle {  bottom: 15px;}
.stellarnav.desktop li.has-sub a.dd-toggle:before {  display: none;}
.stellarnav.desktop li .has-sub a.dd-toggle { display: none;}
.stellarnav ul ul ul { overflow: hidden; height: 0;}

/*次分類下拉按鈕*/
.stellarnav.desktop li.has-sub a.dd-toggle{display: none;}
.stellarnav.desktop.active li.has-sub a.dd-toggle {display: inline-block;}

/*第2層*/
.stellarnav li li {  border: unset; border-bottom-width: 0; padding-left: 15px; border-bottom: 1px dashed #eeeeee45; }
ul.news_classes li a , .stellarnav li li a {  height: 40px;}
.stellarnav li li a {
    display: block;
    font-size: 14px;
    line-height: 1.5;
    padding: 0;
    padding-top: 11px;
    height: auto;
    color: #f7d7ff;
    padding-bottom: 7px;
}
.stellarnav li li a:hover {    color: #fff;}

/* --- 聯絡連結 --- */
.tp_links {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    width: 100%;
}

/* --- 搜尋器 --- */
.box_search {    width: 100%;    order: 5;    display: none;  }

.shop_search_btn {
    width: 100%;
    border-radius: 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.box_search input[type=text] {
    width: 100%;
    box-sizing: border-box;
    padding: 15px 10px;
    padding-left: 32px;
    border-radius: 0;
}

/* --- 購物車和匯款連結 --- */
.me_tp_features>a {
    text-align: center;
    display: flex;
    flex-direction: column;
    /* 不要直書可以拿掉 */
    width: 1.2em;
    /* 不要直書可以拿掉 */
    line-height: 1.2;
    letter-spacing: 0;
    justify-content: center;
    align-items: center;
}

.me_tp_features>a span {    margin-top: 5px;}


@media (max-width:1024px) {
    #page {
      /* padding-left: 100px; */
        padding: 0;
    }

    .header_area.sticky, .header_area {
        width: 100%;
        height: 80px;
    }

    .header_area .main_header_area, .header_area.sticky .main_header_area {
      /* width: 100px; */
        width: 100%;
    }
    /*
    .navigation {
    flex-wrap: wrap;
    flex-direction: row-reverse;
    justify-content: space-between;
    }
    */

.navigation>*{      flex:1;    }

.nav-brand {
    background: none;
    width: 140px;
    height: auto;
}
.nav-brand img {
    display: block;
    max-width: 100%;
    margin: 0;
    padding: 0;
}
    /*
    .stellarnav.desktop{
    justify-content: flex-start;
    }
    */
.stellarnav.desktop {         justify-content: flex-end;    }
.stellarnav.desktop>ul{        width: 220px;        padding-left: 20px;    }
.me_tp_features {order: 1;      max-width: 200px;      justify-content: flex-end;    }
.me_tp_features>a {      flex-direction: row;      width: auto;    }
.tp_links {      justify-content: flex-end;    }
}

@media screen and (max-width: 768px) { 
    .pageIndex .header_area {
        position: fixed;
        background: transparent;
        padding: 10px;
    }

    /*LOGO*/
    /*.nav-header { filter: invert(0.5); }*/
    .me_tp_features {display: none;}
    .nav-brand {  max-width: 100px;}
    .nav-header { max-width: fit-content;}

    /*選單*/
    .stellarnav.mobile { right: 0; left: auto; }
    .stellarnav .menu-toggle span.bars span { background: #fff;}
    .header_area { padding: 0 0px 0 0;}
    .header_area.sticky { padding: 10px 0;}
    .stellarnav.mobile.left > ul { width: 100vw;}

    .stellarnav.mobile.left > ul {
        transform: unset; opacity: 1; width: 100vw; max-width: 400px;  padding: 0px 0px;  right: 0;  left: auto;flex-direction: column;
        background: rgba(255, 255, 255, .8);backdrop-filter: blur(10px); justify-content: flex-start; }
    .stellarnav.mobile ul {background: transparent;}
    .stellarnav.mobile > ul > li { border-bottom: unset; padding: 5px 30px; }
    .stellarnav.mobile > ul > li > a {
        line-height: 230%;
        color: #444444;
        overflow: hidden;
        /* height: 60px; */
        /* max-height: 60px; */
        /* padding: 5px 30px; */
    }
    .stellarnav.mobile li.open { background: linear-gradient(225deg, #C6A6C9 0%, #C4B0CF 60%, #9692BE 100%); padding: 3px;}
    .stellarnav.mobile > ul > li > a b {line-height: 230%;}
    .stellarnav.mobile li a { border-bottom: 1px solid rgb(255 255 255); color: rgba(255, 255, 255, .8); }
    .stellarnav .dd-toggle { bottom: auto;}
    .stellarnav li li a { border-bottom: unset !important;}
    .stellarnav.mobile > ul > li > a.dd-toggle {padding: 12px 6px;}
    .stellarnav a.dd-toggle .icon-plus:before, .stellarnav a.dd-toggle .icon-plus:after {border-bottom: solid 1px #444444;}
    .stellarnav .icon-close:after , .stellarnav .icon-close:before { border-bottom: solid 2px #fff;width: 20px;}
    .stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu { background: #C6A6C9; color: #fff; padding: 15px 10px;}
    .stellarnav a{color: #fff;}
    .stellarnav .icon-close {    padding-right: 6%;}
}

@media screen and (max-width: 500px) { 
    .header_area.sticky, .header_area {height: 70px;}
    .nav-brand {padding: 10px 10px 10px 10px;}
    .header_area a.nav-brand::before {width: 120%; height: 110%;}
}

@media screen and (max-width: 400px) { 
    .nav-brand { padding: 5px 15px 10px 0px;}
    .header_area a.nav-brand::before {width: 120%; height: 100%; left: 35%;}
}


/*漢堡截止*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 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) {
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*大圖*/

/*預設解除背景輪播*/
#content_main { margin:0;}
.bannerindex { position:relative; height:auto;}
.swiper-banner { position:static; margin:0; height:auto;} 
.swiper-banner .swiper-slide img {
    width: 100%;
}

#content {background-color: #fcf3f8;}


.bannerindex {
    position: sticky;
    height: auto;
}

/* .swiper-slide img { height:auto;} */
@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0;}
}


/* 大圖open */ 
.pageIndex #page::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: url(https://pic03.eapple.com.tw/kkdancestudio/ban_logo.png) center center no-repeat;
    background-size:220px auto;
    animation: logoAppearBlur 1.8s ease-out forwards; /* 出場時間縮短 */
    pointer-events: none;
}

/* 背景漸層動畫層 */
.pageIndex #page::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    background-image: linear-gradient(225deg, #C4B0CF, #9692BE);
    background-size: 250% 250%;
    width: 100%;
    height: 100%;
    z-index: 9998;
    pointer-events: none;
    animation: smoothGradientWash 3.5s ease-in-out both; /* 縮短漸層出場時間 */
    opacity: 0.9;
}

/* 模糊遮罩層 */
.pageIndex .bannerindex::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(9px) brightness(1.05);
    z-index: 999;
    animation: fogFadeAway 3s ease-in-out forwards; /* 淡出時間稍縮短 */
    pointer-events: none;
    mix-blend-mode: screen;
}

/* LOGO 動畫：微放大 + 淡出 + 模糊 */
@keyframes logoAppearBlur {
    0% {
        opacity: 1;
        transform: scale(1);
        backdrop-filter: blur(0px);
    }
    70% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        transform: scale(1.1);
        backdrop-filter: blur(8px);
    }
}

/* 背景動畫：漸層流動 + 淡出 */
@keyframes smoothGradientWash {
    0% {
        background-position: 0% 50%;
        opacity: 1;
    }
    50% {
        background-position: 100% 50%;
        filter: blur(4px);
    }
    100% {
        background-position: 0% 50%;
        opacity: 0;
    }
}

/* 遮罩模糊淡出 */
@keyframes fogFadeAway {
    0% {
        backdrop-filter: blur(10px) brightness(1.05);
        opacity: 1;
    }
    100% {
        backdrop-filter: blur(0px) brightness(1);
        opacity: 0;
    }
}

.pageIndex .bannerindex .swiper-slide {        background: linear-gradient(225deg, #C4B0CF, #9692BE);}
.pageIndex .bannerindex .swiper-slide img{
    transform: scale(0.5,0);
    opacity: 0;
    position: relative;
    animation: img-transform 3.5s forwards cubic-bezier(0.73, 0.08, 0.11, 0.99);
    animation-delay: 0s;
}

@keyframes img-transform {
    0%{
        top: -20px;
        opacity: 0;
        transform: scale(0.5,0);
    }
    5%{
        top: -20px;
        opacity: 1; 
        transform: scale(0.5,0);    
    }
    30%{
        top: -20px;
        opacity: 1;
        transform: scale(0.5,0.5);        
    }
    40%{
        top: -20px;
        opacity: 1;
        transform: scale(0.5,0.5);        
    }
    100%{
        top: 0px;
        opacity: 1;
        transform: scale(1);
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*footer*/
.footer {
    background:linear-gradient(225deg, #C6A6C9 0%, #C4B0CF 60%, #9692BE 100%);
    padding-top: 60px;
}

.footer .center {
    max-width: 1500px;
}

.footer_info {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    padding: 0;
}

.footer_logo {
    max-width: 100%;
    text-align: center;
    z-index: 1;
}

.footer_logo img {
    max-width: 12%;
}

.footer_info ul {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 70px;
    margin-top: 100px;
}
.footer_info li p, .footer_info li p a { color: #fff;}
.footer_info li:nth-child(1) {
    display: flex;
    flex-direction: column;
    z-index: 2;
}
.footer_info li:nth-child(2) {    z-index: 2;}

.footer_info li p.phone {    order: 1;}
.footer_info li p.mail {    order: 2;}
.footer_info li p.add {    order: 3;}

.footer_info li p.tel { display: none;}

.footer_menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
}
.footer_menu a {
    background: transparent;
    border: none;
    color: #fff;
    border-bottom: 1px solid rgba(100, 100, 100, .3);
    position: relative;
    padding: 8px;
}
.footer_menu a:hover {
    background: transparent;
    color: #fff;
    opacity: .6;
}

.footer_menu a:first-child {    display: none;}

.footer_menu a:before {
    content: "";
    width: 0%;
    height: 1px;
    background: rgba(100, 100, 100, .3);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all .5s;
    transition-timing-function: ease-in-out;
}
.footer_menu a:hover:before {
    width: 100%;
    background: #8D8EBB;
}

.box_link {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    max-width: 100%;
    bottom: 0;
    position: relative;
    right: 0;
    display: none;
}
.box_link a {
    height: 40px;
    border-radius: 56px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background: #7165652e;
    border: none;
    margin: 5px;
    backdrop-filter: blur(4px);
    transition: all .5s;
}

.fa-solid,
.fa-regular,
.fa-brands,
.fas,
.far,
.fab,
.fa-sharp-solid,
.fa-classic,
.fa {
    color: #fff;
    font-size: 15px;
}

.fa-phone-volume::before {    font-size: 17px;}

.box_link a:hover i {    color: #000;}
.box_link a:hover {    background: #856198;}
.copy {
    /* background: #00000070; */
    border: none;
    padding: 30px 20px;
    font-size: 12px;
    margin-top: 100px;
    background: transparent;
    color: #fff;
}
.copy a {    color: #fff;}
.copy a:hover { color: #856198;}

#to_top {
    background: transparent;
    -webkit-animation: topmoveTop 3000ms infinite;
    animation: topmoveTop 3000ms infinite;
    bottom: 50px;
}
@keyframes topmoveTop {from{transform:translateY(20px);}55%{transform:translateY(0px);}60%{transform:translateY(10px);}70%{transform:translateY(0px);}to{transform:translateY(20px);}}
@-webkit-keyframes topmoveTop {from{transform:translateY(20px);}55%{transform:translateY(0px);}60%{transform:translateY(10px);}70%{transform:translateY(0px);}to{transform:translateY(20px);}}


@media screen and (max-width: 768px) {
    :root {
        --f54: 36px;
        --f48: 32px;
        --f42: 30px;
        --f40: 28px;
        --f36: 26px;
        --f32: 24px;
        --f28: 20px;
        --f24: 20px;
        --f20: 18px;
        --f18: 17px;
        --f17: 16px;
    }

    .footer_info ul {
    position: relative;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    }
.footer_logo img { max-width: 20%;}
.footer_info ul{ margin-top: 0px;}
.footer_menu {    grid-template-columns: 1fr 1fr;}

.copy { color: #fff; margin-top: 0px}
}

@media (max-width:600px) {
.footer_logo img {max-width: 30%;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {
    height: 550px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    justify-content: flex-start;
    padding: 23% 40px 30px;
    overflow: hidden;
    align-items: flex-end;
}

.banner:before {
    content: "";
    background-image: linear-gradient(180deg, #00000000 40%, #c4b0cfa1), url(https://pic03.eapple.com.tw//kkdancestudio/ban.jpg);
    position: absolute;
    top: 0;
    left: 0;
    animation-duration: 5s;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    overflow: hidden;
}

.banner h5 {    display: none;}
.banner.banA {}
.banner.banB {}
.banner.banC {}
.banner.banD {}
.banner.banE {}
.banner.banblog {}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/
/*文章功能頁/ = = = = */
/* 左側分類欄位 */
.blog_le {
    width: 100%;
    padding: 0;
}
h5.blog_le_t {
    margin-bottom: 10px;
}
h5.blog_le_t em {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.24em;
    color: #C5A5C7;
}
.blog_search {
    position: relative;
    margin-bottom: 10px;
    opacity: .8;
}
.blog_search input[type=search] {
    width: 100%;
    font-size: 14px;
    color: #464646;
    border: 0;
    background: #ffffff;
    border-radius: 0;
    padding: 10px 40px 10px 10px;
}
.blog_le .accordion {
    border-radius: 0;
    border: 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #C6A6C9;
    border-bottom: 1px solid #C6A6C9;
    font-size: 0;
}
.blog_le .accordion li {
    transition: .2s ease-out;
}
.accordion li+li .link {
    border: 0;
    border-left: 1px solid #C6A6C9;
}
.accordion li .link a {
    padding: 5px 10px;
    font-weight: 700;
    text-align: center;
    line-height: 1.7;
    letter-spacing: 0.04em;
    font-size: 16px;
    color: #555555 ;
    font-weight: 500;
    margin: 10px 0;
}
.blog_le .accordion > li.on_this_category{
    background: #C6A6C9 !important;
}
.blog_le .accordion > li:hover .link a{
    color:#fff  !important;
}
.blog_le .accordion > li:hover {
    background: #C6A6C9 !important;
}
.blog_le .accordion > li.on_this_category .link a {
    color: #fff !important;
}
/* 右側圖文區 */
.blog_ri {
    width: 100%;
    padding: 0 0 0 20px;
    min-height: 75vh;
    padding: 0;
}
h4.blog_category_title {
    color: #464646;
    width: fit-content;
    font-weight: 600;
    letter-spacing: 0.04em;
}
.blog_in_page h4.blog_category_title {
    width: 100%;
    border-bottom: 1px #C6A6C9 solid;
}
/* 圖文區塊 */
.blog_subbox {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
}
.subbox_item {
    position: relative;
    width: 100%;
    background: rgb(252 243 248);
    border-radius: 0;
    overflow: hidden;
    transition: .5s ease-out;
    border: 1px solid #D9DDE3;
    height: fit-content;
    border-radius: 20px;
}
.subbox_item:hover {
    transition: .5s ease-out;
    box-shadow: 9px 12px 20px 0px rgb(181 177 172 / 35%);
}
.subbox_item li:hover {
    transition: .5s ease-out;
    box-shadow: 9px 12px 20px 0px rgb(181 177 172 / 35%);
}
.subbox_item a {
    display: flex;
    grid-template-columns: 1fr;
    gap: unset;
    flex-direction: column;
    height: 100%;
}
.module_i_news li a:before, .module_i_news li a:after, .subbox_item a:after{
    content: none;
}
.subbox_item a:before {
    content: '了解更多 >';
    color: #555555;
    transition: all 0.4s ease;
    opacity: 1;
    position: relative;
    order: 2;
    right: unset;
    text-align: right;
    margin: 0 25px;
    padding: 10px 5px;
    border-top: 1px solid #D9DDE3;
    letter-spacing: 0.04em;
}
.subbox_item a:hover:before, .subbox_item a:hover:after {
    opacity: 1;
    transition: all .5s;
    color: #1A2A45;
}
/* 圖 */
.i_blog_le, .blog_list_le {
    overflow: hidden;
    position: relative;
    aspect-ratio: 52 / 35;
    background: linear-gradient(225deg, #C6A6C9 0%, #C4B0CF 60%, #9692BE 100%);
}
.i_blog_le img, .blog_list_le img {
    width: 100%;
    transition: .4s ease;
}
.module_i_news li a:hover img, .subbox_item a:hover img {
    z-index: 1;
    transition: 0.4s;
    /* filter: grayscale(1); */
    opacity: 0.3;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}
.module_i_news li a:hover .i_blog_le::before,  .subbox_item a:hover .blog_list_le::before{
    opacity: 1;
    transition: 0.5s;
    margin-top: -20px;
}
.module_i_news li a .i_blog_le:before, .blog_list_le::before{
    content: "MORE +";
    position: absolute;
    line-height: 1.462;
    left: 50%;
    top: 50%;
    z-index: 99;
    transform: translateX(-50%);
    /* margin-left: -45px; */
    margin-top: -80px;
    display: block;
    padding: 10px 20px 7px;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: #fff;
    border: 2px solid #fff;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 20px;
}
/* 文字 */
.i_blog_ri, .blog_list_ri {
    padding: 25px;
    width: 100%;
}
.i_blog_ri h5, .blog_list_ri h5 {
    text-align: left;
    color: #9692be;
    font-weight: 600;
    letter-spacing: 0.04em;
}
.i_blog_ri em, .blog_list_ri em {
    font-size: 14px;
    color: #9692be;
    margin: 10px 0 0;
    padding: 5px 0;    
    letter-spacing: 0.04em;
}
.i_blog_ri p, .blog_list_ri p {
    font-size: 16px;
    letter-spacing: 0.12em;
    line-height: 1.5;
    font-weight: 400;
    color: #464646;
}




/*文章內層/ = = = = */
/*文章-相關推薦*/
/* .news_related {
    background: #f3f3f3;
    padding: 25px 15px;
}
.news_related h6 span:before {
    font-size: 24px;
    color: #6d7980;
}
.lastPage {
    color: #fff;
    background: #7d91a6;
} */


/* 上下篇按鈕 */
.blog_back {
    z-index: 1;
}
.blog_back a {
    font-size: 13px;
    letter-spacing: 0.08em;
}
.blog_back a.article_btn_back {
    background: #9692beb0;
    transition: .4s ease;
}
.blog_back a.article_btn_back:hover {
    opacity: .6;
}
.blog_back a.article_btn_prev, .blog_back a.article_btn_next {
    background: #b69ec6b8;
    color: #fff;
    transition: .4s ease;
}
.blog_back a.article_btn_prev:hover, .blog_back a.article_btn_next:hover {
    opacity: .6;
}


/* 分享按鈕 = = */
.blog_shareData {
    border: 1px solid #D9DDE3;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    margin-bottom: 20px;
    width: fit-content;
    padding: 10px;
    border-radius: 5px;
    margin: 0;
}
.toShareNews b, .toShareNews a, .toShareNews a object, .toShareNews a i {
    font-weight: 400;
    font-size: 14px;
    color: #6C757D;
}
.toShareNews a object {
    filter: grayscale(1) brightness(1) contrast(1);
}
.toShareNews > a:hover > object {
    filter: none;
}
/* 文章編輯器 */
.blog_box_edit {
    background: transparent;
    padding: 0;
    margin: 10px 0;
    font-size: 16px;
    color: #464646;
    line-height: 1.8;
    padding: 0;
    letter-spacing: 0.04em
}
/* 文章內照片隱藏 */
/*.articel_mainPic {
    display: none;
}*/

/*文章-相關推薦*/
.news_related, .prod_related {
    font-family: "Noto Serif TC", sans-serif;
    background: #fcf3f8;
    padding: 80px 5%;
    /* width: 90%; */
    /* max-width: 1400px; */
    margin: auto;
}
.news_related h6 span:before {
    content: '相關案例';
}
.news_related h6 span:before, .prod_related h6 span:before {
    font-size: 24px;
    color: #464646;
    font-weight: 500;
    letter-spacing: 0.04em;
}
.news_related_list, .related_list {
    margin: 40px auto;
}
.news_related_list li, .related_list li {
    display: block;
    padding: 0px;
}
.news_related_list li a, .related_list li a {
    padding: 10px;
    background: #9692beb0;
    height: 100%;
    border: 1px solid #D9DDE3;
    border-radius: 5px;
    transition: .35s ease;
}
.news_related_list li a:hover, .related_list li a:hover {
    box-shadow: 9px 12px 20px 0px rgb(181 177 172 / 35%);
    transition: .35s ease;
}
.news_related_list li a p, .related_list li a p{
    font-size: 16px;
    letter-spacing: 0.04em;
    color: #fff;
    padding: 10px 0 5px;
    line-height: 1.5;
}
/* 按鈕 */
.news_related_b_box, .prod_related_b_box {
    margin: auto;
    background: transparent;
    position: relative;
    z-index: 1;
    min-width: 165px;
    width: 200px;
    height: 50px;
    font-size: 14px;
    letter-spacing: 0.1em;
    overflow: hidden;
    transition: color 0s ease;
    border: 1px solid #9692beb0;
    border-radius: 50px;
}
.lastPage {
    color: #fff;
    background: transparent;
    transition: all .5s;
    font-weight: 500;
    letter-spacing: 0.12em;
    font-size: 16px;
    margin: 0 auto;
    color: #9692beb0;
    line-height: 1.8;
}
a.lastPage:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 0;
    height: 100%;
    background-color: #9692beb0;
    transition: all 0.5s;
}
a.lastPage:hover {
    color: #fff;
}
a.lastPage:hover:after {
    width: 100%;
}



/* 文章首頁/ = = = = */
.module_i_news {
    position: relative;
    background: transparent;
    padding: 100px 5%;    
    font-family: "Shippori Mincho","Noto Serif TC", sans-serif;
}
.module_i_news:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: 200px 200px;
    background-color: #fcf3f8;
    z-index: 0;
    top: 0;
    left: 0;
}
.module_i_news section {
    max-width: 1370px;
    margin: 0px auto;
    position: relative;
    z-index: 1;
}
/* 標題 */
.module_i_news .title_i_box {
    display: flex    ;
    margin-bottom: 40px;
    text-align: center;
    flex-direction: column;
}
.module_i_news .title_i_box h6 {
    order: 2;
    font-size: 0px;
    margin-top: 5px;
}
.module_i_news .title_i_box h4 {
    order: 1;
    font-size: 24px;
    color: #464646;
    margin: 0;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.08em;
    font-family:  "Huninn", sans-serif, "Noto Sans TC", sans-serif;
}
.module_i_news .title_i_box h4:before {
    content: 'News';
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 72px;
    color: #C5A5C7;
    line-height: 120%;
    letter-spacing: 0.1em;
    font-weight: 400;
    font-family: "Ephesis", cursive, "Noto Sans TC", sans-serif;
    padding: 0 0 60px 0;
}
.module_i_news_list {
    width: 100%;
    margin: 20px auto;
    padding: 0px;
}
.module_i_news ul {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 25px;
}
.module_i_news li {
    position: relative;
    width: 100%;
    background: #fcf3f8;
    border-radius: 0;
    overflow: hidden;
    transition: .5s ease-out;
    border: 1px solid #D9DDE3;
    border-radius: 20px;
}
.module_i_news li:nth-child(4) {
    display: none;
}
.module_i_news li:hover {
    transition: .5s ease-out;
    box-shadow: 9px 12px 20px 0px rgb(181 177 172 / 35%);
}
.module_i_news li a {
    display: flex;
    grid-template-columns: 1fr;
    gap: unset;
    flex-direction: column;
    height: 100%;
}



@media (max-width:1024px) {
.module_i_news ul {grid-template-columns: 1fr 1fr 1fr;}
}

@media (max-width:768px) {
.module_i_news ul {grid-template-columns: 1fr 1fr;}
.blog_subbox {grid-template-columns: 1fr 1fr;}
}

@media (max-width:600px) {
.module_i_news ul {grid-template-columns: 1fr;}
}

@media (max-width:600px) {
.blog_subbox {grid-template-columns: 1fr;}
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*聯絡我們*/
.contact_form li.last blockquote, .contact_form li.last cite {   border: 1px #9692beb0 solid;  border-radius: 50px;}
.contact_form li.last cite {    background: #9692beb0 ;    margin-left: 15px;}

.contact_content {background-color: #fcf3f8;}
.contact_content .information_left{display: none;}
.contact_content .information_right {    width: 100%;}

.blank_letter {
    text-align: center;
    color: #464646;
    order: 1;
    font-size: 24px;
    margin: 0;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.08em;
    font-family:  "Huninn", sans-serif, "Noto Sans TC", sans-serif;
}

.blank_letter :before {
    content: 'Form';
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 72px;
    color: #C5A5C7;
    line-height: 120%;
    letter-spacing: 0.1em;
    font-weight: 400;
    font-family: "Ephesis", cursive, "Noto Sans TC", sans-serif;
    padding: 0 0 60px 0;
}
.contact_form li {
    grid-template-columns: 1fr;
    grid-gap: 0;
}
.contact_form li .form__label {
    max-width: 100%;
    text-align: left;
    padding-bottom: 4px;
    padding-top: 10px;
    color: #464646;
    font-weight: 500;
    background: transparent;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*相本分類全版面 ( 限制最寬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;  display: none;}
.footer.with_shopping_mode { padding:30px 0 0px; }
#to_top { bottom:60px;}
}

@media screen and (max-width: 600px) { 
}




