@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=Noto+Sans+TC:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Noto+Serif+TC:wght@200..900&display=swap');

body{
    font-family: "Noto Sans TC", sans-serif;
}

.header_area {padding: 0;}
.edit_part {padding: 0;}
#content {background: #000;}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*反白顏色*/
::-moz-selection{
    background-color: #333;
    color: #fff;
  }
  ::selection{
    background-color: #333;
    color: #fff;
  }
  
  body{
      overflow: overlay;
  }
  &::-webkit-scrollbar {
      background: #181818;
      width: 7px;
  }
  &::-webkit-scrollbar-button {
      display: none;
      background: #181818;
      border-radius: 0;
    }
  &::-webkit-scrollbar-track-piece {
      background: #181818;
    }
  
  &::-webkit-scrollbar-thumb {
      border-radius: 4px;
      background-color: #333;
    }
  
  &::-webkit-scrollbar-track {
      box-shadow: transparent;
    }
  
  /* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
  
  /* 頁面的麵包屑 首頁/頁面名稱/ */
  .path { display:none;}
  
  /*首頁+聯絡按鈕*/
  .animated-arrow { background:#333 ;}
  .bannerindex .swiper-banner .swiper-slide img {animation: none;}
  .bannerindex .swiper-wrapper .swiper-slide:nth-child(1):after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    background-image: url(https://pic03.eapple.com.tw/zhuspace/banner-01.png);
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1, 0);
    transform-origin: 50% 80%;
    z-index: 10000;
    animation: act-word 2s forwards cubic-bezier(0.73, 0.08, 0.11, 0.99);
    animation-delay: 3.8s;
}

.bannerindex .swiper-wrapper .swiper-slide:nth-child(2):after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    background-image: url(https://pic03.eapple.com.tw/zhuspace/banner-02.png);
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1, 0);
    transform-origin: 50% 80%;
    z-index: 10000;
    animation: act-word 1.5s forwards cubic-bezier(0.73, 0.08, 0.11, 0.99);
    animation-delay: 3.0s;}

@keyframes act-word {
    0% {
        opacity: 0;
        transform: scale(1, 0);
    }

    100% {
        opacity: 1;
        transform: scale(1, 1);
    }
}



