@charset "utf-8";

/*
關於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;}
*/


/*上方選單右邊設定 臉書/LINE/電話/信箱
.tp_links a:before {寬高大小設定}
.tp_links a.me_tp_fb {}
.tp_links a.me_tp_fb:before {背景換圖/建議.SVG}
.tp_links a.me_tp_line {}
.tp_links a.me_tp_line:before {背景換圖/建議.SVG}
.tp_links a.me_tp_call {}
.tp_links a.me_tp_call:before {背景換圖/建議.SVG}
.tp_links a.me_tp_mail {}
.tp_links a.me_tp_mail:before {背景換圖/建議.SVG}
*/


/*電腦LOGO
.nav-brand {}
*/

/*手機LOGO
.nav-brand-m {}
*/

/* header商品下拉超過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個--結束 */


/*預設解除背景輪播*/
#content_main { background: transparent; 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;}
}
/*預設解除背景輪播--結束*/


   
@media screen and (max-width: 600px) { 
}
 /* 開啟手機板下方按鈕所需設定--結束 */    

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/* 網頁捲軸設定 */


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 全域設定 */
:root {
    --Mainfont: "Noto Serif TC", serif;
    line-height: 1.8;
    letter-spacing: 0.1em;
    font-family: var(--Mainfont);
    color: var(--color1);
    /* background: var(--color2); */
    /* font-size: var(--f18); */

    --color1:#2c1900;
    --color2:#C19A6B;
    --color3:#9E0605;

    --f47:47px;
    --f40:40px;
    --f36:36px;
    --f32:32px;
    --f30:30px;
    --f28:28px;
    --f26:26px;
    --f24:24px;
    --f22:22px;
    --f20:20px;
    --f18:18px;
    --f16:16px;
}

body {
    font-family: var(--Mainfont);
    font-weight: 600;
}
#content {
    overflow: hidden;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*前導進入畫面*/
body.pageIndex::before {
    content: '';
    pointer-events: none;
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(https://pic03.eapple.com.tw/dongyiwood/landing_bg.jpg);
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: 10%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    animation: fade-out 2.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
}
body.pageIndex::after{
    content: "";
    pointer-events: none;
    display: block;
    width: 13%;
    height: 0;
    padding-bottom: 100%;
    background-image: url(https://pic03.eapple.com.tw/dongyiwood/enter_logo.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    z-index: 100000000;
    animation: fade-in 2.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
	
}

/* @-webkit-keyframes fade-out {
    0% {opacity: 1;}
    50% {opacity: 1;}
    100% {opacity: 0;}
}
@keyframes fade-out {
    0% {opacity: 1;}
    50% {opacity: 1;}
    100% {opacity: 0;}
} */

@-webkit-keyframes fade-out {
    0% {
        width: 100%;
        position: fixed;

        opacity: 1;
        -webkit-filter: blur(4px);
    }

    5% {
        -webkit-filter: blur(0px);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-filter: blur(0px);
    }

    70% {
        -webkit-filter: blur(0px) grayscale(30%);
    }

    100% {
        width: 100%;
        opacity: 0;
        -webkit-transform: scale(2);
        transform: scale(2);
        -webkit-filter: blur(80px);
    }
}
@keyframes fade-out {
    0% {
        width: 100%;
        position: fixed;

        opacity: 1;
        -webkit-filter: blur(4px);
    }

    5% {
        -webkit-filter: blur(0px);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-filter: blur(0px);
    }

    70% {
        -webkit-filter: blur(0px) grayscale(30%);
    }

    100% {
        width: 100%;
        opacity: 0;
        -webkit-transform: scale(2);
        transform: scale(2);
        -webkit-filter: blur(80px);
    }
}

/* @-webkit-keyframes fade-in {
    0% {opacity: 1;}
    100% {opacity: 0;}
}
@keyframes fade-in {
    0% {opacity: 1;}
    100% {opacity: 0;}
} */

/* @-webkit-keyframes fade-in {
    0% {
        opacity: 0;
        transform: scale(0);
        -webkit-filter: blur(4px);
    }

    30% {
        opacity: 1;
        transform: scale(1.5);
        -webkit-filter: blur(0px);
    }

    100% {
        opacity: 0;
        -webkit-filter: blur(4px);
    }
} */
@keyframes fade-in {
    0% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(0);
        -webkit-filter: blur(4px);
    }

    30% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
        -webkit-filter: blur(0px);
    }

    100% {
        opacity: 0;
        -webkit-filter: blur(4px);
    }
}

@media (max-width: 1200px) {
    body.pageIndex::after {
        width: 10%;
    }
}

