@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=EB+Garamond:ital,wght@0,400..800;1,400..800&family=ZCOOL+XiaoWei&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');
@import url('https://fonts.googleapis.com/css2?family=Chivo:ital,wght@0,100..900;1,100..900&family=Special+Gothic+Condensed+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tomorrow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: "Tomorrow", "Noto Sans TC", sans-serif;
    font-weight: 500;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/


/*上方選單右邊設定 臉書/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}
*/

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*反白顏色*/
::-moz-selection {
    background-color: #aa9681;
    color: #fff;
}

::selection {
    background-color: #aa9681;
    color: #fff;
}

body {
    overflow: overlay;
    overflow-x: hidden;
}

&::-webkit-scrollbar {
    background: #fff6ed;
    width: 7px;
}

&::-webkit-scrollbar-button {
    display: none;
    background: #fff6ed;
    border-radius: 0;
}

&::-webkit-scrollbar-track-piece {
    background: #fff6ed;
}

&::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #aa9681;
}

&::-webkit-scrollbar-track {
    box-shadow: transparent;
}


#content {
    background: #fff6ed;
}





/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 頁面的麵包屑 首頁/頁面名稱/ */
.path {
    display: none;
}


#page {
    background-color: #fff6ed;
}


#content_main {
    background: #fff6ed;
    margin-top: 0vh;
    z-index: 0;
}

/* 進場動畫 */
#page::before {
    content: "";
    display: block;
    width: 50%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    pointer-events: none;
    background-color: #ffe5cb;
    background-image: url(https://pic03.eapple.com.tw/leon/asfalt-dark.png);
    transition: all 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);
    animation: turn-ac 1s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
}

#page::after {
    content: "";
    display: block;
    width: 50%;
    height: 100%;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 9999;
    pointer-events: none;
    background-color: #ffe5cb;
    background-image: url(https://pic03.eapple.com.tw/leon/asfalt-dark.png);
    transition: all 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);
    animation: turn-ac 1s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
}

.pageIndex #page:after,
.pageIndex #page::before {
    display: none;
}

@keyframes turn-ac {
    0% {
        height: 100%;
    }

    100% {
        height: 0;
    }

}








/* --------------------------------------首頁影片---------------------- */


.flex-video {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background: #fff6ed;
    overflow: hidden;
}


.ssBtnDefault {
    display: none;
}

.flex-video video {
    display: block;
    border-radius: 40px;
    transition: 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}


.headerSticky .flex-video video {
    padding: 50px;
    border-radius: 80px !important;
    transition: 2s cubic-bezier(0.56, 0.66, 0.11, 0.99);
}

/* 大圖開場動畫 */


.flex-video {
    padding-top: 100%;
    animation: ac-video 5s forwards cubic-bezier(0.73, 0.08, 0.11, 0.99);
    animation-delay: 0s;
}

@keyframes ac-video {
    0% {
        padding: 10px;
        padding-top: 100%;
    }

    100% {
        padding: 10px;
        padding-top: 10px;
    }
}


@media screen and (max-width: 768px) {
    .flex-video {
        padding: 0;
        width: 100%;
        padding-top: 150vh;
        border-radius: 300px;
    }

    .flex-video video {}


    @keyframes ac-video {
        0% {
            padding: 10px;
            padding-top: 150vh;
            border-radius: 300px;
        }

        100% {
            padding: 0px;
            padding-top: 0px;
            border-radius: 40px;
        }
    }
}







.flex-video video {
    border-radius: 100vw;
    transform: scale(1.5);
    animation: ac-video-r 4s forwards cubic-bezier(0.73, 0.08, 0.11, 0.99);
    animation-delay: 0.5s;
}


@keyframes ac-video-r {
    0% {
        transform: scale(1.5);
        border-radius: 100vw;

    }

    100% {
        transform: scale(1);
        border-radius: 40px;

    }
}



/* 首頁文章 */


.module_i_news {
    background-color: #fff6ed;
    padding: 100px 20px;
}

.module_i_news section {
    max-width: calc(100% / 12 * 10);
    margin: 0 auto;
}

.module_i_news .title_i_box h6 {
    font-size: 40px;
    color: #ac9883;
    font-weight: 800;
    letter-spacing: 12px;
    text-indent: 12px;
    margin-top: 20px;
}

.module_i_news .title_i_box h4 {
    display: none;
}

.module_i_news .title_i_box::after {
    content: "Featured Cases";
    font-size: 80px;
    color: #ac9883;
    font-weight: 500;
    text-transform: uppercase;
}

.module_i_news .title_i_box::before {
    content: "";
    width: 100%;
    max-width: 800px;
    height: auto;
    aspect-ratio: 828/23;
    background-image: url(https://pic03.eapple.com.tw/leon/icon-03.png );
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 50px;
}





.module_i_news .title_i_box {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    position: relative;
}


.module_i_news ul {
    display: flex;
    grid-gap: 1%;
    flex-direction: row;
}



.module_i_news li {
    display: block;
    text-align: left;
    flex: 1;
    overflow: hidden;
    border-radius: 24px;
    transition: all 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.module_i_news li:nth-of-type(even) {
    transform: translate(0, 50px);
}





.module_i_news li:hover {
    display: block;
    text-align: left;
    flex: 3;
    transition: all 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}






.module_i_news li a {
    position: relative;
    display: flex;
    grid-gap: 10px;
    flex-direction: column;
}


.i_blog_le {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 100%;
    height: 680px;
    line-height: 0;
    aspect-ratio: unset;
    overflow: hidden;
    transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);
    flex-direction: column;
}

.module_i_news li a .i_blog_le img {
    transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.module_i_news li a:hover .i_blog_le img {
    transform: scale(1.1);
    filter: brightness(0.5);
    transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);
}


.module_i_news .i_blog_ri {
    position: absolute;
    bottom: 0%;
    left: 0%;
    padding: 5%;
    opacity: 1;
    transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.module_i_news .i_blog_ri::before {
    content: "";
    display: block;
    background: #00000088;
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    opacity: 0;
    transform: scale(1, 0);
    transform-origin: 100% 100%;
    transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);

}


.module_i_news .module_i_news_list a:hover .i_blog_ri::before {
    opacity: 1;
    transform: scale(1);
    transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);

}








.module_i_news .i_blog_ri h5 {
    font-weight: bold;
    color: #fff;
    font-size: 24px;
    opacity: 0;
    transform: translate(-50px, 0);
    transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.module_i_news .module_i_news_list a:hover .i_blog_ri h5 {
    opacity: 1;
    transform: translate(0, 0px);
    transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);
    transition-delay: 0.5s;
}




.module_i_news .i_blog_ri p {
    font-size: 16px;
    color: #999;
    opacity: 0;
    transform: translate(-50px, 0);
    transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);
}


.module_i_news .module_i_news_list a:hover .i_blog_ri p {
    opacity: 1;
    transform: translate(0, 0px);
    transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);
    transition-delay: 0.7s;
}






.module_i_news .i_blog_ri em {
    margin: 5px 0 20px;
    opacity: 0;
    transform: translate(-50px, 0);
    transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);
}


.module_i_news .module_i_news_list a:hover .i_blog_ri em {
    opacity: 1;
    transform: translate(0, 0px);
    transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);
    transition-delay: 0.6s;
}






.module_i_news li a:after {
    display: none;
}

.module_i_news li a:before {
    bottom: 60%;
    right: 50%;
    color: #fff;
    transform: translate(50%, 50%);
}




.animated-arrow {
    border-radius: 24px;
    border: 1px #ac9883 solid;
    background: transparent;
    margin-top: 100px;
    color: #ac9883;
}

.animated-arrow a::before {
    content: "read more";
    display: block;
    font-size: 24px;
    text-transform: uppercase;
    color: #ac9883;


}






