@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=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Playfair", serif;
}

body {
    -webkit-overflow-scrolling: touch;
    overflow-y: scroll;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*上方選單解除滑動固定
.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: #010e2e;
    color: #fff;
}

::selection {
    background-color: #010e2e;
    color: #fff;
}

body {
    overflow: overlay;
    overflow-x: hidden;
}

&::-webkit-scrollbar {
    background: #fff;
    width: 7px;
}

&::-webkit-scrollbar-button {
    display: none;
    background: #fff;
    border-radius: 0;
}

&::-webkit-scrollbar-track-piece {
    background: #fff;
}

&::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #010e2e;
}

&::-webkit-scrollbar-track {
    box-shadow: transparent;
}


#content {
    background: #fff;
}


.bannerindex {
    position: relative;
    height: 0;
    padding-bottom: 48%;
}


.pageIndex .swiper-wrapper .swiper-slide::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    background: #fff;
    clip-path: polygon(0% 0%, 0% 100%, 4% 100%, 4% 10%, 96% 10%, 96% 83%, 2% 83%, 2% 100%, 100% 100%, 100% 0%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 100;
}

.swiper-fade .swiper-slide {}

.swiper-banner {
    height: 100%;
}



/* 圖片動畫 */
.swiper-banner .swiper-slide img {
    animation: ac-img 4s forwards cubic-bezier(0.73, -0.08, 0.11, 0.99);
    animation-delay: 5.6s;
}

@keyframes ac-img {
    0% {
        transform: scale(1.5) translate(0, 500px);
        filter: blur(15px) grayscale(.6);
    }

    40% {
        transform: scale(1.5) translate(0, 0);
        filter: blur(15px) grayscale(.6);
    }

    100% {
        transform: scale(1) translate(0, 0);
        filter: blur(0) grayscale(0);
    }

}



.pageIndex .swiper-wrapper::before {
    content: "LIBERATE YOUR LIFE";
    display: block;
    position: absolute;
    bottom: 82px;
    left: 50%;
    width: 58%;
    max-width: 100%;
    text-align: center;
    z-index: 100000;
    text-wrap: nowrap;
    font-weight: 600;
    letter-spacing: 3px;
    transform: translate(-50%, 0px) scale(1, 0);
    font-size: 6vw;
    animation: ac-hero 4s forwards cubic-bezier(0.73, -0.08, 0.11, 0.99);
    animation-delay: 5.8s;
}


@keyframes ac-hero {
    0% {
        bottom: 50%;
        transform: translate(-50%, 50%) scale(1, 0);

    }

    40% {
        bottom: 50%;
        transform: translate(-50%, 0px) scale(1);

    }

    100% {
        bottom: 82px;
        transform: translate(-50%, 0px) scale(1);

    }

}



.pageIndex .swiper-wrapper::after {
    content: "Style begins from within. \A Designed for comfort, made for you.";
    display: block;
    position: absolute;
    bottom: 35px;
    left: 50%;
    width: 100%;
    max-width: 58%;
    white-space: pre;
    font-size: 0.7vw;
    text-align: left;
    transform: translate(-50%, 0px);
    margin: 0 auto;
    z-index: 100000;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 140%;
    opacity: 0;
    animation: ac-sm-font 2s forwards cubic-bezier(0.73, -0.08, 0.11, 0.99);
    animation-delay: 9s;
}


@keyframes ac-sm-font {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

}




@media screen and (max-width: 1440px) {
    .bannerindex {
        padding-bottom: 60%;
    }
}


@media screen and (max-width: 1024px) {
        .bannerindex {
        padding-bottom: 84%;
        margin-top: 5vh;
    }
    .swiper-fade .swiper-slide {
        display: flex;
        justify-content: center;
    }

    .swiper-banner .swiper-slide img {
        max-width: fit-content;
        height: 100%;
    }

    .pageIndex .swiper-wrapper::after {
        bottom: 64px;
        font-size: 1.3vw;
    }

    @keyframes ac-hero {
        0% {
            bottom: 50%;
            transform: translate(-50%, 50%) scale(1, 0);
        }

        40% {
            bottom: 50%;
            transform: translate(-50%, 0px) scale(1);
        }

        100% {
            bottom: 14%;
            transform: translate(-50%, 0px) scale(1);
        }

    }

}


