@charset "utf-8";





/*
關於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: #261b17;
}

&::-webkit-scrollbar-track {
    box-shadow: transparent;
}






/*大圖********************************* */

/* 預設解除背景輪播 */
#content_main {
    margin: 0;
}
.bannerindex {
    position: relative;
    height: auto;
}
.swiper-banner {
    position: static;
    margin: 0;
    height: auto;
}

.swiper-banner .swiper-slide img {
    opacity: 1 !important;
}
/* 左邊遮罩（木頭） */
.pageIndex::before {
    content: "";
    pointer-events: none;
    display: block;
    width: 50%;
    height: 100%;
    background-image: url(https://pic03.eapple.com.tw/0983511166/bannercover01.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    animation: curtain-open-left 1s ease-in-out forwards;
    animation-delay: 1s;
}

/* 右邊遮罩（木頭） */
.pageIndex #page::before {
    content: "";
    pointer-events: none;
    display: block;
    width: 50%;
    height: 100%;
    background-image: url(https://pic03.eapple.com.tw/0983511166/bannercover02.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10000;
    animation: curtain-open-right 1s ease-in-out forwards;
    animation-delay: 1s;
}

/* 木頭動畫：整塊向左右平移出去 */
@keyframes curtain-open-left {
    0% {
        transform: translateX(0); /* 初始位置 */
        opacity: 1;
    }
    100% {
        transform: translateX(-100%); /* 整塊向左平移消失 */
        opacity: 0;
    }
}

@keyframes curtain-open-right {
    0% {
        transform: translateX(0); /* 初始位置 */
        opacity: 1;
    }
    100% {
        transform: translateX(100%); /* 整塊向右平移消失 */
        opacity: 0;
    }
}


/* Logo 動畫保留 */
.pageIndex::after {
    content: "";
    pointer-events: none;
    display: block;
    width: 10%;
    height: 0;
    padding-bottom: 100%;
    background-image: url(https://pic03.eapple.com.tw/0983511166/logo.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0, 1);
    z-index: 100000000;
    animation: action-logo-1 2s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    opacity: 0;
}

@keyframes action-logo-1 {
    0% {
        transform: translate(-50%, -50%) scale(0, 1);
        opacity: 0;
    }
    50% {
        transform: translate(-50%, -50%) scale(1, 1);
        opacity: 1;
    }
    68% {
        transform: translate(-50%, -50%) scale(1, 1);
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1, 1);
    }
}


@media screen and (max-width: 768px) {
    .bannerindex {
        padding: 0;
        margin: 0;
    }

/* Logo 動畫保留 */
.pageIndex::after {
    content: "";
    pointer-events: none;
    display: block;
    width: 25%;
    height: 0;
    padding-bottom: 100%;
    background-image: url(https://pic03.eapple.com.tw/0983511166/logo.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0, 1);
    z-index: 100000000;
    animation: action-logo-1 2s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    opacity: 0;
}

}



/* 大圖 */
/* ==================== */
/* 第 1 張輪播圖 */
/* ==================== */
/* banner01 向上浮現 */
.bannerindex .swiper-slide.swiper-slide-active:nth-child(1)::before {
    content: "";
    position: absolute;
    background-image: url(https://pic03.eapple.com.tw/0983511166/banner01.png);
    width: 30%;
    height: 12%;
    padding-bottom: 3%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    z-index: 10001;
    pointer-events: none;
    right: 26vw;
    top: 43%;
    opacity: 0;
    transform: translateY(10%);
    animation: banner01-move-up 1s ease-in-out forwards;
    animation-delay: 1.7s;
}

/* banner03 原地放大出現 */
.bannerindex .swiper-slide.swiper-slide-active:nth-child(1)::after {
    content: "";
    position: absolute;
    background-image: url(https://pic03.eapple.com.tw/0983511166/banner03.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: 39%;
    opacity: 0;
    transform-origin: center center;
    transform: scale(0);
    animation: banner03-scale-in 1s ease-in-out forwards;
    animation-delay: 1.8s;
}

/* ==================== */
/* 第 2 張輪播圖 */
/* ==================== */
/* banner02 向上浮現 */
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2)::before {
    content: "";
    position: absolute;
    background-image: url(https://pic03.eapple.com.tw/0983511166/banner02.png);
    width: 30%;
    height: 12%;
    padding-bottom: 3%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    z-index: 10001;
    pointer-events: none;
    right: 26vw;
    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/0983511166/banner03.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: 39%;
    opacity: 0;
    transform-origin: center center;
    transform: scale(0);
    animation: banner03-scale-in 1.5s ease-in-out forwards;
    animation-delay: 0.5s;
}

/* ==================== */
/* 動畫定義 */
/* ==================== */
@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); }
}

/* ============================== */
/* 預設不顯示動畫圖 */
/* ============================== */
.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) {

.bannerindex .swiper-slide.swiper-slide-active:nth-child(1)::before {
    content: "";
    position: absolute;
    background-image: url(https://pic03.eapple.com.tw/0983511166/banner01.png);
    width: 30%;
    height: 18%;
    padding-bottom: 3%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    z-index: 10001;
    pointer-events: none;
    right: 26vw;
    top: 43%;
    opacity: 0;
    transform: translateY(10%);
    animation: banner01-move-up 1s ease-in-out forwards;
    animation-delay: 1.7s;
}

.bannerindex .swiper-slide.swiper-slide-active:nth-child(1)::after {
    content: "";
    position: absolute;
    background-image: url(https://pic03.eapple.com.tw/0983511166/banner03.png);
    width: 60%;
    height: 20%;
    padding-bottom: 4%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    z-index: 10000;
    pointer-events: none;
    right: 8vw;
    top: 40%;
    opacity: 0;
    transform-origin: center center;
    transform: scale(0);
    animation: banner03-scale-in 1s ease-in-out forwards;
    animation-delay: 1.8s;
}
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2)::before {
    content: "";
    position: absolute;
    background-image: url(https://pic03.eapple.com.tw/0983511166/banner01.png);
    width: 30%;
    height: 18%;
    padding-bottom: 3%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    z-index: 10001;
    pointer-events: none;
    right: 26vw;
    top: 43%;
    opacity: 0;
    transform: translateY(10%);
    animation: banner01-move-up 1s ease-in-out forwards;
    animation-delay: 1.7s;
}

.bannerindex .swiper-slide.swiper-slide-active:nth-child(2)::after {
    content: "";
    position: absolute;
    background-image: url(https://pic03.eapple.com.tw/0983511166/banner03.png);
    width: 60%;
    height: 20%;
    padding-bottom: 4%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    z-index: 10000;
    pointer-events: none;
    right: 8vw;
    top: 40%;
    opacity: 0;
    transform-origin: center center;
    transform: scale(0);
    animation: banner03-scale-in 1s ease-in-out forwards;
    animation-delay: 1.8s;
}
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*背景*/
#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: #ffffff;
        text-align: center;
        text-decoration: none;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
        border-radius: 100%;
        background-color: #5d4c42;
    }
    #to_top i:before, #to_top i:after {
        content: "";
        display: block;
        position: absolute;
        border-radius: 100px;
        background: #ffffff;
        transition: all 100ms ease-in-out;}
        


/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/

/*Main/＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*Header/＝＝＝＝＝*/
/*首頁*/

.pageIndex .main_header_area {
    transition: all .3s;}
.pageIndex .header_area .main_header_area {
    position:relative;
    width: 100%;
    transition: all 0.3s;
    background: #ffffff00;}
    

.pageIndex .header_area.sticky .main_header_area {
        background: #ffffffa1;
        transition: all 0.3s;
    }


/*其他分頁*/

.header_area {position:fixed;z-index: 9990; padding: 0px;background: #d3d3d300; width: 100%;}
.main_header_area {
    background: #ffffff;}
.main_header_area .container {
        max-width: 85%;
        transition: all 0.3s;}


.header_area.sticky .main_header_area .container {
            max-width: 80%;
            transition: all 0.3s;}

.header_area.sticky {
    background:#ffffffd6;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 1px 1px 5px rgba(169, 169, 169, 0.3);}


 .swiper-banner:after {
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0; }

 .swiper-pagination-bullet {
        display: none; }


/*第一層*/
.stellarnav > ul > li:nth-last-child(8) { display: none !important ;}
.stellarnav > ul > li > a b {font-weight: bold;}
/*首頁文字顏色*/
.pageIndex .stellarnav  ul  li  a {    color: #33261B;}
.pageIndex .stellarnav ul li a {
    color: #33261B; /* 初始文字顏色 */
    text-decoration: none; /* 移除底線 */
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
    font-weight:bold;
}

.pageIndex .stellarnav ul li a {
    background: linear-gradient(90deg, #705f54 0%, #705f54 50%, #33261B 50%, #33261B 100%);
    background-size: 200% 100%;
    background-position: right bottom;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent; /* 使用透明文字色以顯示背景漸變 */
    transition: background-position 0.3s ease;
}

.pageIndex .stellarnav ul li:hover a {
    background-position: left bottom; /* hover 時由左至右的漸變效果 */
    color: transparent; /* 確保文字透明以顯示漸變 */
    font-weight:bold;
}





/*首頁sticky文字顏色*/

.pageIndex .header_area.sticky a {color: #33261B;}


/*其他分頁文字顏色*/
.stellarnav > ul > li > a {padding: 0 10px 0 0;color: #33261B;font-weight:bold;font-size: 17px; line-height: 30px;height: 30px;}
.stellarnav ul li a {
    color: #33261B; /* 初始文字顏色 */
    text-decoration: none; /* 移除底線 */
    position: relative;
    display: inline-block;
    overflow: hidden;
    transition: color 0.3s ease;
    font-weight:bold;
}

.stellarnav ul li a {
    background: linear-gradient(90deg, #705f54 0%, #705f54 50%, #33261B 50%, #33261B 100%);
    background-size: 200% 100%;
    background-position: right bottom;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent; /* 使用透明文字色以顯示背景漸變 */
    transition: background-position 0.3s ease;
}

.stellarnav ul li:hover a {
    background-position: left bottom; /* hover 時由左至右的漸變效果 */
    color: transparent; /* 確保文字透明以顯示漸變 */
    font-weight:bold;
}




.nav-menu {    margin: 0 auto;padding: 0;text-align:center;}
.nav-header {    position: relative;}
.me_tp_features {    position: relative;    right: unset;    top: unset;    width: fit-content;}

.nav-menu>li:hover>a, .nav-menu>li.active>a, .nav-menu>li.focus>a {
    color: #705f54;}

 .pageIndex .me_tp_features a {color: #33261B;}
 .pageIndex .me_tp_features .sticky a {color: #33261B;}

.me_tp_features a {color: #33261B;}

.nav-menu>li:not(.tp_links) {
    padding-right: 15px;
}

.nav-menu>li>a {
    color: #705f54;
    letter-spacing: 3px;
    padding: 25px 7px;}


.nav-menu>li.focus>a {
    color: #705f54;
}
.nav-dropdown>li:hover>a .nav-dropdown>li.focus>a {
    color: #705f54;
}


.stellarnav li.has-sub > a:after {
        content: '';
        margin-left: 10px;
        position: absolute;
        top: 40%;
        right: 5px;
        transform: translateY(-50%);}   


.navigation {     padding: 20px 0px 20px 300px;}
.navigation {
    width: 100%;
    position: relative;
    padding: 0;
    display: grid;
    grid-template-columns: 200px 1fr;
    grid-gap: 0 20px;
    align-content: stretch;
    justify-content: center;
    align-items: center;
    justify-items: end;}



/*下拉箭頭*/
.stellarnav li.has-sub > a:after {
            height: 8px;
            width: 8px;
            display: block;
            border-style: solid;
            border-width: 0 1px 1px 0;
            border-color: transparent #33261B #33261B  transparent;
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
            -webkit-transition: border .2s;
            transition: border .2s;    }    

.sticky .stellarnav li.has-sub > a:after {
           border-color: transparent #33261B #33261B transparent; }
 .stellarnav li.has-sub > a {
    padding: 0px;
    position: relative;
}           
.pageIndex .stellarnav li.has-sub > a:after {  border-color: transparent #33261B #33261B transparent;}


/*第二層*/
.stellarnav li li > a , .stellarnav li li.has-sub > a{    padding: 7px 5px;   transition: all 0.3s; }
.stellarnav li li:hover > a , .stellarnav li li.has-sub:hover > a{color: #705f54;	padding-left:10px;}
.stellarnav li li.has-sub:hover > a {color: #33261B;}




/*次選單樣式-半透明底色*/
.stellarnav ul ul {
    background:#ffffff;
    border-radius: 0 0  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;
}

/*次選單欄位邊框*/
.stellarnav li li {
    border: 0px var(--f3-color) solid;
}

/*次選單文字樣式*/
.stellarnav li a {
    padding: 7px 10px;
    display: block;
    color: #33261B;
    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:#705f54;
    padding-left: 10px;
    font-weight: bold;
}

/*文字底色透明*/
.stellarnav.desktop li.has-sub ul a {
    background: transparent;
    letter-spacing: .1rem;
    position: relative;
    color:#33261B;
}


/*logo*/
.pageIndex .header_area .nav-brand {
    max-width: 100%;
    }

.pageIndex .header_area.sticky .nav-brand {
    filter: none !important;
}


.header_area .nav-brand {
    transition: all 0.3s;
    margin-top: 10px;}

.header_area.sticky .nav-brand {
        max-width: 100%;
        }
   
/* = = = 頁尾 = = = =  = = = = = = = = */


/*換圖*/

.footer {
    padding: 60px 0 0;
    font-size: 14px;
    background-color: #705f54;
}
    
   
/*換logo*/
.footer_logo img {width: 0;}
    
.footer_logo {
        background: url(https://pic03.eapple.com.tw/0983511166/footerlogo.png) no-repeat center;
        height: 28px;
        width: 100%;
        margin-top: 10px;
        background-size: contain;}


.footer .center {    max-width: 90%;}
.footer_info {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    padding-right: 0px;
}
.footer_info ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 50px;
    border-top: 1px solid #261b17;
    border-bottom: 1px solid #261b17;
    /* padding-right: 110px; */
    align-items: center;
}
.footer_info li p {    display: inline-block;    padding-right: 26px;}
.footer_info li p, .footer_info li p a {    
    color: #261b17;    
    display: flex;
    flex-direction: column;}
.footer_info li:nth-child(1) {
    color: #261b17;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}
p.tel {    order: 2;}
p.add {    order: 3;}
p.line {    order: 1;}
.footer_menu {    display: inline-block;}
.footer_menu a {
    margin: 0;
    text-align: center;
    padding: 5px 10px;
    transition: all 0.3s;
    background: transparent;
    border: none;
    color: #261b17;
}
.footer_menu a:hover {    background: transparent;}
.copy {    background: transparent;    color: #261b17;	border:none;}
.copy a{    color: #261b17;transition:all 0.3s;}
.copy a:hover {
    color: #f0f0f0;
}
.box_link {   display: none;}
.box_link a{transition:all 0.3s;}
.box_link a:hover {    background: #261b17;   color: #fff;}
.privacyLinks a+a {
    border-left: 1px solid #261b17;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/

.banner.banA {display: none;}
.banner.banB {display: none;}
.banner.banC {display: none;}
.banner.banF {}
.banner.banblog {}

.banner {
    background: url(https://pic03.eapple.com.tw/0983511166/banner.jpg);
   position: relative;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    flex-direction: column;
    height: 80vw;
    max-height: 650px;}

.banner h5 {color:#ffffff;}
.banner h5:after {
    content: "翔侖木箱，信賴選擇";
    font-size: clamp(0.9375rem, 0.8813rem + 0.2304vw, 1.25rem);
    white-space: pre-line;
    font-size: 16px;
    display: block;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 5px;
    line-height: 1.7;
    -webkit-animation: imgSlideUpAnimation 2s 0.1s ease-in-out forwards;
    animation: imgSlideUpAnimation 2s 0.1s ease-in-out forwards;
    opacity: 0;}

    @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: url(https://pic03.eapple.com.tw/0983511166/banner.jpg);
        position: relative;
        background-position: center;
        background-size: cover;
        background-attachment: fixed;
        background-repeat: no-repeat;
        flex-direction: column;
        height: 80vw;
        max-height: 650px;
        background-position: 95%;}
            
         .banner h5 {
               margin-top: 40px;
                color: #ffffff;
                font-size: 26px;

        }}

/*上方選單右邊設定 臉書/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 {}
*/
/*按鈕*/
.animated-arrow {
    background: #705f54;
    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;}

/*頁碼*/
.path p {
display: none;}
/* = = = 相簿 = = = =  = = = = = = = = */

/*外層*/
.show-list .item a {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    text-align: center;
}
/*hover*/
.show-list .item .show_name {
    position: relative;
    color: #261b17;
    text-decoration: none;
    display: inline-block;
    overflow: hidden;
}
.show-list .item:hover .show_name {
    color: #705f54;
}
.show-list .item .show_name::before,
.show-list .item .show_name::after {
    content: "";
    position: absolute;
    height: 2px;
    background: #705f54;
    width: 0;
    transition: width 0.5s ease;
}

.show-list .item .show_name::before {
    top: 0;
    left: 0;
}

.show-list .item .show_name::after {
    bottom: 0;
    right: 0;
}

.show-list .item:hover .show_name::before,
.show-list .item:hover .show_name::after {
    width: 100%;
}



/*內層*/
.other_album_choice li {
    background: #6f5f55;
    font-size: 15px;
    display: inline-block;
    border-radius: 18px;
    padding: 7px 20px;
    margin: 0 7px 7px 0;
}





/* = = = 文章管理 = = = =  = = = = = = = = */

h5.blog_le_t {
    font-size: 24px;
    font-weight: 500;
    color:  #705f54;
    font-family: serif;
    letter-spacing: 2px;
    margin-bottom: 7px;}
/*側邊標題*/
.accordion li .link a {
    cursor: pointer;
    display: block;
    padding: 15px 10px;
    color:  #705f54;
    font-size: 14px;
    font-weight: 700;
    position: relative;}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {    background: #705f54  !important;}  
/*右側文章排版*/
.blog_subbox {

        padding: 5px;
        display: flex ;
        justify-content: flex-start;
        align-items: stretch;
        align-content: stretch;
        flex-wrap: wrap;}
/*標題*/
.blog_list_ri h5 {
            font-weight:bold;
            font-size: 20px;
            color:  #705f54;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            white-space: normal;
            overflow: hidden;}
/*時間*/
.blog_list_ri em {
                font-size: 14px;
                color: #858585;
                font-style: normal;
                display: block;}
/*內文*/
.blog_list_ri p {
    font-size: 15px;
    color:  #333;
    line-height: 130%;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    word-break: break-all;}
/*內文hover*/
.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;}
.subbox_item a:before {
    content: 'READ MORE';
    position: absolute;
    z-index: 19;
    bottom: 10px;
    right: 10px;
    opacity: 0;
    font-size: 15px;
    color: #ffffff;
    transition: all .6s;
    background-color: #33261b;
    padding: 5px 10px;
}

/*文章*/
.blog_box_edit * {
    line-height: 150%;
    color:  #000000;}

.subbox_item {
    display: block;
    width: 100%;
    position: relative;
    border-bottom: 1px solid #33261b;
    padding: 20px;}


/*分享文字*/
.toShareNews {
        font-size: 1em;
        color:  #705f54;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        align-content: center;
        flex-wrap: wrap;}
/*文章按鈕*/
.blog_back a.article_btn_back {
        background: #705f54;}

/*隱藏預覽縮圖*/
.articel_mainPic img{display: none;}

.blog_back a.article_btn_back:hover, .blog_back a.article_btn_prev:hover, .blog_back a.article_btn_next:hover {
            background: #705f54;}
/*相關文章*/
.news_related {
    background: #c9c8c870;
    padding: 25px 15px;}
.news_related h6 span:before {
        content: '相關文章';
        font-size: 24px;
        color: #705f54;}
/*按鈕*/
.lastPage {
        font-size: 16px;
        color: #fff;
        background: #705f54;
        padding: 10px 20px;
        display: block;
        margin: 40px auto;
        width: 130px;
        text-align: center;}

/* = = = 文章管理 -首頁= = = =  = = = = = = = = */

.module_i_news li a:after {    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 8;
    background:rgb(225 225 225 / 90%);
    opacity: 0;
    border: 1px #696969 solid;}
/*首頁-文章顯示*/
 .module_i_news li:nth-child(n+5){
        display:none !important;}
/*標題*/

.module_i_news .title_i_box h4{   font-size: 32px;
    color: #000000;}
/*文章標題*/
.i_blog_ri h5 {
    font-weight: 500;
    font-size: 20px;
    color: #000000;
    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: #000000;
    line-height: 130%;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    word-break: break-all;}   

/* = = = 表單= = = =  = = = = = = = = */
.contact_form li {
    display: grid;
    grid-template-columns: 120px 1fr;
    grid-gap: 10px;
}
.contact_form li .form__label {
    display: block;
    max-width: 120px;
    text-align: right;
}


/* = = = 表單= = = =  = = = = = = = = */

.contact_le_map a {
    display: block;
    background: #705f54;
    text-align: center;
    padding: 10px;
    color: #fff;
}
.contact_form li.last cite {
    background: #705f54;
    color: #fff;
}
/*標題*/
.blank_letter {
    font-family: " Noto Sans TC", sans-serif;
    padding-top: 30px;
    font-size: 24px;
    color: #261b17;
    background-position: left bottom;
    background-repeat: no-repeat;
    justify-content: center;
    text-align: center;
    font-weight: 700;
}
/*******************************************/
.contact_editbox {
    margin: auto;
    padding: 0px;}
    
/*聯絡我們MAP區改滿版編輯區*/
.contact_content {    width: 100%;padding: 0; margin-top: -30px;}
.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: 0px auto;
    padding: 0 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: 50px auto;}}
/**/
/*電腦版表單最大寬度設定*/
.contact_content .information_right {    max-width: 1500px;}
/**/
/*******************************************/
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*大圖*/
/*預設解除背景輪播*/
#content_main { margin:0;}
.bannerindex { position:static; height:auto;}
.swiper-banner { position:static; margin:0; height:auto;} 





@media screen and (max-width: 1400px) {
.container {max-width: 1200px;transition: all 0.3s;}

/*footer*/

.footer_info ul {    flex-direction: column;}
.footer_info li:nth-child(1) {    padding-left: 10px;    padding-top: 15px;}
.footer_info li:nth-child(2) {    padding-top: 2px;    padding-bottom: 15px;}


}

 @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;}
.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 { font-weight:bold ;}
.nav-menu>li>a {    padding: 15px 0px;letter-spacing: 2px;}
.me_tp_features {width: 100%;text-align: center; margin-bottom: 7px;}

/*footer*/
.footer_info li:nth-child(1) {    width: 100%;}
.footer_info li p {    padding-right: 5px;}

/*logo*/
.nav-brand img {transition: all 0.3s;text-align: center; }
.nav-brand img {max-width: 80%;}
.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: 960px) {
     /*文章*/
.subbox_item {
        width: 100%;
        border-bottom: 1px solid #33261b;
    }
}
@media screen and (max-width: 768px) {

 .bannerindex { padding:0; margin:0;}

/*footer*/

.footer.with_shopping_mode { padding:70px 0; }
.footer_info {    justify-content: center;}
.footer_logo {    text-align: center;}
.footer_info ul { margin-top: 20px; }
.footer_info li:nth-child(1) {    flex-direction: column;}
.footer_info li:nth-child(2) {    text-align: center;}
.footer_menu a:first-child {    display: none;}
.footer_info li p {    padding: 5px 10px;}

 /*側邊選單*/
.main_header_area .container {max-width: 95%;transition: all 0.3s;}
.header_area.sticky .main_header_area .container {max-width: 95%;transition: all 0.3s;}

.stellarnav.mobile > ul > li {
    display: block;
    border-bottom: 1px #ddd solid;
    margin-left: 20px;
    width: 80%;
}
 /*menu*/
 .pageIndex .header_area.sticky a {color: transparent;}
.stellarnav .menu-toggle span.bars span {display: block;width: 24px;height: 2px;border-radius: 6px;background: #705f54; margin: 0 auto 4px;}
.stellarnav .menu-toggle:after {content: 'MENU';font-size: 12px;color: #705f54;display: block;transform: scale(0.9);}
 .stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul {position: fixed;top: 0; bottom: 0;width: 100%;max-width: 80%; overflow-x: hidden;overflow-y: auto;-webkit-overflow-scrolling: touch;z-index: 9999;border-right: 1px #705f54 solid;background:#ffffff;}
.stellarnav.mobile li.open { background: transparent;}
.stellarnav.mobile ul {background: transparent;box-shadow:none;}
.pageIndex .stellarnav ul li a { border-right: 0;}
.stellarnav ul li:hover a {  border-right: 0;}
.stellarnav.mobile .menu-toggle, .stellarnav.mobile .dd-toggle, .stellarnav.mobile .close-menu, .stellarnav.mobile .call-btn-mobile, .stellarnav.mobile .location-btn-mobile {display: inline-block;padding: 5px 7px;}
.menu-toggle {margin-top: 20px;}
/*close*/
 .stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {display: inline-block;text-align: right;font-size: 12px;background: #ffffff;color: #261b17;}
.stellarnav .icon-close:after {content: '';display: block;width: 12px;height: 0px;top: 50%;border-bottom: solid 2px #261b17;position: absolute;transform: rotate(-45deg);}
.stellarnav .icon-close:before {content: '';display: block; width: 12px;height: 0px;border-bottom: solid 2px #261b17;position: absolute;top: 50%;transform: rotate(45deg);}

/*表單*/
.contact_form li .form__label {
    width: 100%;
    margin-left: 0;
    text-align: left;
    font-weight: bold;
    padding: 5px;
    background: transparent;
}
.contact_form li {
    display: flex;
    grid-template-columns: 120px 1fr;
    grid-gap: 10px;
    flex-direction: row;
    flex-wrap: wrap;
}
.contact_form li .form__label {
    display: block;
    max-width: 100%;
   
}


#to_top { bottom:60px;}
#bottom_menu li a {  background: #fff;}

/* 開啟手機板下方按鈕所需設定 */
.footer.with_shopping_mode { padding:30px 0 60px; }
#to_top { bottom:60px;}}

@media screen and (max-width: 600px) {
  /*footer*/
    .box_link {    text-align: center;}
 }