@media screen and (max-width: 768px) {
    .module_i_news section {
        max-width: 100%;
    }

    .module_i_news .title_i_box::after {
        font-size: 32px;
        font-weight: 700;
    }

    .module_i_news .title_i_box h6 {
        font-size: 24px;
    }

    .module_i_news ul {
        flex-direction: column;
        gap: 20px;
        height: 70vh;
    }

    .module_i_news li {}

    .module_i_news li a {
        height: 100%;
    }

    .i_blog_le {
        width: auto;
        height: 100%;
    }

    .module_i_news li:nth-of-type(even) {
        transform: translate(0, 0);
    }

    .module_i_news .i_blog_ri h5 {
        font-size: 20px;
    }

    .module_i_news .i_blog_ri em {
        margin: 5px 0 10px;
    }

    .module_i_news .i_blog_ri p {
        font-size: 14px;
    }
}





/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*選單設定*/
.header_area {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 0;
}

.main_header_area {
    background: transparent;
}

.container {
    max-width: 80%;
}

.me_tp_features {
    display: none;
}

.main_header_area .container {
    max-width: 100%;
}




/*LOGO設定*/



.nav-brand img {
    width: 100%;
    max-width: 100%;
}


.nav-brand {
    width: 100%;
    transition: all 0.5s;
}

.sticky .nav-brand {
    transition: all 0.5s;
}

.nav-header {
    position: fixed;
    transition: all 0.3s;
}

.sticky .nav-header {
    transition: all 0.3s;
}

.nav-header {
    top: 5.2%;
    left: 4%;
    max-width: 150px;
    overflow: visible;
}

.nav-header img {
    position: relative;
    opacity: 1;
    filter: contrast(0) brightness(100);
}


.nav-header a::before {
    content: "";
    display: block;
    width: 140%;
    height: 70px;
    background-color: #ac9883;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 15px;
}



/* LOGO開場動畫 */

.nav-header {
    transform: scale(0, 1);
    opacity: 0;
    transform-origin: 0% 0%;
    animation: action-logo 1s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: .5s;
}

.pageIndex .nav-header {
    animation-delay: 5s;
}



@keyframes action-logo {
    0% {
        opacity: 0;
        transform: scale(0, 1);
    }

    100% {
        opacity: 1;
        transform: scale(1, 1);
    }
}


/*  */
.header_area .main_header_area {
    position: fixed;
    background: transparent;
    top: 0;
    left: 0;
    transition: all 0.5s;
}

.header_area.sticky .main_header_area {
    background: transparent;
    height: 0;
    transition: all 0.5s;
}

.header_area .me_tp_features {
    display: none;
    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: flex;
    position: fixed;
    top: 4.7%;
    right: calc(2% + 9px);
    padding: 22px 16px;
    background: #ac9883;
    border-radius: 10px;
    transition: all 0.5s;
    pointer-events: all;
}

.header_area.sticky .stellarnav .menu-toggle,
.stellarnav .call-btn-mobile,
.stellarnav .location-btn-mobile {
    transition: all 0.5s;
}




/* 漢堡按鈕開場 */


.header_area .stellarnav .menu-toggle {
    opacity: 0;
    animation: action-nav 1s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 0.5s;
}


.pageIndex .header_area .stellarnav .menu-toggle {
    animation-delay: 5.5s;
}




@keyframes action-nav {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}





/* 漢堡 */

.stellarnav .menu-toggle {
    text-align: center;
    opacity: 1;

}

.stellarnav .menu-toggle:after {
    content: "MENU";
    font-size: 12px;
    text-align: center;
    color: #DEDBC4;
    margin-top: 0px;
    display: none;
}


.stellarnav .menu-toggle span.bars span {
    display: block;
    position: relative;
    width: 30px;
    height: 2px;
    border-radius: 6px;
    background: #DEDBC4;
    margin: 0 auto 3px;
    left: 0;
    transition: 0.5s;
}