@media screen and (max-width: 768px) {
    .pageIndex .swiper-wrapper::after {
        padding-left: 10%;
        width: 100%;
        max-width: 100%;
        bottom: 10%;
    }

    .pageIndex .swiper-wrapper::before {
        text-align: left;
        padding-left: 10%;
        width: 100%;
    }
}













/* 首頁文章 */

.module_i_news .title_i_box {
    display: none;
}

.module_i_news section {
    max-width: 100%;
    margin: 0 auto;
}

.module_i_news ul {
    width: fit-content;
    max-width: 100%;
    display: flex;
    grid-gap: 50px;
    overflow-x: scroll;
    padding: 30px 0;
    flex-wrap: nowrap;
}


/* 捲軸寬度及高度 */
.module_i_news ul::-webkit-scrollbar {
    background: transparent;
    height: 8px;
    overflow: auto;

}

/* 捲軸兩側頂端的按鈕 */
.module_i_news ul::-webkit-scrollbar-button {
    display: none;
}

/* 滑桿顏色 */
.module_i_news ul::-webkit-scrollbar-thumb {
    background-color: #010e2e;
    height: 50px;
    border-radius: 2px;
    transition: all 0.3s;
}

.module_i_news ul::-webkit-scrollbar-thumb:hover {
    background-color: #0d2561;
    transition: all 0.3s;
}

/* 軌道背景底色 */
.module_i_news ul::-webkit-scrollbar-track {
    background-color: transparent;
}


.module_i_news ul li:nth-last-of-type(1) {
    display: none;
}


.module_i_news {
    max-width: 90%;
    padding: 50px 0px;
    margin: 0 auto;
}

.module_i_news li a {
    position: relative;
    display: flex;
    grid-gap: 10px;
    flex-direction: column;
}

.module_i_news li {
    display: block;
    text-align: left;
    width: 100%;
}

.module_i_news li+li {}



.module_i_news li a:after {
    display: none;
}


.module_i_news li a:before {
    opacity: 0;
}

.i_blog_ri {
    padding: 0 0 50px;
}

.animated-arrow {
    margin: 0;
    background: transparent;
    color: #666666;
}

.i_blog_le {
    pointer-events: none;
}

.i_blog_le img {
    filter: grayscale(.5);
    transition: all 0.5s;
}

.module_i_news li a:hover img {
    filter: grayscale(0);
    transform: scale(1.2);
    transition: filter 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
    transition: transform 2s cubic-bezier(0.7, 0.12, 0.08, 0.95);
}

.i_blog_ri em {
    margin: 17px 0 7px;
}




@media screen and (max-width: 768px) {
    .module_i_news ul {
        flex-wrap: wrap;
    }

    .module_i_news li {
        width: calc((100% - 50px) / 2);
        border: none;
    }

    .i_blog_ri p {
        font-size: 13px;
    }
}


@media screen and (max-width: 500px) {
    .module_i_news li {
        width: 100%;
    }

}




/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 頁面的麵包屑 首頁/頁面名稱/ */
.path {
    display: none;
}


#page {}

#content_main {
    background: #fff;
    margin-top: 0;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */




/*選單設定*/
.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;
}


/*LOGO設定*/



.nav-brand img {
    width: 100%;
    max-width: 100%;
}


.nav-brand {
    width: 100%;
    transition: all 0.5s;
    opacity: 1;
}


.pageIndex .nav-brand {
    animation: ac-sm-font 2s forwards cubic-bezier(0.73, -0.08, 0.11, 0.99);
    animation-delay: 9s;
    opacity: 0;
}








.sticky .nav-brand {
    width: 230px;
    transition: all 0.5s;
}

.nav-header {
    position: absolute;

    transition: all 0.3s;
}

.sticky .nav-header {
    transition: all 0.3s;
}



/* 開場logo、選單 */



.nav-header {
    top: 50px;
    left: 50%;
    max-width: 85px;
    transform: translate(-50%, -50%);
    overflow: hidden;
    animation-delay: 2.2s;
}


.nav-header img {
    position: relative;
    opacity: 1;
}

@keyframes action-logo {
    0% {
        top: 50vh;
    }

    100% {
        top: 47px;
    }
}



@keyframes action-logo-img {
    0% {
        top: 200px;
        opacity: 0;
        transform: scale(1, 0);
    }

    100% {
        top: 0;
        opacity: 1;
        transform: scale(1, 1);

    }
}


