@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/

@import url('https://fonts.googleapis.com/css2?family=Goldman:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mochiy+Pop+One&display=swap');


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*反白顏色*/
::-moz-selection{
    background-color: #E3B32E;
    color: #fff;
}
::selection{
    background-color: #E3B32E;
    color: #fff;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*上方選單解除滑動固定
.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}
*/


/*header*/
.pageIndex header.header_area { position: fixed; background: linear-gradient(to bottom, rgb(0 0 0) 0%, 2%, #00000000 100%);  transition: 1s;}
header.header_area { position: fixed; background: linear-gradient(to bottom, rgb(0 0 0) -3%, 10%, rgb(0 0 0 / 0%) 100%);padding: 20px 10px 10px;}
.main_header_area .container { transition: 1s;}
.navigation { grid-template-columns: 1fr; justify-items: center;  justify-content: center;}
.nav-header { z-index: 9999;}
.stellarnav ul { text-align: center;}
.stellarnav > ul > li.has-sub > a {  padding: 0 1.5vw;}
.stellarnav > ul > li > a { padding: 0 1.5vw; color: #ffffff;  letter-spacing: 4px;  font-size: 16px;}
.stellarnav > ul > li > a b { filter: drop-shadow(0px 0px 6px #888);}
.stellarnav {  position: absolute;  top: 22px;  transition: 1s;}
.stellarnav > ul > li:nth-of-type(3) {  margin-right: 20%;}

/*下拉*/
.stellarnav li.has-sub > a:after{display: none;}

.stellarnav ul ul {
    padding-top: 0px;
}

.stellarnav li li {
    border: none;
    border-bottom: 1px solid #333;
    background: #E3B32E;
}

.stellarnav li li:nth-last-of-type(1) {
    border-bottom: none;
}

.stellarnav li li > a, .stellarnav li li.has-sub > a {
    padding: 10px 10px;
    transition: all 0.3s;
    color: #E3B32E;
    font-size: 14px;
    background: #242424;
}

.stellarnav li li:hover > a, .stellarnav li li.has-sub:hover > a {
    margin-left: 4px;
    color:#E3B32E;
    font-weight: 400;
}

/*hover*/
.stellarnav ul:hover li a { opacity: 0.7; transition: all 0.3s ease-in-out;}
.stellarnav ul li:hover a {opacity: 1;transition: all 0.3s ease-in-out;}
.stellarnav > ul > li:hover > a { letter-spacing: 4px; filter: drop-shadow(0px 0px 6px #555);}

/*下滑*/
.pageIndex .header_area.sticky , .header_area.sticky { background:#000;transition: 1s;box-shadow: rgba(0, 0, 0, 0.25) 0px 5px 15px;padding: 10px;}
header.header_area.sticky .header_area { padding: 5px 10px;}
header.header_area.sticky .main_header_area .container { max-width: 1700px;transition: 1s;}
header.header_area.sticky .navigation { grid-template-columns: 200px 1fr;}
header.header_area.sticky .nav-header { max-width: 65px;}
header.header_area.sticky .stellarnav { position: relative; top: 12px;}
header.header_area.sticky .stellarnav > ul > li:nth-of-type(3) { margin-right: 0;}
header.header_area.sticky .stellarnav ul { text-align: right;}
header.header_area.sticky .stellarnav ul.anchorList {padding: 0px 0;z-index: 2;}
header.header_area.sticky .stellarnav > ul > li > a { padding: 0 5px; color: #fff;}
header.header_area.sticky .stellarnav > ul > li.has-sub > a { padding-right: 0px;}


/*上方選單右邊設定 臉書/LINE/電話/信箱*/
.me_tp_features { display: none;}


/*電腦LOGO
.nav-brand {}
*/

/*手機LOGO
.nav-brand-m {}
*/

/*電腦LOGO*/
.nav-brand { display: flex; align-items: center; max-width: 120px;}
header.header_area.sticky .nav-header {top: 5px;}
.header_area.sticky .nav-brand>img { filter: unset;}
.nav-brand img {
    max-width: 100%;
    filter: contrast(0) brightness(100);
}


.footer_logo { max-width: 100px;}



/* 商品下拉超過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個--結束 */


@media screen and (max-width: 1024px) {
    .navigation {display: grid;}
    .nav-header {max-width: 100px;}
}

@media screen and (max-width: 768px) { 
header.header_area.sticky .stellarnav {position: absolute;}
.nav-header {max-width: 80px; z-index: 2; }
.stellarnav .menu-toggle span.bars span { background: #fff;}
.stellarnav .menu-toggle:after { color: #fff;}
header.header_area.sticky .nav-header {z-index: 1;}

/* 導覽列展開 */
.stellarnav.mobile.left > ul {right: unset; left: 0;font-size: 0;max-width: 100%;padding: 0;        
/* 右滑出現 */left: -100vw;overflow: hidden;transition: all .5s ease;overflow-y: auto;}
/* 卷軸 */
.stellarnav.mobile.left > ul::-webkit-scrollbar {background: #eaeaea;width: 4px;height: 15px;}
.stellarnav.mobile.left > ul::-webkit-scrollbar-button {display: none;background: #eaeaea;border-radius: 0;}
.stellarnav.mobile.left > ul::-webkit-scrollbar-track-piece {background: #fbfbfb;}
.stellarnav.mobile.left > ul::-webkit-scrollbar-thumb {background-color: #888;width: 4px;border-radius: 15px;border: 3px solid #faf6f3;}
.stellarnav.mobile.left > ul::-webkit-scrollbar-track {border-radius: 6px;height: 6px;background-color: #eaeaea;}
.stellarnav.mobile.left.active > ul {left: 0;max-width: 100%;width: 70%;}
.stellarnav.mobile.left.active > ul {width: 70%;max-width: 400px;background: rgb(29 29 29 / 80%);backdrop-filter: saturate(93%) blur(7px);}

.navigation { display: flex; align-items: center; flex-direction: column; justify-content: flex-start;}
.stellarnav > ul > li::before { display: none;}
.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu{background: #E3B32E;}
.stellarnav .icon-close:before , .stellarnav .icon-close:after{border-bottom: solid 3px #ffffff;}
.stellarnav a {color: #ffffff;}
.stellarnav.mobile li a { border-bottom: 1px solid rgb(255 255 255 / 0%);}
.stellarnav.mobile > ul > li > a.dd-toggle { padding: 4px 0px; margin: 4px 0px;}
.stellarnav.mobile > ul > li { border-bottom: 1px #393939 solid;}
.stellarnav.mobile.left > ul { border-right: 1px #393939 solid;}
.stellarnav > ul > li > a{ margin: 5px 0px 10px 0px;}
.stellarnav > ul > li:nth-of-type(3) { margin-right: 0%;}
header.header_area.sticky .stellarnav > ul > li > a {padding: 10px 43px 10px 10px;}
.stellarnav > ul > li.has-sub > a {padding: 10px 43px 10px 10px;}
.stellarnav.mobile li.open { background: #121212;}
.stellarnav li li { background: #000000;}

/* logo */
.nav-header {max-width: 60px;}
.nav-brand { max-width: 60px;}
}

@media screen and (max-width: 600px) {
    .nav-header {max-width: 50px;}
    .nav-brand {max-width: 50px;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*大圖*/
#content_main {  margin: 0;}
.bannerindex { position: relative; height: auto;}
.swiper-banner { position: static; margin: 0; height: auto;}
.swiper-slide { padding: 0px !important;}
.swiper-slide img { height: auto;}
.swiper-pagination { display: none;}
.swiper-slide { position: relative;}
.bannerindex:before {content: ""; position: absolute;  z-index: 999; pointer-events: none;}
.bannerindex:after {content: ""; position: absolute;  z-index: 999; pointer-events: none;}
@media screen and (max-width: 768px) {
    .bannerindex { padding:0; margin:0;}
    }


/*LOGO*/
.bannerindex:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/bcct/bg-01.png);
    width: 100%;
    max-width: 100%;
    height: 0;
    padding-bottom: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 99999;
    animation: wave-reveal 5s cubic-bezier(0.2, 0, 0.2, 1) both;
    filter: drop-shadow(3px 3px 4px rgba(0, 0, 0, 0.2));

}


@keyframes wave-reveal {
  0% {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}


.bannerindex:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/bcct/bg-02.png);
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    opacity: 0;
    transform-origin: 10% 75%;
    animation: banner-down-up cubic-bezier(.165, .84, .44, 1) 2s forwards;
    animation-delay: 0.5s;

}


@keyframes banner-down-up {
    0% {
        opacity: 0;
        transform: scale(1, 0);
    }

    100% {
        opacity: 1;
        transform: scale(1, 1);
    }
}



.bannerindex .swiper-wrapper .swiper-slide:nth-child(1)::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/bcct/title-01.png);
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10000;
}

.bannerindex .swiper-wrapper .swiper-slide:nth-child(2)::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/bcct/title-02.png);
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10000;
}

.bannerindex .swiper-wrapper .swiper-slide-active::before {
    transform-origin: 50% 80%;
    animation: bg-active-1 2.8s forwards cubic-bezier(0.73, 0.08, 0.11, 0.99);
}


@keyframes bg-active-1 {
    0% {
        opacity: 0;
        transform: translate(5%, 0);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*footer*/
.footer {
    padding: 0;
    background: #000;
    position: relative;
}

.footer_logo {
    left: 50%;
    width: 100%;
    max-width: 120px;
    margin: 0 auto;
    position: absolute;
    font-size: 0;
    transform: translateX(-50%);
}


.footer .center {
    position: relative;
    max-width: 100%;
    padding: 60px 50px;
    background-color: #000;
    font-size: 13px;
    color: #E5B62E;
    padding: 4em 0 4rem;
}

.footer_info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px 48px;
    padding: 0;
    max-width: 1400px;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 60px;
    max-width: 1600px;
    margin-left: clamp(60px, 5%, 100px);
    margin-right: clamp(60px, 5%, 100px);
}

.footer_info ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 200px;
    align-items: baseline;
    width: 100%;
    margin: auto;
}

.footer_info li {
    padding: 0;
}

.footer_menu a,
.footer_info li:nth-child(1)>p,
.footer_info li:nth-child(1) a {
    transition: all 0.3s;
    font-style: normal;
    text-transform: none;
    font-size: 13px;
    letter-spacing: 0.1em;
    color: #fff;
    padding: 0;
}

.footer_menu {
    flex-wrap: wrap;
    max-width: 250px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    column-gap: 20px;
    row-gap: 5px;
    margin-left: auto;
}

.footer_menu a {
    margin: 0;
    text-align: left;
    border: none;
    background: transparent;
    width: fit-content;
    transition: all 0.3s;
    padding: 0 0 20px 0;
}

.footer_menu a:first-child {
    display: none;
}

.footer_menu a:hover {
    background: transparent;
    color: #E5B62E;
    text-decoration: underline;
}

.footer_info li p.mail {
    display: none;
}

.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: 0.12em;
    color: #f9f286;
}

.box_link {
    display: none;
    flex-direction: row;
    max-width: fit-content;
    width: 100%;
    justify-content: flex-start;
    padding: 0;
    margin: 0 auto;
    position: relative;
    order: 3;
    padding-top: 20px;
    align-items: flex-end;
    align-content: flex-start;
    text-align: right;
}

.box_link a {
    border: none;
    margin: 0;
    width: fit-content;
    color: #1c1b1b;
    padding: 0 10px;
    font-size: 20px;
    transition: all .5s;
    padding: 0;
    margin: 0 10px 0 0;
    width: 30px;
    height: 30px;
    transform: scale(.8);
    background: #fff;
}

.box_link a.me_tp_line {
    color: #1c1b1b;
    background: #1c1b1b;
}

.box_link a.me_tp_line:hover {
    background: #1c1b1b;
    opacity: .6;
}

.box_link a:hover {
    background: #999;
}

.copy {
    border: none;
    padding: 12px 0;
    background-color: #E5B62E;
    color: #000;
    margin: 0;
    font-size: 11px;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.copy a {
    color: #000;
}

.privacyLinks a+a {
    border-left: 1px solid #000;
}

.copy a:hover {
    color: #fff;
}


@media screen and (min-width: 1700px) {
    .footer_info {
        margin: auto;
    }
}

@media screen and (max-width: 1024px) {
    .footer_info {
        grid-template-columns: 1fr;
        text-align: center;
        position: relative;
        gap: unset;
    }
    
    .footer_logo {
        position: relative;
        left: unset;
        width: 100%;
        max-width: 100px;
        font-size: 0;
        transform: unset;
        padding-bottom: 15px;
    }
    
    .footer_info ul {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer_info li:nth-child(1) {
        border-bottom: 1px solid #4d4036;
        padding-bottom: 20px;
    }
    
    .footer_menu {
        margin: auto;
        max-width: 500px;
        display: block;
    }
    
    .footer_menu a {
        text-align: center;
        padding: 5px;
    }
    
    .footer .center {
        padding: 0em 0 0rem;
    }
}

@media screen and (max-width: 600px) {
    .footer_info {
    margin-left: clamp(30px, 5%, 100px);
    margin-right: clamp(30px, 5%, 100px);
}
}  


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 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;  background: #e5b62e;}
.product-layer-two li li a{ padding:5px 10px; background: #000;}
.product-layer-two li li:hover > a { background:#000; color:#e5b62e;}
.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; display: none;}

.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;}
@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; margin-left: 0px;}
.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;} */

#content {    background: #000;}

#content_main {
    margin: 0;
    background: #000;
}

@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0;}

}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {padding: 210px 0;
    text-align: left;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    min-height: 665px;}
.banner h5 {
    font-size: 36px;
    font-family: "Mochiy Pop One", sans-serif;
    color: #ffffff;
    display: inline-block;
    position: relative;
    padding-left: 13%;
    top: 30px;
    padding-block: 10px;
    font-weight: 100;
    animation: slide-top 1.8s 0.5s both;
}
.banner h5:before {
    font-size: 100px;
    display: block;
    margin-bottom: 20px;
    font-weight: 300;
    line-height: 100%;
    color: #E3B32E;
    font-family: "Goldman", sans-serif;
}

.banF h5:before {
    content: "Case";
}

.banblog h5:before {
    content: "News";
}

.banner.banA {}
.banner.banB { display: none;}
.banner.banC {}
.banner.banD {}
.banner.banE {}
.banner.banF { background: url(https://pic03.eapple.com.tw/bcct/banner01.jpg); background-position: 80% 20%; background-size: cover;}
.banner.banblog { background: url(https://pic03.eapple.com.tw/bcct/banner02.jpg); background-position: 80% 20%; background-size: cover;}


/*動畫*/
@keyframes slide-top {
    0% { -webkit-transform: translateY(100%);transform: translateY(100%); opacity:0; }
    100% {-webkit-transform: translateY(0); transform: translateY(0); opacity:1;}
}


@media screen and (max-width: 1024px) {
.banner h5 { padding-left: 60px;}
}

@media screen and (max-width: 768px) {
.banner { min-height: 600px;}
.banner h5:before { font-size: 64px; margin-bottom: 16px;}
.banner h5 { font-size: 26px;}
}

@media screen and (max-width: 480px) {
.banner { min-height: 400px;}
.banner h5:before { font-size: 56px;}
.banner h5 { font-size: 22px; padding-left: 20px;  top: -45px;}
}

@media screen and (max-width: 375px) {
.banner h5:before { font-size: 48px;}
.banner h5 { font-size: 18px;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*其他分頁*/
.path {display: none;}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*購物車設定*/
/* 產品的看更多按鈕設定 */


.product_page .main_part {
    width: 100%;
    max-width: 90%;
    margin: auto;
    padding: 0;
    padding: 150px 0;
}

.product_menu_list {
    margin-bottom: 0;
}




/* 選單 */
.product-layer-two {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
    margin-right: 10%;
}
.product-layer-two li {
    display: inline-block;
    padding: 0;
    margin: 0;
    position: relative;
    width: 100%;
    height: fit-content;
    text-align: left;
    border-left: 1px solid #6e6e6e29;
    transition: all 0.5s;
    border-bottom: none;
}
.product-layer-two li::before {
    content: "";
    display: inline-block;
    background-color: #E3B32E;
    width: 1px;
    height: 0;
    position: absolute;
    left: 0;
    bottom:  0;
    transition: all 0.5s;
}
.product-layer-two li:hover:before {
    bottom:  inherit;
    top:  0;
    height: 100%;
    transition: all 0.5s;
}
.product-layer-two li a {
    color: #6E6E6E;
    border: 0;
    padding: 15px 20px;
    background: transparent;
    text-wrap: nowrap;
    transition: all 0.3s;
}
.product-layer-two li:hover > a { 
    background: transparent;    
    color: #E3B32E;
    padding-left: 30px;
}
.product_page .show_content {
    margin: auto;
    padding: 0;
    display: flex;
    justify-content: space-between;
}


.page {
    color: #6E6E6E;
    width: 100%;
}
.product-layer-two li.active > a {
    background: transparent;
    color: #E3B32E;
    border: 0;
    border-left: 2px #E3B32E solid;
    font-weight: normal;
}

.products-list .price b {
    color: #E3B32E;
    font-size: 16px;
    width: calc(50% - 10px);
}
.products-list .price b.ori_price{
    color: #eb7171;

}

.product-layer-two li i {
     top: 4px; 
    color: #E3B32E;
    transition: 0.3s;
    /* left: 150px; */
    width: 100%;
    justify-content: flex-end;
}

.fa-circle-plus::before, .product-layer-two li i.close::before {
    transition: all .3s;
}

.fa-circle-plus::before {
    content: "\2b";
}

.product-layer-two li i.close::before {
    content: "\f068";
    transform: rotate(-180deg);
}

/* 內容 */
.products-list .more {
    border: 1px solid #fff !important;
    color: #fff;
    width: 90%;
    margin: 0 auto;
    border-radius: 0px;
}
.products-list .item a:hover .more {    background: #E3B32E;    border-color: #6E6E6E;	color: #ffffff;}
.products-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: calc(100% - 220px);
    flex: 1;
    margin-left: 40px;
    padding: 0;
    grid-gap: 1%;
    height: auto;
}
.clearfix:before, .clearfix:after {
    content: " ";
    display: none;
}
.products-list .item {
    width: calc(100% - 30px);
    display: inline-block;
    vertical-align: top;
    padding: 8%;
    margin: 0.05%;
    background: transparent;
    border-radius: 0;
    transition: all 0.5s;
}
.products-list .item:hover {
    background: #0b0b0b;
    transform: scale(1.05);
    transition: all 0.5s;
    border-radius: 0px;
}

.products-list .item a img {
    height: auto;
    transition: all 0.5s;
}
.products-list .item a:hover img {
    transform: scale(1.05);
    transition: all 0.5s;
}

.products-list .name {
    font-size: 16px;
    color: #fff;
    height: auto;
    padding: 5% 0 0;
}
.products-list .name::before {
    content: "";
    text-align: center;
    display: block;
    width: 100%;
    height: 1px;
    background-color: #fff;
    margin: 10px 0;
}
.products-list .pic {
    display: block;
    position: relative;
    text-align: center;
    padding-bottom: 100%;
    height: 0;
    overflow: hidden;
    transition: all 0.5s;
}
.products-list .item a:hover .pic{
    transition: all 0.5s;
}

ul.page {
    width: 100%;
    margin: 80px auto 20px auto;
    color: #E3B32E;
}

.page strong, .page a:hover {
    background: #E3B32E;
    color: #fff;
}

ul.page li.activeN {
    width: 35px;
}

a {
    color: #cdcdcd;
}



/*內頁*/
.product_info_page .main_part {
    width: 100%;
    max-width: 1440px;
    margin: auto;
    padding: 50px 0px;
}
.lastPage { color: #E3B32E; border: 1px #E3B32E solid ; background: transparent; transition: 0.5s; margin: 50px auto 0;}
.lastPage:hover {background: #E3B32E; color: #fff; border: 1px #0b0b0b solid;}
.nextaction {    background-color: #c1b09c;}
.lastaction {    color: #fff;    background-color: #c1b09c;}

.bx-wrapper .bx-viewport {
    border: none;
    left: 0px;
    background: transparent;
}
.product_pic #bx-pager a {
    border: none;
}
.product_info_page .product-layer-two {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-end;
    width: 10%;
    margin-right: 10%;
    position: absolute;
    left: 100px;
}
.product-wrapper {
    width: 90%;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sidebarBtn {
    padding: 5% 0;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    border: 0;
    background: transparent;
}
.sidebarBtn h2 {
    color: #E3B32E;
    font-family: 'Noto Serif TC', 'Zen Maru Gothic', sans-serif, arial;
    font-size: 24px;
}
.sidebarBtn  {
    color: #6E6E6E;
}
.product_info li span {
    color: #6E6E6E;
}
#bx-pager h6{
    display: none;
}
ul.prod li h3.prod-thumb {
    background: transparent;
    color: #E3B32E;
    padding: 0;
    text-align: left;
}
ul.prod li h3.prod-thumb::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #E3B32E;
    margin: 10px 0;
}
ul.prod {
    list-style: none;
    display: block;
    width: 100%;
}
ul.prod li .prod-panel {
    color: #6E6E6E;
    text-align: left;
}
ul.prod li {
    margin-bottom: 40px;
    color: #6E6E6E;
}
.toShare {
    border-top: 1px solid #E3B32E;
}


.pd_tabTitle {
    font-size: 40px;
    color: #fff;
}
.pd_tabTitle li.activeTab::after {
    height: 5px;
    background: #E3B32E;
}
.pd_tabTitle li {
    border-bottom: none;
}
div#tab01 {
    color: #fff;
}



/*  */
.half_box {
    width: 100%;
    float: left;
    padding-right: 0px;
}
ul.prod li span{
    color: #6E6E6E;
}
.qaform .breakF {
    border: 1px #6E6E6E solid;
    background: #00000061;
    color: #fff;
}
.half_box li.btn_blankTop {
    margin-top: 0;
    display: flex;
    justify-content: space-between;
}
.productBtn{
    text-align: center;
    width: 40%;
    background-color: transparent;
    background-image: none;
    margin-top: 10px;
    padding-left: 0;
    border: 1px #6E6E6E solid !important;
    color: #6E6E6E;
    transition: all 0.5s;
}
.productBtn:hover{
    background-color: #00000071;
    transition: all 0.5s;
}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {
    background: #E3B32E  !important;
}

/*  */

.prod_related {
    background: #0b0b0b;
    padding: 80px 15px;
}
.prod_related h6 span:before {
    content: '相關推薦';
    font-size: 24px;
    color: #E3B32E;
}
.related_list li a {
    display: block;
    padding: 5%;
    background: #222;
    border-radius: 0px;
}
.related_list li a p {
    font-size: 15px;
    color: #e5b62e;
    margin: 20px 0 10px;
}
.related_list li{
    transition: all 0.5s;
}
.related_list li:hover{
    transform: scale(1.05);
    transition: all 0.5s;
}
.mobile_product_name {
    display: none;
}
.product_menu_list {
    margin-bottom: 0;
}
.product_main {
    position: relative;
    left: 0px;
}
.prod_tabs {
    margin-top: 0;
}
@media screen and (max-width: 1440px) {
    .product_main {
        left: 100px;
    }
    .products-list{
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 1100px) {
    .products-list {
       grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 1024px) {
  .products-list .item {
      width: auto;
}
}

@media screen and (max-width: 768px) {
    .product-layer-two {
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        width: 100%;
        margin-right: 0;
        justify-content: space-between;
        align-items: flex-end;
    }
    .product-layer-two li {
        width: calc(100% / 3);
    }
    .product-layer-two li a {
        text-wrap: pretty;
        word-break: keep-all;
    }
    .product-layer-two li:hover > a {
        padding-left: 20px;
    }
    .products-list {
        width: 100%;
        padding: 20px 0;
        margin-top: 30px;
    }
    .product_info_page .product-layer-two {
        display: none;
    }
    .product-wrapper {
        left: 0px;
    }
    .product_info_page .show_content {
        width: 100%;
        padding: 5%;
    }
    .product_main {
        position: relative;
        left: 0;
    }
    .product_menu_list{
        display: none;
    }
    .product_page .main_part {
        padding: 0px 0; 
    }
    
}

@media screen and (max-width: 700px) {
    .products-list {
        grid-template-columns: repeat(2, 1fr);
    }    
}

@media screen and (max-width: 500px) {
    .products-list {
        grid-template-columns: repeat(1, 1fr);
    } 
    .products-list .item {
        width: 100%;
    }
    .product_page .main_part {
        max-width: 85%;
    }
    .product-layer-two li {
        width: calc(100% / 2);
    }
    .products-list .more {
        font-size: 14px;
    }
    .products-list .item {
        width: 100%;
    }
    .product_info_page .main_part {
        width: 100%;
        max-width: 100%;
        margin: auto;
        padding: 50px 0px;
    }
    
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/

/*黑色底*/
.blog_search input[type=search]:focus {
    color: #fff;
}

.blog_page .main_part, .blog_in_page .main_part {max-width: 1700px;}
.blog_le .accordion {  border-radius: 0px;  border: none;}
.blog_le .accordion li .link i {   color: #bcbcbc;}
.submenu a {   color: #aeaeae;    padding: 12px;}
.submenu li.on_this_category a, .submenu a:hover { background: #1a1a1a;  color: #fff;}
.submenu {  background:#1a1a1a;}
.blog_le .accordion li.open .link {  color: #dedede;background-color: #1a1a1a;}
.fa-circle-chevron-right::before { color: #fbfbfb; display:none;}
.submenu li+li {  border-top: 1px solid #2a2a2a;}
.subbox_item a { grid-template-columns: 100%;background-color: #0b0b0b;display: flex; justify-content: space-between;  align-items: center;flex-direction: column;}
.blog_list_ri {  padding: 5px 17px 37px 17px;width: 100%;}
.blog_subbox { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));}
.subbox_item a:before {  font-weight: 400;  opacity: 1;  font-size: 12px;  color: #ffffff;  background-color: #383838; transition:.5s;  padding: 8px 15px; border-radius: 3px;}
.subbox_item a:hover:before {background-color: #E3B32E; transition:.5s;}
.blog_ri { padding: 0 0 0 80px;}
.blog_le .accordion > li:hover .link, .blog_le .accordion > li.on_this_category .link {  color: #fff !important;}
.accordion li:hover .link a {  background-color: #1a1a1a;}
.fa-circle-plus::before { font-size: 18px;color: #fff;}
.subbox_item a:after { content: ''; width: 100%;}
.blog_list_le { width: 100%; position: relative; padding-bottom: 100%; height: 0; overflow: hidden;}
.blog_list_ri h5 {  font-weight: 500; font-size: 18px;  color: #fcfcfc;  margin-bottom: 12px;  letter-spacing: 1.2px;}
.subbox_item a:after {  background: transparent; border-bottom: none;border:none;}
.blog_list_ri p {  letter-spacing: 1px;  font-size: 15px;  color: #c7c7c7;  line-height: 150%;}

/*側邊*/
h5.blog_le_t { color: #E3B32E;}
h5.blog_le_t em { display: block;}
.blog_le .accordion > li{transition:all 0.5s;}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {  transition:all 0.5s; background: transparent !important;  padding-left: 10px; letter-spacing: 2px;}
.blog_le .accordion > li.on_this_category { position: relative;}
.blog_le .accordion > li.on_this_category:before { content: ""; background: #e3b32e; height: 8px; width: 8px; position: absolute; left: 0px; top: 50%; transform: translateY(-50%);}
.blog_le .accordion > li:hover .link a, .blog_le .accordion > li.on_this_category .link a {  color: #e5b62e !important; background-color: transparent;}
.accordion li:hover .link a {background-color: transparent;}
.submenu a:hover {    background: #1B4D7E;}
.blog_search { margin-bottom: 40px;}
.blog_search input[type=search] { border: none; border-bottom: 1px solid;  border-radius: 0;padding: 10px 35px 10px 0px; background: transparent;}
.blog_le .accordion { border-radius: 0px;  border: unset; }
.accordion li .link { padding: 10px;}
.accordion li .link a {padding: 0px;  color: #6E6E6E;}
.blog_le .accordion li .link:last-child {border: none;}


/*文章內頁*/
.blog_le .accordion > li.on_this_category .link a { background-color: transparent;}
.blog_back a.article_btn_back {  background: #ffffff; color: #000;}
h4.blog_category_title {  color: #ffffff;   font-size: 22px;   font-weight: 500;   letter-spacing: 1px;   border-bottom: 1px #6E6E6E solid;   padding: 15px 0;  margin-bottom: 20px;}
.blog_shareData {  margin-bottom: 0px;}
.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%);}
.blog_back a.article_btn_next { background: #E3B32E;  color: #fff;}
.blog_back a.article_btn_prev {  background:#E3B32E; color: #fff;}
.news_related h6 span:before {  font-size: 24px; color: #E3B32E;}
.news_related { background: #0b0b0b; padding: 80px 15px;}
.blog_box_edit * {  color: #fff;}
.news_related_list {max-width: 1550px; grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));}
.news_related_list li a { padding: 0px; background: transparent;}
.news_related_list li a p { color: #fff; padding-top: 15px;}
.toShareNews {color: #fff;}
.articel_mainPic img {display: block; max-width: 500px !important; width: 100% !important;}

/*hover*/
.subbox_item:hover .blog_list_le img { transform: translate(-50%, -50%) scale(1.1);  transition: 0.8s;}

/*相關文章*/
.blog_in_page .news_related_list li figure { aspect-ratio: 16 / 9;}


/*首頁文章*/
.module_i_news { padding: 100px 20px 80px;}
.module_i_news section {  max-width: 1500px; margin: 0 auto;  display: flex;  flex-wrap: wrap;   flex-direction: row;justify-content: space-between;}
.module_i_news_list { width: calc(100% - 320px);padding: 0;}
.module_i_news .title_i_box {  margin-bottom: 0px; text-align: left; width: 250px;}

.module_i_news .title_i_box h4 {
        font-size: 20px;
        color: #fff;
        font-weight: 100;
        letter-spacing: 3px;
        position: relative;
        top: 175px;
        font-family: "Mochiy Pop One", sans-serif;
}
.module_i_news .title_i_box h4:before {
        content: "News";
        font-size: 55px;
        color: #E3B32E;
        position: absolute;
        top: -77px;
        font-family: "Goldman", sans-serif;
}
.module_i_news ul {  grid-template-columns: 1fr 1fr 1fr;grid-gap: 30px;}

.i_blog_b { max-width: fit-content;  margin: 0 auto 0 0; }
.i_blog_b a {  margin: -50px auto 0 0;  display: block;}
.animated-arrow {
        background: #000; color: #E3B32E; display: inline-block; width: 150px;
        /*border-radius: 50px;*/  border: 1px solid #E3B32E;}

.i_blog_b a:hover { background: #E3B32E; color: #fff;}        
.i_blog_b a > b { font-size: 16px;padding-left: 10px;}
.fa-arrow-right::before { content: "+"; font-size: 14px;}

.module_i_news li a { grid-template-columns: 1fr;}
.module_i_news li:nth-child(4) {  display: none;}

.i_blog_ri { max-height: 180px; min-height: 180px;}
.i_blog_le { aspect-ratio: 16 / 9;   order: 2;}
.i_blog_ri h5 { margin-bottom: 15px; color: #fff;}
.i_blog_ri em { color: #6E6E6E; margin: 7px 0 10px; border-bottom: 1px solid;  padding-bottom: 12px;}
.i_blog_ri p { color: #fff;}

/*hover*/
.module_i_news li a:after ,.module_i_news li a:before {display: none;}
.module_i_news li:hover img { transform: scale(1.05); transition: 0.5s;}
.i_blog_le img { transition: 0.5s;}
.module_i_news li a:hover h5 { color: #E3B32E;}


@media screen and (max-width: 1200px) {
/*首頁文章*/
.module_i_news { padding: 180px 20px 80px;}
.module_i_news section {justify-content: center; }
.module_i_news .title_i_box {text-align: center;}
.module_i_news .title_i_box h4:before { font-size: 30px; top: -45px; left: 50%; transform: translateX(-50%);}
.module_i_news .title_i_box h4:after { left: 50%; transform: translateX(-50%); top: -105px; width: 50px;  height: 50px; }
.module_i_news .title_i_box { margin-bottom: 30px;}
.module_i_news .title_i_box h4 { top: 0px;}
.module_i_news_list { width: 100%;}
.module_i_news section { max-width: 100%; flex-wrap: wrap; align-items: center;}

.i_blog_b { margin: 0 auto;}
.i_blog_b a { margin: 50px auto 0 0;}
.blog_list_ri h5 { font-size: 20px;}
.module_i_news { padding: 180px 20px 0px;}
}

@media screen and (max-width: 768px) {
.blog_list_ri h5 {font-weight: 500;  font-size: 18px;}
.subbox_item a:before{ display:none;}
.subbox_item {   border-bottom:none; padding: 0px;}
.blog_ri {padding: 0;}

/*首頁文章*/
.module_i_news .title_i_box { margin-bottom: 40px;}
.module_i_news ul { grid-template-columns: 1fr 1fr; grid-gap: 60px 30px;}
.module_i_news li:nth-child(4) { display: block;}
.i_blog_b a { margin: 30px auto 0 0;}

}

@media screen and (max-width: 600px) {
.blog_list_ri p {  font-size: 12px;}
.module_i_news ul { grid-template-columns: 1fr;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本分類全版面 ( 限制最寬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; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */





@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu {background: #0b0b0b91; backdrop-filter: saturate(93%) blur(7px);}
#bottom_menu li { border-right: 1px solid #0b0b0b;}
#bottom_menu li a {color: #E3B32E;}
.footer.with_shopping_mode { padding:30px 0 70px; }
#to_top { bottom:60px;}
}

@media screen and (max-width: 600px) { 
}