.stellarnav .menu-toggle:hover span.bars span:nth-child(1) {
    left: -5px;
    transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.stellarnav .menu-toggle span.bars span:nth-child(2) {
    opacity: 0;
    transition: all 1s;
}

.stellarnav .menu-toggle:hover span.bars span:nth-child(3) {
    left: 5px;
    transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}




/* 漢堡關 */

.stellarnav .menu-toggle span.bars {
    top: 0;
}

.stellarnav.desktop.active .menu-toggle span.bars span:nth-child(1) {
    margin: 0;
    transform: translate(0%, -50%) rotate(35deg);
    transition: all 0.3s;
}

.stellarnav.desktop.active .menu-toggle span.bars span:nth-child(2) {
    margin: 0;
    opacity: 0;
    transition: all 0.3s;
}

.stellarnav.desktop.active .menu-toggle span.bars span:nth-child(3) {
    margin: 0;
    transform: translate(0%, -200%) rotate(-35deg);
    transition: all 0.3s;
}



.stellarnav.desktop.active .menu-toggle:hover span.bars span:nth-child(1) {
    transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.stellarnav.desktop.active .menu-toggle:hover span.bars span:nth-child(3) {
    transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}






/* 未開啟 */

.stellarnav.desktop>ul {
    display: flex !important;
    flex-direction: column;
    pointer-events: all;
    width: 100%;
    height: 100%;
    background: transparent;
    padding: 0% 90px;
    padding-left: 30%;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    text-align: center;
    background: transparent;
    position: relative;
    top: 0%;
    left: 0%;
    z-index: -5;
    gap: 30px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
    align-content: flex-start;
}

.stellarnav.desktop {
    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.desktop.active>ul {
    opacity: 1;
    pointer-events: all;
    padding-left: 20%;
    transition: all 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);
    transition-delay: 1s;
}



.stellarnav.desktop::before {
    content: "";
    display: block;
    width: 50%;
    height: 0%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -10;
    pointer-events: none;
    background-color: #ffe5cb;
    background-image: url(https://pic03.eapple.com.tw/leon/asfalt-dark.png);

    transition: all 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.stellarnav.desktop.active::before {
    height: 100%;
    transition: all 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}



.stellarnav.desktop::after {
    content: "";
    display: block;
    width: 50%;
    height: 0%;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -10;
    pointer-events: none;
    background-color: #ffe5cb;
    background-image: url(https://pic03.eapple.com.tw/leon/asfalt-dark.png);

    transition: all 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.stellarnav.desktop.active::after {
    height: 100%;
    transition: all 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
    transition-delay: 0.5s;
}



/* 漢堡內圖片 */
.stellarnav>ul::before {
    content: "";
    display: block;
    position: absolute;
    right: 0%;
    top: 0;
    width: 50%;
    height: 100%;
    background-image: url(https://pic03.eapple.com.tw/leon/bg-04.jpg);
    background-size: cover;
    background-position: 0;
    background-repeat: no-repeat;
    border-radius: 15px;
    transform: translate(100%, 0);
    animation: nav-img 50s infinite linear;
    transition: all 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

@keyframes nav-img {
    0% {
        background-position: 0;
    }

    100% {
        background-position: -6000px;
    }

}

.stellarnav.active>ul::before {
    transform: translate(0);
    transition: all 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);
    transition-delay: 1.2s;
}









/* BAR */


/* 購物籃 */
.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>a {
    width: 100%;
    padding: 0;
    color: #ac988375;
    display: flex;
    text-transform: uppercase;
    position: relative;
    font-size: 16px;
    line-height: 20px;
    height: auto;
    margin: 0;
    overflow: visible;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
    opacity: 1;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: baseline;
    flex-direction: row;
    margin-bottom: 0;
    transition: all 0.5s;
}

.stellarnav>ul>li>a:hover {
    color: #ac9883;
    transition: all 0.5s;
}

.stellarnav>ul>li>a b {
    display: inline;
    line-height: 150%;
    height: auto;
}

.stellarnav>ul>li>a b:nth-child(1) {
    font-size: 40px;
    font-weight: 500;
    text-align: left;
    margin-right: 20px;
    line-height: 1;
    letter-spacing: 0.1em;
    transform-origin: 0 100%;
    transition: all 0.5s;
}

.stellarnav>ul>li>a b:nth-child(2) {
    font-size: 12px;
    word-break: keep-all;
    font-weight: 800;
    letter-spacing: 0.1em;
    opacity: 0;
    transition: all 0.5s;
}

.stellarnav>ul>li>a:hover b:nth-child(1) {
    transition: all 0.5s;
}

.stellarnav>ul>li>a:hover b:nth-child(2) {
    opacity: 1;
    transition: all 0.5s;
}


.stellarnav li {
    opacity: 1;
    width: 100%;
}

.navigation {
    width: 100%;
    position: relative;
    padding: 0;
}

.stellarnav>ul>li>a:hover b {
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
}



/* 選單 數字 */

.stellarnav>ul {
    counter-reset: ls;
}

.stellarnav>ul>li>a::before {
    counter-increment: ls;
    content: counter(ls)".";
    position: absolute;
    left: -40px;
    font-size: 12px;
    opacity: 0;
    transform: translate(100%, 0);
    color: #ac9883;
}

.stellarnav>ul>li>a:hover:before {
    animation: number-in 1s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
}



@keyframes number-in {
    0% {
        opacity: 0;
        transform: translate(100%, 0);
    }

    100% {
        opacity: 1;
        transform: translate(0%, 0);

    }

}


/* 選單線 延遲 */

.stellarnav li:nth-child(2):before {}

.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 {
    display: flex;
    width: 100%;
    max-width: 35vw;
    opacity: 0;
    transform-origin: 0% 0%;
}

.stellarnav.active>ul>li {
    animation: up 1s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
}

.stellarnav li.has-sub>a:after {
    display: none;
}

.stellarnav>ul>li:nth-of-type(1) {
    animation-delay: 1s;
}

.stellarnav>ul>li:nth-of-type(2) {
    animation-delay: 1.2s;
}

.stellarnav>ul>li:nth-of-type(3) {
    animation-delay: 1.4s;
}

.stellarnav>ul>li:nth-of-type(4) {
    animation-delay: 1.6s;
}

.stellarnav>ul>li:nth-of-type(5) {
    animation-delay: 1.8s;
}

.stellarnav>ul>li:nth-of-type(6) {
    animation-delay: 2s;
}

.stellarnav>ul>li:nth-of-type(7) {
    animation-delay: 2.2s;
}

/* 下拉 */
.stellarnav ul ul {
    width: 100%;
    left: 0;
    background: #621d10;
}

.stellarnav li li {
    display: block;
    border: 0;
    margin-bottom: -1px;
    background: transparent;
    color: #fff;
    border-bottom: 1px #ffffff85 solid;
    transition: all 0.3s;
}

.stellarnav li li:nth-child(1) {}

.stellarnav li li:nth-last-child(1) {}

.stellarnav li li:hover {
    background: transparent;
    z-index: 100000;
    transition: all 0.3s;
}

.stellarnav li li a {
    padding: 15px 10px;
    display: block;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s;
}

.stellarnav li li.has-sub>a {
    padding: 15px 10px;
}

.stellarnav li li a:hover {
    color: #ac9883;
    transition: all 0.3s;
}


@keyframes ul-show {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

}

@keyframes up {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}



@media screen and (min-width: 768px) {
    .stellarnav ul ul {
        display: none !important;
    }

}
















/* 子分類 */
.stellarnav ul ul ul {
    position: relative;
    top: 0;
    left: 0;
}

.stellarnav ul ul ul li a {
    padding: 15px 10px;
    padding-left: 20px;
    transition: all 0.3s;
}

.stellarnav ul ul ul li a:hover {
    background: #00000023;
    transition: all 0.3s;
}


@media screen and (max-width: 1440px) {
    .stellarnav>ul>li>a b:nth-child(1) {}

    .stellarnav>ul>li::before {}

}



@media screen and (max-width: 1024px) {
    .stellarnav.desktop>ul {}

    .stellarnav>ul>li:nth-of-type(5) {
        margin-left: 0%;
    }

    .stellarnav.desktop.active>ul {
        padding-left: 10%;
    }


}


@media screen and (max-width: 768px) {
    .stellarnav.mobile.left>ul {
        max-width: 100%;
        background: #ffe5cb;
        border: none;
    }

    .nav-header {
        top: calc(4% + 12px);
        left: 5%;
        z-index: 0;
        max-width: 140px;
        animation: none;
    }

    .sticky .nav-header {
        opacity: 1;
        transform: scale(1, 1);
    }

    .nav-header a::before {
        width: 130%;
        height: 70px;
    }

    .stellarnav.mobile>ul>li>a {
        display: flex;
        align-items: center;
        padding: 20px 5%;
        margin: 0;
        color: #ac9883;
    }

    .stellarnav>ul>li>a b:nth-child(2) {
        margin-right: 0px;
    }

    .stellarnav.mobile.right .close-menu,
    .stellarnav.mobile.left .close-menu {
        color: #fff;
        background: #ac9883;
    }

    .stellarnav .icon-close:after,
    .stellarnav .icon-close::before {
        border-bottom: solid 3px #fff;
    }

    .stellarnav.mobile li a {
        border-bottom: none;
    }

    .stellarnav .menu-toggle span.bars span {
        background: #fff;
        transition: all 0.3s;
    }

    .sticky .stellarnav .menu-toggle span.bars span {
        background: #666;
        transition: all 0.3s;
    }

    .nav-header {
        opacity: 0;
        transition: all 0.3s;
    }

    .sticky .nav-header {
        opacity: 1;
        transition: all 0.3s;
    }

    .stellarnav>ul>li::before {
        display: none;
    }

    .stellarnav>ul>li {
        width: 100%;
    }

    .stellarnav>ul>li:nth-of-type(3) {
        margin-left: 0;
    }

    .stellarnav.mobile li.open {
        background: #fff4ea;
        padding: 0;
    }

    .stellarnav li li {
        margin-bottom: 0px;
        background: #fff4ea;
        border: none;
    }

    .stellarnav>ul>li>ul>li:hover {
        background: #fff4ea;
    }



    .stellarnav li li a {
        color: #ac9883;
        font-weight: 1000;
        text-align: center;
        padding: 20px 0;
    }

    .stellarnav.mobile>ul>li>a.dd-toggle {
        top: 15px;
    }

    .sticky .stellarnav .menu-toggle span.bars span {
        background: #fff;
    }



    .stellarnav a.dd-toggle .icon-plus:after {
        border-bottom: solid 3px #ac9883;
    }

    .stellarnav a.dd-toggle .icon-plus:before {
        border-bottom: solid 3px #ac9883;
    }

    .stellarnav.mobile>ul>li {
        max-width: 100vw;
        border-bottom: 1px #ac988369 solid;
    }

    .stellarnav.mobile li li.has-sub a {
        padding: 20px 10px;
    }

    .stellarnav.mobile li.open li.open {
        background: #000000c9;
        /* border: 0; */
    }

    .stellarnav>ul>li>ul>li>a {
        font-size: 15px;
    }

    .stellarnav>ul>li:hover>ul>li:hover>ul {
        background: transparent;
    }

    .stellarnav.mobile ul ul ul {
        background: transparent;
    }

    .stellarnav li li li {
        background: transparent;
        border: 0;
    }

    .stellarnav>ul::before {
        display: none;
    }

    .stellarnav>ul>li>a b:nth-child(2) {
        opacity: 1;
    }

    .stellarnav>ul>li:nth-of-type(1) {
        animation-delay: 0s;
    }

    .stellarnav>ul>li:nth-of-type(2) {
        animation-delay: 0.2s;
    }

    .stellarnav>ul>li:nth-of-type(3) {
        animation-delay: 0.4s;
    }

    .stellarnav>ul>li:nth-of-type(4) {
        animation-delay: 0.6s;
    }

    .stellarnav>ul>li:nth-of-type(5) {
        animation-delay: 0.8s;
    }

    .stellarnav>ul>li:nth-of-type(6) {
        animation-delay: 1s;
    }

    .stellarnav>ul>li:nth-of-type(7) {
        animation-delay: 1.2s;
    }

    .header_area .stellarnav .menu-toggle {
        padding: 22px 13px;
        background: transparent;
    }

    .header_area.sticky .stellarnav .menu-toggle {
        background: #ac9883;
    }
}












/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*Footer*/
.footer {
    border-top: none !important;
    width: 100%;
    padding: 0;
    height: 25vw;
    opacity: 1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 100;
    background-image: url(https://pic03.eapple.com.tw/leon/footer-02.jpg );
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.footer .center {}

.footer_info ul {
    display: none;
    vertical-align: top;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pageIndex .footer {
    opacity: 1;
}

.footer_menu {
    border-bottom: none !important;
    display: flex;
    justify-content: center;
}

.copy {
    display: none;
    background: transparent;
    color: #fff;
    border: none;
    margin-top: 0;
    border-top: 1px #ffffff54 solid;
    padding: 10px 0;
}

.copy a {
    color: #fff;
}

.footer_menu a:nth-child(1) {
    display: none;
}

.footer_menu a:hover {
    background: #02642F;
}

.footer_menu a {
    transition: all 0.3s;
}

.box_link {
    display: none;
}

.footer_info li p {
    width: auto;
    color: #fff;
    width: fit-content;
    margin-right: 50px;
}

.footer_info li p a {
    color: #fff;
}

.footer_menu a {
    display: inline-block;
    padding: 5px 11px;
    border: 0;
    margin: 0 5px;
    font-size: 14px;
    line-height: 100%;
    color: #fff;
    background: transparent;
}

.footer_menu a:hover {
    background: #fff;
    color: #000;
}

.footer_info {
    padding: 0;
    display: flex;
    align-items: center;
    flex-direction: row;
    padding: 0;
    justify-content: center;
}


.center {
    max-width: 95%;
    width: 100%;
    margin: 0 auto;
}

.footer_info li:nth-child(1) {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    text-align: left;
    width: 100%;
}

.footer_info li:nth-child(2) {
    position: relative;
    width: 100%;
}


.footer_info li p.add {}

.footer_info li p.add2 {
    margin-top: 10px;
}

.footer_logo {
    display: none;
}

/* 浮動 */

.info_fix {
    width: auto;
    box-sizing: border-box;
    position: fixed;
    top: 4%;
    bottom: auto;
    right: 2%;
    transition: all 0.7s;
    padding: 10px;
    background: #fff6ed;
    padding-right: 75px;
    border-radius: 15px;
    z-index: 999;
    box-shadow: 1px 1px 5px #ac988336;
}

.info_fix_links a i {
    display: block;
    color: #ac9883;
    font-size: 17px;
    transition: all 0.5s;
}

.info_fix_links a:hover i {
    display: block;
    color: #8f7b67;
    transition: all 0.5s;
}


.info_fix:hover {
    transition: all 0.7s;
}

.info_fix_links {
    display: flex !important;
    background: transparent;
    width: 100%;
    padding-bottom: 0;
    border: 0;
    /* border-radius: 0px 0 0 10px; */
    overflow: hidden;
    justify-content: flex-end;
    flex-direction: row;
}

.info_fix>span {
    display: none;
}

.info_fix_links a {
    background: transparent;
}

.info_fix_links a:hover {
    background: transparent;
}

.info_fix_links a {
    display: block;
    width: 50px;
    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_links p {
    text-align: center;
    font-weight: 900;
    writing-mode: vertical-rl;
}





.info_fix_default.info_fix_phone,
.info_fix_default.info_fix_tel,
.info_fix_default.info_fix_mail {
    display: none;
}

















#to_top {
    color: #fff;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding-top: 0;
    transition: all 0.7s;
    bottom: 7%;
}

#to_top:hover i {
    transform: translate(0, -5px);
    transition: all 0.7s;
}

#to_top i:before,
#to_top i:after {
    background: #fff;
}





/* 浮動動畫 */



.info_fix {
    opacity: 0;
    transform: scale(0, 1);
    transform-origin: 100% 50%;
    animation: footer-text 1s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: .5s;
}

.pageIndex .info_fix {
    animation-delay: 5s;
}




@keyframes footer-text {
    0% {
        opacity: 0;
        transform: scale(0, 1);

    }

    100% {
        opacity: 1;
        transform: scale(1, 1);
    }

}






@media screen and (max-width: 1440px) {
    .footer_info ul {
        text-align: center;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .footer_info li:nth-child(1) {
        width: 100%;
    }

    .footer_info li:nth-child(2) {
        width: 100%;
    }
}




@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%;
    }

    .footer_info li:nth-child(1) {
        flex-wrap: wrap;
    }

    .footer_menu {
        flex-wrap: wrap;
    }

    .info_fix_links a {
        width: 35px;
    }

    .info_fix {
        animation: none;
    }

    .headerSticky .info_fix {
        opacity: 1;
        transform: scale(1, 1);
    }
}




/* 開場MENU 浮動 */
.stellarnav .menu-toggle {
    animation-delay: 7.2s;
}



.info_fix {}



@keyframes action-footer {
    0% {
        opacity: 0;
        transform: translate(100%, 0%);
    }

    100% {
        opacity: 1;
        transform: translate(0%, 0%) scale(1);
    }

}








/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/

.banner {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    padding: 10px;
    background: transparent;
    transition: 1s cubic-bezier(0.56, 0.66, 0.11, 0.99);
}

.headerSticky .banner {
    padding: 20px;
    transition: 1s cubic-bezier(0.56, 0.66, 0.11, 0.99);
}

.banner::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    border-radius: 24px;
    overflow: hidden;
}

.banner h5 {
    display: flex;
    font-size: 10.5vw;
    color: #fff;
    font-weight: 500;
    z-index: 99;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    letter-spacing: 6px;
    text-transform: uppercase;
    position: absolute;
}

.banner h5::after {
    content: "";
    display: block;
    font-size: 40px;
    color: #fff;
    font-weight: 600;
    margin-top: 20px;
}


/* 開場動畫 */
.banner h5 {
    opacity: 0;
    transform: translate(0, 50px);
    animation: banner-h5-ac 1s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
}

.banner h5::after {
    opacity: 0;
    transform: translate(0, 50px);
    animation: banner-h5-ac 1s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 0.5s;
}


@keyframes banner-h5-ac {
    0% {
        opacity: 0;
        transform: translate(0, 50px);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0px);
    }

}






.banner.banA {}

.banner.banB {
    display: none;
}

.banner.banC {
    display: none;
}

.banner.banD {}

.banner.banE {}






/*  */
.banner.banblog h5::after {
    content: "案例精選";
}

.banner.banblog::before {
    background-image: url(https://pic03.eapple.com.tw/leon/banner-05.png);
}

/*  */



/*  */
.article_b .banner.banblog h5::after {
    content: "最新消息";
}

.article_b .banner.banblog::before {
    background-image: url(https://pic03.eapple.com.tw/leon/banner-06.png);
}

/*  */







@media screen and (max-width: 1440px) {
    .banner {}
}

@media screen and (max-width: 1024px) {
    .banner {
        flex-direction: column-reverse;
    }

}


@media screen and (max-width: 768px) {
    .banner h5::after {
        font-size: 30px;
    }

    .banner::before {
        background-attachment: unset;
    }
}




@media screen and (max-width: 500px) {
    .banner::after {}
}




/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*購物車設定*/
/* 產品的看更多按鈕設定 */

.product_page .main_part {
    width: 100%;
    max-width: 80%;
    margin: auto;
    padding: 50px 0px;
}

.product_page .show_content {
    margin: auto;
    padding: 10px 0;
}

.product-layer-two li a {
    background: transparent;
}

.products-list {
    padding: 20px 0;
    max-width: 100%;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fill, minmax(calc(100% / 4 - 20px), 1fr));
    grid-gap: 20px;
}

.products-list .pic {}

.products-list .item a:hover .more {
    background: #6F1C1B;
    color: #DEDBC4;
}

.product-layer-two {
    margin: 20px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.product-layer-two li i {
    color: #DEDBC4;
}

.products-list .item {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    padding: 0;
    margin-bottom: 30px;
}

.product-layer-two::after {
    content: "";
    width: 100%;
    height: 2px;
    display: block;
    background-color: #dedbc41f;
    box-shadow: inset 0px 0.2px 2px #000;
    margin: 0;
    transform: translate(0, -50%);
    z-index: 0;
}






.products-list .more {
    border: 0;
    background: transparent;
    color: #DEDBC4;
    position: relative;
    opacity: 1;
    transition: all 0.3s;
    height: fit-content;
    margin-top: 10px;
    border: 1px #DEDBC4 solid;
    font-weight: bold;
}

.products-list .pic img {
    max-width: 100%;
    transition: all 0.3s;
}

.products-list a:hover .pic img {
    filter: brightness(0.7);
    transform: scale(1.1);
    transition: all 0.5s;
}

.products-list .name {
    font-size: 16px;
    color: #DEDBC4;
    letter-spacing: 1px;
    margin-top: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 50px;
    text-align: center;
    font-weight: bold;
}

.products-list .price b.ori_price {
    color: #ada17ea3;
}

.products-list .price {
    text-align: center;
}


@media screen and (max-width: 1440px) {
    .products-list .price b {
        font-size: 14px;
    }
}



@media screen and (max-width: 768px) {
    .products-list .price b {
        font-size: 16px;
    }
}

/*外層*/



.product-layer-two li::before {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background-color: #6F1C1B;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0) scale(0);
    z-index: 9999999;
    transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
}

.product-layer-two li:hover:before,
.product-layer-two li.active::before {
    transform: translate(-50%, 0) scale(1);
    transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 1s;

}

.product-layer-two li ul {
    background: #000;
}

.product-layer-two li li {
    background: transparent;
}

.product-layer-two li li a {
    background: transparent;
}


.product-layer-two li a {
    color: #DEDBC4;
    border: 0;
    font-weight: bold;
    font-size: 20px;
    transition: all 0.3s;
}

.product-layer-two li.active a {
    border: 0;
}






/*內層*/
.lastPage {
    background: #6f5f55;
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
}

.nextaction {
    background-color: #DEDBC4;
}

.lastaction {
    color: #fff;
    background-color: #DEDBC4;
}

.sidebarBtn {
    padding: 15px;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    border: none;
    background: none;
}



/*內液*/
.product_info_page .main_part {
    width: 100%;
    max-width: 80%;
    margin: auto;
    padding: 50px 0px;
}

.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 {
    grid-template-columns: repeat(4, 1fr);
}

#number_area {
    display: none;
}

.product-wrapper {
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sidebarBtn {
    padding: 0;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    border: 0;
    background: transparent;
    margin: 30px 0;
}

.sidebarBtn h2 {
    color: #DEDBC4;
    font-size: 1.8em;
    font-weight: bold;
    text-align: center;
    padding: 30px 40px;
    width: fit-content;
    background-color: transparent;
    margin: 0 auto;
    position: relative;
    letter-spacing: 7px;
    line-height: 70px;
}

.sidebarBtn h2::after {}

.pd_tabTitle li {
    border-bottom: 0;
}

.pd_tabTitle li.activeTab a {
    font-size: 20px;
    font-weight: bold;
    color: #DEDBC4;
}

.pd_tabTitle li.activeTab::after {
    height: 3px;
    background: #6F1C1B;
}


.blog_in_page .edit * {
    COLOR: #ac9883;
    font-family: "Tomorrow", "Noto Sans TC", sans-serif !important;
    font-weight: 500;
}





.sidebarBtn {
    color: #bebebe;
}

.sidebarBtn .price {
    color: #DEDBC4b6;
    font-size: 24px;
    margin-top: 0;
    border-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.sidebarBtn .price::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #DEDBC4;
    margin: 20px 0 20px;
}

.sidebarBtn .sp_price {
    color: #DEDBC4;
}

.product_info {
    display: none;
}

.product_info li span {
    color: #bebebe;
}

#bx-pager h6 {
    display: none;
}

ul.prod li:nth-of-type(2) {
    display: none;
}

ul.prod li h3.prod-thumb {
    color: #d6bfa9;
    font-family: 'Noto Sans TC';
    font-size: 24px;
    text-align: left;
    background: transparent;
    padding: 0;
}

ul.prod li h3.prod-thumb::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #c3b29e;
    margin: 20px 0;
}

ul.prod {
    list-style: none;
    display: block;
    width: 100%;
}

ul.prod li .prod-panel {
    color: #dec7b1a6;
    text-align: left;
}

ul.prod li {
    margin-bottom: 40px;
    color: #bebebe;
}

.toShare {
    display: none;
}



/*  */
.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;
}



.inquiry_a1 {
    background: #6f1c1b;
}

.inquiry_a2 {
    background: #7f7c66;
}

/*  */

.prod_related {
    background: #0000001c;
    padding: 25px 15px;
}

.prod_related h6 span:before {
    content: '相關推薦';
    font-size: 40px;
    color: #c3b29e;
    font-family: "Noto Sans TC";
}

.related_list li a {
    display: block;
    padding: 5%;
    background: #07070724;
    transition: all 0.3s;
}

.related_list li a:hover {
    background: #6F1C1B;
    transition: all 0.3s;
}

.related_list li a p {
    font-size: 16px;
    color: #ac9883;
    margin: 10px 0;
    font-weight: bold;
}

.related_list li {
    transition: all 0.5s;
}

.related_list li:hover {
    transform: scale(1.05);
    transition: all 0.5s;
}

.mobile_product_name {
    display: none;
}

.sidebarBtn .price span {
    display: block;
    font-size: 24px;
    margin: 0 10px;
}


/* 結帳 */

.separate_title {
    font-size: 30px;
    color: #DEDBC4;
    padding: 10px 0 10px 40px;
    background: transparent;
}

.formbox_form li .form__label {
    color: #DEDBC4;
}

/*  */
.shopping-cart .cart_head {
    background: #42512a;
    color: #fff;
}

.shopping-cart .row {
    position: relative;
    height: auto;
    margin: 25px 0;
    clear: both;
    background-color: transparent;
    color: #DEDBC4;
}

.shopping-cart .cell {
    background: transparent;
    color: #DEDBC4;
}

.shopping-cart .cell a {
    background: transparent;
    color: #DEDBC4;
}

.total_amount li {
    margin: 10px 0;
    color: #DEDBC4;
}

.form label.Bigcheck {
    color: #DEDBC4;
}

.form label {
    color: #DEDBC4;
}

.declaration {
    background: transparent;
}



@media screen and (max-width: 1440px) {}

@media screen and (max-width: 1024px) {
    .products-list .item {}

    .products-list {
        grid-template-columns: repeat(auto-fill, minmax(calc(100% / 3 - 20px), 1fr));
    }

    .product_info_page .product-layer-two {
        grid-template-columns: repeat(3, 1fr);
    }
}



@media screen and (max-width: 768px) {
    .product_info_page .main_part {
        max-width: 80%;
    }

    .car_page .information_left {
        display: none;
    }

    .product-layer-two {
        display: none;
    }

    .product-layer-two li {
        width: calc(100% / 3 - 2%);
        text-align: center;
        margin: 10px 1%;
    }

    .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;
        max-width: 100%;
    }

    .products-list .item {}

    .product_info_page .product-layer-two {
        display: none;
    }

    .product-wrapper {
        left: 0px;
    }

    .products-list .item {}

    .sidebarBtn h2 {
        font-size: 16px;
        padding: 20px 40px;
        letter-spacing: 2px;
        line-height: 2;
    }
}

@media screen and (max-width: 500px) {
    .product_page .main_part {
        max-width: 85%;
    }

    .products-list {
        grid-template-columns: repeat(auto-fill, minmax(calc(100% / 2 - 20px), 1fr));
    }

    .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;
    }

}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*文章設定*/
/*一排呈現*/
.blog_back a.article_main_header_area_back {
    background: #6F1C1B;
}

.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: fit-content;
    position: relative;
    text-align: center;
    padding: 10px 0;
    padding-left: 20px;
    transition: all 0.3s;
}

.blog_le .accordion>li::before {
    content: "";
    display: block;
    width: 1px;
    height: 15px;
    background-color: #ac9883;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%) scale(1, 0);
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.blog_le .accordion>li::after {
    content: "";
    display: block;
    width: 20px;
    height: 1px;
    background-color: #ac9883;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%) scale(0, 1);
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}


.blog_le .accordion>li:hover:before {
    transform: translate(0, -50%) scale(1);
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.blog_le .accordion>li:hover::after {
    transform: translate(-50%, -50%) scale(1);
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);

}



.blog_box_edit {
    line-height: 180%;
    text-align: justify;
}

h4.blog_category_title {
    text-align: justify;
    color: #ac9883;
}

.link a {
    width: 100%;
    display: block;
    padding: 15px 10px;
}

.accordion li .link {
    padding: 0;
}

.blog_page .main_part {
    width: 100%;
    max-width: 100%;
    margin: auto;
    padding: 100px 20px;
}

.clearfix:before,
.clearfix:after {
    display: none;
}




/* 選單 */
.blog_box {
    min-height: 100vh;
    padding: 0px;
    display: block;
    flex-direction: row;
    align-content: flex-start;
    overflow: visible;
}

.blog_le {
    width: 20%;
    display: inline-block;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    padding: 30px 40px;
    border: 1px #ac9883 solid;
    justify-content: flex-start;
    border-radius: 24px;
    margin-right: 10px;
    position: sticky;
    top: 18%;
    height: fit-content;
    z-index: 999;
}

h5.blog_le_t {
    display: flex;
    font-size: 24px;
    font-weight: 500;
    color: #ac9883;
    font-family: serif;
    letter-spacing: 2px;
    margin-bottom: 30px;
    width: auto;
    font-family: "Tomorrow", "Noto Sans TC", sans-serif;
    flex-direction: column;
}

h5.blog_le_t em {
    font-size: 4.5vw;
    text-transform: uppercase;
}

h5.blog_le_t span {
    font-size: 20px;
}




.blog_search {
    width: 100%;
    position: relative;
    margin-bottom: 20px;
    display: none;
    justify-content: flex-end;
}

.blog_search form {
    width: 100%;
    position: relative;
}

.blog_le .accordion {
    margin: 0;
    border-radius: 0;
    border: none;
    overflow: visible;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-around;
    padding: 0;
    background: transparent;
    border-radius: 10px;
    position: relative;
}

.blog_le .accordion::before {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background-color: #ac988369;
    position: absolute;
    left: 0;
    top: 0;
}

.accordion li .link a {
    font-size: 16px;
    color: #ac9883;
    font-weight: bold;
    padding: 0;
    letter-spacing: 2px;
    transition: all 0.3s;
}




.blog_le .accordion>li:hover .link a,
.blog_le .accordion>li.on_this_category .link a {
    color: #ac9883 !important;
    transition: all 0.3s;
}

.accordion li+li .link {
    border: 0;
}



.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 #ac9883 solid;
    padding: 10px 35px 10px 10px;
    background: transparent;
}

.blog_search input[type=search]:focus,
.blog_search input[type=search]:valid {
    top: -20px;
    font-size: 16px;
    color: #333;
}

.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;
}