/*  */
.header_area .main_header_area {
    position: fixed;
    background: transparent;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    z-index: -1;
    opacity: 1;
    animation: action-nav 0.5s forwards cubic-bezier(0.73, 0.08, 0.11, 0.99);
    animation-delay: 5s;
    transition: all 0.5s;
}

.header_area.sticky .main_header_area {
    background: transparent;
    height: 0;
    transition: all 0.5s;
}

.header_area .me_tp_features {
    display: block;
    position: fixed;
    top: 40px;
    right: 210px;
    margin-bottom: 0;
    transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);

}

.header_area.sticky .me_tp_features {
    top: 20px;
    transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}


.header_area .stellarnav .menu-toggle,
.stellarnav .call-btn-mobile,
.stellarnav .location-btn-mobile {
    display: block;
    position: fixed;
    top: 4%;
    right: 5%;
    width: 70px;
    height: 30px;
    padding: 0;
    transition: all 0.5s;
    pointer-events: all;
}

.header_area.sticky .stellarnav .menu-toggle,
.stellarnav .call-btn-mobile,
.stellarnav .location-btn-mobile {
    top: 4%;
    transition: all 0.5s;
}

/* 


@keyframes action-nav {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
 */


/* 漢堡 */

.stellarnav .menu-toggle {
    text-align: center;
    opacity: 0;

}

.stellarnav .menu-toggle:after {
    content: "MENU";
    display: block;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    color: #010e2e;
    margin-top: 0px;
    padding: 0;
    transform: translate(-50%, -50%);
}


@keyframes action-menu {
    0% {
        opacity: 0;
        transform: translate(-100%, 0%);
    }

    100% {
        opacity: 1;
        transform: translate(0%, 0%) scale(1);
    }

}

.stellarnav .menu-toggle span.bars span {
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    margin-bottom: 0;
    border-radius: 6px;
    background: #010e2e;
    left: 0;
    transition: 0.5s;
}

.stellarnav.desktop .menu-toggle span.bars span:nth-of-type(1) {
    top: 0;
}

.stellarnav .menu-toggle span.bars span:nth-of-type(3) {
    bottom: 0;
}