@media (max-width: 768px) {
    body.pageIndex::after {
        width: 16%;
    }
    body.pageIndex::before,
    body.pageIndex::after {
        display: none;
    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*--------頁碼設定----------*/
ul.page { 
    width: 100%;
    font-weight: 600;
    margin: 120px auto 20px auto;
}

/* 停留在該頁時 */
ul.page li.activeN {
    width: 35px;
}

/* 其他頁 */
.page li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
	margin: 0;
}
.page li a {
    width: 35px;
    height: 35px;
}

/* hover-點擊其他頁 */
.page a, 
.page a:hover {
    transition: all .2s;
}
.page a:hover {
    color: #a8a8a8;
    background: transparent;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/* 麵包屑導覽--隱藏 */
.path {
    display: none;
}

/* 浮動按鈕 */
.fa-lightbulb::before {
    content: "\f4ad";
}

/* 內頁設定 */
body {
    background-image: url(https://pic03.eapple.com.tw/dongyiwood/page_bg.jpg);
	background-size: contain;
    background-repeat: repeat;
}

/* = = = header = = = = = = = = = == = = = = = = = = = = = = = = == = = */

.header_area {
    position: fixed;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.3) 50%,rgba(0,0,0,0.1) 80%,rgba(0,0,0,0) 100%);
    padding: 0 10px;
}
.main_header_area .container {
    max-width: 1800px;
}
.navigation {
    grid-template-columns: 1fr;
}
/* .nav-header {
    position: absolute;
    max-width: 150px;
    height: 170px;
    background: var(--color3);
    border-radius: 0 0 10px 10px;
    padding: 0 10px;
} */
.nav-brand {
    position: absolute;
    top: 0;
    max-width: 150px;
    background: var(--color3);
    border-radius: 0 0 10px 10px;
    padding: 25px 10px;
}

/* 產品搜尋欄 */
.me_tp_features {
    padding-top: 15px;
}
.box_search {
    width: 180px;
    margin-right: 23px;
}
.box_search input[type=text] {
    max-width: 180px;
    height: 34px;
    background: url(https://pic03.eapple.com.tw/dongyiwood/article_search_01.svg) no-repeat 4px center rgb(255 255 255 / 80%);
    border: 0;
    border-radius: 0;
}
.shop_search_btn {
    height: 34px;
    font-weight: bold;
    background: #760505;
    border-radius: 0;
}
input::placeholder {
    color: rgba(51, 51, 51, 0.5);
}
.box_search input[type=text]:focus {
    color: #333;
}
.tp_links {
    display: none;
} /* header聯絡按鈕--隱藏 */

/* 下滑設定 */
.header_area.sticky {
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.3) 50%,rgba(0,0,0,0.1) 80%,rgba(0,0,0,0) 100%);
}


/* .stellarnav */
.stellarnav > ul > li > a {
    line-height: 50px;
    height: 50px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.15rem;
    margin: 0 20px;
}
.stellarnav li.has-sub > a:after {
    border-top: 6px solid #fff;
}
.stellarnav ul ul {
    width: 200px;
    background: var(--color3);
}
.stellarnav li li {
    border: 0;
}
.stellarnav li li+li {
    border-top: solid 1px rgb(255 255 255 / 15%);
}
.stellarnav li li > a, 
.stellarnav li li.has-sub > a {
    padding: 12px 33px 12px 18px;
}
.stellarnav li li a {
    font-size: 16px;
    letter-spacing: 0.05rem;
    color: #fff;
}
.stellarnav li li.has-sub > a:after {
    right: 15px;
    border-left: 6px solid #fff;
    right: 10px;
}

/* bigMenu */
.stellarnav.desktop li.bigMenu li:nth-of-type(1) {
    border-top: solid 1px rgb(255 255 255 / 15%);
}
.stellarnav.desktop li.bigMenu ul ul {
    background: #875a25;
}
.stellarnav.hasBigMenu li.bigMenu li.has-sub > a:after {
    right: 15px;
    border-top: 6px solid #fff;
}

/* hover */
.stellarnav * {
    transition: all .3s;
}
.stellarnav > ul > li > a:hover,
.stellarnav > ul > li:hover > a {
    color: rgb(255 255 255 / 70%);
} /* 主選單一般變色 */
.stellarnav > ul > li.has-sub > a:hover:after,
.stellarnav > ul > li.has-sub:hover > a:after{
    border-top: 6px solid rgb(255 255 255 / 70%);
} /* 主選單三角形 */
.stellarnav li li:hover > a, 
.stellarnav li li > a:hover, 
.stellarnav.desktop li.has-sub li a:hover, 
.stellarnav.desktop li.has-sub li:hover > a   {
    color: ;
    background: var(--color2);
} /* 次分類一般變色 */
.stellarnav li li.has-sub > a:hover:after,
.stellarnav li li.has-sub:hover > a:after{
    border-left: 6px solid #;
} /* 次分類三角形 */

