@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Noto+Sans+TC:wght@100..900&display=swap');

/*網站全域設定/＝＝＝＝＝*/
/*
    #E1D9D0 /*網站主要色系
    #E1CAC5 /*網站輔助色系1
    #f9f6f4; /*網站輔助色系2*/

/*反白顏色*/
::-moz-selection {
    background-color: #3e3834;
    color: #fff;
}

::selection {
    background-color: #3e3834;
    color: #fff;
}

:root {
    --MainColor: #3e3834;
    --SubColor: #c8c9ca;
    --SubColor02: #717071;
    --SubColor03: #d984aa;
    --SFont: "Noto Sans TC", sans-serif;
    --SFontEN: "Jost", sans-serif;
    --FontColor: #595757;
    --f54: 54px;
    --f48: 48px;
    --f42: 42px;
    --f40: 40px;
    --f36: 36px;
    --f32: 32px;
    --f28: 28px;
    --f24: 24px;
    --f22: 22px;
    --f20: 20px;
    --f18: 18px;
    --f17: 17px;
    --f16: 16px;
}

@media (max-width:1024px) {
    :root {
        --f54: 48px;
        --f48: 40px;
        --f42: 38px;
        --f40: 36px;
        --f36: 32px;
        --f32: 28px;
        --f28: 24px;
        --f24: 22px;
        --f22: 20px;
    }
}

@media (max-width:768px) {
    :root {
        --f54: 36px;
        --f48: 32px;
        --f42: 30px;
        --f40: 28px;
        --f36: 26px;
        --f32: 24px;
        --f28: 20px;
        --f24: 20px;
        --f20: 18px;
        --f18: 17px;
        --f17: 16px;
    }
}

@media (max-width:600px) {
    :root {
        --f54: 32px;
        --f48: 28px;
        --f42: 26px;
        --f40: 24px;
        --f36: 22px;
        --f32: 20px;
        --f28: 18px;
        --f24: 18px;
        --f22: 18px;
        --f20: 17px;
        --f18: 16px;
        --f17: 15px;
        --f16: 15px;
    }
}

@media (max-width:375px) {
    :root {
        --f54: 28px;
        --f48: 24px;
        --f42: 22px;
        --f40: 20px;
        --f36: 18px;
        --f32: 18px;
        --f28: 17px;
        --f24: 17px;
        --f22: 17px;
        --f20: 16px;
        --f18: 15px;
    }
}


&::-webkit-scrollbar {
    background: var(--SubColor);
    width: 7px;
}

&::-webkit-scrollbar-button {
    display: none;
    background: var(--SubColor);
    border-radius: 0;
}

&::-webkit-scrollbar-track-piece {
    background: var(--SubColor);
}

&::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: var(--MainColor);
}

&::-webkit-scrollbar-track {
    box-shadow: transparent;
}

body {
    font-family: var(--SFont);
    color: var(--MainColor);
}

.path {
    display: none;
}

.main_part {
    padding: 80px 20px;
}

/*頁碼*/
.page strong,
.page a {
    border-radius: 0;
    color: #555;
    border: 1px #555 solid;
}

.page strong,
.page a:hover {
    background: #333;
}