.stellarnav.desktop .menu-toggle:hover span.bars span:nth-child(1) {
    left: -10px;
    transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.stellarnav.desktop .menu-toggle span.bars span:nth-child(2) {
    opacity: 0;
    transition: all 1s;
}

.stellarnav .menu-toggle:hover span.bars span:nth-child(3) {
    left: 10px;
    transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}




/* 漢堡關 */

.stellarnav .menu-toggle span.bars {
    width: 100%;
    height: 100%;
    top: 0;
}








/* 未開啟 */

.stellarnav.desktop>ul {
    display: flex !important;
    flex-direction: column;
    pointer-events: all;
    width: 100%;
    height: 100%;
    background: transparent;
    padding: 0% 10% 0 25%;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    margin: 0;
    text-align: center;
    background: transparent;
    position: relative;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    z-index: -5;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.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;

    transform: scale(1);
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.stellarnav.desktop>ul::before {
    content: "";
    display: block;
    width: 100%;
    height: 101%;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -2;
    background-color: #fff;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.1);
    transform-origin: 50% 50%;
    border-radius: 1200px;
    transition: all 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.stellarnav.desktop.active>ul::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    border-radius: 0;
    transition: all 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}




@keyframes nav-left {
    0% {
        transform: scale(1, 0);
    }

    100% {
        transform: scale(1, 1);
    }

}

@keyframes line-up {
    0% {
        height: 0%;
    }

    100% {
        height: 100%;
    }
}

@keyframes nav-img {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }

}



/* 圖片 */

.stellarnav.desktop>ul {
    perspective: 1000px;
}


.stellarnav.desktop>ul::after {
    content: "";
    display: block;
    width: 25vw;
    padding-bottom: 32%;
    position: absolute;
    top: 50%;
    right: 20%;
    transform: translate(0, -50%);
    background-image: url(https://pic03.eapple.com.tw/xeducetw/icon-09-01.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}



.stellarnav.desktop.active>ul::after {
    animation: nav-img-ac 1s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 0.5s;

}

.stellarnav.desktop.active:has(li:hover)>ul::after {
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}


/*  */
.stellarnav.desktop.active:has(li:nth-of-type(2):hover)>ul::after {
    background-image: url(https://pic03.eapple.com.tw/xeducetw/icon-10.png);
}

.stellarnav.desktop.active:has(li:nth-of-type(3):hover)>ul::after {
    background-image: url(https://pic03.eapple.com.tw/xeducetw/icon-11.png);
}

.stellarnav.desktop.active:has(li:nth-of-type(4):hover)>ul::after {
    background-image: url(https://pic03.eapple.com.tw/xeducetw/icon-12.png);
}

.stellarnav.desktop.active:has(li:nth-of-type(5):hover)>ul::after {
    background-image: url(https://pic03.eapple.com.tw/xeducetw/icon-13.png);
}

.stellarnav.desktop.active:has(li:nth-of-type(6):hover)>ul::after {
    background-image: url(https://pic03.eapple.com.tw/xeducetw/icon-14.png);
}

/*  */










@keyframes nav-img-ac {
    0% {
        opacity: 0;
        clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
        -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
        transform: translate(-20px, -50%);
    }

    30% {
        opacity: 1;
        clip-path: polygon(0 0, 20% 0, 5% 100%, 0 100%);
        -webkit-clip-path: polygon(0 0, 20% 0, 5% 100%, 0 100%);
        transform: translate(-20px, -50%);
    }

    100% {
        opacity: 1;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        transform: translate(0, -50%);
    }

}








/* 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 {
    margin: 0 20px;
    padding: 0;
    color: #010817;
    display: flex;
    text-transform: uppercase;
    position: relative;
    font-size: 16px;
    line-height: 20px;
    height: auto;
    margin: 0px 2%;
    overflow: visible;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
    opacity: 1;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: baseline;
    flex-direction: row;
}

.stellarnav>ul>li>a:hover {
    color: #16274d;
    transition: all 0.3s;
}

.stellarnav>ul>li>a b {
    display: inline;
    line-height: 150%;
    height: auto;
}

.stellarnav>ul>li>a b:nth-child(1) {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-right: 20px;
}

.stellarnav>ul>li>a b:nth-child(2) {
    font-size: 16px;
    word-break: keep-all;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.stellarnav>ul>li>a:hover b:nth-child(1) {
    transition: all 0.5s;
}

.stellarnav>ul>li>a:hover b:nth-child(2) {
    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>li::before {}







/* 選單兼具 */




/* 選單 圖片 */
/* .stellarnav > ul > li:nth-of-type(1):before{
    background-image: url(https://pic03.eapple.com.tw/bricks/icon-45.png);
}
.stellarnav > ul > li:nth-of-type(2):before{
    background-image: url(https://pic03.eapple.com.tw/bricks/icon-46.png);
}
.stellarnav > ul > li:nth-of-type(3):before{
    background-image: url(https://pic03.eapple.com.tw/bricks/icon-47.png);
}
.stellarnav > ul > li:nth-of-type(4):before{
    background-image: url(https://pic03.eapple.com.tw/bricks/icon-48.png);
}
.stellarnav > ul > li:nth-of-type(5):before{
    background-image: url(https://pic03.eapple.com.tw/bricks/icon-49.png);
}
.stellarnav > ul > li:nth-of-type(6):before{
    background-image: url(https://pic03.eapple.com.tw/bricks/icon-50.png);
} */



/* 選單線 延遲 */

.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%;
    opacity: 0;
    transform-origin: 0% 0%;
    align-items: center;
    position: relative;
    padding: 30px;
    justify-content: flex-start;
}

.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: 0s;
}

.stellarnav>ul>li:nth-of-type(2) {
    animation-delay: 0.05s;
}

.stellarnav>ul>li:nth-of-type(3) {
    animation-delay: 0.1s;
}

.stellarnav>ul>li:nth-of-type(4) {
    animation-delay: 0.15s;
}

.stellarnav>ul>li:nth-of-type(5) {
    animation-delay: 0.20s;
}

.stellarnav>ul>li:nth-of-type(6) {
    animation-delay: 0.25s;
}

.stellarnav>ul>li:nth-of-type(7) {
    animation-delay: 0.30s;
}








/* 下拉 */
.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: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: #fff;
    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) {
        font-size: 30px;
    }

    .stellarnav>ul>li::before {
        width: 150px;
        height: 150px;
    }

}



@media screen and (max-width: 1024px) {
    .stellarnav.desktop>ul {}

    .stellarnav>ul>li:nth-of-type(5) {
        margin-left: 0%;
    }

    .stellarnav>ul>li>a b:nth-child(1) {
        font-size: 24px;
    }

    .stellarnav>ul>li::before {
        width: 120px;
        height: 120px;
    }

    .nav-header {
        position: absolute;
        text-align: center;
    }

    .stellarnav.desktop>ul::after {
        right: 10%;
    }
}


@media screen and (max-width: 768px) {
    .stellarnav.mobile.left>ul {
        max-width: 100%;
        background: #fff;
        border: none;
    }

    .nav-header {
        z-index: 0;
    }

    .stellarnav.mobile>ul>li>a {
        display: flex;
        align-items: center;
        padding: 30px 0;
    }

    .stellarnav.mobile.right .close-menu,
    .stellarnav.mobile.left .close-menu {
        color: #fff;
        background: #16274d;
    }

    .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 {}

    .sticky .stellarnav .menu-toggle span.bars span {
        background: #666;
        transition: all 0.3s;
    }

    .nav-header {
        opacity: 1;
        transition: all 0.3s;
    }

    .sticky .nav-header {
        opacity: 1;
        transition: all 0.3s;
    }

    .stellarnav>ul>li::before {
        display: none;
    }

    .stellarnav>ul>li {
        width: 100%;
        padding: 0;
    }

    .stellarnav>ul>li:nth-of-type(3) {
        margin-left: 0;
    }

    .stellarnav.mobile li.open {
        background: transparent;
        padding: 0;
    }

    .stellarnav li li {
        margin-bottom: 0px;
        background: transparent;
    }

    .stellarnav li li:hover {
        background: #000;
    }

    .stellarnav li li a {
        color: #010817;
        font-weight: 1000;
        text-align: center;
    }

    .stellarnav.mobile>ul>li>a.dd-toggle {
        top: 27px;
    }

    .sticky .stellarnav .menu-toggle span.bars span {}

    .header_area.sticky .stellarnav .menu-toggle,
    .stellarnav .call-btn-mobile,
    .stellarnav .location-btn-mobile {
        transition: all 0.5s;
    }

    .stellarnav a.dd-toggle .icon-plus:before {
        border-bottom: solid 3px #010817;
    }

    .stellarnav a.dd-toggle .icon-plus::after {
        border-bottom: solid 3px #010817;
    }
}












/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*Footer*/
.footer {
    border-top: none !important;
    padding: 0;
    height: auto;
    opacity: 1;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background: #000511;
    z-index: 100;
}

.footer_info ul {
    display: flex;
    vertical-align: top;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pageIndex .footer {
    opacity: 1;
    /* animation: footer-text forwards 1s; */
    animation-delay: 2.6s;
}

.footer_menu {
    border-bottom: none !important;
    display: flex;
    justify-content: center;
}

.copy {
    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;
    right: 1%;
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: flex-end;
    justify-content: flex-end;
    transition: all 0.7s;
    z-index: 1;
}

.info_fix_links a i {
    display: flex;
    color: #010e2e;
    font-size: 20px;
    flex-direction: column;
    transform-origin: 5% 100%;
    transition: all 0.5s;
}

.info_fix_links a:hover i {
    transform: scale(1.1);
    transition: all 0.5s;
}


.info_fix:hover {
    transition: all 0.7s;
}


.info_fix_links {
    display: flex !important;
    background: transparent;
    width: fit-content;
    padding-bottom: 0;
    border: 0;
    overflow: visible;
    justify-content: flex-end;
    flex-direction: row;
    background: transparent;
    transform: scale(0, 1);
    opacity: 0;
    padding: 0 20px;
    transform-origin: 100% 50%;
    gap: 10px;
    transition: all 0.5s;
}

.info_fix:hover .info_fix_links {
    transform: scale(1, 1);
    opacity: 1;
    transition: all 0.5s;
}

.info_fix_links::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #010e2e;
    position: absolute;
    bottom: 0;
    right: -5px;
}





.info_fix>span {
    width: 50px;
    height: 50px;
    background-image: url(https://pic03.eapple.com.tw/xeducetw/icon-15.png);
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #010e2e;
    border-radius: 10px;
}

.info_fix:hover>.linksBtn {
    background-image: url(https://pic03.eapple.com.tw/xeducetw/icon-15.png );
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #010e2e;

}

.info_fix>span i {
    display: none !important;
}

.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;
    position: relative;
}

.info_fix_links a::before {
    content: "";
    display: block;
    text-align: center;
    color: #010e2e;
    font-size: 12px;
    position: absolute;
    left: 50%;
    bottom: 100%;
    font-weight: bold;
    transform: translate(-50%, 20px);
    opacity: 0;
    transition: all 0.5s;
}

.info_fix_links a:hover:before {
    transform: translate(-50%, 0px);
    opacity: 1;
    transition: all 0.5s;

}



.info_fix_links a.info_fix_fb::before {
    content: "FACEBOOK";
}
.info_fix_links a.info_fix_line::before {
    content: "LINE";
}

.info_fix_links a.info_fix_ig::before {
    content: "INSTAGRAM";
}

.info_fix_links a.info_fix_mail::before {
    content: "MAIL";
}


.info_fix_links a.info_fix_tiktok::before {
    content: "TIKTOK";
}





.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;
}




#to_top {
    color: #494949;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding-top: 0;
    transition: all 0.7s;
}

#to_top:hover i {
    transform: translate(0, -5px);
    transition: all 0.7s;
}

#to_top i:before,
#to_top i:after {
    background: #494949;
}



@keyframes footer-text {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

}


.info_fix_links a.info_fix_phone,
.info_fix_links a.info_fix_tel {
    display: none;
}














@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: 1024px) {
    .info_fix_links a.member {
        right: 0%;
    }
}