@media screen and (max-width: 768px) {
    .swiper-slide img {
        position: relative;
        width: 200%;
        left: -20%;
    }
    .swiper-wrapper .swiper-slide.swiper-slide:nth-child(1):before {
        background-image: url(https://pic03.eapple.com.tw/pound/bg-33.png);
    }
    .swiper-wrapper .swiper-slide.swiper-slide:nth-child(2):before {
        background-image: url(https://pic03.eapple.com.tw/pound/bg-33.png);
    }
}
@media screen and (max-width: 500px) {
    .swiper-slide img {
        width: 310%;
        left: -100%;
    }
}




/* 開場動畫 */
.bannerindex::before {
    content: "";
    display: block;
    background-image: url(https://pic03.eapple.com.tw/zhuspace/logo.png);
    width: 526px;
    height: 245px;
    /* background-position: -526px 0 ; */
    background-position: 0;
    background-repeat: no-repeat;
    background-size: contain;
    position: fixed;
    top: 55%;
    left: 57%;
    transform: translate(-50%, -50%);
    z-index: 101;
    pointer-events: none;
    animation: banner-logo 3s forwards;
}
.bannerindex::after{
    content: "";
    display: block;
    background: #000;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    pointer-events: none;
    z-index: 100;
    animation: banner-bg 3s forwards;

}


.swiper-slide img {
    height: auto;
    transform: scale(1.4);
    animation: banner-img 1s forwards;
    animation-delay: 2.6s;
}





.swiper-banner::before{
    content: "";
    display: block;
    height: 5px;
    background-color: #fff;
    position: fixed;
    bottom: 240px;
    left: 50%;
    transform: translate(-50%,0);
    z-index: 500;
    opacity: 0;
    border-radius: 100px;
    animation: banner-line-white 3s forwards;
}

.swiper-banner::after{
    content: "";
    display: block;
    height: 5px;
    background-color: #666;
    position: fixed;
    bottom: 240px;
    left: 50%;
    transform: translate(-50%,0px);
    border-radius: 100px;
    z-index: 500;
    opacity: 0;
    animation: banner-line-brown 3s forwards;
}



@media screen and (max-width: 768px) {
    .bannerindex::before {
        animation: banner-logo-768 3s forwards;

    }
}

@media screen and (max-width: 500px) {
    .bannerindex::before {
        animation: banner-logo-500 3s forwards;
    }
    .swiper-banner::before{
        animation: banner-line-white-500 3s forwards;
    }
    
    .swiper-banner::after{
        animation: banner-line-brown-500 3s forwards;
    }
    
}







@keyframes banner-logo{
    0%{
        opacity: 0;
        width: 526px; 
        height: 245px;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
        background-position: -526px 0 ;
    }
    25%{
        opacity: 1;
        width: 526px; 
        height: 245px;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
        background-position: 0 0;
    }
    50%{
        width: 526px; 
        height: 245px;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
        background-position: 0 0;
        opacity: 1;
    }
    80%{
        width: 526px; 
        height: 245px;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
        background-position: 0 0;
        opacity: 1;
    }
    100%{
        width: 526px; 
        height: 245px;
        filter: blur(10);
        transform: translate(-50%, -50%) scale(5);
        background-position: 0 0;
        opacity: 0;

    }
}
@keyframes banner-bg{
    0%{

    }
    50%{
    }
    80%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}

@keyframes banner-img {
    0%{
        transform: scale(1.4);
    }
    100%{
        transform: scale(1);
    }
}

@keyframes banner-line-white{
    0%{
        width: 420px;
        opacity: 1;
    }
    50%{
        width: 420px;
        opacity: 1;
    }
    80%{
        width: 420px;
        opacity: 1;
    }
    100%{
        width: 2180px;
        opacity: 0;
    }
}


@keyframes banner-line-brown{
    0%{
        width: 0;
        opacity: 1;
    }
    50%{
        width: 420px;
        opacity: 1;
    }
    80%{
        width: 420px;
        opacity: 1;
    }
    100%{
        width: 2180px;
        opacity: 0;
    }
}


@keyframes banner-logo-768{
    0%{
        opacity: 0;
        width: 410px; 
        height: 245px;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
        background-position: -410px 0 ;
    }
    25%{
        opacity: 1;
        width: 410px; 
        height: 245px;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
        background-position: 0 0;
    }
    50%{
        width: 410px; 
        height: 245px;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
        background-position: 0 0;
        opacity: 1;
    }
    80%{
        width: 410px; 
        height: 245px;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
        background-position: 0 0;
        opacity: 1;
    }
    100%{
        width: 410px; 
        height: 245px;
        filter: blur(10);
        transform: translate(-50%, -50%) scale(5);
        background-position: 0 0;
        opacity: 0;

    }
}

@keyframes banner-logo-500{
    0%{
        opacity: 0;
        width: 300px; 
        height: 245px;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
        background-position: -300px 0 ;
    }
    25%{
        opacity: 1;
        width: 300px; 
        height: 245px;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
        background-position: 0 0;
    }
    50%{
        width: 300px; 
        height: 245px;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
        background-position: 0 0;
        opacity: 1;
    }
    80%{
        width: 300px; 
        height: 245px;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
        background-position: 0 0;
        opacity: 1;
    }
    100%{
        width: 300px; 
        height: 245px;
        filter: blur(10);
        transform: translate(-50%, -50%) scale(5);
        background-position: 0 0;
        opacity: 0;

    }
}

@keyframes banner-line-white-500{
    0%{
        width: 250px;
        opacity: 1;
    }
    50%{
        width: 250px;
        opacity: 1;
    }
    80%{
        width: 250px;
        opacity: 1;
    }
    100%{
        width: 2180px;
        opacity: 0;
    }
}


@keyframes banner-line-brown-500{
    0%{
        width: 0;
        opacity: 1;
    }
    50%{
        width: 250px;
        opacity: 1;
    }
    80%{
        width: 250px;
        opacity: 1;
    }
    100%{
        width: 2180px;
        opacity: 0;
    }
}

  
  
/*首頁+聯絡按鈕*/
.animated-arrow { background:#c1b09c ;}
.swiper-pagination {    left: 50%;    margin-left: 0;    transform: translate(-50% , 0);}


/*預設解除背景輪播*/
#content_main {
    background: #0e0e0e !important;
    z-index: 0;height: 100vh;
    margin-top: 0;
}
.bannerindex { position:relative;}
.swiper-banner { position:static; margin:0; height:auto;}
.swiper-slide img { height:auto;}
@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0;}
}



/*選單設定*/

.header_area .main_header_area {
    position: fixed;
    background: #fff;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    transition: all 0.5s;
}
.header_area.sticky .main_header_area {
    height: 0px;
    transition: all 0.5s;
}




.header_area .me_tp_features {
    display: block;
    position: fixed;
    top: 40px;
    right: 210px;
    margin-bottom: 0;
    transition: all  0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
}
.header_area.sticky .me_tp_features {
    top: 20px;
    transition: all  0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}


.header_area .stellarnav .menu-toggle,.stellarnav .call-btn-mobile, .stellarnav .location-btn-mobile {
    display: block;
    position: fixed;
    top: 43px;
    right: 5%;
    z-index: 999;
    transition: all 0.5s;
    pointer-events: all;
}
.header_area.sticky  .stellarnav .menu-toggle,.stellarnav .call-btn-mobile, .stellarnav .location-btn-mobile {
    top: 43px;
    transition: all 0.5s;
}







/* 漢堡 */

.stellarnav .menu-toggle span.bars span {
    display: block;
    position: relative;
    width: 34px;
    height: 2px;
    border-radius: 6px;
    background: #fff;
    margin: 0 auto 6px;
    left: 0;
    transition: 0.5s;
}
.stellarnav .menu-toggle:hover span.bars span:nth-child(1) {
    left: -10px;
    transition: all  0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.stellarnav .menu-toggle span.bars span:nth-child(2) {
    opacity: 1;
    transition: all 1s;
}
.stellarnav .menu-toggle:hover span.bars span:nth-child(3) {
    left: 10px;
    transition: all  0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}




/* 漢堡關 */


.stellarnav.active .menu-toggle span.bars span:nth-child(1) {
    left: 0;
    transform: rotate(45deg);
    transition: all 1s;
}
.stellarnav.active .menu-toggle span.bars span:nth-child(2) {
    opacity: 0;
    transition: all 1s;
}
.stellarnav.active .menu-toggle span.bars span:nth-child(3) {
    transform: rotate(315deg);
    left: 0;
    top: -16px;
    transition: all 1s;
}



.stellarnav.active .menu-toggle:hover span.bars span:nth-child(1) {
    transform: rotate(-55deg);
    transition: all 1s;
}
.stellarnav.active .menu-toggle:hover span.bars span:nth-child(3) {
    transform: rotate(225deg);
    transition: all 1s;
}



@media screen and (max-width: 500px) {
    .stellarnav .menu-toggle span.bars span {
        width: 27px;
    }
    
}






/* 未開啟 */

.stellarnav > ul {
    display: none !important;
    margin: 0;
    padding: 0;
    text-align: center;
    background: transparent;
    position: relative;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    z-index: -5;
    transition: all 0.3s;
}
.stellarnav{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -5;
    line-height: normal;
    background-color: transparent;
    pointer-events: none;
    transition: 1s;
}
.stellarnav::before{
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    z-index: -5;
    line-height: normal;
    background-color: transparent;
    transform: translate(-50%,-50%);
    opacity: 0;
    transition: 1s;
}


/* 開啟 */
.stellarnav.active > ul {
    display: flex !important;
    transition: all 0.3s;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-end;
    pointer-events: all;
    width: 30%;
    height: 670px;
    background: transparent;
    padding: 5% 5%;
    padding-top: 130px;
    border-radius: 0 0 0 30px;
}

.stellarnav.active > ul::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 590px;
    background-color: #000000a3;
    border-radius: 0 0 0 40px;
    animation: nav-left 0.5s forwards;
}
.stellarnav.active{
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-content: flex-end;
}
.stellarnav.active::before{
    content: "";
    width: 100%;
    height: 100%;
    background-color: #0000002b;
    border-radius: 0;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 1;
    transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);
}


@keyframes nav-left {
    0%{
        left: 590px;
    }
    100%{
        left: 0;
    }
    
}






@keyframes line-up {
    0%{
        height: 0%;
    }
    100%{
        height: 100%;
    }
}



@media screen and (max-width: 1440px) {
    .stellarnav.active > ul {
        width: 35%;
    }
    
}
@media screen and (max-width: 1024px) {
    .stellarnav.active > ul {
        width: 45%;
    }
    
}





/* BAR */
.stellarnav .menu-toggle:after {
    display: none;
}


/* 購物籃 */
.tp_links{
    display: none;
}
.box_search input[type=text] {
    display: none;
    background: url(../images/search-icon.png) no-repeat 9px center #fff;
    border: 0;
    padding: 2px 0px 4px 42px;
    width: calc(20% - 42px);
    border-radius: 10em;
    transition: all .5s;
    outline: none;
    background-color: transparent;
    border-bottom: 1px #3F3F3F solid;
    border-radius: 0;
    transition: all 0.3s;
}
.box_search input[type=text]:hover {
    color: #3F3F3F;
    transition: all 0.3s;
}
.box_search input[type=text]:focus {
    color: #3F3F3F;
    transition: all 0.3s;
}
.shop_search_btn {
    display: none;
    background: #3F3F3F;
    color: #fff;
    font-size: 13px;
    border: none;
    border-radius: 0;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
    padding: 4px 15px;
    cursor: pointer;
}
.box_search {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 60%;
    margin-bottom: 0;
    margin-right: 30px;
}
.me_tp_features a {
    margin: 0 0;
}
.me_tp_features a.tp_btn_cart {
    margin-right: 20px;
}