@media screen and (max-width: 1024px) {
    .header_area {
        position: relative;
        background: var(--color2);
    }
    .navigation {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    /* .nav-header {
        position: relative;
        max-width: 100px;
        height: 90px;
    } */
    .nav-brand {
        left: 0;
        max-width: 100px;
        padding: 5px 10px;
    }
    .me_tp_features {
        text-align: right;
    }
    .stellarnav {
        grid-column: 1/span 2;
        padding-top: 30px;
    }
    .stellarnav > ul > li > a {
        margin: 0 15px;
    }
}

@media screen and (max-width: 768px) {
    .header_area {
        padding: 0;
    }
    .navigation {
        display: flex;
        flex-direction: row;
        padding: 20px 0;
    }
    .nav-header {
        max-width: 80px;
        height: auto;
        border-radius: 0;
        padding: 10px 5px 0px 5px;
    }
    .nav-brand {
        max-width: 80px;
        border-radius: 0;
        padding: 10px 5px 0px 5px;
    }
    .me_tp_features {
        margin: -14px 60px 0;
    }

    /* 漢堡鈕設定--開始 */

    .stellarnav.mobile {
        top: 15px;
        right: 0;
        left: unset;
        padding: 0;
    }
    .stellarnav .menu-toggle {
        padding-right: 22px;
    }
    .stellarnav .menu-toggle span.bars span {
        width: 32px;
        background: var(--color3);
    }
    .stellarnav .menu-toggle span.bars span:nth-child(1) {
        background: ;
    }
    .stellarnav .menu-toggle span.bars span:nth-child(2) {
        /* margin: 0 auto 4px 0; */
    }
    .stellarnav .menu-toggle span.bars span:nth-child(3) {
        /* margin: 0 auto 4px 0; */
    }
    .stellarnav .menu-toggle:after {
        font-size: 10px;
        font-weight: 600;
        color: var(--color3);
        letter-spacing: 1px;
    }
    .stellarnav.mobile.right .close-menu, 
    .stellarnav.mobile.left .close-menu {
        position: relative;
        color: transparent;
        background: transparent;
        padding-top: 20px;
        padding-left: 15px;
    }
    .stellarnav .icon-close {
        position: static;
    }
    .stellarnav .icon-close:before, 
    .stellarnav .icon-close::after {
        right: 20px;
        width: 25px;
        border-bottom: solid 3px #fff;
    }/* 漢堡鈕設定--結束 */


    /* 選單設定--開始 */
    .stellarnav.mobile.right > ul, 
    .stellarnav.mobile.left > ul {
        right: 0;
        left: unset;
        background: #a17b4e;
        border: 0;
        box-shadow: 5px 5px 15px rgb(0 0 0 / 10%);
    }
    .stellarnav a.dd-toggle .icon-plus:before, 
    .stellarnav a.dd-toggle .icon-plus:after {
        border-bottom: solid 1px ;
    }
    .stellarnav.mobile > ul > li {
        border: 0;
    }
    .stellarnav.mobile li a {
        border-bottom: 0;
    }
    .stellarnav li li {
        border-top: 0 !important;
        border-bottom: solid 1px #b59166;
    }
    .stellarnav.mobile li li.has-sub a {
        padding: 10px 43px 10px 40px;
    }
    .stellarnav.mobile li li > a {
        padding: 10px 10px 10px 40px;
    }
    .stellarnav.mobile li.open {
        background: transparent;
        padding: 0;
    }
    .stellarnav.mobile ul ul {
        background: transparent;
    }
    .stellarnav.mobile li.open li.open {
        background: transparent;
        padding: 0;
    }
    .stellarnav.mobile li.open li.open > a {
        background: rgb(255 255 255 / 40%);
    }
    .stellarnav.mobile li.open li.open > a.dd-toggle {
        background: transparent;
    }
    .stellarnav.mobile ul ul ul {
        background: rgb(255 255 255 / 15%);
    }
    /* 選單設定--結束 */

    /* hover--開始 */
    .stellarnav.mobile a.dd-toggle:hover .icon-plus:before, 
    .stellarnav.mobile a.dd-toggle:hover .icon-plus:after {
        border-bottom: solid 1px rgb(255 255 255 / 70%);
    }
    .stellarnav li li:hover > a, 
    .stellarnav li li > a:hover, 
    .stellarnav.desktop li.has-sub li a:hover, 
    .stellarnav.desktop li.has-sub li:hover > a {
        color: ;
        background: transparent;
    } /* 次分類一般變色 */ /* hover--結束 */
}

@media screen and (max-width: 570px) {
    .stellarnav .menu-toggle {
        padding: 10px;
    }
}

/* = = = 大圖 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

.bannerindex {
    position: static;
    height: auto;
}
.bannerindex::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%,rgba(0,0,0,0) 30%,rgba(0,0,0,0) 100%);
    z-index: 1;
}
.pageIndex .swiper-banner {
    position: static;
    margin: 0;
    height: auto;
}
.pageIndex .swiper-slide:before,
.pageIndex .swiper-slide:after {
    content: "";
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 999;
    pointer-events: none;
}

.pageIndex .swiper-slide.swiper-slide-active:nth-child(1):before {
    background-image: url(https://pic03.eapple.com.tw/dongyiwood/ban01_work.png);
    width: 50%;
    left: 0;
    bottom: 0;
    aspect-ratio: 1080/1037;
    animation: slide-left 2s 0.3s both;
}
.pageIndex .swiper-slide.swiper-slide-active:nth-child(1)::after {
    background-image: url(https://pic03.eapple.com.tw/dongyiwood/ban01_text.png);
    width: 30%;
    right: -3%;
    top: 0;
    aspect-ratio: 639/1138;
    animation: slide-top 2s 0.3s both;
}

.pageIndex .swiper-slide:nth-child(2):before {
    background-image: url(https://pic03.eapple.com.tw/dongyiwood/ban02_cloud.png);
    background-repeat: repeat-x;
    width: 200%;
    bottom: -5%;
    aspect-ratio: 4100/452;
    mix-blend-mode: hard-light;
    opacity: .7;
    -webkit-animation: cloud 20s linear 0s infinite alternate;
    animation: cloud 50s linear 0s infinite alternate;
    -webkit-animation-duration: 100s;
    animation-duration: 100s;
} /* 白雲 */
.pageIndex .swiper-slide:nth-child(2):after {
    background-image: url(https://pic03.eapple.com.tw/dongyiwood/ban02_text.png);
    width: 10%;
    left: 50%;
    transform: translateX(-50%);
    bottom: 11%;
    aspect-ratio: 181/434;
}/* 文字 */


/* 動畫 */
@keyframes cloud {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: -3402px 0;
    }
}

@keyframes slide-left {
    0% {
        -webkit-transform: translateX(0-50%);
        transform: translateX(-50%);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slide-top {
    0% {
        -webkit-transform: translateY(-20%);
        transform: translateY(-20%);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 3%;
} /* 大圖點點 */

@media screen and (max-width: 768px) {
    .pageIndex .swiper-slide.swiper-slide-active:nth-child(1)::after {
        width: 35%;
        top: -10%;
    }
    .pageIndex .swiper-slide:nth-child(2):after {
        width: 15%;
        bottom: 4%;
    }
}

/* = = = footer = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/* .footer_info li p.line:before {
    content: 'Line ID：';
}
.footer_info li p.tel:before {
    content: '電話：';
}
.footer_info li p.phone:before {
    content: '手機：';
}
.footer_info li p.mail:before {
    content: '信箱：';
}
.footer_info li p.fax:before {
    content: '傳真：';
}
.footer_info li p.taxid:before {
    content: '統編：';
}
.footer_info li p.add:before {
    content: '地址：';
} */
.footer {
    background: #392c22;
        padding: 80px 0 20px;
}
.footer .center {
    max-width: 1800px;
    padding: 0 2%;
}
.footer_info {
    display: flex;
    padding: 0;
}
.footer_logo {
    position: absolute;
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 140px;
}
.box_link {
    display: none;
}
.footer_info ul {
    display: flex;
    justify-content: space-between;
}
.footer_info li:before {
    content: '';
    display: block;
    font-size: 16px;
    color: #fff;
    border-bottom: solid 1px #929292;
    padding-bottom: 10px;
    margin-bottom: 15px;
}
.footer_info li:nth-child(1):before {
    content: '聯絡資訊';
}
.footer_info li:nth-child(2) {
    width: 250px;
}
.footer_info li:nth-child(2):before {
    content: '網站地圖';
}
.footer_info li p, 
.footer_info li p a,
.footer_menu a {
    color: #bdbdbd;
}
.footer_info li p {
    font-size: 13px;
    line-height: 200%;
}
.footer_info li p.phone:before {
    content: '電話：';
}
.footer_info li p.taxid a {
    pointer-events: none;
}
.footer_info li p.add:before {
    content: '工廠地址：';
}
.footer_menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.footer_menu a {
    font-size: 13px;
    border: 0;
    background: transparent;
}
.copy {
    font-size: 11px;
    border: 0;
    margin-top: 40px;
}
.copy, 
.copy a {
    color: #707070;
}
.privacyLinks a+a {
    border-left: 1px solid #707070;
}

/* hover */
.footer * {
    transition: all .3s;
}
.box_link a:hover {
    opacity: .7;
}
.box_link a,
.box_link a:hover {
    transition: all .2s;
}
.footer_info li p a:hover {
    opacity: .7;
}
.footer_menu a:hover {
    background: transparent;
    color: #fff;
}
.copy a:hover {
    color: #fbcd4f;
}

@media screen and (max-width: 1024px) {
    .footer {
        padding: 40px 0 10px;
    }
    .footer_info {
        flex-direction: column;
    }
    .footer_logo {
        position: relative;
        top: 0;
    }
    .footer_info ul {
        justify-content: center;
        column-gap: 50px;
    }
}

@media screen and (max-width: 768px) {
    .footer .center {
        padding: 0 5%;
    }
    .footer_info ul {
        flex-direction: column;
    }
    .footer_logo {
        max-width: 120px;
    }
    .footer_info li p {
        line-height: 180%;
    }
    .footer_info li:nth-child(2) {
        width: 100%;
    }
    .footer_menu {
        grid-template-columns: repeat(4,1fr);
    }
}

@media screen and (max-width: 360px) {
    .footer_menu {
        grid-template-columns: repeat(2,1fr);
    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/* 首頁購物車 */
.i_prod_tit span, .i_video_tit span {
    font-size: 30px;
    font-weight: 700;
    color: var(--color3);
    letter-spacing: 0.15rem;
}
.pageIndex .productsListBox {
    padding: 70px 0 30px 0;
}
.products-list .item a {
    padding: 0;
}
.products-list .item a:before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: var(--color2);
    opacity: .7;
    z-index: 1;
}
.products-list .more {
    position: absolute;
    top: 50%;
    bottom: unset;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto !important;
    border: 0;
    opacity: 0;
    z-index: 2;
}
.animated-arrow {
    background: linear-gradient(135deg, #9E0605 0%,#9E0605 50%,#8A0404 51%,#8A0404 100%);
}
.animated-arrow:before {
    content: '';
    position: absolute;
    right: 0;
    width: 0;
    height: 200%;
    background: linear-gradient(135deg, #9E0605 0%,#9E0605 50%,#8A0404 51%,#8A0404 100%);
    z-index: 1;
}
.animated-arrow b {
    position: relative;
    z-index: 1;
}
.animated-arrow i {
    display: none;
}

/* 首頁購物車 - hover */
.animated-arrow:before,
.animated-arrow:hover:before,
.products-list .item a::before,
.products-list .item a:hover::before {
    transition: all .4s;
}
.products-list .item a:hover::before {
    width: 100%;
}
.products-list .item a:hover .more {
    letter-spacing: 4px;
    background: transparent;
    opacity: 1;
}
.animated-arrow:hover:before {
    width: 100%;
    background: linear-gradient(135deg, #8A0404 0%,#8A0404 50%,#9E0605 51%,#9E0605 100%);
}



/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */

/* 購物車頁面設定 */
.product_page .main_part { 
    max-width:1500px;
}
.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);
}
.product-layer-two {
    border-top: solid 2px var(--color3);
    padding-top: 25px;
    margin-top: 10px;
}
.product-layer-two > li { 
    width:100%; 
    max-width:100%; 
    padding:0; 
    text-align:left; 
    border-bottom: dashed 1px #bebebe;
}
.product-layer-two li a {
    color: var(--color1);
    font-weight: 600;
    border: 0;
    background: transparent;
    padding: 7px 5px;
}
.product-layer-two li i {
    font-size: 12px;
    color: var(--color1);
}
.fa-circle-plus::before {
    content: "\2b";
}
.product-layer-two li ul { 
    position:static; 
    grid-gap: 0;
    margin-top:5px; 
    width:100%; 
    margin-left:0;
}
.product-layer-two li li {
    display: block;
    background: transparent;
    padding: 0;
    transition: all ease .3s;
}
.product-layer-two li li a { 
    font-size: 15px;
    background: transparent;
    padding: 5px 10px 5px 18px;
}
.product-layer-two > li ul > li + li { 
    margin-top:5px;
}

/* 商品分類hover */
.product-layer-two li a,
.product-layer-two li:hover a,
.fa-circle-plus::before,
.product-layer-two li i.close::before {
    transition: all .4s;
}
.product-layer-two li i.close::before {
    content: "\f068";
    transform: rotate(-180deg);
}
.product-layer-two > li:hover > a, .product-layer-two > li:hover > i {
    color: var(--color3);
}
.product-layer-two li:hover ul { 
    border: none !important; 
    /*display:block !important;*/
}
.product-layer-two li li:hover { 
    margin-left: 10px;
}
.product-layer-two li li:hover > a {
    background: transparent;
    color: var(--color3);
}
.product-layer-two li.active a {
    color: var(--color3);
    font-weight: bold;
    border: 0;
}
.product-layer-two li.active i {
    color: var(--color3);
}
.product-layer-two li.active li a {
    color: var(--color1);
    font-weight: 600;
}
.product-layer-two li li.active a {
    color: var(--color3);
    background: transparent;
}

/* 商品列表 */
.products-list .name {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
}
.products-list .price {
    display: none;
}
.products-list .price b.ori_price {
    color: rgba(51, 51, 51, 0.4);
}
.products-list .price b.sp_price,
.products-list .price b {
    color: rgba(51, 51, 51, 1);
}


/* .product_info_page */
.product_info_page .product-layer-two { 
    display: none;
}
.product_info_page .products-list,
.product-wrapper { 
    width: 100%;
}
.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;
}
.sidebarBtn {
    background: transparent;
    border: 0;
}
.product_info li span {
    font-family: var(--Mainfont);
    font-size: 15px;
    font-weight: 800;
    color: var(--color1);
}
.product_info li:nth-of-type(1) .txt_box {
    font-size: 15px;
    letter-spacing: 1px;
}
.product_info li .txt_box {
    color: var(--color1);
}
.product_info li:nth-of-type(1) .txt_box {
    font-size: 15px;
}
.radio-inline__label {
    background: #fff;
    border: 0;
    border-radius: 0;
    padding: 8px 22px;
}
.radio-inline__input:checked + .radio-inline__label {
    color: #fff;
    background: var(--color3);
    border: 0;
}
.sidebarBtn .price span.ori_price {
    text-decoration: line-through;
}

/* 商品資訊&相關推薦 */
.pd_tabTitle li a {
    font-size: 18px;
    font-weight: 600;
}
.pd_tabTitle li.activeTab {
    border: 0;
}
.pd_tabTitle li.activeTab a {
    color: var(--color3);
}
.pd_tabTitle li.activeTab::after {
    height: 3px;
    background: var(--color3);
}
.pd_tabInner_contain {
    font-weight: 600;
}
.prod_related * {
    transition: all ease-in .3s;
}
.prod_related {
    background: transparent;
    padding: 50px 15px 25px 15px;
}
.prod_related h6 {
    margin: 0 auto 30px;
}
.prod_related h6 span:before {
    font-size: 20px;
    color: var(--color1);
}
.related_list {
    max-width: 1250px;
}
.related_list li a {
    position: relative;
    background: transparent;
    padding: 0;
}
.related_list li a:before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: var(--color2);
    opacity: .7;
    z-index: 1;
}
.related_list li a::after {
    content: '詳細資料';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    opacity: 0;
    z-index: 1;
}
.related_list li a p {
    color: var(--color1);
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    letter-spacing: 1px;
    line-height: 1.5;
    margin-top: 15px;
}
.lastPage {
    position: relative;
    background: linear-gradient(135deg, #9E0605 0%,#9E0605 50%,#8A0404 51%,#8A0404 100%);
    overflow: hidden;
    z-index: 1;
}
.lastPage:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 200%;
    background: linear-gradient(135deg, #9E0605 0%,#9E0605 50%,#8A0404 51%,#8A0404 100%);
    z-index: -1;
}

/* .product_info_page - hover */
.related_list li a,
.related_list li a:before,
.related_list li a::after,
.related_list li a:hover,
.related_list li a:hover:before,
.related_list li a:hover::after,
.lastPage,
.lastPage::before,
.lastPage:hover,
.lastPage:hover::before {
    transition: all .4s;
}
.related_list li a:hover:before {
    width: 100%;
}
.related_list li a:hover::after {
    opacity: 1;
}
.lastPage:hover:before {
    width: 100%;
    background: linear-gradient(135deg, #8A0404 0%,#8A0404 50%,#9E0605 51%,#9E0605 100%);
}

/* ------結帳頁面------ */
.rewrite_simple {
    background: #333333 url(../images/simple_left.png) 10% center no-repeat;
}
.send_simple {
    background: rgb(138, 138, 138) url(../images/simple_right.png) 88% center no-repeat;
}

/* 訂單成立 */
.pay_text a.animated-arrow:nth-child(1) {
    background: #48AE4F;
}
.pay_text a.animated-arrow:nth-child(2) {
    background: #333333;
}
.order_list_tit b {
    color: #333;
}
.order_list_pro tr:first-child {
    background: #333;
}
.order_list_pro tr:first-child td {
    color: #fff;
}



@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_page .product-layer-two,
    .product_page .products-list {
        width: 100%; 
        border-right: none;
    }
    .product_page .product_menu_list {
        width: 100%; 
        order: 0; 
        min-height: unset;
    }
    .product_page .product_menu_list>h5{
        display: block;
    }
    .product-layer-two { 
        margin-right: 0; 
        grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); 
        grid-gap: 5px;
    }

    /* .product_page頁面物件順序設定 */
    .product_page .show_content > a { 
        order: 1;
    }
    .product_page ul.products-list { 
        order: 2;
    }
    .product_page ul.page { 
        order: 3;
    }

    /* .product_page */
    .product_page .product_menu_list {
        background: #F7F5F2;
        padding: 5px 15px;
    }
    .product_page .product_menu_list > h5 {
        margin: 0;
    }

    /* .product_info_page */
    .mobile_product_name {
        display: none;
    }
}

@media screen and (max-width: 600px) {
}

@media screen and (max-width: 480px) {
    .product_info_page .main_part {
        padding: 10px 10px;
    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 相簿管理 */

/* 00---共用 */
.subalbum-menu h2 {
    display: none
}
.overlay {
    display: none;
}

/* 00---共用--hover */
.show-list .item a img,
.show-list:hover .item a img,
.show-list .item a:hover img,
.show-list .item a p,
.show-list .item a:hover p {
    transition: all .4s;
}
/* .show-list:hover .item a img {
    filter: brightness(0.8) saturate(0%);
} */
.show-list .item a:hover img {
    /* filter: brightness(0.8) saturate(0%); */
    transform: scale(1.1);
}
.show-list .item:hover .show_name {
    color: var(--color3);
}
.show-list .item a:hover p {
    color: var(--color3);
}

/* 01---.album_page */
.other_album_choice li {
    border-radius: 0;
    padding: 12px 0;
}
.other_album_choice li a {
    padding: 12px 20px;
}

/* .album_page - hover */


/* 02---.album_class_page */
.other_subalbum li {
    background: transparent;
}
.other_subalbum li a p {
    font-size: 17px;
    font-weight: bold;
    letter-spacing: 0.15em;
    margin-top: 5px;
}
.album_fixed_title {
    background: transparent;
}

/* .album_class_page - hover */

/* 03---.album_info_page */
.album_descrip p {
    display: none;
}

@media screen and (max-width: 768px) {

}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 文章管理 */

/* ----blog_page---- */

/* 文章分類 */
h5.blog_le_t {
    display: none;
}
.blog_search input[type=submit] {
    background: url(https://pic03.eapple.com.tw/NinisStudio/article_search.svg) no-repeat center center;
}
.accordion li .link a,
.submenu a {
    letter-spacing: .05em;
}
.submenu a i {
    display: none;
}


/* 文章分類 - hover */
.blog_le .accordion > li.on_this_category {
    color: var(--color2) !important;
    background: transparent !important;
} /* 當前分類 */
.blog_le .accordion > li:hover {
    color: var(--color2);
    background: transparent !important;
} /* 點擊分類 */
.blog_le .accordion > li:hover .link {
    color: var(--color2) !important;
} /* 當前分類 */
.blog_le .accordion > li:hover .link a, 
.blog_le .accordion > li.on_this_category .link a {
    color: var(--color2) !important;
}
.blog_le .accordion > li.on_this_category .link i {
    color: var(--color2) !important;
} /* 當前分類 */
.blog_le .accordion > li:hover .link i {
    color: var(--color2) !important;
} /* 點擊分類 */
.submenu li.on_this_category a, 
.submenu a:hover {
    color: var(--color2);
    background: transparent;
    padding-left: 30px;
} /*點擊子分類 */

/* 文章列表 */


/* hover */
.fa-chevron-down::before,
.blog_le .accordion li.open i.fa-chevron-down::before {
    transition: all .3s;
}
.blog_le .accordion li.open i.fa-chevron-down::before {
    content: "\f078";
    transform: rotate(-180deg);
}

/* ----blog_in_page---- */
.blog_shareData {
    flex-direction: row;
}
.blog_back a.article_btn_prev,
.blog_back a.article_btn_next {
}
.news_related_list * {
    transition: all ease-in .3s;
}
.news_related_list li a {
    background: transparent;
}
.news_related_list li a p {
    font-family: "Noto Sans TC", sans-serif;
    text-align: left;
    letter-spacing: 1px;
    line-height: 1.5;
    margin-top: 15px;
}

@media screen and (max-width: 960px) {
    .subbox_item {
        border: 0;
    }
}

@media screen and (max-width: 768px) {
    .blog_search input[type=search] {
        -webkit-appearance: none;
        background: transparent;
    }
}

@media screen and (max-width: 480px) {
    .blog_list_ri h5 {
        font-size: 18px;
    }
}

/* = = = 聯絡我們 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 左-聯絡資訊 */

/* 右-表單 */
.contact_content .information_right {
    width: calc(100% - 310px);
}
.contact_form li .form__label {
    text-align: left;
}
.noborder:focus {
    outline: none;
}
.contact_form li.last blockquote input {
    padding: 7px 30px;
}
.contact_form li.last cite input {
    padding: 7px 35px;
}
/* 送出按鈕 */
.contact_form li.last blockquote, .contact_form li.last cite {
    width: 180px;
}

/* hover */
.contact_form li.last blockquote:hover input, .contact_form li.last cite:hover input {
    letter-spacing: 2px;
}
.contact_form li.last cite:hover i.fa-solid.fa-arrow-right {
    margin: 0;
}


@media screen and (max-width: 600px) {
    .contact_form li .form__label {
        font-weight: normal;
        background: transparent;
        padding: 0;
    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* TOP按鈕 */
#to_top {
    font-family: 'Noto Sans TC', sans-serif;
    color: var(--color1);
    border-radius: 0;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0);
    transition: all .3s;
}
#to_top i.top {
    width: 15px;
    height: 15px;
}
#to_top i.top:before, 
#to_top i.top:after {
    height: 10px;
    background: var(--color1);
}
#to_top i:before {
    transform: rotate(-45deg);
}
#to_top i:after {
    transform: rotate(45deg);
}
#to_top:hover {
    opacity: .7;
    transition: all .3s;
}

/* 手機版置底按鈕 */
/* #bottom_menu li a {
    color: #fff;
}
#bottom_menu li:nth-of-type(1) {
    background: #4D4D4D;
}
#bottom_menu li:nth-of-type(1) a {
    color: #fff;
}
#bottom_menu li:nth-of-type(2) {
    background: #90A183;
}
#bottom_menu li:nth-of-type(3) {
    background: #99C681;
} */


 /* 開啟手機板下方按鈕所需設定 */
@media screen and (max-width: 768px) {
    #to_top { 
        bottom:65px;
    }
    .footer.with_shopping_mode { 
        padding: 40px 0 10px;
    }
    #bottom_menu {
        display: none;
    }
    #bottom_menu li:nth-child(1) {
        background: ;
    }
    #bottom_menu li:nth-child(2) {
        background: ;
    }
    #bottom_menu li:nth-child(3) {
        background: ;
    }
    #bottom_menu li a {
        color: #fff;
    }
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*--------內頁BANNER 設定----------*/

