@charset "utf-8";

body {
    background-color: transparent;
}
@import url('https://fonts.googleapis.com/css2?family=Jua&display=swap');
/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/


&::-webkit-scrollbar {
    background: #fff;
    width: 7px;
}

&::-webkit-scrollbar-button {
    background: #fff;
    border-radius: 0;
}

&::-webkit-scrollbar-track-piece {
    background: #eee;
}

&::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #d6d7d1;
}

&::-webkit-scrollbar-track {
    box-shadow: transparent;
}



/* 大圖 */
/* ==================== */
/* 第 1 張輪播圖 */
/* ==================== */

/* banner01 向上浮現 */
.bannerindex .swiper-slide.swiper-slide-active:nth-child(1)::before {
     content: "";
    position: absolute;
    background-image: url(https://pic03.eapple.com.tw/catlifehotel/banner03.png);
    width: 50%;
    height: 90%;
    padding-bottom: 30%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    z-index: 10001;
    pointer-events: none;
    right: 25vw;
    top: 18%;
    opacity: 0;
    transform: translateY(10%);
    animation: banner01-move-up 1s ease-in-out forwards;
    animation-delay: 0.2s;
}
/* banner01 原地放大出現 + 晃動（第 1 張輪播圖） */
.bannerindex .swiper-slide.swiper-slide-active:nth-child(1)::after {
    content: "";
    position: absolute;
    background-image: url(https://pic03.eapple.com.tw/catlifehotel/banner04.png);
    width: 30%;
    height: 15%;
    padding-bottom: 4%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    z-index: 10000;
    pointer-events: none;
    right: 5vw;
    top: 19%;
    opacity: 0;
    transform-origin: bottom center;
    animation: banner03-scale-in 1s ease-out forwards, cuteShake 1.5s 1s infinite ease-in-out;
}





/* ==================== */
/* 第 2 張輪播圖 */
/* ==================== */
/* banner02 向上浮現 */
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2)::before {
      content: "";
    position: absolute;
    background-image: url(https://pic03.eapple.com.tw/catlifehotel/banner01.png);
    width: 50%;
    height: 25%;
    padding-bottom: 3%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    z-index: 10001;
    pointer-events: none;
    right: 35vw;
    top: 43%;
    opacity: 0;
    transform: translateY(10%);
    animation: banner02-move-up 1.5s ease-in-out forwards;
    animation-delay: 0.2s;
}

/* banner02 原地放大出現 + 晃動（第 2 張輪播圖） */
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2)::after {
    content: "";
    position: absolute;
    background-image: url(https://pic03.eapple.com.tw/catlifehotel/banner02.png);
    width: 60%;
    height: 15%;
    padding-bottom: 4%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    z-index: 10000;
    pointer-events: none;
    right: 7vw;
    top: 19%;
    opacity: 0;
    transform-origin: bottom center;
    animation: banner03-scale-in 1.5s ease-out forwards, cuteShake 1.5s 1.5s infinite ease-in-out;
}

/* ==================== */
/* 動畫定義 */
/* ==================== */
@keyframes banner01-move-up {
    0% { opacity: 0; transform: translateY(10%); }
    100% { opacity: 1; transform: translateY(-8%); }
}
@keyframes banner02-move-up {
    0% { opacity: 0; transform: translateY(10%); }
    100% { opacity: 1; transform: translateY(-8%); }
}
@keyframes banner03-scale-in {
    0% { opacity: 0; transform: scale(0); }
    100% { opacity: 1; transform: scale(1); }
}
@keyframes cuteShake {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1) rotate(3deg); }
    50% { transform: scale(1) rotate(-3deg); }
    75% { transform: scale(1) rotate(3deg); }
}

/* ============================== */
/* 預設不顯示動畫圖 */
/* ============================== */
.bannerindex .swiper-slide.swiper-slide-active:nth-child(1)::before,
.bannerindex .swiper-slide.swiper-slide-active:nth-child(1)::after,
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2)::before,
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2)::after{ pointer-events: none;}

@media screen and (max-width: 768px) {
    
/* banner01 向上浮現 */
.bannerindex .swiper-slide.swiper-slide-active:nth-child(1)::before {
     content: "";
    position: absolute;
    background-image: url(https://pic03.eapple.com.tw/catlifehotel/banner03.png);
    width: 50%;
    height: 90%;
    padding-bottom: 30%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    z-index: 10001;
    pointer-events: none;
    right: 25vw;
    top: 18%;
    opacity: 0;
    transform: translateY(10%);
    animation: banner01-move-up 1s ease-in-out forwards;
    animation-delay: 0.2s;
}

/* banner03 原地放大出現 */
.bannerindex .swiper-slide.swiper-slide-active:nth-child(1)::after {
    content: "";
    position: absolute;
    background-image: url(https://pic03.eapple.com.tw/catlifehotel/banner04.png);
    width: 30%;
    height: 15%;
    padding-bottom: 4%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    z-index: 10000;
    pointer-events: none;
    right: 5vw;
    top: 19%;
    opacity: 0;
    transform-origin: center center;
    transform: scale(0);
    animation: banner03-scale-in 1s ease-in-out forwards;
    animation-delay: 0.3s;
}

/* ==================== */
/* 第 2 張輪播圖 */
/* ==================== */
/* banner02 向上浮現 */
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2)::before {
      content: "";
    position: absolute;
    background-image: url(https://pic03.eapple.com.tw/catlifehotel/banner01.png);
    width: 50%;
    height: 25%;
    padding-bottom: 3%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    z-index: 10001;
    pointer-events: none;
    right: 35vw;
    top: 43%;
    opacity: 0;
    transform: translateY(10%);
    animation: banner02-move-up 1.5s ease-in-out forwards;
    animation-delay: 0.2s;
}

/* banner03 原地放大出現 */
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2)::after {
       content: "";
    position: absolute;
    background-image: url(https://pic03.eapple.com.tw/catlifehotel/banner02.png);
    width: 60%;
    height: 15%;
    padding-bottom: 4%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    z-index: 10000;
    pointer-events: none;
    right: 7vw;
    top: 19%;
    opacity: 0;
    transform-origin: center center;
    transform: scale(0);
    animation: banner03-scale-in 1.5s ease-in-out forwards;
    animation-delay: 0.5s;
}
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*背景*/
#content {
    min-height: 80vh;
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-size: cover;}
#content_main {

    width: 100%;
    min-height: 80vh;
    overflow: hidden;
    z-index: 60;
    position: relative;
    margin-top: 100vh;
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-size: cover;}

#to_top {
        position: fixed;
        left: 10px;
        z-index: 600;
        width: 50px;
        height: 50px;
        padding-top: 10px;
        font-size: 12px;
        color: #312c2c;
        text-align: center;
        text-decoration: none;
        background: #d6d7d1;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
        border-radius: 10%;
    }
 #to_top i:before, #to_top i:after {
        content: "";
        display: block;
        position: absolute;
        border-radius: 100px;
        background: #312c2c;
        transition: all 100ms ease-in-out;}
        