.me_tp_features a.tp_btn_cart span {
    display: none;
}
.me_tp_features a.tp_btn_notice span{
    display: none;
}





/*隱藏餐點美食按鈕*/
.stellarnav > ul > li:last-child{
    display: none;
}



/* 選項 */
.stellarnav > ul > li > a {
    margin: 0 20px;
    padding-left: 0 20px;
    color: #fff;
    display: flex;
    text-transform: uppercase;
    position: relative;
    font-size: 16px;
    line-height: 20px;
    height: auto;
    margin: 0px 5px;
    overflow: visible;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
    opacity: 1;
    flex-direction: row;
    flex-wrap: nowrap;
}
.stellarnav > ul > li > a:hover {
    padding-left: 25px;
    transition: all 0.3s;
}
/*.stellarnav li.has-sub > a:after {
    display: none;
}*/
.stellarnav > ul > li > a b {
    display: inline;
    line-height: 15px;
    height: 20px;
}
.stellarnav > ul > li > a b:nth-child(1) {margin-right: 20px;}
.stellarnav > ul > li > a b:nth-child(2) {
    font-size: 12px;
    color: #fff;
    word-break: keep-all;
}
.stellarnav li {
    opacity: 1;
    width: 100%;
}
.stellarnav li::before {
    content: "";
    display: block;
    width: 0%;
    height: 1px;
    margin: 25px 0;
    background-color: #c3b29e;
    animation: line-left-right 1s forwards linear;
}
.navigation {
    width: 100%;
    position: relative;
    padding: 0;
}

.stellarnav > ul > li > a:hover b {
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
}


@media screen and (max-width: 768px) {
    .stellarnav.mobile.left > ul {
        left: auto;
        right: 0;
        padding: 5% 10%;
        padding-top: 130px;
        z-index: 0;
        max-width: 60%;
        border-right: none;
    }
    .stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu{
        display: none;
    }
    .stellarnav.mobile > ul > li {
        border-bottom: none;
    }
    .stellarnav.mobile li a {
        border-bottom: none;
    }
    .stellarnav li::before {
        margin: 20px 0;
    }
    .stellarnav.mobile > ul > li > a.dd-toggle{
        display: none;
    }
    .stellarnav.mobile > ul > li > a {
        display: flex;
        text-align: left;
        align-items: center;
        margin: 0;
        padding: 0 20px;
    }
}

@media screen and (max-width: 500px) {
    .stellarnav.mobile.left > ul {
        max-width: 88%;
    }
}






/* 選單線 延遲 */

.stellarnav li:nth-child(2):before {
    display: none;
}
.stellarnav li:nth-child(3):before {
    animation-delay: 0.3s;
}
.stellarnav li:nth-child(4):before {
    animation-delay: 0.4s;
}
.stellarnav li:nth-child(5):before {
    animation-delay: 0.5s;
}
.stellarnav li:nth-child(6):before {
    animation-delay: 0.6s;
}
.stellarnav li:nth-child(7)::before {
    animation-delay: 0.7s;
}
.stellarnav li:nth-child(8)::before {
    animation-delay: 0.8s;
}




@keyframes line-left-right {
    0%{
        width: 0%;
    }
    100%{
        width: 100%;
    }
    
}




/* 字 動畫 */



.stellarnav > ul > li{
    opacity: 0;
    animation: up 1.5s forwards;
    animation-delay: 0.2s;
}


/* .stellarnav > ul > li:nth-child(2) {
    animation: up 1s forwards;
    animation-delay: 0.5s;
}
.stellarnav > ul > li:nth-child(3) {
    animation: up 1s forwards;
    animation-delay: 1s;
}
.stellarnav > ul > li:nth-child(4) {
    animation: up 1s forwards;
    animation-delay: 1.5s;
}
.stellarnav > ul > li:nth-child(5) {
    animation: up 1s forwards;
    animation-delay: 2s;
}
.stellarnav > ul > li:nth-child(6) {
    animation: up 1s forwards;
    animation-delay: 2.5s;
}
.stellarnav > ul > li:nth-child(7) {
    animation: up 1s forwards;
    animation-delay: 3s;
}
.stellarnav > ul > li:nth-child(8) {
    animation: up 1s forwards;
    animation-delay: 3.5s;
} */

/* 下拉 */
.stellarnav ul ul {
    top: auto;
    width: auto;
    position: relative;
    z-index: 9900;
    text-align: left;
    display: none;
    background: #000;
    overflow-y: overlay;
    max-height: 300px;
    margin-top: 15px;
    scrollbar-width:thin; 
    scrollbar-color: #3f3f3f transparent;
}
.stellarnav ul ul:nth-child(2), 
.stellarnav ul ul:nth-child(3), 
.stellarnav ul ul:nth-child(4) {
    display: none;
}
.stellarnav li a{
    color: #ffffff;
}
.stellarnav li li{
    border: none;
    margin-bottom: 10px;
}
.stellarnav li li:hover{
    background: #3f3f3f;
}
.stellarnav li li:before{
    display: none;
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*LOGO設定*/





@keyframes show-logo {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

@keyframes show-line {
    0%{
        right: 100%;
        opacity: 0;
    }
    100%{
        right: 0;
        opacity: 1;
    }
}

.nav-header {
    position: fixed;
    z-index: 123;
    top: 57px;
    left: 5%;
    opacity: 0;
}

.nav-brand {
    display: inline-block;
    width: 150px;
}

/* footer修改 */
.pd_link a {
    opacity: 0.2 !important;
}
.pd_link a:hover {
    opacity: 1 !important;
}
.pd_link a img {
    width: 15%;
    max-width: 36px;
}
@media screen and (min-width: 1190px) {
    .pd_link a {
        margin: 10px !important;
    }
}
/* footer修改END-------------------- */

@media screen and (max-width: 1024px) {
    .nav-brand img {
        position: relative;
        max-width: 100%;
        z-index: 100000;
        transition: all 0.3s;
    }
    .header_area.sticky a.nav-brand::before {  
        width: 20%;
        left: 50%;
        transform: translateX(-50%);
        transition: all 0.3s;
    }
    .stellarnav > ul > li > a {
    }
    
}











@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%;}
.nav-brand {
    display: inline-block;
    width: 130px;
}
.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;
}
.nav-header {
    z-index: 0;
    left: 5%;
    top: -13px;
}






}


@keyframes up {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}