@media screen and (max-width: 768px) {
    .footer_info ul{
        padding-bottom: 50px;
    }
    .footer_info li p {
    margin-right: 0;
}
    .info_fix {
        right: 0;
        bottom: 0;
        width: 100%;
        background: #fff;
    }

    .info_fix_links {
        width: 100%;
        justify-content: space-between;
        flex-direction: row;
         transform: scale(1, 1);
    opacity: 1;
    }

    .footer_menu a {
        display: inline-block;
        padding: 5px 11px;
        border: 0;
        margin: 10px 5px;
        font-size: 14px;
        line-height: 100%;
        color: #fff;
        background: transparent;
        border-bottom: 1px #fff solid;
        width: 43%;
    }
    .info_fix_links::before {
        display: none;
}

    .footer_info li:nth-child(1) {
        flex-wrap: wrap;
    }

    .footer_menu {
        flex-wrap: wrap;
    }

    .info_fix_links a.member {
        position: relative;
        top: auto;
        right: auto;
    }

    .info_fix_links a i.fa-user::after {
        display: none;
    }

    .info_fix>span{
        display: none;
    }

}




/* 開場MENU 浮動 */
.stellarnav .menu-toggle {
    opacity: 1;
}

.pageIndex .stellarnav .menu-toggle {
    animation: action-menu 2s forwards cubic-bezier(0.73, 0.08, 0.11, 0.99);
    animation-delay: 9s;
    opacity: 0;
}



