@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Zen+Dots&display=swap');

/*網站全域設定/＝＝＝＝＝*/
/*
    #E1D9D0 /*網站主要色系
    #E1CAC5 /*網站輔助色系1
    #f9f6f4; /*網站輔助色系2*/

/*反白顏色*/
::-moz-selection {
    background-color: #060303;
    color: #fff;
}

::selection {
    background-color: #060303;
    color: #fff;
}

:root {
    --MainColor: #060303;
    --SubColor: #f3f4f4;
    --SFont: "Noto Sans TC", sans-serif;
    --SFontEN: "Zen Dots", serif;
    --TitleColor: #222222;
    --FontColor: #111111;
    --SubColor02: #111111;
    --SubColor03: #444;
    --f60: 60px;
    --f54: 54px;
    --f48: 48px;
    --f42: 42px;
    --f40: 40px;
    --f36: 36px;
    --f32: 32px;
    --f28: 28px;
    --f26: 26px;
    --f24: 24px;
    --f22: 22px;
    --f20: 20px;
    --f18: 18px;
    --f17: 17px;
    --f16: 16px;
}

@media (max-width:1024px) {
    :root {
        --f60: 54px;
        --f54: 48px;
        --f48: 40px;
        --f42: 38px;
        --f40: 36px;
        --f36: 32px;
        --f32: 28px;
        --f28: 28px;
        --f26: 26px;
        --f24: 22px;
        --f22: 20px;
    }
}

@media (max-width:768px) {
    :root {
        --f60: 48px;
        --f54: 36px;
        --f48: 32px;
        --f42: 30px;
        --f40: 28px;
        --f36: 26px;
        --f32: 24px;
        --f28: 24px;
        --f26: 22px;
        --f24: 20px;
        --f20: 18px;
        --f18: 17px;
        --f17: 16px;
    }
}

@media (max-width:600px) {
    :root {
        --f60: 40px;
        --f54: 32px;
        --f48: 28px;
        --f42: 26px;
        --f40: 24px;
        --f36: 22px;
        --f32: 20px;
        --f28: 20px;
        --f26: 20px;
        --f24: 18px;
        --f22: 18px;
        --f20: 17px;
        --f18: 16px;
        --f17: 15px;
        --f16: 15px;
    }
}

@media (max-width:375px) {
    :root {
        --f60: 35px;
        --f54: 28px;
        --f48: 24px;
        --f42: 22px;
        --f40: 20px;
        --f36: 20px;
        --f32: 20px;
        --f28: 18px;
        --f26: 18px;
        --f24: 17px;
        --f22: 17px;
        --f20: 16px;
        --f18: 15px;
    }
}


&::-webkit-scrollbar {
    background: #181818;
    width: 7px;
}

&::-webkit-scrollbar-button {
    display: none;
    background: #181818;
    border-radius: 0;
}

&::-webkit-scrollbar-track-piece {
    background: #181818;
}

&::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #f3f4f4;
}

&::-webkit-scrollbar-track {
    box-shadow: transparent;
}


body{font-family: var(--SFont); letter-spacing: 1px;}
.main_part {    padding: 80px 30px;}
.path p, .path p a{display: none;}

/*
關於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;}
*/

.header_area {
    position: fixed;
    z-index: 9999;
    width: 100%;
    background: transparent;
    padding: 0;

}

.header_area.sticky {
    -webkit-box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
    background: transparent;
}

.main_header_area:after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    background: rgb(33 31 31 / 88%);
    transition: all .5s;
    transition-timing-function: ease-in;
}

.header_area.sticky .main_header_area:after {
    height: 100%;
}

.main_header_area .container {
    max-width: 1800px;
    transition: 0.5s;
}

.pageIndex .header_area .main_header_area {
    background: transparent;
    opacity: 0;
    transition: all 0.3s;
    position: relative;
}

.pageIndex .header_area.sticky .main_header_area {
    background: transparent;
    opacity: 1;
    transition: all 0.3s;
}

.navigation {
    grid-template-columns: 201px 1fr;
    align-items: center;
}

.nav-header {
    grid-row: 1;
}


/*選單*/
.stellarnav>ul>li {
    position: relative;
    padding: 20px 0;
}

.stellarnav>ul>li:after {
    content: "";
    display: block;
    background-color: transparent;
    width: 0;
    height: 50px;
    position: absolute;
    top: -32%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all .5s;
    pointer-events: none;
}