/*開場NAV */
.nav-header {
    opacity: 1;
    top: 37px;
}
.pageIndex .nav-header {
    opacity: 0;
    animation: banner-nav-logo 1s forwards;
    animation-delay: 2.6s;
}
.pageIndex .header_area.sticky .nav-header {
    opacity: 0;
    animation: banner-nav-logo 1s forwards;
    animation-delay: 2.6s;
}



@keyframes banner-nav-logo {
    0%{
        top: 87px;
        opacity: 0;
    }
    100%{
        top: 37px;
        opacity: 1;
    }
}


.pageIndex .stellarnav .menu-toggle{
    opacity: 0;
    animation: banner-navbar 1s forwards;
    animation-delay: 2.6s;
}
.stellarnav .menu-toggle{
    opacity: 1;
    top: 57px;
}



@keyframes banner-navbar {
    0%{
        top: 97px;
        opacity: 0;
    }
    100%{
        top: 44px;
        opacity: 1;
    }
}



/* 其他頁面LOGO */

.header_area .nav-header {
    opacity: 0;
    transition: all 0.5s;
}

.header_area.sticky .nav-header {
    opacity: 1;
    transition: all 0.5s;
    
}











/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*Footer*/
.footer {
    border-top: none !important;
    z-index: 10;
    height: auto;
    padding-bottom: 0;
    background: #040404;
}
.footer .center {
    position: static;
}
.footer_menu { border-bottom: none !important;}
.copy {
    background: #040404;
    color: #C3C3C3;
    border: none;
    margin-top: 0;
}

.copy a{    color: #fff;}
.footer_menu a:hover {    background: #02642F;}
.footer_menu a {    transition: all 0.3s;}
.box_link{
    display: none;
}
.footer_info li p {
    color: #fff;
}
.footer_info li p a{
    color: #fff;
}
.footer_menu a:nth-child(1){
    display: none;
}
.footer_menu a:nth-child(2){
    display: none;
}
.footer_menu a {
    display: inline-block;
    padding: 5px 11px;
    border: 0;
    margin: 0 5px;
    font-size: 14px;
    line-height: 100%;
    color: #fff;
    background: transparent;
    border-bottom: 1px #fff solid;
}
.footer_menu a:hover {
    background: #fff;
    color: #000;
}

.center{
    display: block !important;
}




/* 浮動 */

.info_fix {
    width: auto;
    box-sizing: border-box;
    position: fixed;
    bottom: 0px;
    right: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: flex-end;
    justify-content: flex-end;
    transition: all 0.7s;
}
.info_fix:hover{
    right: 0;
    transition: all 0.7s;
}
/*.info_fix::before{
    content: "";
    display: block;
    width: 10px;
    height: 52px;
    border-radius: 2px 0 0 2px;
    background-image: url(https://pic03.eapple.com.tw/pound/icon-31.png);
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translate(0,-50%);
    background-size: contain;
}*/
.info_fix_links {
    display: flex !important;
    background: #56565633;
    width: 270px;
    padding-bottom: 0;
    border: 1px #A29080 solid;
    border-radius: 0;
    overflow: hidden;
    justify-content: flex-end;
    flex-direction: row;
}
.info_fix>span{
    display: none;
}
.info_fix_links a {
    background: transparent;
}
.info_fix_links a {
    display: block;
    width: 100%;
    height: 50px;
    overflow: visible;
    border-radius: 0;
    transition: .3s;
    background: transparent;
    margin-bottom: 0;
}
.info_fix_links a span {
    width: 20px;
    height: 100%;
    display: block;
    margin: 0 auto;
}
.info_fix_links a span::before {
    background-size: contain;
}
.info_fix_tel span::before, .info_fix_tel2 span::before{
    background-image:url(https://www.poundcustom.com/images/pd_tel.png);
}




.info_fix_default.info_fix_google{
    color: #fff;
    background-color: #FF8C31;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    height: 140px;
    align-items: center;
}
.info_fix_default.info_fix_google:hover{
    background-color: #D87775;
}
.info_fix_links p {
    text-align: center;
    font-weight: 900;
    writing-mode: vertical-rl;
}




#to_top {
    color: #fff;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding-top: 0;
    transition: all 0.7s;
}

#to_top:hover i{
    transform: translate(0,-5px);
    transition: all 0.7s;
}

#to_top i:before, #to_top i:after {
    background: #fff;
}








@media screen and (max-width: 768px) {
    .footer_info ul {
        width: 100%;
        text-align: center;
    }
    .info_fix {
        bottom: 0;
    }
    
}



@media screen and (max-width: 768px) {
    .footer_menu a {
        display: inline-block;
        padding: 5px 11px;
        border: 0;
        margin: 10px 5px;
        font-size: 14px;
        line-height: 100%;
        color: #fff;
        background: transparent;
        border-bottom: 1px #fff solid;
        width: 43%;
    }
    .info_fix {
        right: 0;
        width: 100%;
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);

    }
    .info_fix_links {
        display: flex !important;
        width: 100%;
        flex-direction: row;
        background: #0000006b;
        border: initial;
        border-top: 1px #A29080 solid;
    }
    .info_fix::before{
        display: none;
    }
    .info_fix_links a:hover {
        background: #000000c7;
    }
    
}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {
    background: #000;
    background-image: url(https://pic03.eapple.com.tw//banner-12.png);
    width: 100%;
    padding: 0;
    height: 0;
    padding-bottom: 49%;
    background-size: contain;
    position: relative;
}

.banner h5 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #c1b09c;
    font-size: 24px;
    font-family: 'Noto Serif TC', 'Zen Maru Gothic', sans-serif, arial;
    width: 100%;
    /* animation:  banner-text 3s forwards; */
    letter-spacing: .3em;
}
.banner h5::before {
    content: "";
    display: block;
    height: 90px;
    width: auto;
    background-size: auto 100%;
    background-position: center;
    background-repeat: no-repeat;
    /* animation:  banner-text 3s forwards; */
}
.banner h5::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: linear-gradient(87deg, transparent 0%, rgb(193, 176, 156) 40%, rgb(193, 176, 156) 60%, transparent 100%);
    margin: 0 auto;
    margin-top: 40px;
    opacity: 0;
    animation: banner-line 3s forwards;
}

.banner.banB{display: none;}

@keyframes banner-line {
    0%{
        width: 0;
        opacity: 0;
    }
    75%{
        width: 300px;
        opacity: .5;
    }
    100%{
        width: 300px;
        opacity: 1;

    }
}

@keyframes banner-text {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}



@media screen and (max-width: 768px) {
    .banner h5::before {
        height: 50px;
    }
    
}


@media screen and (max-width: 500px) {
    .banner h5 {
        font-size: 20px;
    }
    .banner h5::after {
        margin-top: 20px;
    }
    .banner {
        padding-bottom: 89%;
        background-position: center;
        background-size: cover;
    }
}