.banner {
    height: 26vw;
    background-image: url(https://pic03.eapple.com.tw/dongyiwood/banner.jpg);
	background-size: cover;
    background-repeat: no-repeat;
    animation-name: ban_enter;
    animation-duration: 3s;
    overflow: hidden;
}
.banner h5 {
    position: relative;
    top: 7%;
    font-family: var(--Mainfont);
    font-size: 28px;
    color: #fff;
    letter-spacing: 0.2rem;
}
.banner h5:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #fff;
}

@keyframes ban_enter {
    0% { 
        transform: scale(1.05); 
        filter: blur(5px);
    }
    30% { 
        filter: blur(0px);
    }
    100% { 
        transform: scale(1);
        filter: blur(0);
    }
}

/*促銷方案*/
.banner.banA {}
.banner.banB {}

/*聯絡我們*/
.banner.banC {}

/* 匯款通知 */
.banner.banD {}

/*相簿管理/作品展示*/
.banner.banE {}

/*商品展示*/
.banner.banF {}

/*文章管理*/
.banner.banblog {}

@media screen and (max-width: 1024px) {
    .banner h5 {
        top: 0;
    }
}

@media screen and (max-width: 768px) {
    .banner h5 {
        font-size: 22px;
    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本分類全版面 ( 限制最寬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; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */









