@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=Cinzel:wght@400..900&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", "Cinzel", serif;
}
.path p, .path p a{ display: none;}
.edit{ padding: 0px 0;}
.info_fix{   display: none;}


.right_member_in p>i,.right_member_in p a,.right_member_in .fa-right-to-bracket, .right_member_in button{color: #C89A67; }

#content{ margin-top: 112px; }

@media screen and (max-width:1080px) {
    #content{ margin-top: 80px; }
}
@media screen and (max-width:768px) {
    #content{ margin-top: 0px; }
}


/* 會員加入 */
.right_member_in{ background:#fff ; border: 0px; }
.other_page #content { background-image: url(https://pic03.eapple.com.tw/nanmantang/in-bg.jpg);   background-position: top ; }
.right_member_in p>i,.right_member_in p a,.right_member_in .fa-right-to-bracket, .right_member_in button i{color: #c89a67;}
.other_page #page { background: #f5efe6de ; }
.member_login_regist{ background: #fff;}
.login_mem_submit{ background: #c89a67; border-radius: 100px; }
.member_login_regist a{ background: #c89a67; border-radius: 100px; }
.login_mem_other_link a{ color: #9d9d9d ;}
.member_title h2{  border-bottom: 2px #e1d1b8 solid;}
.mem_regist_title_s_s input{ background: #c89a67!important; border-radius: 100px; }


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/*大圖*/
.pageIndex .bannerindex .swiper-slide.swiper-slide:before, .pageIndex .bannerindex .swiper-slide.swiper-slide:after {
    content: ""; position: absolute;  z-index: 999; pointer-events: none;
}
.pageIndex .bannerindex .swiper-slide:nth-child(1).swiper-slide:before {
    background: url(https://pic03.eapple.com.tw/nanmantang/ban-txt1.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: 0;
    left:0;
    width: 100%;
    height: 100%;
    background-position: center;
    transform: scale(1);
    }

.pageIndex .bannerindex .swiper-slide:nth-child(1).swiper-slide-active:before {  
animation-name:  scroll;
-webkit-animation-duration: 2s;
animation-duration: 2s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}    


.pageIndex .bannerindex .swiper-slide:nth-child(2).swiper-slide:before {
    background: url(https://pic03.eapple.com.tw/nanmantang/ban-txt2.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: 0;
    left:0;
    width: 100%;
    height: 100%;
    background-position: center;
    transform: scale(1);
}
.pageIndex .bannerindex .swiper-slide:nth-child(2).swiper-slide-active:before {  
        animation-name: scroll ; 
        -webkit-animation-duration: 2.5;
        animation-duration: 2.5s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        animation-delay: 0.8s;
    }

        @keyframes effect01 {
            0%{
                transform: scale(1.5);
                transform: translateY(0px);
            }
            100% {
                transform: translateY(-10px);
                transform: scale(1);
            }
            }

@-webkit-keyframes scroll {
    0% {
        transform: translateY(0px);
        opacity: 0;
    }
    
    50% {
        transform: translateY(15px);
        opacity: 1;
    }
    
    100% {
        transform: translateY(0px);
        opacity: 0;
    }
    }
    
    @keyframes scroll {
    0% {
        transform: translateY(0px);
        opacity: 0;
    }
    
    50% {
        transform: translateY(15px);
        opacity: 1;
    }
    
    100% {
        transform: translateY(0px);
        opacity:1;
    }
    }

    @-webkit-keyframes zoomIn {
            from {
                transform: scale(1);
                -webkit-transform: scale(1);
                -moz-transform: scale(1);
                -o-transform: scale(1);
                -ms-transform: scale(1);
            }
            
            to {
                transform: scale(1.1);
                -webkit-transform: scale(1.1);
                -moz-transform: scale(1.1);
                -o-transform: scale(1.1);
                -ms-transform: scale(1.1);
            }
            }
            
            @keyframes zoomIn {
            from {
                transform: scale(1.1);
                -webkit-transform: scale(1.1);
                -moz-transform: scale(1.1);
                -o-transform: scale(1.1);
                -ms-transform: scale(1.1);
            }
            
            to {
                transform: scale(1);
                -webkit-transform: scale(1);
                -moz-transform: scale(1);
                -o-transform: scale(1);
                -ms-transform: scale(1);
            }
        }


        @-webkit-keyframes zoomOut {
            from {
                transform: scale(1.1);
                -webkit-transform: scale(1.1);
                -moz-transform: scale(1.1);
                -o-transform: scale(1.1);
                -ms-transform: scale(1.1);
            }
            
            to {
                transform: scale(1);
                -webkit-transform: scale(1);
                -moz-transform: scale(1);
                -o-transform: scale(1);
                -ms-transform: scale(1);
            }
            }
            
            @keyframes zoomOut {
                from {
                    transform: scale(1.1);
                    -webkit-transform: scale(1.1);
                    -moz-transform: scale(1.1);
                    -o-transform: scale(1.1);
                    -ms-transform: scale(1.1);
                }
                
                to {
                    transform: scale(1);
                    -webkit-transform: scale(1);
                    -moz-transform: scale(1);
                    -o-transform: scale(1);
                    -ms-transform: scale(1);
                }
        }



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*選單設定*/

.header_area {
    position: fixed;
    width: 100%;
    top: 0px;
    background: unset;
}

.header_area.sticky {
    background: unset;
}

.main_header_area {
    transition: 0.3s ease;
    background: #ffffffe0;
    box-shadow: unset;
    position:relative;
    padding: 0px 20px;
    backdrop-filter: blur(12px);
         opacity: 0;
    animation: show 1s ease-in-out forwards;
    animation-delay: 0.8s;
}

.header_area.sticky .main_header_area {
    background: transparent;
    /*background: rgba(0, 0, 0, 0.8);*/
    
    /*box-shadow: 1px 1px 10px rgba(0,0,0,0.07);*/
    /*background: url(https://pic03.eapple.com.tw/tspackage/bg.jpg) no-repeat center center;*/
    /*background: rgba(255,255,255,0.9);*/
}

.header_area .main_header_area::after {
    content:"";
    position:absolute;
    width:0%;
    height:100%;
    top:0px;
    left:0%;
    background: #ffffffe0;
    transition: all 1s;
    opacity: 0;
    backdrop-filter: blur(12px);
transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);
box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 0.03);
}

.header_area.sticky .main_header_area::after {
    width:100%;
    opacity: 1;
}



.header_area .nav-brand {
    /*filter: invert(100%) grayscale(100%) brightness(500%);
    -webkit-filter: invert(100%) grayscale(100%) brightness(500%);*/
    transition:.3s;
    max-width: 240px;
}

.header_area.sticky .nav-brand {
    filter: unset;
    -webkit-filter: unset;
    max-width: 258px;
    margin-top: 0px;
}

.pageIndex .header_area .nav-brand {
    /*opacity:0;*/
}

.pageIndex .header_area.sticky .nav-brand {
    opacity:1;
}

.stellarnav > ul > li > a {
    margin: 15px 10px 10px;
    /*margin: 0px 1vw 10px;*/
    color: #5A3D2B;
    /* text-shadow: 0px 0px 12px rgb(255 255 255); */
    transition: 0.3s ease;
    padding: 0px 5px;
    font-size: 17px;
    font-weight: 400;
}

.stellarnav > ul > li:hover > a{color: #D63B68!important;text-shadow: unset!important; 
    transition: all 0.3s;
    padding-top: 5px;
}

.header_area.sticky .stellarnav > ul > li > a {
    text-shadow: unset;
}

.header_area,.header_area.sticky {
    /*z-index: 20000000;*/
	padding: 0px;
}

.main_header_area .container {
    max-width: 1600px;
}
/*選單最大寬度設定*//*
.main_header_area .container {    max-width: 95%;}
*/
.navigation {
	grid-template-columns: 300px 1fr;
}

.nav-header {
    max-width: 100%;
}

/*電腦LOGO
.nav-brand {}
*/

/*手機LOGO
.nav-brand-m {}
*/




/* Hover效果 */


/* hover小圖示 */
/* 
.stellarnav > ul > li > a:before{
    content: "";
    background-image: url(https://pic03.eapple.com.tw/ananda/nav-icon.png);
    -moz-background-size: contain;
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    width: 20px;
    height: 20px;
    opacity: 0;
    position: absolute;
    top: 0px;
    left: -webkit-calc(50% - 15px);
    left: -moz-calc(50% - 15px);
    left: calc(50% - 15px);
    bottom: auto;
    right: auto;
    -webkit-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -o-transform: translateY(-15px);
    transform: translateY(-15px);
    -webkit-transition: 0.5s 0.1s all;
    -o-transition: 0.5s 0.1s all;
    -moz-transition: 0.5s 0.1s all;
    transition: 0.5s 0.1s all
}

.stellarnav > ul > li > a:hover:before{
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px)
} */


.stellarnav li.has-sub > a:after{ border-left:3px solid transparent; border-right:3px solid transparent; border-top: 7px solid #898989; right: 1px;}


/* 下拉 */
.stellarnav ul ul {
    width: 140px;
    background: transparent;
    opacity: 0;
    animation: 0.3s ul-show forwards linear;
    left: 3px;
    top: 67px;
}

@keyframes ul-show {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
    
}

/* nav animate */

@keyframes animate-nav {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

/* 首頁的主選單 */
.pageIndex #page .stellarnav > ul{
    opacity: 0;
    animation: animate-nav 0.5s forwards;
    animation-delay: 1.8s;
}


/*第二層*/
.stellarnav ul ul {
    background: transparent;
    /*width: 185px;*/
}
.stellarnav > ul > li.drop-left > ul {
    /*right: unset;
    left: 0px;*/
}
.stellarnav li li {
    border: unset;
	margin-bottom: unset;
}
.stellarnav li li > a , .stellarnav li li.has-sub > a{
	padding: 20px 15px;
	transition: all 0.5s;
	color: #5A3D2B;
    background: #fffffff0;
    backdrop-filter: blur(12px);
    transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);
    font-size: 17px;
}
.stellarnav li li:hover > a , .stellarnav li li.has-sub:hover > a{
    color: #D63B68;
}

.stellarnav li ul ul {
	background: transparent;
}

.stellarnav li ul ul li > a{
	background: rgb(0 0 0 / 70%);
    border-bottom: 1px solid rgb(255 255 255 / 5%);
	/*background: #1A293C;
    border-bottom: 1px solid rgb(255 255 255 / 10%);*/
	
}

.stellarnav li ul ul li:hover > a{
	/*background: #1A293C;*/
}


/* 商品下拉超過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;}

/*隱藏選單按鈕連結*/
.me_tp_features {
    margin-bottom: -10px;
    padding-top: 15px;
    z-index: 9;
    padding-right: 24px;
    opacity: 0;
    animation: show 1.5s ease-in-out forwards;
    animation-delay: 1.2s;
}
.me_tp_features a:hover{ color:#A3322B ;}
.tp_links{display: none;}
.tp_btn_cart span,.tp_btn_notice span{ display: none;}
.shop_search_btn{ background: #A3322B; }

/*隱藏購物車搜尋欄*/
/*.box_search{display:none;}*/

/*隱藏購物車*/
/*.me_tp_features a.tp_btn_cart {display: none;}*/

/*隱藏匯款通知*/
/*.me_tp_features a.tp_btn_notice{display: none;}*/


/*LOGO設定*/

.nav-brand img {
    position: relative;
    top: 4px;
    width: 100%;
    max-width: 100%;
    transition: all 0.3s;
    opacity: 1;
    animation:scaleUp 1.5s ease-in-out forwards;
    animation-delay: 0.5s;
    transform: scaleY(0.02);
}

@keyframes show {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

@keyframes scaleUp {
  0% {
    transform: scaleY(0.02);
  }
  100% {
    transform: scaleY(1);
  }
}

.pageIndex #page .nav-brand img{
    animation-delay: 2s;
}



.header_area .nav-brand, .header_area .nav-brand:focus {
    display: block;
    position: relative;
    transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
    padding: 0px 25px;
    width: 140px;
    transition: all 0.3s;
    top: -3px;
    background: #fff;
     opacity: 0;
    animation: show 1.5s ease-in-out forwards;
    animation-delay: 1.8s;
}
.header_area.sticky .nav-brand, .header_area .nav-brand:focus {
    width: 135px;
    padding: 0px 28px 8px;
    transition: all 0.3s;
}
.header_area .nav-brand img{
    transition: all 0.3s;
    /* box-shadow: 0px 0px 20px #fff; */
    padding: 3px;
    /* background: #ffffffc4; */
}
.header_area.sticky .nav-brand img{
    transition: all 0.5s cubic-bezier(1, -0.02, 1, -0);
    top: 11px;
}

.nav-header {
    /* position: fixed;
    z-index: 123;
    top: -34px;
    left: 2%; */
    max-width: 148px;
}

.pageIndex .header_area .nav-brand img {
    transition: all 0.3s;
}



  /* 漢堡條 */
  .stellarnav .menu-toggle span.bars span {background: #333333; width: 32px;}
  .stellarnav .menu-toggle:after { color: #333333; font-size: 17px; margin-right: 8px; display: none; }
.header_area .stellarnav .menu-toggle{
    opacity: 0;
    animation: animate-nav 0.5s forwards;
    animation-delay: 1.8s;
}

  /* close menu 拉出來 */
  .stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu{
      background: #9E0C36;
      color: #fff;
    }
    .stellarnav .icon-close:before{
      border-bottom: solid 3px #fff;
    }
    .stellarnav .icon-close:after{
      border-bottom: solid 3px #fff;
    }
    .stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul{
      background: #fffffffa;
      backdrop-filter:none;
        height: 100vh;
    }
    .stellarnav a.dd-toggle .icon-plus:before{
      border-bottom: solid 3px #5C6FA8;
    }
    .stellarnav a.dd-toggle .icon-plus:after{
      border-bottom: solid 3px #5C6FA8;
    }
    .stellarnav.mobile > ul > li > a.dd-toggle{
      padding: 11px;
      top: -11px;
      right: 17px;
    }
    .stellarnav.mobile li.open{
      background: rgba(248, 244,237, 0.7);
    }
    .stellarnav.mobile ul ul{
      width: 100%;
      position: relative;
      left: 0;
      top: 0px;
    }
    .stellarnav.mobile > ul > li{
      border-bottom: 1px rgba(178, 197, 181, 0.3) solid;
    }
  
    .stellarnav.mobile li a{ border-bottom: 0px;}
  
    .stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul{max-width: 100%;}

@media screen and (max-width:1550px) {
    .header_area .nav-brand, .header_area .nav-brand:focus{ left: -15px; top: 0px;}
}
@media screen and (max-width:1400px) {
    .stellarnav > ul > li > a{ padding: 0 10px;}
    .stellarnav > ul > li > a b:nth-child(1){ font-size: 16px;}
    .stellarnav.desktop.active > ul{ padding-left: 9%; margin-top: -5px;}
    .header_area .stellarnav .menu-toggle, .stellarnav .call-btn-mobile, .stellarnav .location-btn-mobile{
        top: 6px;
        right: 6px;
    }
    .header_area.sticky .nav-brand, .header_area .nav-brand:focus{ top: -1px;}
    .stellarnav > ul > li.has-sub > a{ padding-right: 8px;}
}
@media screen and (max-width:1300px) {
    .stellarnav > ul > li > a b:nth-child(2){ display: none;}
    .stellarnav > ul > li > a{ padding: 0 16px;}
    .stellarnav.desktop.active > ul{ margin-top: -5px;}
}
@media screen and (max-width:1270px) {
    .stellarnav > ul > li.has-sub > a{ padding-right: 0px;}
}
@media screen and (max-width:1250px) {
    .stellarnav > ul > li > a{ font-size: 16px; padding: 0 6px;}
    .stellarnav li li > a, .stellarnav li li.has-sub > a{ font-size: 16px; }
}
@media screen and (max-width:1079px) {
    .header_area .nav-brand, .header_area .nav-brand:focus{ display: none;}
    .nav-header{ display: none;}
    .me_tp_features{ padding-top: 7px; }
    .stellarnav ul{ text-align: center;}
    .navigation{grid-template-columns:1fr; }
    .stellarnav > ul > li > a{ margin: 10px 10px 1px;}
    .me_tp_features{text-align: center;}
    .stellarnav li.has-sub > a:after{ right:-7px ;}
}
@media screen and (max-width:1024px) {
    .stellarnav > ul > li > a{ padding: 0 6px;}
    /* .stellarnav.desktop.active > ul{ padding-left: 20%;} */
    .stellarnav > ul > li.has-sub > a { padding-right: 6px;}
}
@media screen and (max-width: 768px) {
    .main_header_area,.header_area .main_header_area::after,.stellarnav li li > a , .stellarnav li li.has-sub > a{ backdrop-filter:none;}
    .me_tp_features a{ display: none; }
    .pageIndex #page .stellarnav > ul{
        opacity: 1;
    }
    .main_header_area .me_tp_features{
      display: none;
    }
    
    .header_area.sticky .main_header_area .me_tp_features{
        display: block;
    }
    .me_tp_features{ padding-top: 0; padding: 8px 0px;}
    .header_area .main_header_area::after{
        height: 120%;
    }
    .stellarnav.mobile{
        left: unset;
        right: 0px;
        top: 7px;
    }
    .header_area.sticky .nav-brand, .header_area .nav-brand:focus{width: 80px; padding: 0px 3px; }
    .header_area .nav-brand, .header_area .nav-brand:focus{ display: block; width: 90px; position: absolute; left: -20px;  animation-delay: 1.5s; padding: 0px 3px;}
.nav-brand-m {    display: block;    text-align: left;    padding: 15px 10px;}
.nav-brand-m img {    max-width: 200px;    width: 100%;}
.nav-brand {
    display: inline-block;
    width: 180px;
}
.nav-header{ display: block;}
.header_area.sticky a.nav-brand::before {
    width: 160%;
}
.header_area a.nav-brand::before{
    display: none;
}
.header_area.sticky a.nav-brand::before{
    display: none;
}
.header_area.sticky .nav-brand img{ top: 0px}
.nav-header {
    z-index: 10;
    top: -30px;
    left: 0%;
}
.footer_logo {
    display: block;
    margin: 0 auto;
}
.header_area .stellarnav .menu-toggle, .stellarnav .call-btn-mobile, .stellarnav .location-btn-mobile{
 top: 10px;   
 z-index: -1;
}
.header_area.sticky  .stellarnav .menu-toggle,.stellarnav .call-btn-mobile, .stellarnav .location-btn-mobile{
    top: 17px;
}
.stellarnav .menu-toggle span.bars{
    top: 6px;
}
/* .header_area.sticky .main_header_area{ height: 95px; background: rgba(255,255,255,0.8)} */
.stellarnav > ul > li > a b:nth-child(2){
    position: relative;
    top: 7px;
}
.stellarnav > ul > li > a:after{
    display: none;
}
.stellarnav > ul > li > a:before{
    display: none;
}
.stellarnav > ul > li > a b:nth-child(2){ 
    display: unset;
}
.stellarnav li li{ border: 0px; padding: 0px 5px;}
.header_area.sticky .stellarnav .menu-toggle, .stellarnav .call-btn-mobile, .stellarnav .location-btn-mobile{ z-index: 99999999999999;}
.stellarnav ul ul{ padding: 0px 0px;}
.header_area.sticky .nav-brand, .header_area .nav-brand:focus{ top: 0px; left: -21px;}
.stellarnav li a{ padding: 0px 10px;}
.stellarnav.mobile > ul > li > a{  padding: 18px 43px 18px 10px;}
}
@media screen and (max-width:570px) {
    .stellarnav.mobile{ top: 15px;}
    .header_area.sticky .nav-brand, .header_area .nav-brand:focus{ display: none;}
    .header_area.sticky .main_header_area .me_tp_features{ text-align: left;}
    .header_area .nav-brand, .header_area .nav-brand:focus{width: 80px;}
}
@media screen and (max-width:440px) {
    .header_area .nav-brand, .header_area .nav-brand:focus{ padding: 0px 6px; width: 70px;  animation-delay: 1s;}
    .pageIndex #page .header_area .nav-brand, .pageIndex #page .header_area .nav-brand:focus { display: none;}
}

/* 商品下拉超過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個--結束 */



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/* 展示footer demo */
.footer_logo{ display: none;}
.footer_info ul { display: none;}
.copy{ display: none;}
.box_link{ display: none;}
.footer {
    border-top: none !important;
    padding:0 0;
    height:388px;
    background-image: url(https://pic03.eapple.com.tw/nanmantang/footer.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
.fix_ri{display: block!important;}

@media screen and (max-width:1400px) {
    .footer{ height: 280px;}
}




/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */




/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.product_page .main_part { max-width:1600px;}
/* .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:#cdd8c3; color:#fff;}
.product-layer-two > li { width:100%; max-width:100%; padding:0; text-align:left; border-bottom:0px; margin-bottom: 12px; }
.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%); display: none; }

.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;}
.product_info_page  .swiper-wrapper .swiper-slide:nth-child(1)::after { display: none;}

@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) {
}

.product_page #content,.product_info_page #content  ,.car_page #content ,.remit_page #content{
   background-image: url(https://pic03.eapple.com.tw/nanmantang/in-bg.jpg);
    background-position: center ;
}

/* 首頁 */
.i_prod_tit{ display: flex; justify-content: center; margin-bottom: 16px; }
.i_prod_tit span { color: #475941 ; font-weight: bold; font-size: 32px; font-family: "Noto Serif TC",  cursive; }
.i_prod_tit span::before{ content: "CATS"; display: block;  color: #d0dacb; font-size: 72px; font-weight: 400; margin-top: -18px; font-family: "Playfair Display", sans-serif;}

.prod_part{ padding: 50px 20px 80px;  margin-top: 50px;}

/* 左邊選單 */
/* .product-layer-two > li{ border-bottom: 1px solid rgba(103, 107, 114, 0.5);} */
.product-layer-two > li:last-child{ border-bottom: 0px;}
.product-layer-two li a{ background: transparent ; color: #c89a67;  padding: 12px 16px; transition: 0.3s;border: 1px #c89a67 solid; border-radius: 100px;}
.product-layer-two li a:hover{ background: #c89a67; color: #fff; border: 0px;}
.product-layer-two li li{ background: transparent;}
.product-layer-two li li a{ color: #000; background: unset; }
.product-layer-two li i{ color: #c89a67; } 
.product-layer-two li.active a{ background: #c89a67; border: 0px; color: #fff;}
.product-layer-two li.active li a{ color: #c89a67;background: transparent; border: 1px solid #c89a67;}
.product-layer-two li li a{ font-size: 16px; padding: 5px 14px;}
.product-layer-two li li.active a{ background: #c89a67;}


/* 商品 */
.products-list{grid-template-columns:1fr 1fr 1fr ; grid-gap: 60px 60px ;}
.products-list .price { text-align: center;  color: #434343; }
.products-list .name{ font-size: 18px; color: #9e0c36; font-weight: bold; text-align: center;height: 1.5em; margin-bottom: 10px;
    /* height: 68px; */
}
.products-list .item a{ transition: 0.3s; padding-bottom: 0px;}
.products-list .more{ font-size: 15px; color: #c89a67; border: 0px; position: unset; transform: translateX(0%); }
.products-list .item a+button.pd_btn{  border: 1px solid  #c89a67; color:  #c89a67; border-radius: 60px;}
.products-list .item a+button.pd_btn:hover{ background: #c89a67 ; color: #fff; }

.products-list .item a:hover .more{ background: transparent; color: #e1d1b8;}
.products-list .pic img{ width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

    .products-list .pic{ overflow: hidden;}
.products-list .item a:hover img  {

    background: rgba(165,187,116,.2);
    z-index: 999;
}


.products-list .pic:after {
    content: 'MORE';
    font-family: "Cinzel", serif;
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 1px;
    width: 105%;
    height: 105%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
   background: #e1d1b8e6;
    opacity: 0;
    transition: all .4s;
    
}

.products-list .item a:hover .pic:after {
    opacity: 1;
}



/* 內頁 */
.product_info_page #content .swiper-slide:nth-child(1):before,.product_info_page #content .swiper-slide:nth-child(2):before{ display: none;}
.sidebarBtn h2{ color: #9e0c36; font-size: 22px; font-weight: bold; }
.sidebarBtn .sp_price{ color: #9d9d9d;}
.proImgSwiper img{height: 100%;width: 100%;object-fit: cover;overflow: hidden;}
.pd_tabTitle li.activeTab a{ color: #332A28; font-size: 22px; font-weight: bold;}
.pd_tabInner_contain{ text-align: center;}

.pd_tabTitle li.activeTab::after{ height: 0px; background: #E4E4E4;}
.sidebarBtn{ border: 1px #e5e9e3 solid; }
.inquiry_a1,.inquiry_a2,.inquiry_a3{ background: transparent; color: #c89a67; border: 1px solid #c89a67!important; border-radius: 100px;}
.inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover, a.pdinfo_link:hover { background: #c89a67; color: #fff; border-radius: 100px;}
a.pdinfo_line{ border-radius: 100px;}


.rewrite_simple{ background: #c89a67; border-radius:100px; color: #fff;}
.send_simple{ background: transparent; border-radius:100px; color: #c89a67; border: 1px solid #c89a67!important;}
a.pdinfo_tel{ border-radius: 100px; background: #e1d1b8; }

/* 相關推薦 */
.prod_related h6{ display: none; }
.prod_related{ background: transparent; padding: 80px 15px 60px;}
.related_list li a{  transition: 0.5s;}
.related_list li a img { transition: 0.5s; }
.related_list li a:hover{
    transform: translateY(-20px);
    transition: all .5s;
}

@media screen and (max-width:1529px) {
    .products-list .name{ font-size: 16px; margin-bottom: 10px;}
    .products-list .price b{ font-size: 14px;}
}

@media screen and (max-width:1024px) {
    /* .products-list .name{  height: 44px;} */
    .products-list{grid-template-columns:1fr 1fr
         ;}
}
@media screen and (max-width:980px) {
    .products-list, .pageIndex .products-list{
        grid-gap:60px 60px;
    }
}
@media screen and (max-width:930px) {
    .products-list{grid-template-columns:1fr 1fr;}
}

@media screen and (max-width:768px) {
    .product-layer-two{ display: block!important;}
    .product_page .product_menu_list>h5{ display: none;}
    .product_info_page #content .main_part{ padding:80px 20px 0px;}
    .mobile_product_name{ display: none;}
    .products-list .price b{ text-align: center!important;}
}
@media screen and (max-width:600px) {
    .products-list .more{ bottom: -10%;}
}
@media screen and (max-width:500px) {
    .i_prod_tit span:after{ font-size: 50px;}
}
@media screen and (max-width:450px) {
    .products-list{gap: 24px;}
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#content_main { margin:0;}
.bannerindex { position:relative; height:auto; margin-top: 110px; }
.swiper-banner { position:static; margin:0; height:auto;} 
/* .swiper-slide img { height:auto;} */

@media screen and (max-width: 1079px) {
.bannerindex { margin-top: 85px; }
}
@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {}
.banner h5 {}
.banner.banA { display: none; }
.banner.banB { display: none; }
.banner.banC { display: none; }
.banner.banD {}
.banner.banE {}
.banner.banblog {}



/* 內頁BANNER 設定 */

.banner h5 {
  width: 100%;
  margin: 0 auto;
  font-size: 34px;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: 2px;
  font-weight: 600;
  opacity: 0;
  animation: fadeIn 3s ease-in-out forwards;
}

.banner h5::before {
  content: "PRODUCTS";
  display: block; 
  font-size: 50px; 
  color: #fff; 
  text-align: center; 
  margin-bottom: -6px; 
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5); 
  font-family:  "Cinzel", serif;
}
.banner.banblog h5::before{
    content: "NEWS";
}
.banner.banD h5::before{
    content: "REMITTANCE";
}

.banner {
  background-image: url(https://pic03.eapple.com.tw/);
  background-position: center;
  background-size: cover;
  overflow: hidden;
  position: relative;
  z-index: 1;
  height: 330px; /* 設定 Banner 高度 */
}

.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(173, 151, 123, 0.1); /* 半透明黑色遮罩 */
  backdrop-filter: blur(6px); /* 背景模糊效果 */
  z-index: -1;
}

.banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 180%; /* 雙倍高度以實現滾動效果 */
  background-image: url(https://pic03.eapple.com.tw/nanmantang/banF.jpg);
  background-position: center;
  background-size: cover;
  animation: scrollBackground 20s linear infinite; /* 背景垂直滾動動畫 */
  z-index: -2;
}

.banner.banblog::after{
    background-image: url(https://pic03.eapple.com.tw/nanmantang/banBlog.jpg);
}
.banner.banD::after{
    background-image: url(https://pic03.eapple.com.tw/nanmantang/banD.jpg);
}


/* 淡入動畫 */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -60%); /* 從上方淡入 */
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* 背景垂直滾動動畫 */
@keyframes scrollBackground {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%); /* 滾動到背景的一半高度 */
  }
}

/* 響應式設計 */
@media screen and (max-width: 1024px) {
  .banner {
    height: 250px;
  }
  .banner h5::before{ font-size: 46px;}
  .banner h5{ font-size: 28px; }

}

@media screen and (max-width: 768px) {
  .banner {
    height: 150px; 
    background-position: left center; 
  }
  .banner h5 {
    font-size: 24px;
  }
  .banner h5::before{ font-size: 36px;}
  .banner::after {
    background-position: left center; 
  }
}
@media screen and (max-width: 450px) {
    .banner{ height: 130px;}
    .banner h5::before{ font-size: 24px; }
    .banner h5{ font-size: 21px; }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



.blog_page #content,.blog_in_page #content{
    background-image: url(https://pic03.eapple.com.tw/nanmantang/in-bg.jpg);
    background-position: top ;
}
.blog_page .main_part{
    padding: 50px 20px 70px;
}
  
/*首頁文章*/
.module_i_news .title_i_box h4{ color: #475941 ; font-weight: bold; font-size: 32px; font-family: "Noto Serif TC",  cursive; }
.module_i_news .title_i_box h4::before { content: "NEWS"; display: block;  color: #d0dacb; font-size: 72px; font-weight: 400; margin-top: -18px; font-family: "Cinzel", serif; }

.i_blog_ri h5{ color: #475941 ; font-weight: bold;}
.i_blog_ri em{ color: #bac6b1 ;}
.i_blog_ri p{ color: #000;}

.module_i_news ul{ grid-gap:30px; }

.module_i_news li a:hover:after {
    opacity: 1;
    width: 100%;
    transition: all 500ms;
}

.module_i_news li a:after {
    background: rgba(0, 0, 0, 0.5);
}

.module_i_news li a:after {
    content: '';
    width: 0;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 8;
    background: #ffffff45;
    opacity: 0;
    border: 1px dashed #d0dacb;
}

.module_i_news li a {
    border-bottom: 1px dashed #d0dacb ;
}

.module_i_news li a:before {
    content: 'MORE+';
    top: 93%;
    bottom: 0px;
    right:0px;
    width: 108px;
    height: 35px;
    text-align: center;
    background:#cdd8c3;
    font-size: 13px;
    color: #5f6f5b;
    transform: translate(-50%, -100%) scale(1);
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
}

.module_i_news li a:hover:before {
    transform: scale(1);
    transition: all .5s ease-in-out;
}

.animated-arrow{ background: #cdd8c3 ; height: 40px; line-height: 41px;  width: 200px; border-radius: 100px; color: #5f6f5b;}


@media screen and (max-width: 768px) {
    .module_i_news li{ border-bottom: 0px; }
    .i_blog_ri{ padding: 22px;}
    .module_i_news li a:before{ top: 96%;}
}
@media screen and (max-width: 600px) {

}
@media screen and (max-width:500px) {
    .module_i_news .title_i_box h4::after{ font-size: 50px; }
}
@media screen and (max-width: 450px) {
    .module_i_news ul {
        grid-template-columns:1fr;
    }
}

/*側邊選單*/

h5.blog_le_t em {
    font-weight: 400;
}

.fa-circle-chevron-right::before {
    content: "\f105";
}

.blog_le .accordion {
    border-radius: 0px;
    border: none;
}

.accordion li .link a {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    transition: all 1s;
}

.blog_le .accordion>li:hover,
.blog_le .accordion>li.on_this_category {
    background: #c89a67 !important;
    transition: all 1s;
    border-radius: 100px;
}

.blog_le .accordion>li:hover .link a,
.blog_le .accordion>li.on_this_category .link a {
    color: #fff !important;
}

.blog_le .accordion>li:hover .link i,
.blog_le .accordion>li.on_this_category .link i {
    color: #fff !important;
}

.submenu a {
    background: #eee;
}

.submenu li.on_this_category a,
.submenu a:hover {
    background: #c89a67 ;
    color: #fff;
    padding-left: 35px;
}

.submenu a i {
    left: -30px;
    transition: all 0.4s;
}

.submenu a:hover i {
    left: 10px;
    transition: all 0.4s;
}

.submenu a:hover i,
.submenu li.on_this_category a i {
    left: 10px;
    transition: all 0.4s;
}

h5.blog_le_t {
    margin-bottom: 15px;
    font-weight: 400;
    margin-left: 10px;
    font-family: "微軟正黑體", cursive;
    display: flex;
    flex-direction: column-reverse;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    display: none;
}

h5.blog_le_t span {
    font-size: 16px;
    text-transform: uppercase;
}

/*文章內頁*/

h4.blog_category_title {
    color: #9e0c36;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.blog_box_edit * {
    line-height: 150%;
    color: #000;
    letter-spacing: 0.04em;
    font-size: 15px;
}
.articel_mainPic{ display: none; }

.blog_back a.article_btn_next,
.blog_back a.article_btn_prev {
    background: transparent ;
    color: #c89a67;
    border: 1px solid #c89a67;
    border-radius: 100px;
}

.blog_back a.article_btn_back {
    background: #c89a67;
    color: #fff;
    border-radius: 100px;
}

/*相關文章*/

.news_related {
    background: transparent;
}

.news_related h6 span:before {
    font-size: 22px;
    color: #444;
    letter-spacing: 1px;
}

.news_related_list li a {
    transition: all .5s;
}

.news_related_list li a:hover {
    transform: translateY(-20px);
    transition: all .5s;
}

.lastPage {
    background: #c89a67 ;
    color: #fff;
    border-radius: 100px;
    transition: all .5s;
}

.news_related h6 {
    display: none;
}

@media screen and (max-width: 768px) {
    .news_related_list li a p {
        font-size: 14px;
    }
    .lastPage {
        font-size: 13px;
        padding: 5px 20px;
        margin: 40px auto 0px;
    }
}

/*文章A-外觀*/

.blog_page.article_a .main_part {
    max-width: 1500px;
}

.blog_page.article_a h4.blog_category_title {
    display: none;
}

.article_a .subbox_item a {
    display: flex;
    flex-wrap: wrap;
    padding: 15px;
    background: #f3f0ec3d;
}

.article_a .blog_subbox {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.article_a .subbox_item a:before {
    content: 'MORE';
    top: 93%;
    bottom: 0px;
    left: 50%;
    width: 108px;
    height: 35px;
    text-align: center;
    background:#fff;
    font-size: 13px;
    color: #c89a67;
    border: 1px solid #c89a67;
    transform: translate(-50%, -100%) scale(1);
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    font-family: "Cinzel", serif;
}

.article_a .subbox_item a:hover:before {
    transform: translate(-50%, 60%) scale(1);
    transition: all .5s ease-in-out;
}

.article_a .subbox_item a:hover:after {
    opacity: 1;
    width: 100%;
    transition: all 500ms;
}

.article_a .subbox_item a:after {
    background: rgba(0, 0, 0, 0.5);
}

.article_a .subbox_item a:after {
    content: '';
    width: 0;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 8;
    background: #ffffff45;
    opacity: 0;
    border:1px dashed #e1d1b8;
}

.article_a .blog_list_ri h5 {
    font-weight: 600;
    font-size: 20px;
    color: #9e0c36;
}

.blog_list_ri em{
    color: #d63b68b3;
}
.article_a .blog_list_ri p {
    font-size: 14px;
    color: #090806 ;
    letter-spacing: 0.5px;
}

/*文章B-外觀*/

.blog_page.article_b .main_part {
    max-width: 1500px;
}

.blog_page.article_b h4.blog_category_title {
    display: none;
}

.blog_subbox {
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    grid-gap: 30px;
}

.article_b .subbox_item a {
    border: 1px solid #d3d3d3;
    grid-gap: 15px;
    grid-template-columns: 250px 1fr;
}

.article_b .subbox_item a:before {
    content: '◄';
    background: #0c263d;
    width: 30px;
    height: 30px;
    color: #ffffff;
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0px;
    right: 0px;
    opacity: 0;
}

.article_b .subbox_item a:hover:before {
    content: 'READ MORE';
    width: 100%;
    border-radius: 0px;
    font-size: 13px;
    opacity: 1;
}

.article_b .subbox_item a:after {
    content: '';
    background: #6c9ac224;
    transition: all .5s;
    width: 0%;
    z-index: -1;
}

.article_b .subbox_item a:hover:after {
    width: 100%;
}

.article_b .blog_list_ri h5 {
    font-weight: 400;
    font-size: 17px;
    color: #1c1c1c;
    letter-spacing: 1px;
    -webkit-line-clamp: 2;
}

.article_b .blog_list_ri p {
    font-size: 13px;
    color: #666;
    letter-spacing: 1px;
}

.article_b .blog_list_ri {
    padding: 15px;
}

@media screen and (max-width: 768px) {
    .blog_le .accordion{ display: block; }
    .subbox_item{ border-bottom: 0px ;}
    .article_b .subbox_item a {
        display: flex;
        flex-direction: column;
    }
    .blog_subbox {
        grid-template-columns: 1fr 1fr;
    }
    h5.blog_le_t span {
        display: none;
    }
    .article_a .blog_subbox {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 600px) {
    .article_a .main_part {
        padding-top: 0px;
    }
    .article_a .blog_list_ri h5 {
        font-weight: 400;
        font-size: 16px;
    }
    .blog_list_ri em {
        font-size: 12px;
    }
    .article_a .blog_list_ri p {
        font-size: 13px;
        color: #7f7f7f;
        letter-spacing: 0.5px;
    }
    .edit {
        line-height: 170%;
        font-size: 14px;
    }
}

@media screen and (max-width: 450px) {
    .article_a .blog_subbox {
        grid-template-columns: 1fr;
    }
}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本分類全版面 ( 限制最寬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; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


.contact_page #content{
    background-image: url(https://pic03.eapple.com.tw/nanmantang/in-bg.jpg);
    background-position: top ;
}

/* 聯絡我們 */
.contact_content .information_left{ display: none;}
.contact_editbox{ padding: 0px 0px;}
.contact_content .information_right{ width: 100%; padding-left: 0px;}
.contact_content{ max-width: 1200px;}

/* 聯絡我們 */
.blank_letter{ color: #8c2f39; font-size: 0px;  font-family: "Noto Sans TC", "Cinzel", serif; display: flex; align-items: center;}
.blank_letter::before{ content: "試吃申請表單"; color: #8c2f39; font-size: 20px; display: block; margin-right: 20px; }
.contact_form{ grid-gap:16px;}
.contact_form li{ grid-template-columns:160px 1fr;}
.contact_form li.last blockquote{ color: #c89a67;
  }
.contact_form li.last blockquote, .contact_form li.las t cite{ border: 1px solid #c89a67; border-radius: 100px; }
.contact_form li.last cite{ color: #fff; background: #c89a67 ; border: 0px; border-radius: 100px; }
.contact_form li:has(input[type=checkbox]) .form__insert, .contact_form li:has(input[type=radio]) .form__insert{ display: unset;}
.contact_form li .form__label{max-width:146px;  font-size: 15px; text-align: left;}
.contact_form { grid-gap:22px; }

@media screen and (max-width:1024px) {
   .contact_content{padding: 20px 30px!important;}
} 
@media screen and (max-width:768px) {
   .contact_content{padding: 30px 24px!important;}
}

@media screen and (max-width:600px) {
    .contact_form li .form__label{ background: transparent;}
    .contact_form li .form__label{ background: transparent;}.contact_content{padding: 30px 20px;}
    .contact_form li{ grid-template-columns:1fr;}
    

}



.car_page .information_left {
    display: block;
    display: none;
}
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) { 
}