/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/

/*Main/＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/*Header/＝＝＝＝＝*/

/*Header/＝＝＝＝＝*/
.header_area {
    position: relative;
    z-index: 9999;
    padding: 10px;
    background: #f0f0f000;}
.pageIndex .main_header_area {
    background: #ffffffe0;
    max-width: 1400px;
    margin: auto;
    width: 90%;
    border-radius: 70px;
    padding: 0 40px;
    transition: 0.6s;
}
 .main_header_area {
    background: #ffffffe0;
    max-width: 1600px;
    margin: auto;
    width: 90%;
    border-radius: 70px;
    padding: 0 40px;
    transition: 0.6s;
}
 .header_area {
    position: absolute;
    z-index: 9999;
    top: 2%;
    width: 100%;
    transition: 0.6s;
}
.header_area.sticky {
    width: 100%;
    z-index: 9999;
    background: rgb(255 255 255 / 99%);
}
 .header_area.sticky .main_header_area {
    max-width: 100%;
    border-radius: 0;
    padding: 0 20px;
    transition: 0.6s;
    width: 100%;
}
 .header_area.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}
.main_header_area {
    background: #ffffff;
    transition: 0.6s;
}
.header_area.sticky .main_header_area {
    background: transparent;
    transition: 0.6s;
}
.nav-brand{width: 150px;
    margin-top: 6px;}
/*選單最大寬度設定*//*
.main_header_area .container {    max-width: 95%;}
*/
.main_header_area .container {max-width: 1600px;}
.navigation {padding: 0px 0 0px 100px;}
/*header icon*/
.navigation {    padding: 0px 0 0px 20px;}

/*第一層*/
.stellarnav > ul > li > a{
    transition:all 0.3s;
    padding: 0 16px 0 16px;
    vertical-align: middle;
    font-size: 15px;
    line-height: 40px;
    height: 40px;
    color: #545454;
    overflow: inherit;
    font-weight: 900;
}
.stellarnav ul li a:hover {
    color: #b59666;
}
.stellarnav > ul > li > a:hover b {
    transform: translateY(-40px);
    -webkit-transform: translateY(-40px);}


.stellarnav > ul > li > a b {
    display: block;
    line-height: 30px;
    height: 20px;
    font-style: normal;}