.info_fix {
    opacity: 1;
}

.pageIndex .info_fix {
    animation: action-footer 2s forwards cubic-bezier(0.73, 0.08, 0.11, 0.99);
    opacity: 0;
    animation-delay: 9s;
}


@keyframes action-footer {
    0% {
        opacity: 0;
        transform: translate(100%, 0%);
    }

    100% {
        opacity: 1;
        transform: translate(0%, 0%) scale(1);
    }

}








/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/

.banner {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 80%;
    background-color: transparent;
}

.banner::after {
    content: "";
    width: 90%;
    height: 0;
    background-color: transparent;
    padding-bottom: 75%;
    background-image: url(https://pic03.eapple.com.tw/xeducetw/banner-05.png);
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
    position: absolute;
    top: 100px;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, 0px);
    animation: banner-show 3s linear forwards;
}

.banner::before {
    content: "";
    width: 90%;
    height: 0;
    background-color: transparent;
    padding-bottom: 75%;
    background-image: url(https://pic03.eapple.com.tw/xeducetw/banner-06.png);
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
    position: absolute;
    top: 100px;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, 0px);
}


@keyframes banner-show {
    0% {
        filter: grayscale(0%);
    }

    100% {
        filter: grayscale(100%);
    }

}










.banner h5 {
    display: flex;
    color: #fff;
    font-size: 15vw;
    font-weight: 100;
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translate(0%, -50%);
    flex-direction: column;
    align-items: flex-start;
}