/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*購物車設定*/
/* 產品的看更多按鈕設定 */


.product_page .main_part {
    width: 100%;
    max-width: 80%;
    margin: auto;
    padding: 0;
    padding: 150px 0;
}





/* 選單 */
.product-layer-two {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-end;
    width: 10%;
    margin-right: 10%;
}
.product-layer-two li {
    display: inline-block;
    padding: 0;
    margin: 0;
    position: relative;
    width: 100%;
    height: fit-content;
    text-align: left;
    border-left: 1px solid #939393;
    transition: all 0.5s;
}
.product-layer-two li::before {
    content: "";
    display: inline-block;
    background-color: #c3b29e;
    width: 1px;
    height: 0;
    position: absolute;
    left: 0;
    bottom:  0;
    transition: all 0.5s;
}
.product-layer-two li:hover:before {
    bottom:  inherit;
    top:  0;
    height: 100%;
    transition: all 0.5s;
}
.product-layer-two li a {
    color: #939393;
    border: 0;
    padding: 15px 20px;
    background: transparent;
    text-wrap: nowrap;
    transition: all 0.3s;
}
.product-layer-two li:hover > a { 
    background: transparent;    
    color: #c3b29e;
    padding-left: 30px;
}
.show_content {
    margin: auto;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
}

.page {
    color: #bebebe;
    width: 1000%;
}
.product-layer-two li.active > a {
    background: transparent;
    color: #c3b29e;
    border: 0;
    border-left: 2px #c3b29e solid;
    font-weight: normal;
}