/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/
.pageIndex .header_area {
    position: fixed;
    background: transparent;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.pageIndex .header_area.sticky {
    opacity: 1;
    background: #ffffffab;
    /* box-shadow: 0 2px 5px #4343434f; */
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.header_area {
    background: #fff;
    box-shadow: 0 0 14px 0px #00000038;
    transition: all 0.5s ease-in-out;
    padding: 0;
}

.header_area.sticky {
    background: rgb(255 255 255 / 84%);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

/*上方選單右邊設定 臉書/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}
*/
.me_tp_features {
    color: var(--SubColor);
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.me_tp_features a {
    color: var(--SubColor);
}

.me_tp_features a.tp_btn_notice {
    margin-right: 16px;
}

.tp_links {
    display: flex;
    justify-content: flex-end;
}

.tp_links a {
    font-size: 16px;
    color: #fff;
    margin: 0 4px;
}

.tp_links a.me_tp_call {
    order: 1;
    letter-spacing: 1px;
    margin-left: 14px;
}

.tp_links .fa-phone-volume::before {
    content: "加盟專線";
    font-family: var(--SFont);
    font-weight: 400;
}

.tp_links .fa-phone-volume::after {
    content: "0918207891";
    font-family: var(--SFontEN);
    font-weight: 500;
    font-size: var(--f20);
}

/*電腦LOGO
.nav-brand {}
*/
.nav-header {
    max-width: 115px;
    padding: 8px;
}

/*手機LOGO
.nav-brand-m {}
*/


/* 商品下拉超過30個變大 */
.stellarnav.desktop li.bigMenu>ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    left: 0;
    width: 100%;
    position: fixed;
    padding: 20px;
}

.stellarnav.desktop li.bigMenu ul ul {
    top: 100%;
    left: 0;
    width: 100%;
    background: #efefef;
    height: auto;
    max-height: 300px;
    overflow: auto;
}

.stellarnav.desktop li.bigMenu ul ul li {
    margin: 0;
}

.stellarnav.hasBigMenu li.bigMenu li.has-sub>a:after {
    border-left: 6px solid transparent;
    border-bottom: unset;
    border-right: 6px solid transparent;
    border-top: 6px solid #898989;
    right: 5px;
}

/* 主分類超過30個但次分類直接顯示 
.stellarnav.desktop li.bigMenu>ul{grid-gap: 10px;}
.stellarnav.desktop li.bigMenu li{border: 0;}
.stellarnav.desktop li.bigMenu>ul>li>a{border: 1px solid #ddd;}
.stellarnav.desktop li.bigMenu ul ul{display: block !important; position: relative; top: 0; background: unset; border: 0;}
.stellarnav.desktop li.bigMenu ul ul li{border: 0;}
 主分類超過30個但次分類直接顯示-結束 */

/* 商品下拉超過30個--結束 */

/*header*/
.navigation {
    align-items: center;
}

.main_header_area {
    position: relative;
}

.main_header_area:before {
    content: " ";
    top: 0;
    position: absolute;
    left: 0;
    height: 45px;
    background: var(--MainColor);
    width: 100%;
}

.main_header_area .container {
    max-width: 90%;
}

.stellarnav>ul>li>a {
    color: var(--MainColor);
    font-size: var(--f16);
    letter-spacing: 1px;
    font-weight: bold;
    padding: 3px 14px;
    transition: all 0.3s;
}

.stellarnav>ul>li:hover>a {
    color: var(--SubColor02);
}

.stellarnav li.has-sub>a:after {
    position: absolute;
    top: 45%;
    right: 5px;
    height: 7px;
    width: 7px;
    display: block;
    border-style: solid;
    border-width: 0 1px 1px 0;
    border-color: transparent var(--FontColor) var(--FontColor) transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.stellarnav ul ul li a {
    transition: all .3s;
}
.stellarnav ul ul li a:hover {
    background: var(--MainColor);
    color: var(--SubColor);
}
.stellarnav li li {    border: none;}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*footer*/
.footer {
    background: var(--SubColor02);
    padding-top: 60px;
    background-image: url(https://pic03.eapple.com.tw/jhendian/footer_bg.jpg);
    background-image: linear-gradient(87deg, #141416b3 40%, #141416b3 65%), url(https://pic03.eapple.com.tw/jhendian/footer_bg.jpg);
    overflow: hidden;
    background-size: cover;
}

.footer:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    background: url(https://pic03.eapple.com.tw/rideodie/100-90-5.png);
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    -webkit-animation: noise 1.5s steps(5) alternate infinite;
    animation: noise 1.5s steps(5) alternate infinite;
}

@keyframes noise {
    0% {
        background-position: -88px 166px
    }

    20% {
        background-position: 222px -333px
    }

    40% {
        background-position: -111px 444px
    }

    60% {
        background-position: 33px -66px
    }

    80% {
        background-position: -138px 212px
    }

    100% {
        background-position: 317px -197px
    }
}

/*.footer:after {
    content: "加盟專線：0918207891 加盟專線：0918207891 加盟專線：0918207891";
    white-space: nowrap;
    color: rgb(70 69 69 / 92%);
    text-shadow: 1px 1px 0 #00000008, -1px 1px 0 #00000008, 1px -1px 0 #00000008, -1px -1px 0 #00000008;
    opacity: 1;
    font-size: 12vw;
    position: absolute;
    font-family: var(--SFontEN);
    z-index: -1;
    text-align: left;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    animation: ee 30s infinite linear;
    width: 100%;
}*/
@keyframes ee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.footer_info {
    grid-template-columns: 190px 1fr;
    padding-right: 0;
    justify-items: stretch;
    align-items: start;
}

.footer_info ul {
    display: flex;
    justify-content: flex-end;
}

.footer_info li:nth-child(1) {
    margin-right: 50px;
}

.footer_info li:nth-child(2) {
    width: 35%;
}

.footer_info li:before {
    font-size: var(--f18);
    font-family: var(--SFontEN);
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 2px;
    display: block;
    color: #fff;
}

.footer_info li:nth-child(1):before {
    content: "Contacts";
}

.footer_info li:nth-child(2):before {
    content: "Information";
}

.footer_menu a:nth-child(1) {
    display: none;
}

.footer_menu {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.footer_menu a {
    background: transparent;
    border: none;
    color: var(--MainColor);
    font-size: 15px;
    font-weight: 500;
    padding-left: 0;
    color: #fff;
}

.footer_menu a:hover {
    background: transparent;
}

.footer_info li p,
.footer_info li p a {
    color: var(--MainColor);
    font-weight: 400;
    font-size: 15px;
}

.footer_info li p.tel:before {
    content: '加盟專線：';
}

.box_link {
    left: 0;
    max-width: 170px;
    top: 100%;
    flex-direction: row;
}

.box_link a {
    border: none;
    background: #716f6f8a;
    color: #fff;
    font-size: 14px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px;
    margin-top: 12px;
}

.copy {
    padding: 40px 20px;
    border-top: none;
    margin-top: 34px;
    position: relative;
    z-index: 9;
}

.footer_logo {
    max-width: 175px;
}



.footer_info li p,
.footer_info li p a {
    color: #fff;
}

.footer_logo>a {
    background: url(https://pic03.eapple.com.tw/jhendian/footer_logo.svg) no-repeat;
    display: inline-block;
    width: 100%;
    height: 160px;
    background-size: contain;
}

.footer_logo img {
    display: none;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.product_page .main_part {
    max-width: 1500px;
}

/* .product_info_page .main_part { max-width:1200px;} */

.product_page .show_content,
.product_info_page .show_content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
}

.product_page .product_menu_list {
    position: relative;
    width: 220px;
    letter-spacing: 1px;
    /*border-right: 1px solid #ccc;*/
    min-height: 30vw;
}

.product_page .products-list,
.product-wrapper {
    width: calc(100% - 270px);
}

ul.page {
    width: 100%;
}

.product-layer-two li ul {
    position: static;
    margin-top: 5px;
    /*display:block !important;*/
    width: 100%;
    margin-left: 0;
}

.product-layer-two li:hover ul {
    border: none !important;
    /*display:block !important;*/
}

.product-layer-two li li {
    display: block;
    padding: 0;
    transition: all ease .3s;
}

.product-layer-two li li a {
    padding: 5px 10px;
}

.product-layer-two li li:hover>a {
    background: #fff;
    color: #ad925e;
}

.product-layer-two>li {
    width: 100%;
    max-width: 100%;
    padding: 0;
    text-align: left;
    border-bottom: 1px dotted #ccc;
    padding-bottom: 5px;
}

.product-layer-two>li ul>li+li {
    margin-top: 5px;
}

.product_info_page .product-layer-two {
    display: none;
}

.product_info_page .products-list,
.product-wrapper {
    width: 100%;
}

.product-layer-two li li:hover {
    margin-left: 15px;
}

.product-layer-two li li>a:before {
    content: "";
    position: absolute;
    width: 12px;
    height: 8px;
    background: transparent;
    left: 0;
    margin-left: -20px;
    top: 50%;
    margin-top: -4px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.product-layer-two li li:hover>a:before {
    background: #ad925e;
}

.product_info_page .half_box {
    width: 100%;
    float: none;
    padding-right: 0;
}

.product_info_page .half_box li.btn_blankTop {
    margin-top: 50px;
    justify-content: space-between;
    display: flex;
}

.product_info_page .half_box li.btn_blankTop input {
    width: calc(50% - 10px);
    background-image: none;
    padding: 0;
    text-align: center;
}


/*購物車更動*/
.product-layer-two>li {
    border-bottom: none;
    padding: 5px 0;
}

.product-layer-two>li:before {
    content: " ";
    width: 100%;
    height: 1px;
    background: var(--SubColor);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 0.2s;
}

.product-layer-two>li:hover:before {
    animation-name: line_move;
    animation-duration: 0.5s;
}

@keyframes line_move {
    30% {
        left: 100%;
        width: 0
    }

    40% {
        width: 0;
        left: 0
    }

    100% {
        left: 0;
        width: 100%
    }
}


.product-layer-two li a {
    color: var(--MainColor);
    background: transparent;
    border: none;
}

.product-layer-two li.active a {
    font-weight: bold;
    border: none;
}

/*顏色*/
.products-list .more {
    border: 1px solid var(--FontColor);
    color: var(--FontColor);
}

.products-list .item a:hover .more {
    background: var(--FontColor);
}

.products-list .price b {
    color: #000;
}

/*購物車/內層＝＝*/
.product_info_page .main_part {
    width: 90%;
}

.sidebarBtn {
    border: none;
}

.product_info li .txt_box {
    color: var(--FontColor);
}


/*按鈕顏色*/
.inquiry_a1 {
    background: var(--MainColor);
}

.inquiry_a2 {
    background: #222;
}

.inquiry_a3 {
    background: var(--SubColor02);
}

.inquiry_a1:hover,
.inquiry_a2:hover,
.inquiry_a3:hover {
    background: #222;
}

.lastaction {
    color: var(--MainColor);
    background-color: #f2f2f2;
}

.nextaction {
    background-color: var(--MainColor);
}

.lastPage {
    background: var(--MainColor);
}

/*相關推薦*/
.prod_related {
    padding: 80px 30px;
}

.prod_related h6 span:before {
    font-size: var(--f28);
    color: var(--MainColor);
}


@media screen and (max-width: 1200px) {}

@media screen and (max-width: 980px) {}

@media screen and (max-width: 768px) {

    .product_menu_list,
    .products-list,
    .product-wrapper {
        width: 100%;
    }

    .product-layer-two {
        margin-right: 0;
        grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
        grid-gap: 5px;
    }

    .product_page .product-layer-two,
    .product_page .products-list {
        width: 100%;
        border-right: none;
    }

    .product_page .product_menu_list>h5 {
        display: block;
    }

    .product_page .show_content>a {
        order: 1;
    }

    .product_page ul.products-list {
        order: 2;
    }

    .product_page ul.page {
        order: 3;
    }

    .product_page .product_menu_list {
        width: 100%;
        order: 0;
        min-height: unset;
    }
}

@media screen and (max-width: 600px) {}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#content_main {    margin: 0;}
.bannerindex {    position: relative;    height: auto;}
.swiper-banner {    position: static;    margin: 0;    height: auto;}

/* .swiper-slide img { height:auto;} */
@media screen and (max-width: 768px) {
    .bannerindex {        padding: 0;        margin: 0;    }
}

.swiper-banner .swiper-slide img {    opacity: 1 !important;}
.pageIndex::before {
    content: "";
    pointer-events: none;
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(https://pic03.eapple.com.tw/jhendian/01cover_bg.jpg);
    background-position: left;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10000;
    animation: action-open2 2s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 2.2s;
}

.pageIndex #page::before {
    content: "";
    pointer-events: none;
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(https://pic03.eapple.com.tw/jhendian/01cover_bg.jpg);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    background-position: right;
    animation: action-open 2s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 2.2s;
}

@keyframes action-open {
    0% {
        opacity: 1;
        left: 20%;
    }

    50% {
        opacity: 1;
        left: 55%;
    }

    100% {
        opacity: 0;
        left: calc(100vw - 2vw);
    }

}

@keyframes action-open2 {
    0% {
        opacity: 1;
        right: 20%;
    }

    50% {
        opacity: 1;
        right: 55%;
    }

    100% {
        opacity: 0;
        right: calc(100vw - 2vw);
    }

}

.pageIndex::after {
    content: "";
    pointer-events: none;
    display: block;
    width: 10%;
    height: 0;
    padding-bottom: 100%;
    background-image: url(https://pic03.eapple.com.tw/jhendian/logo.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0, 1);
    z-index: 100000000;
    animation: action-logo-1 3s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    opacity: 0;
}

.pageIndex #page::after {
    content: "";
    pointer-events: none;
    display: block;
    width: 25%;
    height: 0;
    padding-bottom: 60%;
    background-image: url(https://pic03.eapple.com.tw/jhendian/logo-2.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: -700px;
    position: fixed;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 90000;
    opacity: 0;
    animation: logo-2 2.2s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 1s;
}


@keyframes action-bg {
    0% {        opacity: 1;    }
    100% {        opacity: 0;    }
}

@keyframes action-logo-1 {
    0% {
        transform: translate(-50%, -50%) scale(0, 1);
        opacity: 0;
        left: 50%;
    }

    50% {
        transform: translate(-50%, -50%) scale(1, 1);
        opacity: 1;
        left: 50%;
    }

    68% {
        transform: translate(-50%, -50%) scale(1, 1);
        opacity: 1;
        left: 35%;
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1, 1);
        left: 35%;
    }
}

@keyframes logo-2 {
    0% {
        background-position: -700px;
        left: 50%;
        opacity: 0;
    }

    30% {
        opacity: 0;
    }

    70% {
        background-position: center;
        left: 60%;
        opacity: 1;
    }

    100% {
        background-position: center;
        left: 60%;
        opacity: 0;
    }
}


.bannerindex .swiper-slide.swiper-slide-active:nth-child(1):before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 14vw;
    height: 100%;
    z-index: 10;
    background: url(https://pic03.eapple.com.tw/jhendian/01cover-1ban.png) no-repeat;
    animation: bg 3s;
    animation-fill-mode: both;
    background-size: auto 100%;
    animation-delay: 1.5s;

}

.bannerindex .swiper-slide.swiper-slide-active:nth-child(1)::after {
    content: "";
    display: block;
    position: absolute;
    background-image: url(https://pic03.eapple.com.tw/jhendian/01cover-1text.png);
    width: 24%;
    height: 0;
    padding-bottom: 9%;
    background-repeat: no-repeat;
    z-index: 10000;
    pointer-events: none;
    transform-origin: 50% 0;
    opacity: 0;
    animation: text 2s forwards cubic-bezier(0.73, 0.08, 0.11, 0.99);
    animation-delay: 2s;
    transition: all 0.5s;
    left: 17vw;
    background-size: contain;
    top: 70%;
    background-position: left;
    mix-blend-mode: overlay;
}


.bannerindex .swiper-slide.swiper-slide-active:nth-child(2)::before {
    content: "";
    display: block;
    position: absolute;
    background-image: url(https://pic03.eapple.com.tw/jhendian/01cover-21.png);
    width: 40%;
    height: 0;
    padding-bottom: 4%;
    background-repeat: no-repeat;
    z-index: 10000;
    pointer-events: none;
    transition: all 0.5s;
    right: 4vw;
    top: 70%;
    background-size: contain;
    background-position: left;
    /*mix-blend-mode: overlay;*/
    animation: text-left 1.5s;
    animation-delay: .5s;
    animation-fill-mode: both;
}

.bannerindex .swiper-slide.swiper-slide-active:nth-child(2)::after {
    content: "";
    display: block;
    position: absolute;
    background-image: url(https://pic03.eapple.com.tw/jhendian/01cover-22.png);
    width: 40%;
    height: 0;
    padding-bottom: 4%;
    background-repeat: no-repeat;
    z-index: 10000;
    pointer-events: none;
    transition: all 0.5s;
    right: 4vw;
    background-size: contain;
    top: 77%;
    background-position: left;
    animation: text-right 1.5s;
    animation-delay: .5s;
    animation-fill-mode: both;
}

@keyframes bg {
    0% {        opacity: 0;        width: 35vw;    }
    100% {        opacity: 1;        width: 14vw;    }
}

@keyframes text {
    0% {        transform: scale(1, 0.8);        opacity: 0;    }
    100% {        transform: scale(1, 1);        opacity: 1;    }
}

@keyframes text-left {
    0% {        opacity: 0;        transform: translateX(2vw);    }
    100% {        opacity: 1;        transform: translateX(0vw);    }
}

@keyframes text-right {
    0% {        opacity: 0;        transform: translateX(-2vw);    }
    100% {        opacity: 1;        transform: translateX(0vw);    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {
    position: relative;
    height: min(max(40vw, 220px), 700px);
    overflow: hidden;
    background: var(--MainColor);
}

.banner:before {
    content: "";
    background-image: linear-gradient(180deg, #00000000 40%, rgb(0 0 0 / 31%) 65%), url(https://pic03.eapple.com.tw/jhendian/ban.jpg);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    animation-duration: 5s;
    background-size: cover;
    background-position: center;
    animation: bgScroll 30s linear infinite;
    width: 110%;
    height: 100%;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
}

.banner.banC:before {
    background-image: linear-gradient(180deg, #00000000 40%, rgb(0 0 0 / 31%) 65%), url(https://pic03.eapple.com.tw/jhendian/04join_ban.jpg);
}

.banner.banE:before {
    background-image: linear-gradient(180deg, #00000000 40%, rgb(0 0 0 / 31%) 65%), url(https://pic03.eapple.com.tw/jhendian/ban-e.jpg);
}

.banner.banF:before {
    background-image: linear-gradient(180deg, #00000000 40%, rgb(0 0 0 / 31%) 65%), url(https://pic03.eapple.com.tw/jhendian/ban-f.jpg);
}

.banner:after {
    content: "Shoe cleaning and restoration | Bag restoration";
    width: 100%;
    max-width: unset;
    height: fit-content;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    animation: ee 30s infinite linear;
    line-height: 1.2;
    white-space: nowrap;
    color: rgb(10 10 10);
    text-shadow: 1px 1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, -1px -1px 0 #fff;
    opacity: .1;
    font-size: 27vw;
    font-family: "Jost", sans-serif;
    font-weight: bold;
    color: #000000cf;
    mix-blend-mode: difference;
}


@keyframes bgScroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    50% {
        -webkit-transform: translateX(-5%);
        transform: translateX(-5%);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.banner h5 {
    padding: 0 5%;
    margin: auto;
    position: relative;
    text-align: left;
    width: calc(1200px + 10%);
    color: #fff;
    font-size: 22px;
    font-size: min(max(3vw, 18px), 22px);
    z-index: 1;
}

.banner h5:before {
    color: #fff;
    font-size: 120px;
    line-height: 100%;
    content: "COLLECTION";
    display: block;
    font-family: "Jost", sans-serif;
    font-size: min(max(7vw, 38px), 120px);
}

body.services_page.bodyDesktop .banner h5:before {
    content: "SERVICE / PROCESS";
}

.banner.banblog h5:before {
    content: "NEWS";
}

.banF h5:before {
    content: "PRODUCT";
}

.banE h5:before {
    content: "OUR WORK";
}

.banC h5:before {
    content: "JION US";
    line-height: 1.2;
}

.banner.banA {}

.banner.banB {}

.banner.banC {}

.banner.banD {}

.banner.banE {}

.banner.banblog {}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*聯絡我們-編輯器*/
.contact_editbox {
    padding: 0;
}

.contact_content {
    max-width: 1200px;
    padding: 80px 30px;
}

.contact_content .information_left {
    display: none;
}

.contact_content .information_right {
    width: 90%;
    padding: 0;
}

.note {
    display: block;
}

.blank_letter {
    text-align: center;
    font-family: var(--SFont);
    letter-spacing: 1px;
    font-weight: 500;
    color: var(--MainColor);
}

.contact_form li.last cite {
    background: var(--MainColor);
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/
.blog_subbox {    grid-template-columns: repeat(3, 1fr);}

.module_i_news li a,
.subbox_item a {
    grid-template-columns: 1fr;
    grid-gap: 5px;
    padding: 5px;
    padding-bottom: 35px;
    border-bottom: 1px #8888883d solid;
    -webkit-clip-path: inset(0 0 -0.2em);
    clip-path: inset(0 0 -0.2em);
}
.module_i_news li a:hover, .subbox_item a:hover {  border-bottom: 1px #888888 solid;}

.subbox_item a:before {
    font-weight: normal;
    font-size: 14px;
    left: 10px;
    color: var(--MainColor);
    right: 0;
    opacity: 1;
}
.blog_list_le {    overflow: hidden;}

.blog_list_ri p {
    -webkit-line-clamp: 3;
}

.module_i_news li a:after,
.subbox_item a:after {
    pointer-events: none;
    background: transparent;
    border: none;
    line-height: 1;
    text-rendering: auto;
    top: 95%;
    bottom: 10px;
    left: 94%;
    opacity: 1;
    content: "→";
    font-size: 14px;
    color: #2d2d2d;
    width: 5%;
}

.i_blog_le img,
.blog_list_le img {
    margin: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: opacity 450ms, transform 900ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.module_i_news li a:hover img,
.blog_list_le:hover img {
    transform: scale(1.2) translate3d(0, 0, 0);
}

.subbox_item a:hover:before,
.module_i_news li a:hover:before {
    transition: opacity 650ms, transform 650ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.module_i_news li a:hover:after, .subbox_item a:hover:after {
    animation: mo_arrow 800ms cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  }
  .subbox_item a:hover:before, .subbox_item a:hover:after {  opacity: 1;  transition: all .5s;}
  @keyframes mo_arrow{
    40%,50%{opacity:0}
    43%{transform:translateX(105%) scaleY(0.1)}
    44%,50%{transform:translateX(-145%) scaleY(0.1)}
    100%{transform:translateX(0) scaleY(1)}
  }

/*側邊*/
.blog_search input[type=search] {
    border: none;
    border-bottom: solid 1px #888;
    border-radius: 0;
}

.blog_search input[type=search] {
    border-radius: 0;
}

.blog_le .accordion {
    border-bottom: none;
    border-radius: 0;
    border: none;
}

h5.blog_le_t {
    font-weight: 600;
    color: var(--MainColor);
    letter-spacing: 0;
}

.blog_le .accordion>li:hover .link a,
.blog_le .accordion>li.on_this_category .link a {
    color: var(--MainColor) !important;
}

.blog_le .accordion>li:hover,
.blog_le .accordion>li.on_this_category {
    background: transparent !important;
}

.blog_le .accordion li .link:last-child:hover:before {
    animation-name: line_move;
    animation-duration: 0.5s;
}

.blog_le .accordion li .link:last-child:before {
    content: " ";
    width: 100%;
    height: 1px;
    background: var(--SubColor);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 0.2s;
}


/*文章內層*/
.blog_back a.article_btn_back {
    background: var(--FontColor);
}

/*文章-相關推薦*/
.news_related {
    padding: 80px 15px;
}

.news_related h6 span:before {
    font-size: var(--f24);
    color: var(--MainColor);
}

.lastPage {
    background: var(--MainColor);
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本分類全版面 ( 限制最寬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;}
*/

.show-list .item:hover .show_name {
    color: #666;
}

.show-list .show_name {
    text-align: center;
    font-weight: 500;
}

/*次分類*/
.album_class_page .main_part {
    max-width: 1600px;
}

.subalbum-menu h2 {
    color: #555;
    text-align: center;
    display: block;
}

.subalbum-menu h2 .block {
    display: none;
}

.other_album_choice li {
    background: #333;
    border-radius: 0;
}

.fa-right-from-bracket::before {
    content: "\f178";
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本列表
.work_info_page .main_part { max-width:2000px;}
.work_info_page .show_content { padding:0; width:100%;}
.work_info_page .subalbum-menu { text-align:center;}
.work_info_page .subalbum-menu h2 { float:none;}
.work_info_page .pic-list .item { margin:0; padding:10px; width:49%; float:none; display:inline-block;}
@media screen and (max-width: 768px) {
.work_info_page .pic-list .item { width:100%;}
}
.work_info_page .pic-list .show_pic { height:auto; line-height:0;}
.work_info_page .pic-list .show_pic img { max-width:100%; max-height:100%;}
.work_info_page .pic-list .item a { max-width:100%; pointer-events: none; cursor: default; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



@media screen and (max-width: 1024px) {
    /*header*/
    .main_header_area .container {        max-width: 100%;    }
    .main_header_area:before {        height: 37px;    }
    .nav-header {        order: 2;    }
    .me_tp_features {
        order: 1;
        justify-content: flex-start;
        padding-left: 10px;
    }
    .tp_links {        position: absolute;        right: 0;    }
    .stellarnav {        order: 3;    }
    .nav-header {        max-width: 130px;        padding: 0;    }

    /*footer*/
    .footer .center {    max-width: 95%;}
}

@media screen and (max-width: 768px) {

    /* 開啟手機板下方按鈕所需設定 */
    #bottom_menu {        display: block;    }
    #bottom_menu li {    width: 33.33%;    display: block;    float: left;    border-right: 1px solid #ddd;    }
    .footer.with_shopping_mode {        padding: 80px 0 70px;    }
    #to_top {        bottom: 60px;    }

    /*header*/
    .main_header_area:before{display: none;}
    .header_area.sticky, .pageIndex .header_area.sticky {        -webkit-backdrop-filter: none;        backdrop-filter: none;    }
    .me_tp_features {
        order: 3;
        background: var(--MainColor);
        padding: 10px;
        justify-content: center;
        margin-top: 0;
    }
    .tp_links {        position: relative;    }
    .nav-header {        padding-top: 10px;    }

    /*選單*/
    .stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul {        border-right: none;    }
    .stellarnav.mobile > ul {        border-top: none;    }
    .stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {
        background: var(--FontColor);
        color: #fff;
    }
    .stellarnav .icon-close:before, .stellarnav .icon-close:after {border-bottom: solid 2px #fff;}
    .stellarnav a.dd-toggle .icon-plus:before, .stellarnav a.dd-toggle .icon-plus:after{border-bottom: solid 2px var(--MainColor);}

/*footer*/
    .footer_info {        grid-template-columns: 1fr;grid-gap: 0;    }
    .box_link {
        max-width: 100%;
        border-top: solid 1px #ffffff25;
        padding-top: 20px;
        order: 3;
        top: 20px;
    }
    .footer_info ul {
        align-items: flex-start;
        flex-direction: column;
        padding-top: 35px;
    }
    .footer_info li:nth-child(1), .footer_info li:nth-child(2) {
        width: 100%;
        border-top: solid 1px #ffffff25;
        padding-top: 20px;
    }
    .copy {        padding: 20px;    }

    /*文章*/
    .blog_subbox {        grid-template-columns: repeat(2, 1fr);    }
}

@media screen and (max-width: 570px) {
    .stellarnav .menu-toggle {        padding: 15px 10px;    }
}

@media screen and (max-width: 425px) {
.module_i_news li a:after, .subbox_item a:after {    top: 93%;    left: 91%;}
}