.banner h5::after {
    content: "最新消息";
    display: block;
    letter-spacing: 60px;
    color: #fff;
    font-family: "微軟正黑體";
    font-size: 2vw;
    font-weight: bold;
}


.banner.banA {}

.banner.banB {
    display: none;
}

.banner.banC {
    display: none;
}

.banner.banD {}

.banner.banE {}

.banner.banblog {}



@media screen and (max-width: 768px) {
    .banner {
        min-height: unset;
    }

    .banner h5::after {
        letter-spacing: 30px;
        font-size: 16px;
    }

    .banner::before {
        width: 95%;
        top: 20px;
    }

    .banner::after {
        width: 95%;
        top: 20px;
    }
}




@media screen and (max-width: 500px) {}





/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*購物車設定*/
/* 產品的看更多按鈕設定 */
.products-list .more {
    border: 1px solid #ADA17E !important;
    color: #ADA17E;
}

.products-list a:hover .more {
    background: #ADA17E;
    border-color: #ADA17E;
    color: #ffffff;
}


/*外層*/
.product-layer-two li a {
    color: #ADA17E;
    border: 1px solid #ADA17E;
    transition: all 0.3s;
}

.product-layer-two li:hover>a {
    background: #ADA17E;
    color: #fff;
}

.product-layer-two li.active>a {
    background: #ADA17E;
    color: #fff;
    font-weight: normal;
}

/*內層*/
.lastPage {
    background: #ADA17E;
}

.nextaction {
    background-color: #ADA17E;
}

.lastaction {
    color: #fff;
    background-color: #ADA17E;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*文章設定*/
/*一排呈現*/
.blog_back a.article_main_header_area_back {
    background: #010e2e;
}

.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;
}

.accordion li+li .link {
    border: 0;
}

.blog_le .accordion>li {
    width: fit-content;
    position: relative;
    text-align: center;
    transition: all 0.3s;
}

.blog_box_edit {
    line-height: 180%;
    text-align: justify;
}

h4.blog_category_title {
    text-align: justify;
    color: #fff;
    display: none;
}

.link a {
    width: 100%;
    display: block;
    padding: 15px 10px;
}

.accordion li .link {
    padding: 0;
}

.blog_page .main_part {
    width: 100%;
    max-width: 100%;
    margin: auto;
    padding: 0px;
    margin-top: 5vh;
}

.clearfix:before,
.clearfix:after {
    display: none;
}




/* 選單 */
.blog_box {
    min-height: 20vw;
    padding: 0px;
    display: flex;
    flex-direction: column;
}

.blog_le {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    /* padding: 0; */
}

h5.blog_le_t {
    display: none;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    font-family: serif;
    letter-spacing: 2px;
    margin-bottom: 80px;
    width: auto;
    font-family: 'Noto Serif TC', 'Zen Maru Gothic', sans-serif, arial;
}

.blog_search {
    width: 90%;
    position: relative;
    margin-bottom: 60px;
    display: flex;
    justify-content: flex-end;
    margin: 0 auto;
}

.blog_search form {
    width: 20%;
    position: relative;
}

.blog_le .accordion {
    margin: auto;
    overflow: visible;
    width: 90%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-around;
    padding: 10px 0 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    border-bottom: 1px #ccc solid;
}

.accordion li .link a {
    font-size: 18px;
    color: #353535;
    font-weight: 800;
    padding: 30px 30px;
    border: 0;
    transition: all 0.3s;
}