.news_related {
    background: #efddca;
    border-radius: 24px 24px 0 0;
}

.news_related_list li a {
    position: relative;
    padding: 0;
    background: transparent;
    z-index: 1;
}

.news_related_list li a p {
    font-size: 16px;
    color: #ac9883;
    line-height: 2;
    font-weight: bold;
    margin-top: 10px;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.news_related_list li a:hover p {
    color: #fff;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
    transition-delay: 0.5s;
}




.news_related h6 span:before {
    font-size: 24px;
    color: #ac9883;
}

/* 內容 */

.blog_in_page .main_part {
    max-width: 100%;
}






.blog_ri {
    display: inline-block;
    width: calc(80% - 20px);
    padding: 0;
    min-height: 75vh;
    margin: 0 0 0 auto;
}

.blog_subbox {
    grid-template-columns: repeat(2, 1fr);
}

.blog_list_ri h5 {
    color: #ac9883;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.subbox_item::after {
    width: 80%;
    height: 80%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 33%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg) scale(1.5);
    pointer-events: none;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.subbox_item:hover:after {
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
    opacity: 0.5;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}


/* .blog_subbox:has(.subbox_item:hover) .subbox_item:not(:hover) {
    opacity: 0.7;
    filter: blur(1px);
} */


.subbox_item img {
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.subbox_item:hover img {
    transform: translate(-50%, -50%) scale(1.05);
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}





.subbox_item a:after {
    display: none;
}

.subbox_item a:before {
    display: none;
}

.blog_list_le {
    height: auto;
    width: 100%;
    line-height: 0;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 24px;
}

.subbox_item {
    padding: 0;
    margin-bottom: 50px;
    overflow: hidden;
}

.subbox_item a {
    display: flex;
    position: relative;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    background: transparent;
    flex-direction: row;
    gap: 0;
}

.blog_list_ri {
    width: 100%;
    margin-left: 0;
    padding: 3% 5% 5%;
    min-height: 170px;
}

.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: #ac9883;
    font-style: normal;
    display: block;
    margin: 20px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.blog_list_ri p {
    font-size: 15px;
    color: #ac9883;
    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: #6f5f55;
}



.blog_shareData {
    display: none;
}

.blog_back {
    width: 80%;
    margin-left: auto;
    padding: 0 10px;
}

.blog_back a {
    font-size: 16px;
    color: #fff;
    border-radius: 5px;
}

.blog_back a.article_btn_prev,
.blog_back a.article_btn_next {
    background: #ac9883;
}

.news_related h6 {
    margin-top: 50px;
}

.news_related_list li a img {
    border-radius: 24px;
}


.news_related_list li {
    display: block;
    padding: 10px;
    position: relative;
}

.news_related_list li::before {
    content: "";
    display: block;
    width: 100%;
    height: 0%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #ac9883;
    border-radius: 24px;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transition: 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.news_related_list li:hover:before {
    opacity: 1;
    height: 100%;
    transition: 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}





@media screen and (max-width: 1440px) {
    .blog_page .main_part {}
}

@media screen and (max-width: 1024px) {
    .subbox_item {
        overflow: hidden;
    }
}


@media screen and (max-width: 960px) {
    .subbox_item {
        border-bottom: 0px #eee solid;
    }

}

@media screen and (max-width: 768px) {
    .blog_le {
        display: none;
    }

    .blog_subbox {
        grid-template-columns: repeat(1, 1fr);
    }

    .blog_ri {
        width: 100%;
    }

    .subbox_item {
        margin-bottom: 0;
    }

    .blog_le .accordion {
        display: none;
    }

    .blog_search form {
        width: 50%;
    }

    .blog_search {
        margin-bottom: 20px;
    }

    .blog_back {
        margin: 0 auto;
    }
}

@media screen and (max-width: 500px) {
    .subbox_item {
        width: 100%;
    }

}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/* 文章管理2 */

.article_b.blog_page .main_part {
    max-width: 80%;
    padding: 0 5px;
}

.article_b .blog_box {
    padding: 0px;
    display: block;
    overflow: visible;
    height: fit-content;
}



.article_b .blog_le {
    display: flex;
    position: relative;
    width: fit-content;
    z-index: 1;
    padding: 0;
    margin: 0;
    border: 0;
    padding-bottom: 20px;
    margin-top: 10vh;
    align-items: flex-start;
}

.article_b .blog_le .accordion {
    flex-direction: row;
    padding: 0;
    line-height: 1;
    gap: 10px;
    border-radius: 0;
}



.article_b .blog_subbox {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.article_b .subbox_item {
    margin: 0;
    padding: 10px;
    margin-bottom: 50px;
}

.article_b .blog_list_le {
    aspect-ratio: 1/1;
}


.article_b .blog_search {
    display: none;
    margin-bottom: 20px;
}

.article_b .blog_ri {
    width: 100%;
}



.article_b .accordion li .link a {
    border: 0;
    border-radius: 24px;
    font-size: 16px;
    padding: 10px 30px;
    letter-spacing: 2px;
    text-indent: 2px;
}

.article_b .accordion li .link a::before {
    display: none;
}


.article_b .blog_le .accordion>li:hover .link a,
.article_b .blog_le .accordion>li.on_this_category .link a {
    color: #ac9883 !important;

    transition: all 0.3s;
}


/* 選單底線 */


.article_b .blog_le .accordion>li::before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #00000008;
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    box-shadow: inset 1px 2px 1px #00000012;
    transform: none;
    border-radius: 3px;
}

.article_b .blog_le .accordion>li::after {
    content: "";
    display: block;
    width: 0%;
    height: 2px;
    background-color: #ac9883;
    position: absolute;
    top: auto;
    bottom: 0;
    left: 50%;
    border-radius: 3px;
    transform: translate(-50%, 0);
    transition: all 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.article_b .blog_le .accordion>li:hover:after,
.article_b .blog_le .accordion>li.on_this_category:after {
    background-color: #cab9a6;
    width: 100%;
    transition: all .5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}



.article_b .blog_le .accordion>li {
    padding: 10px 15px;
    padding-left: 15px;
}

.article_b .blog_le .accordion::before {
    display: none;
}

.article_b h5.blog_le_t {
    margin-bottom: 80px;
}


.article_b.blog_in_page .main_part {
    max-width: 80%;
}

.article_b .blog_back {
    width: 100%;
    padding: 0;
}










/* 選項HOVER */
.article_b .subbox_item::before {
    content: "";
    display: block;
    width: 100%;
    height: 0%;
    position: absolute;
    top: 0;
    left: 0%;
    background-color: #ac9883;
    border-radius: 24px;
    transition: all .5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.article_b .subbox_item:hover:before {
    height: 100%;
    transition: all 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.article_b .subbox_item:hover .blog_list_ri h5 {
    color: #fff;
    transition: all 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.article_b .subbox_item:hover .blog_list_ri em {
    color: #fff;
    transition: all 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.article_b .subbox_item:hover .blog_list_ri p {
    color: #fff;
    transition: all 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}



@media screen and (max-width: 768px) {
    .article_b .blog_le {
        display: none;
    }

    .article_b .blog_subbox {
        grid-template-columns: repeat(2, 1fr);
    }

    .article_b .subbox_item {
        margin-bottom: 0px;
    }

    .article_b.blog_page .main_part {
        max-width: 90%;
    }

}


@media screen and (max-width: 500px) {

    .article_b .blog_subbox {
        grid-template-columns: repeat(1, 1fr);
    }

}









/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*主分類頁面*/
.album_page .main_part,
.album_class_page .main_part,
.album_info_page .main_part {
    max-width: 1400px;
}

.show-list .item:hover .show_name {
    color: #ADA17E;
}

.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: #ADA17E;
}

.other_subalbum li p {
    line-height: 220%;
}

.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;
}


/*照片頁*/
.pic-list .show_pic {
    height: 40vh;
    max-height: 240px;
    padding-bottom: 0;
}

.pic-list .show_pic 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;
}


@media screen and (max-width: 600px) {

    /*照片頁*/
    .pic-list .item {
        width: 96%;
        margin: 10px 2%;
    }
}

/*相本分類全版面 ( 限制最寬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; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*其他分頁*/
.promotion_title h2 {
    border-bottom: 2px solid #ADA17E;
}

.promotion_title {
    border-bottom: 1px solid #ADA17E;
}



@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;
    }

}

@media screen and (max-width: 600px) {

    /*手機板大圖*/
    /*
.swiper-slide img { display:none; }
.swiper-slide {    width: 100%;    height: 0;    padding-bottom: calc(100% / 3 * 4);}
.swiper-slide:nth-child(1) { background-image:url(https://pic03.eapple.com.tw/.../Banner-03.png) ; background-size:cover;   background-position: center;}
.swiper-slide:nth-child(2) { background-image:url(https://pic03.eapple.com.tw/.../Banner-04.png) ; background-size:cover;   background-position: center;}
*/

}

.contact_le_map {
    display: none;
}






.contact_page .main_part {
    width: 100%;
    max-width: 100%;
    height: 100vh;
    margin: auto;
    padding: 0;
    background-image: url(https://pic03.eapple.com.tw/leon/banner-05.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: contact-img 150s infinite linear;
}


@keyframes contact-img {
    0% {
        background-position: 0;
    }

    100% {
        background-position: -2000px;

    }

}






.blank_letter {
    font-family: "Noto Sans", system-ui;
    padding-top: 0px;
    font-size: 24px;
    color: #ac9883;
    text-align: left;
    margin-bottom: 10px;
}

.blank_letter.i {
    color: #fff;
}

.blank_letter.i::before {
    content: "FORM";
    display: block;
    color: #fff;
    font-size: 50px;
    font-weight: 500;
    font-family: "Tomorrow", "Noto Sans TC", sans-serif;
    letter-spacing: 10px;
    margin-bottom: 5px;
}

.blank_letter.i {
    text-align: left;
}

.list_before.info li {
    color: #fff;
    display: flex;
    margin: 10px 0;
    padding-left: 80px;
}



.list_before.info li.info_LINE {
    display: none;
}

.contact_form li .form__label {
    display: inline-block;
    width: 100%;
    text-align: left;
    margin-left: 0;
    padding-right: 0;
    vertical-align: top;
    color: #ac9883;
    margin: 0;
    font-weight: bold;
    padding-left: 10px;
}





.contact_form li:has(.form__label .star) .form__label {
    padding-left: 0;
}





.contact_content {
    margin: 0;
    padding: 0;
    max-width: 100%;
    height: 100%;
}

.contact_content form {
    display: flex;
    justify-content: space-between;
    height: 100%;
}

.contact_content .information_left {
    width: 72%;
    padding: 8vh 5%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}


.contact_content::before {
    content: "";
    display: block;
    width: 30vw;
    height: 20vw;
    position: absolute;
    bottom: 3vh;
    left: 2%;
    background-color: #ffffff12;
    border: 1px #fff solid;
    backdrop-filter: blur(4px) brightness(0.6);
    z-index: 0;
    border-radius: 24px;
}

.contact_content .information_right {
    width: 38%;
    padding-left: 0;
    padding: 8% 7%;
    background: #fff6ed;
    border-radius: 24px;
}

.clearfix:before,
.clearfix:after {
    display: none;
}

.contact_form {
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 15px;
    color: #fff;
    gap: 12px;
}

.contact_form li input.noborder {
    border: 0;
    background-color: #ac988333;
    color: #ac9883;
}

.contact_form li textarea.noborder {
    border: 0;
    background-color: #ac988333;
}


.contact_form li {
    padding: 0;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: flex-start;
    gap: 5px;
}

.contact_form li .form__insert {
    text-align: center;
}

.contact_form li:nth-last-of-type(2) {
    padding: 0;
    padding-left: 0;
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    margin: 20px 0 10px;
}

.contact_form li:nth-last-of-type(2) .form__label {
    width: fit-content;
    margin: 0;
    margin-right: 20px;
}

.contact_form li:nth-last-of-type(2) .form__insert {
    width: auto;

}

.contact_form li.last blockquote {
    color: #ac9883;
}

.contact_form li.last cite {
    background: #ac9883;
    color: #fff;
}

.red {
    color: #cf4c3e;
}


.contact_form li.last {
    display: flex;
    text-align: center;
    margin-top: 50px;
    padding-left: 0;
    flex-direction: row;
    justify-content: center;
}

.TEL:before,
.TEL2:before,
.PHONE:before,
.FAX:before,
.TAXID:before,
.MAIL:before,
.ADD:before,
.ADD2:before {
    position: relative;
    display: block;
    width: 35px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: -1px;
    margin-right: 20px;
}

.PHONE:before {
    content: "";
    background-image: url(https://pic03.eapple.com.tw/leon/icon-14.png);
    width: 30px;
    height: 30px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.MAIL:before {
    content: "";
    background-image: url(https://pic03.eapple.com.tw/leon/icon-15.png);
    width: 30px;
    height: 30px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.ADD:before {
    content: "";
    background-image: url(https://pic03.eapple.com.tw/leon/icon-16.png);
    width: 30px;
    height: 30px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}


.info_TEL:before,
.info_TEL2:before,
.info_PHONE:before,
.info_LINE:before,
.info_FAX:before,
.info_TAXID:before,
.info_MAIL:before,
.info_ADD:before,
.info_ADD2:before {
    width: 80px;
}

.info_PHONE:before {
    content: "免費專線";
}

.info_TEL:before {
    content: "公司電話";
}

.info_MAIL:before {
    content: "公司信箱";
}

.info_ADD:before {
    content: "公司地址";
}

@media screen and (max-width: 768px) {
    .contact_content form {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        align-items: flex-start;
    }

    .contact_content .information_left {
        width: 100%;
    }

    .contact_content .information_right {
        width: 100%;
    }

    .contact_page .main_part {
        padding: 100px 0;
        background-image: url(https://pic03.eapple.com.tw/leon/bg-13.png);
        background-size: cover;
        background-position: right;
        background-repeat: no-repeat;
    }
}

/* 20251007 footer css */

.footer_01 * {
    box-sizing: border-box;
    max-width: 100%;
    font-family: "Noto Sans TC", sans-serif;
}

.footer_01 {
    max-width: 2000px;
    width: 100%;
    margin: auto;
    border: 0;
    text-decoration: none;
    overflow: hidden;
    position: relative;
    z-index: 99;
    background: #AE9B8B;
}

.footer_01 img {
    width: auto;
    max-width: 100%;
    vertical-align: bottom;
}

.footer_01 ul {
    padding: 0 0;
    margin: 0;
}

.footer_01 li {
    list-style: none;
}

.footer_01 h6,
.footer_01 h5,
.footer_01 h4,
.footer_01 h3,
.footer_01 h2 {
    margin: 0;
}

.footer_01 u {
    text-decoration: none;
}

.footer_01 p {
    margin: 0;
}

.footer_01 em,
.footer_01 i {
    font-style: normal;
}

.footer_01 a {
    text-decoration: none;
}

.footer_01 dd,
.footer_01 dt {
    margin: 0 0;
}

.footer_02 {
    padding: 115px 5% 85px 5%;
}

.footer_03 {
    max-width: 1500px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    padding-bottom: 100px;
    margin-bottom: 40px;
    border-bottom: 1px #fff solid;
}

.footer_link {
    display: block;
    width: fit-content;
}

.footer_link a {
    display: block;
    width: fit-content;
    margin: auto;
    transition: .5s;
}

.footer_link a:hover {
    transform: scale(1.05);
}

.footer_link a b {
    display: block;
    color: white;
    font-size: 24px;
    font-family: "Tomorrow", sans-serif;
    font-weight: 600;
    line-height: 120%;
}

.footer_link a em {
    display: block;
    color: #D7CEC6;
    font-size: 14px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 0.05em;
    margin: 20px 0 0 0;
}

.footer_04 {
    max-width: 1500px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer_copy .copy {
    display: block;
}

.footer_copy p {
    color: white;
    font-size: 14px;
    font-weight: 500;
    line-height: 200%;
    letter-spacing: 0.125em;
    word-break: break-word;
}

.footer_copy p a {
    color: white;
    padding: 0 10px;
}

.footer_copy span {
    display: block;
    color: white;
    font-size: 14px;
    font-weight: 500;
    line-height: 200%;
    letter-spacing: 0.125em;
    word-break: break-word;
}

.footer_logo_new {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer_logo_new>a:nth-of-type(1) {
    display: block;
    width: fit-content;
    margin-bottom: 10px;
}

.footer_logo_new a {
    display: block;
    color: white;
    font-size: 12px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 0.125em;
    text-indent: 0.125em;
    text-align: center;
    transition: .5s;
}

.footer_logo_new a:hover b {
    transition: .5s;
    padding-right: 10px;
}

.footer_logo_new a b {
    font-size: 14px;
    font-weight: 600;
    padding-right: 20px;
    transition: .5s;
}

.footer_logo_new a+a {
    margin-top: 15px;
}

.footer_all_link {
    max-width: 280px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer_all_link a {
    display: block;
    width: fit-content;
    transition: .5s;
}

.footer_all_link a:hover {
    transform: scale(1.05);
}

.footer_all_link a+a {
    margin-left: 10px;
}

@media (max-width:990px) {
    .footer_02 {
        padding: 80px 5%;
    }

    .footer_03 {
        padding-bottom: 80px;
        flex-wrap: wrap;
    }

    .footer_link {}

    .footer_link a {
        margin: 0;
    }

    .footer_logo_new,
    .footer_all_link,
    .footer_copy {
        max-width: 30%;
    }

}

@media (max-width:900px) {
    .footer_02 {
        padding: 50px 5%;
    }

    .footer_04 {
        flex-direction: column;
    }

    .footer_logo_new,
    .footer_all_link,
    .footer_copy {
        max-width: unset;
    }

    .footer_logo_new {
        order: 1;
    }

    .footer_all_link {
        order: 2;
        max-width: 300px;
        margin: 40px 0;
    }

    .footer_copy {
        order: 3;
    }

    .footer_copy p,
    .footer_copy span {
        text-indent: 0.125em;
        text-align: center;
    }

    .footer_03 {
        max-width: 600px;
        padding-bottom: 50px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-gap: 30px 10px;
    }

    .footer_link {
        width: 100%;
    }

    .footer_03>div:nth-of-type(4n) a,
    .footer_03>div:nth-of-type(4n+3) a {
        margin: 0 0 0 auto;
    }

    .footer_04 {
        max-width: 600px;
    }
}

@media (max-width:600px) {
    .footer_03 {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer_03>div:nth-of-type(n) a {
        margin: 0;
    }

    .footer_03>div:nth-of-type(3n) a {
        min-width: 110px;
        margin: 0 0 0 auto;
    }

    .footer_03>div:nth-of-type(3n+2) a {
        min-width: 114px;
        margin: auto;
    }
}

@media (max-width:440px) {
    .footer_link a b {
        font-size: 20px;
    }

    .footer_link a em {
        font-size: 13px;
    }

    .footer_03,
    .footer_04 {
        max-width: 300px;
    }

    .footer_03 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer_03>div:nth-of-type(n) a {
        margin: 0;
    }

    .footer_03>div:nth-of-type(2n) a {
        min-width: 105px;
        margin: 0 0 0 auto;
    }
}