.stellarnav>ul>li:hover::after {
    box-shadow: rgb(255, 255, 255) 0px 0px 31px;
    width: 100%;
    transition: .5s cubic-bezier(0.77, 0, 0.65, 0.99);
}

.stellarnav>ul>li>a {
    font-family: var(--SFont);
    color: var(--SubColor);
    letter-spacing: 1px;
    padding: 0px 15px;
}

.stellarnav>ul>li>a:hover {
    color: #fff;
    transition: .5s cubic-bezier(0.77, 0, 0.65, 0.99);
}


.stellarnav ul:hover li a {
    opacity: 0.3;
    transition: all 0.3s ease-in-out;
}

.stellarnav ul li:hover a {
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

.stellarnav ul ul>li>a:hover,
.stellarnav ul ul>li>a:focus {
    color: #131413;
    opacity: 1;
}

.stellarnav > ul > li:nth-child(5) > ul li:nth-child(1) > a {    display: none;}/*相簿-全部選單隱藏*/

/*上方選單右邊設定 臉書/LINE/電話/信箱
.tp_links a:before {寬高大小設定}
.tp_links a.me_tp_fb {}
.tp_links a.me_tp_fb:before {背景換圖/建議.SVG}
.tp_links a.me_tp_line {}
.tp_links a.me_tp_line:before {背景換圖/建議.SVG}
.tp_links a.me_tp_call {}
.tp_links a.me_tp_call:before {背景換圖/建議.SVG}
.tp_links a.me_tp_mail {}
.tp_links a.me_tp_mail:before {背景換圖/建議.SVG}
*/
.me_tp_features {
    display: none;
}

/*電腦LOGO
.nav-brand {}
*/
.nav-brand {
    width: 120px;
}

/*手機LOGO
.nav-brand-m {}
*/


/*footer*/
.footer {
    background: var(--MainColor);
    padding: 0;
    background: linear-gradient(180deg, #555 0%, #222 2%, #000 4%, #222 100%);
    background: url(https://pic03.eapple.com.tw/rideodie/tone.png), linear-gradient(180deg, #555 0%, #222 2%, #000 4%, #222 100%);
}

.footer_logo {
    width: 100%;
    margin: 0 auto;
    padding-right: 20px;
}

.footer_info {
    display: grid;
    grid-template-columns: 280px 1fr 240px;
    gap: 20px 48px;
    padding: 0;
    max-width: 1400px;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 60px;
    /* width: 90%; */
}

.footer_info ul {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    align-items: baseline;
    width: 100%;
    max-width: 900px;
    margin: 0 0 0 auto;
    padding-top: 20px;
}

.footer_info li {
    padding: 0;
}

.footer_info li:nth-child(2) {
    order: -1;
    border-right: solid 1px #ffffff25;
}

.footer_menu a,
.footer_info li:nth-child(1)>p,
.footer_info li:nth-child(1) a {
    transition: all 0.3s;
    font-weight: 400;
    font-style: normal;
    text-transform: none;
    font-size: 13px;
    line-height: 26px;
    letter-spacing: 0;
    color: var(--SubColor);
    padding: 0;
    letter-spacing: 0.1em;
}

.footer_menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.footer_menu a {
    margin: 0;
    text-align: left;
    padding: 5px;
    border: none;
    background: transparent;
    width: fit-content;
    transition: all 0.3s;
}

.footer_menu a:hover {
    background: transparent;
    color: #fff;
}

.footer_info li:before,
.box_link:before {
    display: block;
    margin-bottom: 10px;
    width: 100%;
    text-align: left;
    font-weight: 500;
    font-style: normal;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 1px;
    color: var(--SubColor);
}

.box_link:before {
    content: "CONTACT";
}

.footer_info li:nth-child(1):before {
    content: "INFORMATION";
}

.footer_info li:nth-child(2):before {
    content: "RELATED LINK";
}

.box_link {
    display: flex;
    flex-direction: row;
    max-width: 260px;
    width: 100%;
    justify-content: flex-start;
    padding: 0;
    margin: 0 auto;
    position: relative;
    order: 3;
    padding-top: 20px;
    align-items: flex-start;
    align-content: flex-start;
}

.box_link a {
    border: none;
    margin: 0;
    width: fit-content;
    color: #fff;
    padding: 0 10px;
    font-size: 22px;
    transition: all .5s;
}

.box_link a:hover {
    color: var(--FontColor);
}

.copy {
    border: none;
    padding: 15px 0;
    background-color: #161616;
    color: #7A7A7A;
    margin: 0;
}



/*下拉線條箭頭
.stellarnav li.has-sub>a:after {
    position: absolute;
    top: 38%;
    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);
}
*/


/* 商品下拉超過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個--結束 */




/*聯絡我們*/
.contact_form li.last blockquote, .contact_form li.last cite {
    border: 2px solid var(--SubColor03);
    position: relative;
    overflow: hidden;
}
.contact_form li.last cite {    background: transparent;    color: var(--FontColor);}
.contact_form li.last cite:hover,  .contact_form li.last blockquote:hover {    color: var(--SubColor);}

.contact_form li.last cite:before, .contact_form li.last blockquote:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 116%;
    height: 102%;
    background: var(--SubColor03);
    transform: translateX(-110%) skewX(-15deg);
    transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}
.contact_form li.last cite:hover:before, .contact_form li.last blockquote:hover:before {
    transform: translateX(-5%) skewX(-15deg);
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 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;
}

/*顏色*/
.products-list .more {
    border: 1px solid #ADA17E;
    color: #ADA17E;
}

.products-list .item a:hover .more {
    background: #ADA17E;
}

/*購物車/內層＝＝*/
.product_info_page .main_part {
    width: 90%;
}

/*按鈕顏色*/
.inquiry_a1 {
    background: #cbc0a0;
}

.inquiry_a2 {
    background: #bdab77;
}

.inquiry_a3 {
    background: #ADA17E;
}

.inquiry_a1:hover,
.inquiry_a2:hover,
.inquiry_a3:hover {
    background: #222;
}

.lastaction {
    color: #ADA17E;
    background-color: #f2f2f2;
}

.nextaction {
    background-color: #ADA17E;
}

.lastPage {
    background: #ADA17E;
}

/*商品側邊規格*/
.product_info li .txt_box {
    color: #222222;
    width: 100%;
}

.sidebarBtn .sp_price {
    color: #cbc0a0;
}

.mobile_product_name {
    font-size: 24px;
}

/*相關推薦*/
.prod_related h6 span:before {
    font-size: 28px;
}



@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-slide img {
    filter: brightness(0.1);
    height: auto;
    transform: scale(1.4);
    animation: banner-img 2s forwards;
}


.swiper-slide:before,
.swiper-slide:after {
    content: "";
    position: absolute;
    z-index: 999;
    pointer-events: none;
}

.swiper-slide:nth-child(1):before {
    background: url(https://pic03.eapple.com.tw/extwrap/01cover-1car.png);
    background-repeat: no-repeat;
    z-index: 999;
    bottom: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    /* filter: brightness(1.2); */
}

.swiper-slide:nth-child(1):after {
    background: url(https://pic03.eapple.com.tw/extwrap/01cover-1w.png);
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    max-width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
    mix-blend-mode: exclusion;
}

.swiper-slide.swiper-slide-active:nth-child(1)::before {
    animation-delay: 1s;
    animation: converge-from-sides 2.5s 0.3s both;
}

.swiper-slide.swiper-slide-active:nth-child(1):after {
    animation: banner-bg 1.5s forwards cubic-bezier(0.73, 0.08, 0.11, 0.99);
    animation-delay: .5s;
}


.swiper-slide:nth-child(2):before {
    content: "EXT Wrap";
    font-size: var(--f60);
    font-family: var(--SFontEN);
    display: block;
    position: absolute;
    /* top: 41%; */
    opacity: 1;
    z-index: 999;
    color: #fff;
    /* mix-blend-mode: difference; */
    top: 20vw;
    font-size: 3.5vw;
    letter-spacing: 4px;
    white-space: pre;
    left: 68vw;
    text-shadow: 0px 15px 5px rgba(0, 0, 0, 0.1),

        10px 20px 5px rgba(0, 0, 0, 0.05),

        -10px 20px 5px rgba(0, 0, 0, 0.05);
}

.swiper-slide:nth-child(2):after {
    content: "專注細節，讓美與保護完美結合";
    font-size: var(--f24);
    font-family: var(--SFont);
    display: block;
    position: absolute;
    /* top: 48%; */
    opacity: 1;
    z-index: 999;
    color: #fff;
    letter-spacing: 4px;
    /* mix-blend-mode: difference; */
    bottom: 24vw;
    font-size: 1.2vw;
    left: 68vw;
    text-shadow: 0px 15px 5px rgba(0, 0, 0, 0.1),

        10px 20px 5px rgba(0, 0, 0, 0.05),

        -10px 20px 5px rgba(0, 0, 0, 0.05);
}

.swiper-slide.swiper-slide-active:nth-child(2)::before {
    animation: move_before 1s both;
}

.swiper-slide.swiper-slide-active:nth-child(2):after {
    animation: move_after 1s both;
}


@keyframes banner-bg {
    0% {
        height: 90%;
        opacity: 0;
    }

    100% {
        height: 100%;
        opacity: 1;
    }
}

@keyframes banner-img {
    0% {
        filter: brightness(0.1);
        opacity: 0.5;
        transform: scale(1.2);
    }

    100% {
        filter: brightness(1);
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes converge-from-sides {
    0% {
        transform: scale(1.6);
        opacity: 0;
        transform-origin: left center;
    }

    50% {
        transform: scale(0.8);
        opacity: 1;
        transform-origin: center;
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
        transform-origin: center;
    }
}

@keyframes slide-top {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}


@keyframes move_before {
    0% {
        left: 65vw;
        opacity: 0;
    }

    100% {
        left: 67.8vw;
        opacity: 1;
    }
}

@keyframes move_after {
    0% {
        left: 70vw;
        opacity: 0;
    }

    100% {
        left: 68vw;
        opacity: 1;
    }
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {
    background-position: center;
    background-size: cover;
    overflow: hidden;
    background-image: none;
    position: relative;
    z-index: 1;
    background: repeat center center var(--FontColor);
    padding: 16vw 0 12vw;
    justify-content: flex-start;
}
.banner::before {
    content: "";
    background-image: linear-gradient(180deg, #00000000 40%, rgb(0 0 0 / 31%) 65%), url(https://pic03.eapple.com.tw/extwrap/ban.jpg);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    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::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(https://pic03.eapple.com.tw/extwrap/100-90-5.png) #0000002e;
    -webkit-animation: noise 1.5s steps(5) alternate infinite;
    animation: noise 1.5s steps(5) alternate infinite;
    z-index: -1;
}
@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);    }
}
@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    }
}

.banner h5 {
    color: var(--SubColor);
    padding-left: 12%;
    font-size: var(--f36);
    text-align: left;
    text-transform: uppercase;
}
.banner h5::before {
    content: "ext";
    font-size: var(--f60);
    display: block;
    color: var(--SubColor03);
    font-family: var(--SFontEN);
    -webkit-text-fill-color: transparent;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0) 60%) -100% / 50% no-repeat currentColor;
    -webkit-background-clip: text;
    animation: shark-txt 2s infinite;
    mix-blend-mode: plus-lighter;
}
.services_page .banner h5::before {    content: "service";}
.album_class_page .banner h5::before {    content: "PROJECT";}
.banblog h5::before {    content: "Columns";}
.banner.banC h5::before {    content: "CONTACT";}
.banner.banE h5::before{    content: "PROJECT";}
.banner.banblog:before h5::before{    content: "Columns";}


@keyframes shark-txt {
    form{      background-position: -100%;    }
    to {      background-position: 200%;    }
}
@keyframes shining {
    0%, 50% {      left: 100%    }
    100% {      left: -10%;    }
}

.banner.banA {}

.banner.banB {}

.banner.banC:before {
    background-image: linear-gradient(180deg, #00000000 40%, rgb(0 0 0 / 31%) 65%), url(https://pic03.eapple.com.tw/extwrap/ban_c.jpg);
}

.banner.banD {}

.banner.banE:before {
    background-image: linear-gradient(180deg, #00000000 40%, rgb(0 0 0 / 31%) 65%), url(https://pic03.eapple.com.tw/extwrap/ban_e.jpg);
}
.banner.banblog:before {
    background-image: linear-gradient(181deg, #00000000 61%, rgb(0 0 0 / 7%) 65%), url(https://pic03.eapple.com.tw/extwrap/ban_blog.jpg);
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/

.blog_subbox {    grid-template-columns: 1fr;}
.module_i_news li a, .subbox_item a {
    display: flex;
    padding: 5px;
    justify-content: space-between;
    align-items: flex-end;
}
.i_blog_le, .blog_list_le {
    width: 60%;
    position: relative;
    padding-bottom: 40%;
    left: 0;
    top: 0;
    height: 0;
    border-radius: .5vw;
    overflow: hidden;
}
.module_i_news li a:hover .i_blog_le img, .subbox_item a:hover .blog_list_le img {
    transform: translate(-50%, -50%) scale(1.15);
}
.i_blog_le img, .blog_list_le img {
    display: block;
    max-width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
    transition: cubic-bezier(0.68, 0.18, 0.54, 0.91) 1s;
}

.i_blog_ri, .blog_list_ri {
    width: 45%;
    position: absolute;
    right: 0;
    bottom: 50px;
    padding: 5%;
    min-height: 200px;
    background: rgb(255 255 255 / 80%);
    border-right: 2px solid var(--MainColor);
    transition: all 0.5s;
}
.i_blog_ri, .blog_list_ri {
    width: 45%;
    position: absolute;
    right: 0;
    bottom: 50px;
    padding: 5%;
    min-height: 200px;
    background: rgb(255 255 255 / 80%);
    border-right: 2px solid var(--MainColor);
    transition: all 0.5s;
}
.module_i_news li a:hover .i_blog_ri, .subbox_item a:hover .blog_list_ri {    background: #fff;}
.subbox_item a:after{display: none;}
.subbox_item a:before {    opacity: 1;    color: var(--FontColor);}

/*文章內層*/
.blog_back a.article_btn_back {    background: var(--SubColor03);}
.blog_back a.article_btn_prev {    background: #333;}
.blog_back a.article_btn_next {    background: #333;}

/*標籤*/
.news_tags a {    color: var(--SubColor03);}

/*文章-相關推薦*/
.news_related {
    padding: 80px 20px;
    background: url(https://pic03.eapple.com.tw/extwrap/100-90-5.png) #d7d7d726;
    -webkit-animation: noise 1.5s steps(5) alternate infinite;
    animation: noise 1.5s steps(5) alternate infinite;
}
.news_related h6 span:before {    font-size: var(--f24);    color: var(--SubColor02);}
.lastPage {
    color: var(--FontColor);
    background: transparent;
    border: 2px solid var(--SubColor03);
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*相本分類全版面 ( 限制最寬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;}
*/


.album_page .main_part, .album_class_page .main_part, .album_info_page .main_part {    max-width: 1600px;}
.show-list {    grid-template-columns: repeat(3, 1fr);}

.overlay {
    position: absolute;
    inset: 0;
    content: "";
    background: radial-gradient(hsla(54deg, 100%, 87%, 0) 0%, hsla(54deg, 70%, 90%, 0.35) 55%, hsla(8deg, 79%, 90%, 0.35) 70%, hsla(8deg, 79%, 90%, 0) 80%, hsla(8deg, 79%, 90%, 0) 100%);
    opacity: 0;
    transition: 200ms;
    transform: translate3d(0%, 0%, 0) scale(5);
}
.show-list .item:hover .overlay {
    opacity: 1;
    /* -webkit-transform: scale(1); */
    /* transform: scale(1); */
    animation: move-light 1850ms forwards, move-light-opacity 1850ms forwards;
}
@keyframes move-light {
    0% {        transform: translate3d(-250%, -250%, 0) scale(4.5)    }
    100% {        transform: translate3d(0%, 0%, 0) scale(5)    }
}

@keyframes move-light-opacity {
    60% {        opacity: 1    }
    100% {        opacity: 0    }
}

.show-list .show_name {
    text-align: center;
    font-weight: 500;
}
.show-list .show_name {
    font-size: 17px;
    color: var(--FontColor);
    letter-spacing: 0.15em;
    line-height: 1.5;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 26px;
}
.show-list .item:hover .show_name {    color: var(--MainColor);}

.other_album_choice li {
    background: var(--TitleColor);
    border-radius: 0;
}
.fa-right-from-bracket::before {    content: "\f178";}

.subalbum-menu h2 {    color: var(--SubColor02);    font-size: var(--f22);}

.pic-list .show_pic img {
    transform: translate(-50%, -50%) scale(1);
    transition: cubic-bezier(0.68, 0.18, 0.54, 0.91) 1s;
    position: absolute;
    left: 50%;
    top: 50%;
}

.pic-list .item:hover img {
    transform: translate(-50%, -50%) scale(1.15);
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本列表
.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) {
    /*footer*/
    .footer_info {        grid-template-columns: 1fr;        width: 90%;    }
    .footer_logo {        grid-column: 4 / 1;    }
    .footer_info ul {        grid-column: 3 / 1;    }
    #bottom_menu li:first-child:nth-last-child(2), #bottom_menu li:first-child:nth-last-child(2) ~ li {
        width: 50%;
        display: block;
        float: left;
        border-right: 1px solid #ddd;
    }

    /*banner*/
    .banner {        padding: 23vw 0 12vw;    }

    .stellarnav>ul>li {        padding: 0;    }
    .stellarnav>ul>li:after {
        height: 3px;
        top: 100%;
        bottom: 0;
        transform: translate(-50%, 0);
    }

    /*文章*/
    .module_i_news li a, .subbox_item a {
        flex-direction: column;
    }
    .i_blog_le, .blog_list_le, .i_blog_ri, .blog_list_ri {
        width: 100%;
    }
    .i_blog_le, .blog_list_le {
        padding-bottom: 50%;
        border-radius: 0;
    }
    .i_blog_ri, .blog_list_ri {
        position: relative;
        right: 0;
        bottom: unset;
        padding: 30px 5%;
        min-height: unset;
        border: none;
        border-top: 2px solid var(--MainColor);
        background: #f8f8f8;
    }
    .module_i_news li a:hover .i_blog_ri, .subbox_item a:hover .blog_list_ri {
        background: #f8f8f8;
    }
}

@media screen and (max-width: 768px) {

    /* 開啟手機板下方按鈕所需設定 */
    #bottom_menu {
        display: block;
    }

    .footer.with_shopping_mode {
        padding: 30px 0 70px;
    }

    #to_top {
        bottom: 60px;
    }

    .footer_logo {
        grid-column: 1 / 1;
        padding-right: 0;
    }

    .box_link {
        max-width: 100%;
        border-top: solid 1px #ffffff25;
        padding-top: 20px;
    }

    .footer_info {
        gap: 20px 0;
    }

    .footer_info ul {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .footer_info li:nth-child(1) {
        border-top: solid 1px #ffffff25;
        padding-top: 20px;
        border-right: none;
    }

    .footer_info li:nth-child(2) {
        order: -1;
        border-right: none;
        border-top: solid 1px #ffffff25;
        padding-top: 20px;
    }

    .stellarnav.mobile {        left: 10px;        top: 16px;    }
    .stellarnav .menu-toggle:after {        color: #fff;    }
    .stellarnav .menu-toggle span.bars span {        background: #fff;    }
    .stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {
        background: var(--MainColor);
        color: #fff;
    }
    .stellarnav .icon-close:before, .stellarnav .icon-close:after {        border-bottom: solid 2px #fff;    }
    .stellarnav.mobile > ul > li > a.dd-toggle {        top: 10px;    }
    .stellarnav a.dd-toggle .icon-plus:before, .stellarnav a.dd-toggle .icon-plus:after {        border-bottom: solid 2px #fff;    }

    .stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul {        border-right: none;    }
    .stellarnav.mobile > ul {        border-top: none;    }
    .stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul {
        backdrop-filter: blur(10px);
        border-right: none;
        background: #060303cf;
    }
    .stellarnav.mobile > ul > li {        border-bottom: 1px #dddddd24 solid;    }
    .stellarnav>ul>li {
        padding: 10px;
        border-bottom: none;
    }
    .stellarnav.mobile li a {        border-bottom: none;    }
    .stellarnav.mobile li.open {        background: var(--MainColor);    }

    /*相簿*/
    .show-list {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media screen and (max-width: 600px) {
    .pageIndex .header_area .main_header_area {        background: var(--FontColor);opacity: 1;    }
    .header_area {        position: relative;        background: var(--FontColor);    }
    .header_area.sticky {        position: fixed;    }

    /*標籤*/
    .news_tags {        display: inline-block;        margin-bottom: 20px;    }
    .banner {        padding: 15vw 0;    }

    /*文章*/
    .module_i_news ul, .blog_subbox {        grid-template-columns: 1fr;    }
    .i_blog_le, .blog_list_le {        padding-bottom: 75%;    }

}