@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anek+Telugu:wght@100..800&display=swap');

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/

body{
    font-family:  "Noto Sans TC",   "Anek Telugu", sans-serif;
}
.path p, .path p a{ display: none;}

.edit{ padding: 0px 0;}
.info_fix { display: none; }



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/* 開場動畫 */

body.pageIndex:before {
    content: ' ';
    position: fixed;
    z-index: 999999991;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #fff;
    animation: fadein 6s forwards;
}

@keyframes fadein {
    50% {
        opacity: 1;
    }

    60% {
        pointer-events: auto;
    }

    100% {
        opacity: 0;
        pointer-events: none;
    }
}

body.pageIndex:after {
    content: ' ';
    position: fixed;
    z-index: 999999999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url(https://pic03.eapple.com.tw/afreeman/open-logo.svg) center / cover no-repeat;
    animation: fadeinlogo 6s forwards;
}

@keyframes fadeinlogo {
    0% {
        opacity: 0;
    }

    45% {
        opacity: 1;
    }

    60% {
        opacity: 0;
        pointer-events: auto;
    }

    100% {
        opacity: 0;
        pointer-events: none;
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*選單設定*/
.nav-menu {
    margin: 0;
}

.main_header_area .container {
    max-width: 100%;
}

.nav-menu>li:not(.tp_links) {
    padding-right: 15px;
}

.nav-menu>li:hover>a,
.nav-menu>li.active>a,
.nav-menu>li.focus>a {
    color: #3b3b3b;
}

.nav-dropdown>li:hover>a,
.nav-dropdown>li.focus>a {
    color: #3b3b3b;
}

.nav-dropdown>li {
    text-align: center;
}

/*LOGO設定*/

@media screen and (max-width: 768px) {
    .nav-brand-m {
        display: block;
        text-align: left;
        padding: 15px 10px;
    }

    .nav-brand-m img {
        max-width: 200px;
        width: 100%;
    }
}







/* 選單攔 */
.header_area {
    position: fixed;
    z-index: 9999;
    width: 100%;
    padding: 0;
    background: transparent;
}

.header_area.sticky {
    background: transparent;
    z-index: 9999;
}

.header_area .main_header_area {
    background: transparent;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
    position: relative;
}

.header_area.sticky .main_header_area {
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.navigation {
    width: 100%;
    position: relative;
    padding: 0;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    gap: 0;
}





/* LOGO */

.nav-header {
    position: absolute;
    top: 50%;
    left: calc(100% / 12);
    transform: translate(0, -50%);
    max-width: 240px;
    z-index: 99999;
}

.nav-brand {
    position: relative;
    width: 190px;
    opacity: 1;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.pageIndex .nav-brand {
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
    animation: nav-logo-3 1s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
}

.sticky .nav-brand {
    width: 180px;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.nav-brand img {
    max-width: 100%;
    filter: contrast(0) brightness(100);
}

.pageIndex .nav-brand img {
    max-width: 100%;
    filter: contrast(0) brightness(100);
}

.sticky .nav-brand img {
    max-width: 100%;
    filter: NONE;
}







@keyframes nav-logo {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

@keyframes nav-logo-2 {
    0% {
        width: 0;
        height: 0;

    }

    50% {
        width: 1px;
        height: 100.1%;
    }

    100% {
        width: 100.1%;
        height: 100.1%;
    }
}

@keyframes nav-logo-3 {
    0% {
        opacity: 0;
        left: -100px;
    }

    100% {
        opacity: 1;
        left: 0;
    }
}



/* 選單 */

.me_tp_features {
    display: none;
}

.stellarnav {
    padding: 0px 10%;
    background-color: transparent;
    height: fit-content;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}




@keyframes ac-bar {
    0% {
        opacity: 0;
        transform: scale(1, 0);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }

}






.header_area::before {
    content: "";
    width: 100%;
    height: 1px;
    background: #ffffff4d;
    position: absolute;
    bottom: 0;
    left: 0;
    pointer-events: none;
}

.sticky .header_area::before {
    background: #ffffff4d;
}



.header_area::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(0, 20px);
    opacity: 0;
    transition: all .5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.header_area.sticky::after {
    transform: translate(0, 0);
    opacity: 1;
    transition: all .5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}



.stellarnav>ul>li>a {
    padding: 0;
    color: #fff;
    font-size: 14px;
    letter-spacing: 2px;
    text-indent: 3px;
    transition: 0.5s;   
}
.stellarnav > ul > li > a b:nth-of-type(1) {   font-family: "Noto Sans TC", serif;}
.stellarnav > ul > li > a b:nth-of-type(2) {   font-family: "Cinzel", serif;}

.pageIndex .stellarnav>ul>li>a {
    color: #fff;
}

.stellarnav>ul>li.has-sub>a {
    padding-right: 0;
}

.sticky .stellarnav>ul>li>a {
    color: #1e252b;
    transition: 0.5s;
}

.sticky .stellarnav>ul>li>a:hover{
    color: #e2ded7;
}
.stellarnav>ul>li>a:hover{
    color: #e2ded7;
}
.stellarnav li.has-sub>a:after {
    display: none;
}



.stellarnav ul {
    margin: 0;
    padding: 0;
    text-align: center;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2%;
}

.stellarnav>ul>li>a b:nth-of-type(2) {
    font-weight: 500;
}


@keyframes nav-line {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }

}




/* 動畫 */
.stellarnav>ul>li {
    padding: 10px 0;
    opacity: 1;
    transition: all 0.3s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.pageIndex .stellarnav>ul>li {
    padding: 30px 0;
    opacity: 0;
}

.sticky .stellarnav>ul>li {
    padding: 20px 0;
    transition: all 0.3s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}




.pageIndex .stellarnav>ul>li{
    animation: nav-down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) both;
}

@keyframes nav-line {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

@keyframes nav-down {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


/*下拉*/
.nav-dropdown>li>a {
    background: #f7f5f5;
    transition: 0.2s;
    letter-spacing: 1.5px;
    width: 100%;
}

.nav-dropdown>li>a:hover {
    transition: 0.2s;
    background-color: #3b3b3b;
    ;
    color: #fff
}

.nav-dropdown>li:hover>a .submenu-indicator-chevron,
.nav-dropdown>.focus>a .submenu-indicator-chevron {
    border-color: transparent #fff #fff transparent;
}


@media screen and (min-width: 768px) {
    .stellarnav>ul>li>ul {
        display: block !important;
    }
}



.stellarnav>ul>li>ul {
    text-align: center;
    background: #8F8E8E;
    opacity: 0;
    top: 100%;
    pointer-events: none;
    transform: scale(1, 0);
    transform-origin: 0 0;
    transition: all 0.3s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.pageIndex .stellarnav>ul>li>ul {
    top: 63px;
}

.stellarnav>ul>li:hover>ul {
    opacity: 1;
    pointer-events: all;
    transform: scale(1, 1);
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.sticky .stellarnav>ul>li>ul {
    transition: all 0.3s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

@media screen and (min-width: 768px) {
    .stellarnav>ul>li>ul>li>ul {
        display: block !important;
    }
}

.stellarnav>ul>li>ul>li>ul {
    text-align: center;
    background: #8F8E8E;
    opacity: 0;
    pointer-events: none;
    transform: scale(0, 1);
    transform-origin: 0 0;
    transition: all 0.3s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.stellarnav>ul>li>ul>li:hover>ul {
    opacity: 1;
    pointer-events: all;
    transform: scale(1, 1);
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}


.stellarnav li li {
    border: 0;
    margin-bottom: 0;
}


.stellarnav.desktop li.has-sub li a {
    padding: 10px 15px;
    color: #ddd;
    text-align: left;
    background-color: transparent;
    transition: all 0.5s;
    font-size: 13px;
}

.stellarnav.desktop li.has-sub li a:hover {
    background-color: #AFACA4;
    color: #fff;
    transition: all 0.5s;
}

.stellarnav li.drop-left ul ul {
    left: 155px;
    right: 0;
}

.stellarnav>ul>li.drop-left>ul {
    top: 100%;
    left: 0;
}

@media screen and (max-width: 1024px)  {
    .stellarnav{ padding: 0px 2%;}
    .nav-brand{ width: 200px;}
    .nav-header { max-width: 200px;}
}
@media screen and (max-width: 920px) {
    .stellarnav ul{ gap: 1%;}
    .stellarnav{ padding: 0 0%;}
    .nav-header{ left: calc(100% / 40) ;}
    .nav-brand{ width: 170px;}
    .nav-header { max-width: 170px;}
}

@media screen and (max-width: 768px) {
    .stellarnav .menu-toggle span.bars span {
        background: #464646;
    }

    .pageIndex .stellarnav .menu-toggle span.bars span {
        background: #fff;
    }

    .sticky .stellarnav .menu-toggle span.bars span {
        background: #fff;
    }

    .stellarnav .menu-toggle:after {
        color: #464646;
    }

    .pageIndex .stellarnav .menu-toggle:after {
        color: #fff;
    }

    .sticky .stellarnav .menu-toggle:after {
        color: #fff;
    }

    .stellarnav.mobile {
        top: 0;
        left: auto;
        right: 0;
        padding: 10px;
        background-color: #fff;
    }

    .pageIndex .stellarnav.mobile {
        background-color: transparent;
    }

    .sticky .stellarnav.mobile {
        background-color: #95959561;
    }

    .stellarnav.mobile::after {
        content: "";
        display: block;
        width: 1px;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background: #494949;
    }

    .pageIndex .stellarnav.mobile::after {
        background: #ffffff4d;
        height: 0;
        animation: line-down 2.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    }

    .stellarnav.mobile.right>ul,
    .stellarnav.mobile.left>ul {
        width: 100%;
        max-width: 100%;
        border-right: 0;
        background: #fffffff0;
        border-top: 0;
    }

    .stellarnav.mobile.right .close-menu,
    .stellarnav.mobile.left .close-menu {
        background: #a3a3a3;
        color: #fff;
    }

    .stellarnav.mobile>ul>li>a {
        display: flex;
        padding: 30px 20px;
        border: 0;
        flex-direction: row;
        justify-content: flex-start;
        color: #1e252b;
    }

    .stellarnav.mobile>ul>li>a.dd-toggle {
        padding: 6px;
        position: absolute;
        top: 27px;
    }

    .stellarnav a.dd-toggle .icon-plus:after,
    .stellarnav a.dd-toggle .icon-plus::before {
        border-bottom: solid 3px #AFACA4;        
    }

    .stellarnav.mobile li.open {
        background: #ececec;
        padding: 0;
    }

    .stellarnav li li a {
        padding: 15px 0;
        display: block;
        color: #ddd;
        text-align: left;
        padding-left: 30px;
        background-color: transparent;
        transition: all 0.5s;
    }

    .stellarnav.mobile ul {
        background: transparent;
    }

    .stellarnav.mobile li a {
        border-bottom: 0;
        color: #1e252b;
        font-size: 13px;
    }

    .stellarnav li li {
        border: 0;
    }

    .navigation {
        position: relative;
    }

    .stellarnav.mobile li.open li.open {
        background: transparent;
        padding: 3px;
    }

    .stellarnav.mobile li li.has-sub a {
        padding: 15px 0 15px 30px;
    }

    .stellarnav.mobile li li a.dd-toggle {
        padding: 0;
    }

    .stellarnav li li li a {
        color: #fff;
    }

    .stellarnav.mobile li li.has-sub li a {
        padding: 10px 0 10px 40px;
        color: #ddd;
    }

    .stellarnav ul ul ul {
        transform: none;
    }

    .nav-header {
        z-index: 0;
        padding: 10px;
        padding-top: 60px;
        left: calc(100% / 78);
    }

    .stellarnav .icon-close:after,
    .stellarnav .icon-close::before {
        border-color: #fff;
    }

    .stellarnav>ul>li,
    .pageIndex .stellarnav>ul>li {
        padding: 0;
    }

    .stellarnav>ul>li>ul,
    .pageIndex .stellarnav>ul>li>ul {
        top: 0;
    }

    .stellarnav.mobile>ul>li>a b {
        font-size: 14px;
    }

    .stellarnav.mobile>ul>li>a b:nth-of-type(1) {
        margin-right: 10px;
    }

    .stellarnav.mobile li.drop-left ul ul {
        right: auto;
        left: 0;
    }

    .stellarnav>ul>li>ul>li:hover>ul {
        opacity: 1;
        transform: none;
    }

    .stellarnav>ul>li>ul {
        transform: scale(1, 1);
    }

    .sticky .stellarnav.mobile::after {
        background: #ffffff4d;
    }

    .nav-brand {
        width: 150px;
    }

    .sticky .nav-brand {
        width: 150px;
    }

    .sticky .stellarnav>ul>li>ul {
        top: 0;
    }


    @keyframes line-down {
        0% {
            height: 0;
        }

        100% {
            height: 100%;
        }
    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*footer*/
.footer {    padding-top: 80px;    background:transparent; background: transparent;background-image: url(https://pic03.eapple.com.tw/afreeman/footer-bg.jpg); background-position: center; background-size: cover;}
.footer .center {    max-width: 1300px;}
.footer_info {
    grid-template-columns: 1fr 250px;
    grid-gap: 0 35px;
    padding-right: 0;
    justify-items: end;
}
.footer_logo {    max-width: 230px;    order: 3;}
/* .footer_logo img {
  filter: 
    brightness(0)   
    invert(100%); 
} */
.box_link {
    display: none;
}

.box_link a.me_tp_mail ,.box_link a.me_tp_line{ display: none;}

.footer_info ul {
    display: flex;
    justify-content: flex-end;
    flex-direction: row-reverse;
    gap: 60px;padding-bottom: 60px;
}
.footer_info li p, .footer_info li p a {    color: #3F3E3C; line-height: 250%; }
.footer_info li:nth-child(1){ display: flex; flex-direction: column;}
.footer_info li p.taxid { order:1;}


.footer_menu {    display: flex;    flex-direction: column;}
.footer_menu a:first-child {    display: none;}
.footer_menu a {
    background: transparent;
    border: none;
    color: #9B8E82;
    margin: 0;
	font-size: 12px;
    width: max-content;
    position: relative;
    margin-bottom: 7px;
   
}

.footer_menu a:hover {
    background: transparent;
    color: #C0B2A2;
}
.footer_menu a:hover:after {
    transform: scaleX(1);
    transform-origin: left center;
}

.copy { color: #b5b5b5; border-top:0PX;}
.copy a {    color: #b5b5b5;}
.copy a:hover {    color: #B7B5B1;}
.privacyLinks a+a {
    border-left: 1px solid #b5b5b5;
}


@media (max-width:1440px) {
.footer_info {    padding-right: 110px; padding-left: 30px;    }
.box_link {    left: 40px;}
}

@media screen and (max-width: 768px) {

.footer_info {
    padding: 0 30px;
    grid-template-columns: 1fr;
    justify-items: center;
}
.footer_logo { max-width: 170px;   order: 1;}
.footer_info ul {     padding-bottom: 25px;   order: 3;    justify-content: space-around;}
.footer_info li {    padding-top: 18px;}

.footer_info li+li {                margin-top: 0;            }
.footer_menu {
    display: grid;
    justify-items: center;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 5px;
}

.box_link {    }
}
@media (max-width:768px) {
  .copy {    font-size: 10px;}
}

@media (max-width:600px) {

    .footer_info ul {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    }

    .footer_info li:nth-child(2) {    padding-top: 40px;    width: 100%;}
    .footer_menu {        grid-template-columns: repeat(3, 1fr);    }
    ul.show-list, .pic-list {    grid-template-columns: 1fr;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 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_menu_list { 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-slide img { height:auto;} */
@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁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; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */





.car_page .information_left {
    display: block;
}
body.car_page .footer_info li p:before{
    position: initial;
    display: inline;
}
.contact_le_map a{background: #2a93d8; }




@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu {}
.footer.with_shopping_mode { padding:30px 0 55px; }
#to_top { bottom:60px;}
}

@media screen and (max-width: 600px) { 
}