.stellarnav  ul  li  a {    color: #312c2c;}


/*HOVER*/


/* 讓 li 正常排列，不會因為 before 影響佈局 */
.stellarnav > ul > li {
    position: relative; /* 讓 before 以它為基準 */
    padding-left: 20px; /* 預留空間，防止 hover 時內容位移 */
}

/* 預設隱藏 logosmall.png */
.stellarnav > ul > li:before {
    content: "";
    background-image: url(https://pic03.eapple.com.tw/catlifehotel/heart.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
    position: absolute;
    left: 7px; /* 放在按鈕左側 */
    top: 50%;
    transform: translateY(-50%) scale(0.5); /* 初始縮小 */
    opacity: 0;
    z-index: -1; /* 讓它不影響點擊區域 */
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* 滑鼠懸停時，讓 logo 顯示並放大 */
.stellarnav > ul > li:hover:before {
    opacity: 1;
    transform: translateY(-50%) scale(1) rotate(360deg);
    z-index: 10; /* 讓 logo 顯示在最上層 */
}

/* 讓按鈕有 hover 效果，不影響前後元素 */
.stellarnav > ul > li:hover {
    transform: translateY(-2px); /* 按鈕微微上移 */
    transition: transform 0.3s ease-in-out;
}

/*第二層*/
.stellarnav li.has-sub > a:after {top: 60%;}
.stellarnav li li > a , .stellarnav li li.has-sub > a{
    padding: 7px 5px;    
    transition: all 0.3s;
    border-left:0px solid transparent;
    font-size: 13px;
    color: #383838;
}
.stellarnav li li:hover > a , .stellarnav li li.has-sub:hover > a{
        color: #fff;
    padding-left: 10px;
    border-color: #d1b693;
    background: #b59666;
}
.stellarnav li.has-sub > a:after {right: -5px;}




/*次選單樣式-半透明底色*/
.stellarnav ul ul {
    background:#ffffff;
    border-radius: 6px 6px;
    padding: 7px;
    box-shadow: 0px 3px 10px 0px rgb(0 0 0 / 12%);
    -webkit-backdrop-filter: saturate(180%) blur(5px);
    backdrop-filter: saturate(180%) blur(5px);
    width: 180px;
}


/* 移除次選單 a 的 border-right */
.stellarnav ul ul li a {
    border-right: 0px !important;
}

/*次選單欄位邊框*/
.stellarnav li li {
    border-bottom: 1px #d1b693 solid;
    border-top: 0px;
    border-right: 0px;
    border-left: 0px;
}

/*次選單文字樣式*/
.stellarnav li a {
    padding: 7px 10px;
    display: block;
    color: #312c2c;
    font: bold ;
    letter-spacing: .1rem;
}
.stellarnav li li > a ,
.stellarnav li li.has-sub > a {
    padding: 7px 5px;
    border-left: 2px solid transparent ;
}

/*hover欄位樣式-向右滑動*/
.stellarnav li.has-sub ul li a:hover{
    color:#d1b693;
    padding-left: 10px;
    font-weight: bold;
}

/*文字底色透明*/
.stellarnav.desktop li.has-sub ul a {
    background: transparent;
    letter-spacing: .1rem;
    position: relative;
}


/*logo*/
.header_area .nav-brand {
    transition: all 0.3s;
    margin-top: 10px;}

.header_area.sticky .nav-brand {
        max-width: 100%;
        }
/*上方購物車*/
.me_tp_features a.tp_btn_cart {

    border-radius: 10px;
    padding: 5px;
    border: 1px #6b6b6b dashed;
}
.me_tp_features a:hover.tp_btn_cart {
    background-color: #333;
    color: #ffffff;
}

.me_tp_features a.tp_btn_notice {
    border-radius: 10px;
    padding: 5px;
     border: 1px #6b6b6b dashed;
}
.me_tp_features a:hover.tp_btn_notice {
    background-color: #333;
    color: #ffffff;
}   

.me_tp_features {
    width: 100%;
    text-align: right;
    margin-top: 10px;
}
/*SubMenu*/
.stellarnav .icon-close {padding: 0 15px 0 0;}
.menu-toggle {padding: 20px 0 0 0;}
.stellarnav.mobile > ul > li > a {color: #444;letter-spacing: 5px;font-size: 15px;margin: 0 0 0 10px;}

.stellarnav.mobile.left > ul {background: #ffffffe6;}
.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {background: #fff;}
.shop_search_btn {    background: #b59666;}
.tp_links a{transition:all 0.3s;}
.tp_links a:hover {    color: #b59666;}
.stellarnav .menu-toggle:after {font-size: 15px;}/*漢堡*//*


/* = = = 頁尾 = = = =  = = = = = = = = */

/*Footer/＝＝＝＝＝*/
/*換圖*/
.footer {
    background: #ede7db;
    padding: 0;
    position: relative; /* 這行很關鍵！讓 :after 定位參照於 .footer */
    z-index: 99; /* 確保在其他區塊之上 */
}


.footer:after {
content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -120px;
    background: url(https://pic03.eapple.com.tw/catlifehotel/footer01.png);
    background-repeat: repeat-x;
    width: 100%;
    height: 140px;
    display: block;
    z-index: 8888;
    -webkit-animation: scroll_left 25s steps(5124) infinite normal;
    animation: scroll_left 35s steps(5124) infinite;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}


@-webkit-keyframes scroll_left {

 0% { background-position: 0; }
 100% {  background-position: -5124px;}
}
@keyframes scroll_left {
0% {background-position: 0;}
100% {background-position: -5124px;}
}


.footer_logo img {width: 0;}
    
.footer_logo {
    background: url(https://pic03.eapple.com.tw/catlifehotel/footerlogo.png) no-repeat center;
    height: 88px;
    max-width: 30%;
    width: 100%;
    margin-top: 10px;
    background-size: contain;

    /* 動畫效果 */
    animation: cuteShake 1.2s infinite ease-in-out;
    transform-origin: bottom center; /* 旋轉中心點設在底部 */
}




.footer_info{
	grid-template-columns: 1fr;
    justify-items: center;
	padding-right: 0;
	grid-gap: 10px;
	padding: 0;
}
.footer_info li:nth-child(1) {
    display: flex;
    justify-content: center;
}
.footer_info li p:before {
    margin: 0 0px 0 25px;
}
.footer_menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(84px, 100%), 1fr));
   
    max-width: 1200px;
    margin: auto;
}
.footer_menu a {
    margin: 0;
    text-align: center;
    transition: all 0.3s;
    border: 0;
    border-left: 1px solid #888;
    color: #312c2c;
    background: #312c2c00;
}
.footer_menu a:nth-last-child(1) {
    border-right: 1px solid #312c2c !important;
}


.footer_menu a:first-child{display: none;}

.footer_menu a:hover {    background: #d5d6d0; color: #ffffff;}

/*回首頁按鈕刪除
.footer_menu a:nth-child(1){display: none;}*/
.copy {    background: #d5d6d0;    color: #ffffff;border:none;}
.copy a{    color: #ffffff;transition:all 0.3s;}
.box_link {
  display: none;
}
a.me_tp_mail {
    display: none;
}


/*上方選單右邊設定 臉書/LINE/電話/信箱
.tp_links a:before {寬高大小設定}
.tp_links a.me_tp_fb {}
.tp_links a.me_tp_fb:before {背景換圖/建議.SVG}
.tp_links a.me_tp_line {}
.tp_links a.me_tp_line:before {背景換圖/建議.SVG}
.tp_links a.me_tp_call {}
.tp_links a.me_tp_call:before {背景換圖/建議.SVG}
.tp_links a.me_tp_mail {}
.tp_links a.me_tp_mail:before {背景換圖/建議.SVG}
*/


/*電腦LOGO
.nav-brand {}
*/

/*手機LOGO
.nav-brand-m {}
*/

/*頁碼*/
.path {
    width: 96%;
    margin: auto;
    font-size: 13px;
    color: #b59666;
    text-align: right;
    border-bottom: 1px solid #e8c89e;
}


.path p {
        position: relative;
        width: auto;
        display: inline-block;
        padding-left: 5px;
        line-height: 24px;
        margin-bottom: -1px;
        border-bottom: 1px solid #b59666;
        max-width: 80%;
    }
.path p a:hover {
    color: #d1b693;
}
    .path p:after {
        content: '';
        position: absolute;
        display: block;
        width: 5px;
        height: 5px;
        background: #b59666;
        border-radius: 5px;
        left: 0;
        bottom: -3px;
    }


body.other_page .path {display: none;}
body.promotions_page .path {display: none;}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*文章管理*/
h5.blog_le_t {
    font-size: 24px;
    font-weight: 500;
    color:  #b59666;
    font-family: serif;
    letter-spacing: 2px;
    margin-bottom: 7px;}
.openNext a.news_menu_toggle i::before {
    content: '\f0d8';
    color: #b59666;
}
/*側邊標題*/
.accordion li .link a {
    cursor: pointer;
    display: block;
    padding: 15px 10px;
    color:  #312c2c;
    font-size: 14px;
    font-weight: 700;
    position: relative;}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {    background: #97979799  !important;}  
.blog_le .accordion {
    list-style-type: none;
    margin: auto;
    border: 1px #312c2c solid;
    overflow: hidden;
    border-bottom: 1px #312c2c solid;
    border-left: 0;
    border-right: 0;
    border-top: 0;
border-radius:0px}

/*右側文章排版*/
.blog_subbox {

        padding: 5px;
        display: flex ;
        justify-content: flex-start;
        align-items: stretch;
        align-content: stretch;
        flex-wrap: wrap;}


/*照片*/
.blog_list_le img {
aspect-ratio: 1 / 1;}

/*標題*/
.blog_list_ri h5 {
    font-weight: 900;
    font-size: 20px;
    color: #bebebe;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;}
/*時間*/
.blog_list_ri em {
    font-size: 14px;
    color: #9d9c9c;
    font-style: normal;
    display: block;}
/*內文*/
.blog_list_ri p {
    font-size: 15px;
    color: #3d3938;
    line-height: 130%;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    word-break: break-all;}
.blog_subbox {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        grid-gap: 20px;
    }
/*內文hover*/
.subbox_item a {
        display: flex;
        grid-template-columns: 160px 1fr;
        position: relative;
        grid-gap: 20px;
        flex-direction: column;}
.subbox_item a:before {
    content: 'READ MORE';
    position: absolute;
    z-index: 19;
    bottom: 10px;
    right: 10px;
    opacity: 0;
    font-size: 15px;
    color: #999;
    transition: all .6s;}
.subbox_item a:before {
    transform: translate(-50%, -50%);
    left: 50%;
    right: 0;
    bottom: -15%;
    letter-spacing: 2px;
    opacity: 0;
    display: block;
    color: #fff;
    background: #d1b693;
    border-radius: 15px 15px 0 0;
    width: 100%;
    padding: 8px 0;
    text-align: center;}
 .subbox_item a:hover:before {bottom: -6%;}

.subbox_item a:hover:before, .subbox_item a:hover:after {
        opacity: 1;
        transition: all .5s;
    }
 .blog_subbox * {
        transition: all 0.6s ease;
    }
.subbox_item a:after {
        content: '';
        width: 100%;
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        z-index: 8;
        background:#c9c8c870;
        opacity: 0;
        transition: all .5s;}

/*文章*/
/*文章內頁*/
h4.blog_category_title {
    color: #3d3938;
    font-size: 30px;
    padding: 10px 0;
    margin-bottom: 20px;
}
.blog_box_edit * {
    line-height: 150%;
    color:  #3d3938;}

body.blog_in_page.article_a .accordion li .link a {
    cursor: pointer;
    display: block;
    padding: 15px 10px;
    color: #312c2c;
    font-size: 14px;
    font-weight: 700;
    position: relative;
}
/*文章封面寢藏*/
.articel_mainPic img {
    display: none;}

body.blog_in_page.article_a .blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {    background: #c7c2c2  !important;}  
body.blog_in_page.article_b .blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {    background: #d1b693 !important;}  
body.blog_in_page.article_a  h5.blog_le_t {
    font-size: 24px;
    font-weight: 500;
    color:  #312c2c;}



 /*第二顆文章按鈕*/
 body.blog_in_page.article_b .accordion li .link a {
    cursor: pointer;
    display: block;
    padding: 15px 10px;
    color: #312c2c;
    font-size: 14px;
    font-weight: 700;
    position: relative;
}




body.blog_in_page.article_b  h5.blog_le_t {
    font-size: 24px;
    font-weight: 500;
    color:  #312c2c;}   

/*分享文字*/
.toShareNews {
        font-size: 1em;
        color:  #a1a1a1;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        align-content: center;
        flex-wrap: wrap;}
/*文章按鈕*/
.blog_back a.article_btn_back {
        background: #d1b693;}


.blog_back a.article_btn_back:hover, .blog_back a.article_btn_prev:hover, .blog_back a.article_btn_next:hover {
            background: #d1b693;}
/*相關文章*/
.news_related {
    background: #bebebe40;
    padding: 85px 15px;}
.news_related h6 span:before {
        content: '相關文章';
        font-size: 24px;
        color: #312c2c;}
/*上一篇*/
.blog_back a.article_btn_prev {
    background: #ede7dc;
    border-radius: 20px;
}
/*下一篇*/
.blog_back a.article_btn_next {
    background: #ede7dc;
    border-radius: 20px;
}
/*回列表*/
.blog_back a.article_btn_back {
    background: #efefef;
    border-radius: 20px;
}
.blog_back a {
    font-size: 15px;
    color: #312c2c;
    display: block;
    padding: 7px 15px;
    width: 100%;
}
/*按鈕*/
.lastPage {
        font-size: 16px;
        color: #fff;
        background: #d1b693;
        padding: 10px 20px;
        display: block;
        margin: 40px auto;
        width: 130px;
        text-align: center;
        border-radius: 20px;}
/*首頁-文章管理*/
.module_i_news li a:after {    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 8;
    background:#bebebe40;
    opacity: 0;
    border: 0px #3d3938 solid;}
.module_i_news li a:before{
    content: 'READ MORE';
    position: absolute;
    z-index: 19;
    bottom: 10px;
    right: 10px;
    opacity: 0;
    text-align: center;
    font-size: 15px;
    color: #312c2c;
    transition: all .6s;}
    
/*首頁-文章顯示*/
 .module_i_news li:nth-child(n+5){
        display:none !important;}
/*標題*/

.module_i_news .title_i_box h4{   
     font-size: 24px;
    color: #312c2c;
    font-weight: bold;
    letter-spacing: 3px;}

.module_i_news .title_i_box h4:before {
    content: "NEWS";
    display: block;
    font-family: "Russo One", sans-serif;
    color: #312c2c;
    font-size: 40px;
    letter-spacing: 3px;
    margin-bottom: -5px;
    font-weight: 100;
}

/*文章標題*/
.i_blog_ri h5 {
    font-weight: 500;
    font-size: 20px;
    color: #3d3938;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;}
/*時間*/
    .i_blog_ri em {
        font-size: 14px;
        color: #858585;
        font-style: normal;
        display: block;
        margin: 7px 0;}  
 /*內文*/
 .i_blog_ri p {
    font-size: 15px;
    color: #3d3938;
    line-height: 130%;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    word-break: break-all;}       


/* 商品下拉超過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個--結束 */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*按鈕*/
.animated-arrow {
    background: #d5d6d0;
    color: #fff;
    display: inline-block;
    margin-top: 20px;
    /* margin-left: auto; */
    height: 50px;
    line-height: 50px;
    overflow: hidden;
    width: 250px;
    /* padding-left: 5%; */
    text-align: center;
    position: relative;}

/* = = = 相簿分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本分類全版面 ( 限制最寬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;}
*/

/*外層*/
.overlay {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background: #d5d6d069;
    left: 0;
    top: 0;
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    transition: all .4s 100ms cubic-bezier(.42,0,.58,1);
}
.show-list .show_pic {
    display: block;
    position: relative;
    overflow: hidden;
    text-align: center;
    line-height: 0;
    height: auto;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
}
/*相簿名稱*/
.show-list .item:hover .show_name {
    color: #312c2c;
}
/*內層*/
.show-list .show_pic img {
    max-width: 100%;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
/*觀看更多*/
.other_album_choice li {
    background: #d5d6d0;
    font-size: 15px;
    display: inline-block;
    border-radius: 18px;
    padding: 7px 20px;
    margin: 0 7px 7px 0;
}

.album_fixed_title span:before {
    content: '觀看更多';
    margin: 0 7px 0 0;
    color: #b59666;
}
.fa-image::before {
    content: "\f03e";
    color: #b59666;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


    /*促銷方案*/
    /*促銷方案更改/＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.news_part {    width: 90%;}

/*外觀顏色*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.other_promotion {
    list-style: none;
    display: block;
    margin: 0 auto;
    width: 30%;
}
.other_promotion li a {
    display: block;
    padding: 10px;
    width: 94%;
    margin: 2%;
    position: relative;
    border: none;
    background: #ffffff17;
    transition: 0.3s cubic-bezier(0.4, 0, 1, 1);
    max-height: 15%;
}
.other_promotion li a:hover {
    background: linear-gradient(to bottom, #ede7db, #ffffff);
    border-radius: 999px;
    transition: 0.3s cubic-bezier(0.4, 0, 1, 1);
}


.promotion_title span {
      border: none;
    color: #312c2c;
    padding: 2px 0px;
}
.promotion_title em {
    display: none;
}
.promotion_title h2 {
    font-size: 21px;
    color: #312c2c;;
    font-weight: 700;
    letter-spacing: 2px;
}
.edit {
    margin: auto;
    font-weight: 200;
    letter-spacing: 1px;
    color: #312c2c;

    max-width: 100%;         /* 限制最大寬度不超出父層 */
    word-wrap: break-word;   /* 讓長單字自動換行 */
    overflow-wrap: break-word;
    white-space: normal;     /* 確保內容可以換行 */
    box-sizing: border-box;  /* 避免 padding 撐大元素 */
}

.other_promotion li a:hover:before, .other_promotion li a:hover:after {
    border-color: #6b6b6b;
    border-radius: 999px;
}

.promotion_title {
    background: linear-gradient(to bottom, #ede7db, #ffffff);
    padding: 10px;
    border-left: 6px solid#312c2c;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.pmtTitle span {
    letter-spacing: 2px;
    color: #a8a8a8;
}




/*呈現方式*/

.promotions_page .main_part {
    display: flex;
}
.promotions_page .page {
    width: 0%;
}
.other_promotion {
    list-style: none;
    margin: 0;
    padding: 80px 11px 11px 11px;
}
.other_promotion li {
    display: flex;
    margin-bottom: 10px;
    width: 100%;
}
.other_promotion li a {
    display: block;
    padding: 10px;
    width: 100%;
    margin: 0%;
    position: relative;
    border: none;
    background: #ffffff17;
}
.other_promotion .pmtTitle h3 {
    color: #312c2c;
    letter-spacing: 2px;
    height: 60px;
}
.show_content {
    width: 100% !important;
    margin: 0px;
    padding: 80px 10px;
}



/*手機板*/

@media screen and (max-width: 768px) {
    .promotions_page .main_part {
        display: block;
    }


 .other_promotion {
 width: 100%;
  padding: 11px;
}

}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

.car_page .information_left {
    display: block;
}
/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.product_page .main_part { max-width:1500px;}
/* .product_info_page .main_part { max-width:1200px;} */

.product_page .show_content,
.product_info_page .show_content { width: 100%; display: flex; justify-content: space-between; flex-wrap: wrap; align-items: flex-start; align-content: flex-start;}
.product_page .product_menu_list { position: relative; width: 220px; letter-spacing: 1px; /*border-right: 1px solid #ccc;*/min-height: 30vw;}
.product_page .products-list,
.product-wrapper { width: calc(100% - 270px);}
ul.page { width: 100%;}

.product-layer-two li ul { position:static; margin-top:5px; /*display:block !important;*/ width:100%; margin-left:0;}
.product-layer-two li:hover ul { border: none !important; /*display:block !important;*/}
.product-layer-two li li { display: block; padding:0; transition:all ease .3s;}
.product-layer-two li.active a {
    font-weight: bold;
    border: 0px #ccc solid;}
.product-layer-two li a {
    border-radius:15px;
    position: relative;
    background: #f3f3f32b;
    padding: 7px 16px;
    display: block;
    font-size: 16px;
    color: #312c2c; border: 1px #ccc solid;}
.product-layer-two li:hover a { color: #ffffff; border: 1px #ccc solid; background: #79797970;}
.product-layer-two li li a{ padding:5px 10px;background-color: #f3f3f32b;}
.product-layer-two li li:hover > a { background:#fff; color:#d5d6d0;}
.product-layer-two > li { width:100%; max-width:100%; padding:0; text-align:left; padding-bottom: 5px;}
.product-layer-two > li ul > li + li { margin-top:5px;}

.product_info_page .product-layer-two { display: none;}
.product_info_page .products-list,
.product-wrapper { width: 100%;}

.product-layer-two li li:hover{ margin-left: 15px; border-bottom:1px dotted #ccc;}
.product-layer-two li li > a:before { content: ""; position: absolute; width: 12px; height: 8px; background: transparent; left: 0; margin-left: -20px; top: 50%; margin-top: -4px; clip-path: polygon(0 0, 100% 50% , 0 100%);}
.product-layer-two li li:hover > a:before { background:#ad925e;}

.product_info_page .half_box { width: 100%; float: none; padding-right: 0;}
.product_info_page .half_box li.btn_blankTop { margin-top: 50px; justify-content: space-between; display: flex;}
.product_info_page .half_box li.btn_blankTop input { width: calc(50% - 10px); background-image: none; padding: 0; text-align: center;}

#prod_thumbSwiper .swiper-slide{padding-top: calc(25% - 2px); position: relative;}
#prod_thumbSwiper img{position: absolute; left: 0; top: 0;}

/*產品資訊標題*/
.pd_tabTitle li.activeTab a {
    color: #312c2c;}
    element.style {
        color: #312c2c;}
/*產品資訊內文*/
element.style {
    color: #d5d6d0;}
.pd_tabInner_contain {
        padding-top: 20px;
        color: #312c2c;}


/*價格*/
.products-list .price {display: none;}

/*右側商品資訊*/
/*加入購物車*/
.inquiry_a3 {
    background: #ede7db;}
/*加入詢價車*/
.inquiry_a1 {
        background: #d6d7d1;}
/*檢視詢價車*/
.inquiry_a2 {
            background: #d6d7d1;}
/*標題*/
.sidebarBtn h2 {
    color: #312c2c;
    font-size: 24px;}
.inquiry_a1, .inquiry_a2, .inquiry_a3 {
    display: block;
    width: 100%;
    border-radius: 5px;
    text-align: center;
    line-height: 50px;
    color: #312c2c;
    margin-top: 10px;
}
/*規格*/
.product_info li .txt_box {
    display: inline-block;
    vertical-align: top;
    color: #312c2c;}
 /*底*/   
.sidebarBtn {
            padding: 15px;
            display: inline-block;
            width: 28%;
            vertical-align: top;
             border: 0px #dddddd00 solid; 
            background: #b9b9b900;}
/*內文*/
 .product_info li span {
                display: block;
                font-size: 12px;
                color: #312c2c;
                margin-bottom: 3px;
                font-family: Arial, Helvetica, sans-serif;
                letter-spacing: 1px;}
 /*底下相關商品*/       
.prod_related {
                    background: #d5d6d0;
                    padding: 85px 15px;}
.prod_related h6 span:before {
                        content: '相關推薦';
                        font-size: 24px;
                        color: #312c2c;}
 .related_list li a {
    display: block;
    padding: 4px;
    background: #fff;
    height: 100%;
    border-radius: 10px;
}               
/*首頁-商品*/
/*首頁-商品顯示*/
.pageIndex .products-list .item:nth-child(n+5){
    display:none;}


/*標題*/
.i_prod_tit span, .i_video_tit span {
    font-size: 32px;
    color: #312c2c;}

.products-list .more {
    border: 1px solid #d5d6d0 !important;
    color: #d5d6d0 !important;
    font-size: 16px;
    font-weight: bold;
    line-height: 32px;
    text-align: center;
    transition: all .5s;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    bottom: 0;
    border-radius: 20px;}
.products-list .item a:hover .more {
        background: #d5d6d0 !important;
        color: #ffffff !important;
        letter-spacing: 2px;}
.products-list .name {
            font-size: 15px;
            color: #312c2c;
            letter-spacing: 1px;
            margin-top: 15px;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            height: 44px;
        text-align: center;}

/*購物車*/
.send_simple {
    background: #d1b693 url(../images/simple_right.png) 88% center no-repeat;
}
.rewrite_simple {
    background: #d5d6d0 url(../images/simple_left.png) 10% center no-repeat;
}
.main_part {
    width: 100%;
    max-width: 1300px;
    margin: auto;
    padding: 10px 20px 80px 20px;
}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*聯絡我們*/
/*標題顏色*/
.blank_letter {
    font-family: 'Josefin Sans', 'sans-serif', '微軟正黑體';
    padding-top: 30px;
    font-size: 26px;
    color: #312c2c;
    background-position: left bottom;
    background-repeat: no-repeat;}
/*資訊顏色*/
 .list_before {
        margin-top: 30px;
        margin-bottom: 20px;
        font-size: 15px;
        color: #312c2c;
        display: block;
        width: 100%;
        position: relative;}
.contact_le_map a {
            display: block;
            background: #d5d6d0;
            text-align: center;
            padding: 10px;
            color: #fff;}



/*******************************************/
.contact_editbox {
    margin: auto;
    padding: 0px;}
/*聯絡我們MAP區改滿版編輯區*/
.contact_content {    width: 100%;padding: 0;}
.contact_page .main_part {    max-width: 100%;    padding: 0;}
.contact_page .path {    display: none;}
.contact_content .information_left {    width: 100%;    padding: 0;}
.contact_content .information_right {       width: 90%;
    margin: auto;
    padding: 10px;
    display: block;}
.contact_content .information_left > h4.blank_letter {    display: none;}
.contact_content .list_before {    width: 100%;		max-width: 100%;    padding: 0;    margin: 0 auto;}
.contact_content .list_before > li:not(li:last-of-type) {    display: none;}
.contact_content .list_before.info > li:last-of-type {    padding: 0;    margin: 0;display:none;}
@media screen and (max-width: 768px) {.contact_content .information_right {    margin: auto;}}
/**/
/*電腦版表單最大寬度設定*/
.contact_content .information_right {    max-width: 1400px;}
/**/
/*******************************************/
/*表單*/
.contact_form {
    margin-top: 30px;
    margin-bottom: 100px;
    font-size: 15px;
    color: #312c2c;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 10px;}


.contact_form li.last cite {
    background: #ffffffb3;
    color: #d3af79;}
.contact_form li.last input {
            background: none;
            border: none;
            outline: none;
            font-size: 15px;
            padding: 7px;
            letter-spacing: 2px;
            color: #312c2c;}

.contact_form li.last blockquote, .contact_form li.last cite {
    display: block;
    vertical-align: top;
    font-style: normal;
    padding: 7px;
    text-align: center;
    border: 1px #d3af79 solid;
    width: 150px;
    max-width: calc(50% - 10px);
    border-radius: 20px;
}
/*表單輸入文字*/
 button, input, optgroup, select, textarea {
                color: #312c2c;
                font: inherit;
                margin: 0;}   
@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;}

/*產品頁面*/
a.pd_menu_toggle {
    font-size: 1.6em;
    font-weight: bold;
    margin-bottom: 10px;
    position: relative;
    color: #b59666 !important;

   }

   #prod_thumbSwiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;}


/*文章*/
.path p, .path p a {
    text-align: left;}
    
.product_page .show_content > a { order: 1;}
.product_page ul.products-list { order: 2;}
.product_page ul.page { order: 3;}
.product_page .product_menu_list {width: 100%; order: 0; min-height: unset;}
}
@media screen and (max-width: 600px) {
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#content_main { margin:0;}

.bannerindex { position:static; height:auto;}
.swiper-banner { position:static; margin:0; height:auto;} 
/* .swiper-slide img { height:auto;} */
@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0;}
}
/*大圖*/
.swiper-banner .swiper-slide img {
    width: 100%;
    height: auto;}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/


.banner.banB {display: none;}
.banner.banF {}
.banner.banblog {}
.banner.banC {display: none;}
.banner {
    background: url(https://pic03.eapple.com.tw/catlifehotel/banner.jpg);
    position: relative;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    flex-direction: column;
    height: 80vw;
    max-height: 700px;
    border-radius: 0 0 90px 90px;}


.banner h5 {
    color:#312c2c;
    font-size: 24px;}
.banner h5:before  {
    content: "";
    font-size: 50px;
    white-space: pre-line;
    display: block;
    color: #312c2c;
   font-family:  "Jua", sans-serif !important;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.1;
    -webkit-animation: imgSlideUpAnimation 1s 0.1s ease-in-out forwards;
    animation: imgSlideUpAnimation 1s 0.1s ease-in-out forwards;
    opacity: 0;}


.promotions_page h5:before {
    content: 'News';} 
 .product_page h5:before {
    content: 'Shop';} 
.blog_page .banner h5:before {
    content: 'Article';} 
.album_page .banner h5:before {
    content: 'PHOTO';} 

.contact_page .banner h5:before {
    content: 'CONTACT';} 
.car_page h5:before {
    content: 'Shop';} 
.remit_page h5:before {
    content: 'Remittance advice';} 

    @keyframes bannerScrollAnimation {
        0% {
            height: 0;
        }
    
        50% {
            height: 100%;
            -webkit-transform: translateY(0);
            transform: translateY(0);
        }
    
        100% {
            -webkit-transform: translateY(100%);
            transform: translateY(100%);
        }
    }
    
    @-webkit-keyframes imgSlideUpAnimation {
        0% {
            opacity: 0;
            -webkit-transform: translateY(30px);
            transform: translateY(30px);
        }
    
        100% {
            opacity: 1;
            -webkit-transform: translateY(0);
            transform: translateY(0);
        }
    }
    
    @keyframes imgSlideUpAnimation {
        0% {
            opacity: 0;
            -webkit-transform: translateY(30px);
            transform: translateY(30px);
        }
    
        100% {
            opacity: 1;
            -webkit-transform: translateY(0);
            transform: translateY(0);
        }
    }

 @media screen and (max-width: 768px) {
  .banner {
    background-attachment: scroll;   /* 手機裝置不支援 fixed，改為 scroll */
    background-size: 100% auto;      /* 寬度100%，高度自動 */
    background-position: center top; /* 從上方對齊圖片 */
    height: 45vw;                    /* 降低高度比例以適配窄螢幕 */
    border-radius: 0 0 50px 50px;    /* 調整圓角，避免太圓 */
    font-size: 40px;
    padding: 20px;
    text-align: center;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    min-height: 240px;
}
  


        
    .banner h5 {color:#312c2c; text-align: center;}
    .banner h5:before  { font-size: 35px;
            }}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本分類全版面 ( 限制最寬2000px
.work_page .main_part { max-width:2000px;}
.work_page .show_content { padding:0; width:100%;}
.work_page .show-list .item { width:33%; display:inline-block; float:none; margin:0; padding:0;}
@media screen and (max-width: 768px) {
.work_page .show-list .item { width:49%;}
}
@media screen and (max-width: 570px) {
.work_page .show-list .item { width:100%;}
}
.work_page .show-list .item a { max-width:100%;}
.work_page .show-list .show_pic { height:auto; line-height:0;}
.work_page .show-list .show_pic img { max-width:100%; max-height:100%;}
.work_page .show-list .show_name { position:absolute; top:50%; right:10%; width:80%; height:auto; line-height:160%; font-size: 20px; color: #FFFFFF !important; border: solid 1px #fff; text-align: center; margin: -20px 0 0 -120px; padding:5px 20px; transition:all ease-in .3s; opacity:0;}
.work_page .show-list .item:hover .show_name {opacity:1;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本列表
.work_info_page .main_part { max-width:2000px;}
.work_info_page .show_content { padding:0; width:100%;}
.work_info_page .subalbum-menu { text-align:center;}
.work_info_page .subalbum-menu h2 { float:none;}
.work_info_page .pic-list .item { margin:0; padding:10px; width:49%; float:none; display:inline-block;}
@media screen and (max-width: 768px) {
.work_info_page .pic-list .item { width:100%;}
}
.work_info_page .pic-list .show_pic { height:auto; line-height:0;}
.work_info_page .pic-list .show_pic img { max-width:100%; max-height:100%;}
.work_info_page .pic-list .item a { max-width:100%; pointer-events: none; cursor: default; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



@media screen and (max-width: 1800px) {
.header_area .nav-brand{padding: 0 0 0 20px;}
    }

@media screen and (max-width: 1550px){
    
/*Header/＝＝＝＝＝*/
.navigation {    padding: 20px 10px 0px 10px;}
.header_area {
    position: relative;
    top: 0;}
.main_header_area {
    width: 100%;
    border-radius: 0;
    padding: 0;
}
.stellarnav > ul > li > a {
    line-height: 75px;
    height: 70px;
    margin-top: 0px;
}
.header_area.sticky .main_header_area {padding: 0;}
.pageIndex .header_area {
    position: fixed;
    top: 0;}
.header_area {

    padding: 0px;}
.pageIndex .main_header_area {
    width: 100%;
    border-radius: 0;
    padding: 0;
}
.pageIndex .header_area.sticky .main_header_area {
    padding: 0;
}}
@media screen and (max-width: 1330px) {
    /*Header/＝＝＝＝＝*/
    .navigation {padding:10px 0 0 0 ;}
    .stellarnav li.has-sub > a {
        padding: 0 9px 0 0;}
    .stellarnav li.has-sub > a:after {
        top: 55%;
    }
    .stellarnav ul {
        text-align: center;}
    .nav-header {
            position: static;
            text-align: center;}
            }

  @media screen and (max-width: 1250px) {          
  /*Logo/＝＝＝＝＝*/
    .header_area .nav-brand{width: unset;}
    .header_area.sticky .nav-brand{max-width: 200;}

}
 @media screen and (max-width: 1200px) {
   .navigation { padding: unset;}
   .navigation {
    width: 100%;
    position: relative;
    padding: 0;
    display: grid;
    grid-template-columns: 150px 1fr;
    grid-gap: 0 20px;
}
.stellarnav > ul > li > a {
    padding: 2px;}


 .nav-header {
                position: static;
                text-align: center;
            }
    .stellarnav ul {  text-align: center;}
}
 @media screen and (max-width: 980px) {
 .main_header_area .container .navigation {    grid-template-columns: 1fr;}
 .main_header_area .container .navigation> *{grid-row:unset;grid-column:unset;text-align: center;top:10px;}
.nav-menu>li>a {padding: 10px 0px;}
.pageIndex .header_area {
    position: relative;
    width: 100%;
 }
.header_area.sticky {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999;}
.pageIndex .header_area .main_header_area , .pageIndex .header_area.sticky .main_header_area{    background: #ffffff;}

.pageIndex .stellarnav  ul  li:hover  a {color: #b59666; font-weight:bold ;}

.nav-menu>li>a {    padding: 15px 0px;letter-spacing: 2px;}
.me_tp_features {
    width: 100%;
    text-align: center;
    margin-bottom: 7px;}
/*logo*/
.nav-brand img {
        transition: all 0.3s;
        text-align: center; }
.nav-brand img {max-width: 100%;}

.navigation {
grid-template-columns: 200px 1fr;
grid-gap: 0 20px;
align-content: stretch;
justify-content: center;
align-items: center;
justify-items: center}

.tp_links {display: none;}

}

@media screen and (max-width: 768px) {

/*文章*/
.blog_subbox {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    grid-gap: 5px;}

/*產品頁面*/


.product_menu_list>h5 {
    color: #b59666;
   }
.product_menu_list>h5 a {
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    text-align: right;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;}
a.pd_menu_toggle {
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    border: 0px #b59666 solid;
    border-radius: 20px;}

/*產品內頁-標題名稱*/
.mobile_product_name {
    display: block;
    margin-bottom: 10px;
    color: #b59666;}
/*產品資訊*/
.sidebarBtn {
        padding: 15px;
        display: inline-block;
        width: 100%;
        vertical-align: top;
        border: 0px #dddddd00 solid;
        background: #b9b9b900;}

/*Footer/＝＝＝＝＝*/
#to_top { bottom:60px;}

.footer.with_shopping_mode { padding:30px 0 50px; }
.footer_info {    
	justify-content: center;
	padding: 0px 4%;
	}
.footer_logo {       
	width: 180px;
    margin-bottom: 10px;
}

.footer_info li:nth-child(1) {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  align-items: baseline;
}
.footer_menu{grid-template-columns: repeat(8, 1fr);     max-width: 450px;}

.box_link{justify-content: center;}



/*側邊選單/＝＝＝＝＝*/
.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {
    background: #d5d6d0;
}
.stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 380px;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 9999;
    border-right: 1px #eee solid;
}
    .stellarnav.mobile > ul > li > a {
        text-align: left;
        overflow: auto;
        height: auto;
        line-height: 200%;
        display: block;
    }
.stellarnav.mobile {left: 10px;}
    .stellarnav.mobile li a {border-bottom: none;}
    .stellarnav li li > a , .stellarnav li li.has-sub > a{    padding: 10px;border-left:none;}
    .stellarnav li li:hover > a , .stellarnav li li.has-sub:hover > a{padding: 10px;border-color:transparent;}
    .stellarnav > ul > li.has-sub > a::before{display: none;}

.stellarnav>ul>li:before {
        content:none;}

/*open*/
.stellarnav.mobile li.open {
    background: transparent;
    padding: 3px;
}

    /*Logo/＝＝＝＝＝*/
    .nav-brand{ margin-top: 10px;}
    .header_area .nav-brand{max-width:150px;}
    .header_area.sticky .nav-brand{max-width: 200px;}
/*表單*/
.contact_form li .form__label {
    width: 100%;
    margin-left: 0;
    text-align: left;
    font-weight: bold;
    padding: 5px;
    background: transparent;}
/*Footer/＝＝＝＝＝*/
.footer_info li p {
    text-align: left;
    display: flex;
    color: #312c2c;
    letter-spacing: 2px;
    margin: 2px 8px;
    flex-direction: column;}

#to_top { bottom:60px;}

.footer_info {    justify-content: center;}
.footer_logo {    text-align: center;}
#bottom_menu {

        box-shadow: none;
    }
#bottom_menu li a {  background: #fff;}
#bottom_menu li a:hover {
    color: #d5d6d0;
}
.footer_info li p:before {
    margin: 0;
}
.footer_info li{width: 80%;}
.footer_info ul {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;}
/* 開啟手機板下方按鈕所需設定 */
#to_top { bottom:60px;}
}

@media screen and (max-width: 600px) { 
        /*Logo/＝＝＝＝＝*/
    .nav-brand{ margin-top: 10px;}
    .header_area .nav-brand{max-width: 130px;}
    .header_area.sticky .nav-brand{max-width: 150px;}
}