/* 內容 */
.products-list .more {
    border: 1px solid #bebebe !important;
    color: #bebebe;
    width: 90%;
    margin: 0 auto;
}
.products-list .item a:hover .more {    background: #c3b29e;    border-color: #939393;	color: #ffffff;}
.products-list {
    width: 80%;
    padding: 20px 20px;
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
}
.clearfix:before, .clearfix:after {
    content: " ";
    display: none;
}
.products-list .item {
    width: 32%;
    display: inline-block;
    vertical-align: top;
    padding: 2%;
    margin: 0.05%;
    background: #070707;
    border-radius: 0;
    height: fit-content;
    transition: all 0.5s;
}
.products-list .item:hover {
    background: #0c0c0c;
    transform: scale(1.05);
    transition: all 0.5s;

}

.products-list .item a img {    
    transition: all 0.5s;

}
.products-list .item a:hover img {
    transform: scale(1.05);
    transition: all 0.5s;
}

.products-list .name {
    font-size: 16px;
    color: #bebebe;
    height: 90px;
    padding: 0 5%;
    margin: 10px 0;
    -webkit-line-clamp: none;
    -webkit-box-orient: vertical;
}
.products-list .name::before {
    content: "";
    text-align: center;
    display: block;
    width: 100%;
    height: 1px;
    background-color: #bebebe;
    margin: 10px 0;
}
.products-list .pic {
    display: block;
    position: relative;
    text-align: center;
    padding-bottom: 100%;
    height: 0;
    overflow: hidden;
    transition: all 0.5s;
}
.products-list .item a:hover .pic{
    transition: all 0.5s;
}





/*內液*/
.product_info_page .main_part {
    width: 100%;
    max-width: 60%;
    margin: auto;
    padding: 50px 0px;
}
.lastPage {    background: #c1b09c;}
.nextaction {    background-color: #c1b09c;}
.lastaction {    color: #fff;    background-color: #c1b09c;}

.bx-wrapper .bx-viewport {
    border: none;
    left: 0px;
    background: transparent;
}
.product_pic #bx-pager a {
    border: none;
}
.product_info_page .product-layer-two {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-end;
    width: 10%;
    margin-right: 10%;
    position: absolute;
    left: 100px;
}
.product-wrapper {
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sidebarBtn {
    padding: 5% 0;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    border: 0;
    background: transparent;
}
.sidebarBtn h2 {
    color: #c3b29e;
    font-family: 'Noto Serif TC', 'Zen Maru Gothic', sans-serif, arial;
    font-size: 24px;
}
.sidebarBtn * {
    color: #bebebe;
}
.product_info li span {
    color: #bebebe;
}
#bx-pager h6{
    display: none;
}
ul.prod li h3.prod-thumb {
    background: transparent;
    color: #c3b29e;
    padding: 0;
    text-align: left;
}
ul.prod li h3.prod-thumb::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #c3b29e;
    margin: 10px 0;
}
ul.prod {
    list-style: none;
    display: block;
    width: 100%;
}
ul.prod li .prod-panel {
    color: #bebebe;
    text-align: left;
}
ul.prod li {
    margin-bottom: 40px;
    color: #bebebe;
}
.toShare {
    border-top: 1px solid #c3b29e;
}



/*  */
.half_box {
    width: 100%;
    float: left;
    padding-right: 0px;
}
ul.prod li span{
    color: #bebebe;
}
.qaform .breakF {
    border: 1px #939393 solid;
    background: #00000061;
    color: #fff;
}
.half_box li.btn_blankTop {
    margin-top: 0;
    display: flex;
    justify-content: space-between;
}
.productBtn{
    text-align: center;
    width: 40%;
    background-color: transparent;
    background-image: none;
    margin-top: 10px;
    padding-left: 0;
    border: 1px #939393 solid !important;
    color: #bebebe;
    transition: all 0.5s;
}
.productBtn:hover{
    background-color: #00000071;
    transition: all 0.5s;
}

/*  */

.prod_related {
    background: #0000001c;
    padding: 25px 15px;
}
.prod_related h6 span:before {
    content: '相關推薦';
    font-size: 24px;
    color: #c3b29e;
}
.related_list li a {
    display: block;
    padding: 5%;
    background: #070707;
}
.related_list li a p {
    font-size: 15px;
    color: #bebebe;
    margin: 10px 0;
}
.related_list li{
    transition: all 0.5s;
}
.related_list li:hover{
    transform: scale(1.05);
    transition: all 0.5s;
}
.mobile_product_name {
    display: none;
}


@media screen and (max-width: 1440px) {
    .product-wrapper {
        left: 100px;
    }
}





@media screen and (max-width: 768px) {
    .product-layer-two {
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        width: 100%;
        margin-right: 0;
        justify-content: space-between;
        align-items: flex-end;
    }
    .product-layer-two li {
        width: calc(100% / 3);
    }
    .product-layer-two li a {
        text-wrap: pretty;
        word-break: keep-all;
    }
    .product-layer-two li:hover > a {
        padding-left: 20px;
    }
    .products-list {
        width: 100%;
        padding: 20px 0;
        margin-top: 30px;
    }
    .products-list .item {
        width: 49%;
    }
    .product_info_page .product-layer-two {
        display: none;
    }
    .product-wrapper {
        left: 0px;
    }
    
}

@media screen and (max-width: 500px) {
    .product_page .main_part {
        max-width: 85%;
    }
    .product-layer-two li {
        width: calc(100% / 2);
    }
    .products-list .more {
        font-size: 14px;
    }
    .products-list .item {
        width: 100%;
    }

    .product_info_page .main_part {
        width: 100%;
        max-width: 85%;
        margin: auto;
        padding: 50px 0px;
    }
    
}




/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/
.blog_back a.article_main_header_area_back {    background: #02642F;}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {    background: transparent !important;}
.share_page .edit {    text-align: justify;    line-height: 180%;}
.subbox_item a:before , .subbox_item a:after {    transition: 0.3s;}
.blog_le .accordion > li {
    width: 100%;
    position: relative;
    text-align: center;
    transition: all 0.3s;
}
.blog_box_edit {    line-height: 180%;    text-align: justify;}
h4.blog_category_title {    
    text-align: justify;
    color: #fff;
    display: none;
}
.link a {    width: 100%;    display: block;    padding: 15px 10px;}
.accordion li .link {    padding: 0;}
.blog_page .main_part {
    width: 100%;
    max-width: 60%;
    margin: auto;
    padding: 0px;
}
.clearfix:before, .clearfix:after {
    display: none;
}




/* 選單 */
.blog_box {
    min-height: 20vw;
    padding: 0px;
    display: flex;
    flex-direction: column;
}
.blog_le {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    /* padding: 0; */
}
h5.blog_le_t {
    display: none;
    font-size: 24px;
    font-weight: 500;
    color: #c3b29e;
    font-family: serif;
    letter-spacing: 2px;
    margin-bottom: 80px;
    width: auto;
    font-family: 'Noto Serif TC', 'Zen Maru Gothic', sans-serif, arial;
}
.blog_search {
    width: 90%;
    position: relative;
    margin-bottom: 60px;
    display: flex;
    justify-content: flex-end;
}
.blog_search form{
    width: 20%;
    position: relative;
}
.blog_le .accordion {
    list-style-type: none;
    margin: auto;
    border-radius: 0;
    border: none;
    overflow: visible;
    width: 80%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-around;
    border-top: 1px #bebebe solid;
}

.accordion li .link a {
    font-size: 16px;
    color: #939393;
    font-weight: 400;
    padding: 5px 10px;
    transition: all 0.3s;
}
.blog_le .accordion > li:hover .link a, .blog_le .accordion > li.on_this_category .link a {
    color: #c3b29e !important;
    transition: all 0.3s;
}
.accordion li::before{
    content: "";
    display: block;
    background-color: #c3b29e;
    height: 2px;
    width: 0%;
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translate(-50%,-50%);
    transition: all 0.5s;
}
.accordion li:hover:before,.blog_le .accordion > li.on_this_category::before {
    width: 95%;
    transition: all 0.5s;
}
.blog_search input[type=search] {
    outline: none;
    box-sizing: border-box;
    width: 100%;
    font-size: 14px;
    color: #999;
    border: 0;
    border-radius: 0;
    border-bottom: 1px #565656 solid;
    padding: 10px 35px 10px 10px;
    background: transparent;
}
.blog_search input[type=submit] {
    outline: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 999;
    width: 38px;
    height: 38px;
    background: url(../images/search-icon.png) no-repeat 9px center transparent;
    border: none;
    transform: scaleX(-1);
}
.blog_search input[type="submit"]:hover {
    background: url(../images/search-icon.png) no-repeat 9px center transparent;
    border: none;
    color: #fff;
    transition: all 0.3s;
}
.blog_search input[type=search]:focus {
    color: #ccc;
}








/* 內容 */
.blog_ri {
    width: 100%;
    padding: 0;
    min-height: 75vh;
}
.blog_subbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    flex-direction: column;
    align-content: center;
}
.blog_list_ri h5 {
    color: #c3b29e;
    margin-bottom: 40px;
    font-size: 24px;
    font-family: 'Noto Serif TC', 'Zen Maru Gothic', sans-serif, arial;
    font-weight: bold;
    letter-spacing: 0.1em;
}
.subbox_item a:after{
    display: none;
}
.subbox_item a:before{
    display: none;
}
.blog_list_le {
    height: 0;
    width: 680px;
    line-height: 0;
    padding-bottom: 30%;
    overflow: hidden;
    position: relative;
}

.subbox_item {
    width: auto;
    width: 100%;
    margin-bottom: 100px;
}
.subbox_item a {
    display: flex;
    position: relative;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    background: #070707;
}
.subbox_item a::before {
    content: "";
    display: block;
    width: 00%;
    height: 130px;
    border-radius: 50%;
    box-shadow: 0px 15px 30px #ab9c8a94;
    background-position: center;
    background-size: contain;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%,0);
    z-index: -1;
    opacity: 0;
    transition: all 0.7s;
}
.subbox_item a:hover:before {
    opacity: 1;
    width: 80%;
    transition: all 0.7s;
}
.blog_list_ri {
    width: 540px;
    margin-left: 0;
    padding: 5%;
}

.blog_list_le img {
    max-width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.blog_list_ri em {
    font-size: 14px;
    color: #999;
    font-style: normal;
    display: block;
    margin: 20px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.blog_list_ri p {
    font-size: 15px;
    color: #898989;
    line-height: 130%;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    word-break: break-all;
    line-height: 160%;
}


.blog_box_edit *{
    color: #fff !important;
}


.blog_back a.article_btn_back {
    background: #02642F;
}

.related_list li a img {
    position: relative;
    max-width: 100%;
    z-index: 1;
}



@media screen and (max-width: 1440px) {
    .blog_page .main_part {
        max-width: 80%;
    }
    .blog_list_le {
        height: 0;
        width: 470px;
        line-height: 0;
        padding-bottom: 30%;
        overflow: hidden;
        position: relative;
    }
    .blog_list_ri {
        width: 440px;
        margin-left: 0;
        padding: 5%;
    }
    .subbox_item {
        width: auto;
        margin-bottom: 90px;
    }
    
    
}
@media screen and (max-width: 1440px) {
    .blog_list_le {
        height: 0;
        width: 370px;
        line-height: 0;
        padding-bottom: 30%;
        overflow: hidden;
        position: relative;
    }
    .blog_list_ri {
        width: 340px;
        margin-left: 0;
        padding: 5%;
    }
    .subbox_item {
        width: auto;
        margin-bottom: 60px;
    }
    .blog_list_ri h5 {
        color: #fff;
        margin-bottom: 40px;
        font-size: 20px;
    }
    
}
@media screen and (max-width: 960px){
.subbox_item {
    border-bottom: none;
}
}

@media screen and (max-width: 768px) {
    .blog_subbox {
        display: block;
    }
    .subbox_item {
        width: 100%;
    }
    .subbox_item a {
        display: block;
    }
    .blog_list_le {
        display: block;
        width: 100%;
        padding-bottom: 50%;
    }
    .blog_list_ri {
        display: block;
        width: 100%;
    }
    .blog_box {
        padding: 0;
    }
    h4.blog_category_title{
        display: none;
    }
    .blog_page .main_part {
        padding: 0;
    }
    .blog_list_ri em {
        font-size: 14px;
        color: #999;
        font-style: normal;
        display: block;
        margin: 0;
        position: relative;
        bottom: 0;
        right: 0;
    }
    .blog_page .page{
        display: none;
    }
    .blog_le .accordion {
        width: 100%;
    }
    .blog_search form {
        width: 40%;
    }
    .blog_le {
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        margin-bottom: 40px;
    }
    .blog_search form {
        width: 100%;
    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*主分類頁面*/
.album_page .main_part , .album_class_page .main_part , .album_info_page .main_part {    max-width: 1400px;}
.show-list .item:hover .show_name {    color: #c1b09c;}
.show-list .show_pic {    height: 30vh;    max-height: 290px;    padding-bottom: 0;}
.show-list .show_pic img {
    display: inline-block;
    max-width: 100%;
    min-width: 100%;
    object-fit: cover;
    height: 30vh;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
}

/*次分類頁面*/
.other_album_choice li {
    background: #c1b09c;
    border-radius: 0;
}
.other_subalbum li p {
    line-height: 220%;
    color: #bebebe;
}
.other_subalbum li a div {
    height: 30vh;
    max-height: 250px;
    overflow: hidden;
    position: relative;
}
.other_subalbum li a img {
    max-width: 100%;
    min-width: 100%;
    object-fit: cover;
    height: 100%;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
}
.other_subalbum li a div:after {
    content: "";
    position: absolute;
    background: rgb(0 0 0 / 30%);
    width: 100%;
    height: 100%;
    transform: translate(-50% , -50%) scale(0);
    top: 50%;
    left: 50%;
    transition: all 0.3s ease-in-out;
    opacity: 0;
}
.other_subalbum li a:hover div:after {    transform: translate(-50% , -50%) scale(1);    opacity: 1;}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*主分類頁面*/
.album_page .main_part{
    max-width: 100%;
    padding: 50px 0;
}
.show-list .show_pic {height: 60vh;max-height: 430px;padding-bottom: 0;}
.show-list .show_pic img {
    display: inline-block;
    max-width: 100%;
    min-width: 100%;
    object-fit: cover;
    height: 50vh;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
}
.show_content {
    margin: auto;
}

.album_page .main_part .show-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.show-list .item {
    width: 33.1%;
    padding: 0;
    margin: 0;
    margin-bottom: 50px;
}


.album_fixed_title {
    display: none;
}


/*  */
.show-list a .show_name {
    font-size: 20px;
    color: #bebebe;
    letter-spacing: 0.15em;
    line-height: 1.5;
    margin-top: 0;
    display: block;
    height: auto;
    opacity: 1;
    font-weight: bold;
    text-align: center;
    padding: 20px;
    transition: all 0.3s;
}
.show-list .item:hover .show_name {
    color: #c1b09c;
}
.subalbum-menu h2 {
    color: #c1b09c;
}
.show-list .item .overlay {
    position: absolute;
    content: '';
    width: 100%;
    height: 0;
    display: block;
    background: rgba(0, 0, 0, .3);
    left: 0;
    top: 0;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: all .4s 100ms cubic-bezier(.42,0,.58,1);
}

.show-list .item:hover .overlay {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    width: 100%;
    height: 100%;
}
.block {
    display: none;
}




@media screen and (max-width: 768px) {
    .show-list .item {
        width: 100%;
    }
    
}
/*  */


@media screen and (max-width: 600px) {
/*照片頁*/
.pic-list .item {    width: 96%;    margin: 10px 2%;}
}


.edit, .show_content {
    width: 100%;
    padding: 0;
    margin: auto;
}
.pic-list {
    -moz-column-count: 3;
    -moz-column-gap: 10px;
    -webkit-column-count: 3;
    -webkit-column-gap: 10px;
    column-count: 3;
    column-gap: 10px;
    width: 100%;
    margin: 0 auto;
}
.pic-list .item {
    width: 100%;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
    padding: 0;
    margin: 0;
}

.pic-list .show_pic {
    height: auto;
    padding: 0;
}
.pic-list .item img {
    max-width: 100%;
}

.other_subalbum li {
    display: inline-block;
    background: transparent;
    width: 100%;
    margin: 10px 0;
    border: none !important;
    color: #fff;
}


/*作品*/
.work_info_page .main_part{
    width: 100%;
    max-width: 68%;
}

.work_page .show-list .item{
    width: 100%;
}

.work_page .clearfix {
    width: 100%;
    max-width: 60%;
    margin: 0 auto;
}

.work_info_page .pic-list .item{
    position: relative;
}

.work_info_page .pic-list .show_pic::before{
    content: '';
    position: absolute;
    left: 0;
    height: 100%;
    bottom: 0;
    width: 100%;
    background-image: linear-gradient(to right, #45331540, #100f0e4d);
    z-index: 1;
}

.page strong, .page a{
    border: none;
}

.page strong, .page a:hover{
    color: #BBBBBB;
}
.page strong, .page a:hover{
    background: #C3B29E;
    color: #040404;
    font-weight: 300;
}

@media screen and (max-width: 780px) {
/*作品*/
.work_info_page  .pic-list{
   column-count: 2; 
}
}

@media screen and (max-width: 480px) {
/*作品*/
.work_info_page  .pic-list{
   column-count: 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; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*其他分頁*/
.promotion_title h2 {    border-bottom: 2px solid #c1b09c;}
.promotion_title {    border-bottom: 1px solid #c1b09c;}



@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu {display: none; }
.footer.with_shopping_mode { padding:30px 0 70px; }
#to_top { bottom:60px;}
.nav-menu {    margin: 0;}
.nav-menu>li:not(.tp_links) {    padding-right: 0;}
.nav-dropdown>li {    text-align: left;}
.nav-dropdown>li>a {    width: calc(100% - 45px);}

/*手機版LOGO設定*/
.footer_logo { margin-left: unset; margin: auto; text-align: center; }

}





.contact_page .main_part {
    width: 100%;
    max-width: 100%;
    margin: auto;
    padding: 100px 0;
    padding-bottom: 200px;
    background-image: url(https://pic03.eapple.com.tw/pound/bg-05.png);
    background-repeat: no-repeat;
}
.contact_content {
    margin: auto;
    padding: 0;
    width: 100%;
    max-width: 60%;
}
.list_before.info li {
    padding-left: 0;
    color: #bebebe;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin: 25px 0;
}
.contact_form li .form__label {
    color: #bebebe;
    margin-left: 0;
    width: auto;
    padding: 10px 0;
    text-wrap: nowrap;
}

.blank_letter {
    font-family: 'Noto Serif TC', 'Zen Maru Gothic', sans-serif, arial;
    padding-top: 30px;
    font-size: 24px;
    color: #c3b29e;
    background-position: left bottom;
    background-repeat: no-repeat;
}
.contact_content form {
    display: flex;
    justify-content: space-between;
}
.contact_content .information_left {
    width: 49%;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 20px;
}
.contact_content .information_right {
    width: 50%;
    padding-left: 30px;
    padding: 0;
}

.contact_le_map {
    display: none;
}

.blank_letter.i {
    display: none;
}

.contact_content .information_left::before {
    content: "";
    display: block;
    background-image: url(https://pic03.eapple.com.tw/pound/icon-06.png);
    width: 70%;
    height: 0;
    padding-bottom: 45%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.list_before {
    margin-top: 0;
    margin-bottom: 0px;
}

.contact_form li {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}
.contact_form li input.noborder {
    border: 1px #c3b29e solid;
    background: #00000085;
}
.contact_form li textarea.noborder {
    border: 1px #c3b29e solid;
    background: #00000085;
}
.contact_form li:nth-last-of-type(2){
    width: 20%;
}

.contact_form li.last{
    width: 80%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}
.contact_form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 0;
}
.contact_form li.last blockquote {
    color: #939393;
    background: transparent;
    transition: all 0.5s;
}
.contact_form li.last blockquote:hover input, .contact_form li.last cite:hover input {
    letter-spacing: initial;
    color: #bebebe;
    transition: all 0.5s;
}
.contact_form li.last blockquote, .contact_form li.last cite {
    display: inline-block;
    vertical-align: top;
    font-style: normal;
    padding: 3px 10px;
    text-align: center;
    border: 1px #c3b29e solid;
    width: 140px;
    background: #00000085;
}
.contact_form li.last blockquote:hover, .contact_form li.last cite:hover {
    background: #000000b2;
}
.contact_form li.last blockquote{
    margin-right: 10px;
}
.contact_form li.last cite {
    background: #00000085;
    color: #939393;
}

.list_before.info li::before{
    content: "";
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: inline-block;
    position: relative;
    margin-right: 20px;
}

.list_before.info li.TEL::before{
    background-image: url(https://pic03.eapple.com.tw/pound/icon-07.png);
}
.list_before.info li.TAXID::before{
    background-image: url(https://pic03.eapple.com.tw/pound/icon-08.png);
}
.list_before.info li.MAIL::before{
    background-image: url(https://pic03.eapple.com.tw/pound/icon-09.png);
}
.list_before.info li.ADD::before{
    background-image: url(https://pic03.eapple.com.tw/pound/icon-10.png);
}



@media screen and (max-width: 1440px) {
    .contact_form li.last {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
    }
    
}



@media screen and (max-width: 768px) {
    .contact_content form {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }
    .contact_content .information_left {
        width: 100%;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding-bottom: 20px;
    }
    .contact_content .information_right {
        width: 100%;
        padding-left: 30px;
        padding: 0;
    }
    .contact_content .information_left::before {
        width: 100%;
    }
}


@media screen and (max-width: 500px) {
    .list_before.info li {
        padding-left: 0;
        color: #bebebe;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        margin: 25px 0;
        word-break: keep-all;
    }
    .list_before.info li::before {
        margin-right: 0px;
    }
    
}

/*Footer/＝＝＝＝＝*/
.footer {
    border-top: none !important;
    padding: 40px 0 0;
    background: #0a0a0a;}

.footer .center { position: relative;max-width: 80%;}
.footer_logo {display: none;}

.copy {
    background: #000;
    color: #fff;
    border: 0;margin-top: 0;}

.center {
    max-width: 80%;
    width: 100%;
    margin: 0 auto;}

.copy a { color: #fff;}
.footer_menu a {transition: all 0.3s;}
.box_link { display: none;}
.footer_info li p {
    width: 100%;
    color: #fff;
    margin: 10px 0 0;
    margin-right: 40px;}

.footer_info li p a {color: #fff;}
.footer_info {
  margin-bottom: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
padding-bottom: 3%;}

.footer_info ul {
    display: flex;
    vertical-align: top;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    width: fit-content;
    width: 80%;}

.footer_menu {
    border-bottom: none !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;}

.footer_menu a {
  text-align: center;
    transition: all 0.3s;
    width: calc(100% / 2 - 20px);
    margin: 0 10px 10px 0;
    background: transparent;
    color: #ffffff9b;
    padding: 10px 20px;
    overflow: hidden;
    position: relative;
    border: none;
    letter-spacing: 2px;}

.footer_menu a:hover {
  border:#333;
    background: #333;
    color: #fff;
    transition: 0.3s all;}

.footer_menu a::before {}

.footer_menu a:hover:before {
    transform: translateX(0%);
    transition: all .3s;}

.footer_menu a:nth-child(1) {display: none;}
.footer_info li:nth-child(2) {width: 30%;}
.info_fix {}

.footer_info li:nth-child(1) {
    display: flex;
    flex-wrap: wrap;
    width: 50%;
    margin-right: 5%;}

.footer_info li:nth-child(1)::before {
    content: "CONTACT";
    display: block;
    width: 100%;
    color: #fff;
    border-bottom: 1px #fff solid;
    padding-bottom: 10px;
    font-size: 24px;
    letter-spacing: 3px;
    font-weight: bold;}

    @media screen and (max-width: 1500px) {
    .footer_menu a {width: calc(100% / 2 - 20px);}}

@media screen and (max-width: 1024px) {
  .footer_info {
    margin-bottom: 40px;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;}

    .footer_info li:nth-child(1) {width: 100%;}
    .footer_info ul {
        display: flex;
        vertical-align: top;
        justify-content: space-between;
        flex-direction: column;
        align-items: flex-start;}

    .footer_info li:nth-child(2) {width: 100%;}

}

@media screen and (max-width: 768px) {
    .footer_info {
        padding: 0;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
    }

    .footer_info ul {
        display: flex;
        vertical-align: top;
        width: 100%;
        justify-content: space-between;
        flex-direction: column;
    }

}


@media screen and (max-width: 500px) {
    .footer_menu a {
        transition: all 0.3s;
        width: 100%;
        margin: 0 5px 5px 0;
        background: transparent;
        color: #fff;
        padding: 10px 20px;
        overflow: hidden;
        position: relative;
    }

    .info_fix {
        bottom: 50px;
    }

}


/*top*/
#to_top {
    bottom: 180px !important;
    left: unset;
    right: -1px;
    width: 55px;
    height: 47px;
    padding-top: 11px;
    color: #fff;
    background: #ffffff2c;
    box-shadow: none;
    border-radius: 0;
    border: none;}
#to_top i:before, #to_top i:after {background: #fff;}