.accordion li .link a::before {
    content: "";
    display: block;
    width: 1px;
    background: linear-gradient(90deg, #A97D45, #E8D0AA, #A97D45);
    height: 5px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.accordion li .link a::after {
    content: "";
    display: block;
    width: 1px;
    height: 5px;
    background-color: #010E2E;
    position: absolute;
    right: 50%;
    bottom: 0;
    text-align: left;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}



.accordion li .link a:hover:before,
.accordion li .link a:hover:after,
.accordion>li.on_this_category .link a::before,
.accordion>li.on_this_category .link a::after {
    width: 50%;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.blog_le .accordion>li:hover .link a,
.blog_le .accordion>li.on_this_category .link a {
    color: #010E2E !important;
    transition: all 0.3s;
}




.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 #c8c8c8 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;
}








/* 內容 */
.blog_ri {
    width: 90%;
    padding: 0;
    min-height: 75vh;
    margin: 0 auto;
}

.blog_subbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    flex-direction: row;
    align-content: center;
}

.blog_list_ri h5 {
    color: #010E2E;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.blog_s .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);
    filter: grayscale(0);
    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: 0;
    width: 100%;
    line-height: 0;
    padding-bottom: 100%;
    overflow: hidden;
    position: relative;
}

.subbox_item {
    width: calc((100% - 40px) / 3);
    margin: 0;
    margin-bottom: 50px;
}

.subbox_item a {
    display: flex;
    position: relative;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    background: transparent;
    flex-direction: row;
}

.blog_list_ri {
    width: 100%;
    margin-left: 0;
    padding: 20px;
    padding-top: 0;
    min-height: 150px;
    transition: all 0.3s;
}

.subbox_item a:hover .blog_list_ri {
    opacity: 1;
    transition: all 0.3s;
}

.blog_list_le img {
    max-width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    filter: grayscale(0.7);
    transform: translate(-50%, -50%);
}

.blog_list_ri em {
    font-size: 14px;
    color: #353535;
    font-style: normal;
    display: block;
    margin: 0;
    position: absolute;
    bottom: 0;
    right: 10%;
}

.blog_list_ri p {
    font-size: 15px;
    color: #353535;
    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 {
}


.blog_back a.article_btn_back {
    background: #010e2e;
}

.related_list li a img {
    position: absolute;
    max-width: 650px;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}



@media screen and (max-width: 1024px) {
    .subbox_item {
        width: calc((100% - 20px) / 2);
    }
}


@media screen and (max-width: 960px) {
    .subbox_item {
        border-bottom: 0;
    }
}

@media screen and (max-width: 768px) {

    .subbox_item {
        border: 0;
    }

    .subbox_item img {
        transform: translate(-50%, -50%);
        filter: none;
        transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
    }

    .subbox_item a .blog_list_ri {
        opacity: 1;
        position: relative;
        transition: all 0.3s;
    }

    .blog_page .main_part {
        padding: 0 5%;
    }

    .blog_list_ri em {
        bottom: 25px;
    }

    .blog_search {
        width: 100%;
        margin-bottom: 0px;
    }

    .blog_search form {
        width: 100%;
    }
}


@media screen and (max-width: 768px) {

    .subbox_item {
        width: 100%;
    }

}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*主分類頁面*/
.album_page .main_part,
.album_class_page .main_part,
.album_info_page .main_part {
    max-width: 1400px;
}

.show-list .item:hover .show_name {
    color: #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%;
    margin: auto;
    padding: 100px 0;
    background-image: url(https://pic03.eapple.com.tw/bricks/bg-13.png);
}

.blank_letter {
    font-family: "Noto Sans", system-ui;
    padding-top: 0px;
    font-size: 24px;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}

.blank_letter.i::before {
    content: "FORM";
    display: block;
    color: #fff;
    font-size: 150px;
    font-weight: 500;
    font-family: "Anton SC";
}

.blank_letter.i {
    text-align: left;
}

.list_before.info li {
    color: #fff;
    display: flex;
    margin: 10px 0;
    padding-left: 0;
}

.contact_form li .form__label {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-left: 0;
    padding-right: 0;
    vertical-align: top;
    color: #fff;
    margin: 10px 0 5px;
}

.contact_content {
    margin: auto;
    padding: 0;
    max-width: 80%;
}

.contact_content form {
    display: flex;
    justify-content: space-between;
}

.contact_content .information_left {
    width: 30%;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact_content .information_right {
    width: 43%;
    padding-left: 0;
    padding: 3% 7%;
    background: #00000066;
    border: 1px #fff solid;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.clearfix:before,
.clearfix:after {
    display: none;
}

.contact_form {
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 15px;
    color: #fff;
}

.contact_form li input.noborder {
    border: 1px #ddd solid;
    background-color: #ffffff1f;
}

.contact_form li textarea.noborder {
    border: 1px #ddd solid;
    background-color: #ffffff1f;
}


.contact_form li {
    padding: 0;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

.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: #fff;
}

.contact_form li.last cite {
    background: #cf4c3e;
    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/bricks/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/bricks/icon-15.png);
    width: 30px;
    height: 30px;
    background-size: contain;
}