@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');


/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/

body{
    font-family: "Noto Sans TC", "Oswald", sans-serif;
}
.path p, .path p a{ display: none;}

.edit{ padding: 0px 0;}
.info_fix{ display: none;}

#content_main{ background: #12110f;}

#bottom_menu li:nth-of-type(2),#bottom_menu li:nth-of-type(3) { display: none;}

.pageIndex #content_main{  background-image: url(https://pic03.eapple.com.tw/jiesenmortor/in-bg.jpg); background-size: cover; background-position: bottom;}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*選單設定*/
.header_area {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
    background: transparent;
    transition: all 0.3s;
}

.header_area.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s;
}

.header_area .main_header_area {
    background: transparent;
    transition: all 0.3s;
}

/*  */


/* 購物籃 */
.tp_links {
    display: none;
}

.box_search{ margin-bottom: 0px; margin-right: 12px; }

.me_tp_features a {
    margin: 0 0;
}

.me_tp_features a.tp_btn_cart {
    margin-right: 20px;
}

.me_tp_features a.tp_btn_cart span {
    display: none;
}

.me_tp_features a.tp_btn_notice span {
    display: none;
}

.me_tp_features a.tp_btn_cart,.me_tp_features a.tp_btn_notice{ color: #fff;}
.me_tp_features a{ transition: 0.5s;}
.me_tp_features a:hover{ color: #c3952a;}
.me_tp_features a.tp_btn_cart, .me_tp_features a.tp_btn_notice{ display: none;}



/* LOGO */

.header_area .nav-brand img {
    max-width: 100%;
    filter: none;
    transition: all 0.3s;
}

.header_area.sticky .nav-brand img {
    max-width: 100%;
    transition: all 0.3s;
}


.header_area .nav-brand::before {
    content: "";
    display: block;
    width: 0%;
    height: 110%;
    border: 1px #ffffff65 solid;
    position: absolute;
    top: 0%;
    left: 0%;
    opacity: 0;
    transition: all 0.3s;
}

.header_area.sticky .nav-brand::after {
    content: "";
    display: block;
    width: 150%;
    height: 180%;
    opacity: 1;
    transition: all 1s;
}


/*  */
.nav-menu {
    margin: 0;
}

.main_header_area .container {
    max-width: 90%;
}

.nav-menu>li:not(.tp_links) {
    padding-right: 15px;
}

.nav-menu>li:hover>a,
.nav-menu>li.active>a,
.nav-menu>li.focus>a {
    color: #D6A981;
}

.nav-dropdown>li:hover>a,
.nav-dropdown>li.focus>a {
    color: #D6A981;
}

.nav-dropdown>li {
    text-align: center;
}

.me_tp_features {
    position: absolute;
    display: flex;
    width: auto;
    right: 73px;
    z-index: 500000;
    vertical-align: middle;
    margin-bottom: 0;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    top: 14px;
}




.stellarnav>ul>li>a {
    padding: 0;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 40px;
    height: 30px;
    margin: 0 25px;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
}

.stellarnav>ul>li>a {
    color: #fff;
}
.stellarnav>ul>li>a:hover{
    color: #d6ac5b;
}
.stellarnav > ul > li.has-sub > a{
    padding-right: 0;
}
.navigation {
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.nav-header {
    position: relative;
    max-width: 125px;
    top: 10px;
}

.stellarnav li.has-sub>a:after {
    display: none;
}


/*  */
.stellarnav {
    width: auto;
    padding: 10px 50px;
    position: relative;
}

.header_area .main_header_area .stellarnav::before {
    content: "";
    display: block;
    width: 64px;
    height: 0;
    background: linear-gradient(90deg, transparent, transparent);
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
    left: 18px;
    transition: all 0.3s;
}

.header_area.sticky .main_header_area .stellarnav::before {
    left: 0;
    height: 79px;
    width: 100%;
    background: transparent;
    background-image: url(https://pic03.eapple.com.tw/jiesenmortor/nav-bg.png);
    background-size: cover;
    transition: all 1.5s;
}
/* 
.header_area .main_header_area .stellarnav::after {
    content: "";
    display: block;
    width: 64px;
    background: transparent;
    height: 81px;
    border: 1px #b68e3c solid;
    position: absolute;
    top: 50%;
    left: 18px;
    opacity: 0;
    transform: translate(0, -50%);
    transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.header_area.sticky .main_header_area .stellarnav::after {
    left: -1px;
    opacity: 1;
    width: calc(100% + 2px);
    z-index: -1;
    transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
} */

.header_area.sticky .main_header_area .stellarnav>ul>li>a {
    padding: 0;
    color: #fff;
    transition: all 0.3s;
    z-index: 100;
}

.header_area.sticky .main_header_area .stellarnav>ul>li>a:hover {
    color: #d6ac5b;
    font-weight: 500;
    transition: all 0.3s;
}

/*  */


/*下拉*/
.nav-dropdown>li>a {
    background: #f7f5f5;
    transition: 0.2s;
    letter-spacing: 1.5px;
    width: 100%;
}

.nav-dropdown>li>a:hover {
    transition: 0.2s;
    background-color: #d6ac5b;
    color: #000;
}

.nav-dropdown>li:hover>a .submenu-indicator-chevron,
.nav-dropdown>.focus>a .submenu-indicator-chevron {
    border-color: transparent #fff #fff transparent;
}

.stellarnav ul ul {
    background: #000;
    left: 5px;
}

/*  */
.stellarnav li li {
    position: relative;
    z-index: 1;
    background-color: #000000c9;
    overflow: hidden;
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.10);
    padding: 12px 20px;
    text-decoration: none;
    transition: all 0.3s;
}

.stellarnav li li a {
    color: #fff;
    font-size: 14px;
    font-weight: 1000;
    letter-spacing: 0px;
    text-align: left;
    text-decoration: none;
    padding: 0;
    text-transform: uppercase;
    display: block;
    transform-origin: center left;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}

.stellarnav li li a:hover{
    color: #000;
    background: #d6ac5b;
    font-weight: 400;
    transition: all 0.3s;
}

.stellarnav li li:hover {
    color: #000;
    background: #d6ac5b;
    transition: all 0.3s;
}


/*  */




.stellarnav li li {
    border: 1px #ffffff47 solid;
    margin-bottom: -1px;
}

.stellarnav>ul>li>a b {
    font-family: Arial, Helvetica, sans-serif;
}


@media screen and (max-width: 1440px) {
    .stellarnav>ul>li>a {
        margin: 0 5px;
    }

}
@media screen and (max-width:1366px) {
    .header_area.sticky .main_header_area .stellarnav::before{ height: 57px;}
}


@media screen and (max-width: 1200px) {
    .stellarnav>ul>li>a {
        margin: 0 5px;
    }

    .header_area.sticky .nav-brand::before {
        width: 130%;
    }

    .header_area.sticky .nav-brand::after {
      display: none;
    }

    .nav-brand {
        display: inline-block;
        width: 160px;
    }





    .header_area .main_header_area .stellarnav::before {
        content: "";
        display: block;
        width: 64px;
        height: 120px;
        background: linear-gradient(90deg, transparent, transparent);
        position: absolute;
        top: 30%;
        transform: translate(0%, -50%);
        left: 18px;
        transition: all 0.3s;
    }

    /* .header_area .main_header_area .stellarnav::after {
        content: "";
        display: block;
        width: 64px;
        background: transparent;
        height: 120px;
        border: 1px #fff solid;
        position: absolute;
        top: 30%;
    } */

    .header_area.sticky .main_header_area .stellarnav::before {
        height: 120px;
    }
}

@media screen and (max-width: 1024px) {
    .stellarnav ul {
        text-align: right;
    }

    .stellarnav {
        width: auto;
        padding: 10px 10px;
        position: relative;
    }

    .main_header_area .container {
        max-width: 95%;
    }
    .nav-header{ max-width: 100px;}
    .me_tp_features{ top: 2px; right: 14px;}

}




@media screen and (max-width: 768px) {
    .header_area {
        top: 0;
    }

    .navigation {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .nav-header {
        max-width: 70px;
    }

    .me_tp_features {
        top: 9px;
        right: -12px;
    }
    .box_search{ width: 140px; }

    .me_tp_features a.tp_btn_cart, .me_tp_features a.tp_btn_notice{ display: none;}

    .header_area.sticky {
        top: 0;
    }

    .header_area.sticky .nav-brand::before {
        display: none;
    }

    .header_area .nav-brand::before {
        display: none;
    }

    .header_area.sticky .nav-brand::after {
        display: none;
    }

    .stellarnav>ul {
        text-align: center;
        padding: 0px 0;
    }

    .stellarnav.mobile {
        position: absolute;
        left: 0;
        top: 10px;
        width: auto;
        display: inline-block;
        padding: 0;
    }

    .header_area.sticky .main_header_area .stellarnav>ul>li:hover:after {
        display: none;
        transition: all 0.3s;
    }

    .stellarnav.mobile.right .close-menu,
    .stellarnav.mobile.left .close-menu {
        background: #2a2a2a;
        color: #fff;
    }

    .stellarnav .icon-close:before {
        border-bottom: solid 3px #fff;
    }

    .stellarnav .icon-close:after {
        border-bottom: solid 3px #fff;
    }

    .stellarnav li li{
        padding: 0px 0px;
    }
    .stellarnav.mobile.right>ul,
    .stellarnav.mobile.left>ul {
        border-right: 0px #eee solid;
        background-color: #12110f;
    }

    .stellarnav.mobile>ul>li>a b:nth-child(2) {
        font-size: 12px;
        vertical-align: bottom;
        letter-spacing: 2px;
    }

    .stellarnav.mobile li.open {
        background: #000000eb;
    }

    .stellarnav.mobile ul ul {
        background-color: #000000eb;
    }

    .stellarnav.mobile>ul>li {
        border-bottom: 1px #b68e3c96 solid;
    }

    .stellarnav.mobile li a {
        border-bottom: 1px solid #d6ac5b;
        background-color: transparent;
    }

    .stellarnav>ul>li>ul>li>a {
        background-color: #fff;
        border: 0;
        padding: 15px 10px;
    }

    .stellarnav>ul>li>ul>li {
        border: 0;
        background-color: #fff;
    }

    .stellarnav.mobile ul ul li {
        background-color: #000000eb;
    }

    .stellarnav.mobile li.open li.open {
        background: #171717e0;
        padding: 3px;
    }

    .stellarnav.mobile li li.has-sub a {
        padding: 10px 43px 10px 10px;
        border: 0;
    }

    .stellarnav a.dd-toggle .icon-plus:after {
        border-bottom: solid 3px #c49a5f;
    }

    .stellarnav a.dd-toggle .icon-plus:before {
        border-bottom: solid 3px #c49a5f;
    }

    .header_area .main_header_area .stellarnav::before {
        display: none;
    }

    .navigation {
        padding: 0px 0;
    }

    .nav-brand {
        display: inline-block;
        width: 120px;
    }

    .navigation {
        justify-content: flex-end;
    }

    .stellarnav .menu-toggle:after {
        color: #fff;
    }

    .stellarnav .menu-toggle span.bars span {
        background: #fff;
    }

    .stellarnav.mobile>ul {
        border-top: 0;
    }

    .header_area.sticky .main_header_area .stellarnav>ul>li>a {
        padding: 20px 10px;
        color: #fff;
        transition: all 0.3s;
    }

    .stellarnav {
        width: auto;
        padding: 10px 10px;
    }

    .header_area.sticky .main_header_area {
        background: #000;
        transition: all 0.3s;
    }

    .stellarnav.mobile li a {
        border-bottom: 0;
        background-color: transparent;
    }

    .nav-header {
        z-index: 0;
        max-width: 70px;
        position: absolute;
        left: 50%;
        transform: translate(-50%,0%);
    }

    .pageIndex .header_area .stellarnav .menu-toggle span.bars span {
        background: #fff;
    }

    .pageIndex .header_area.sticky .stellarnav .menu-toggle span.bars span {
        background: #fff;
    }

    .pageIndex .header_area .stellarnav .menu-toggle:after {
        color: #fff;
        display: none;
    }

    .pageIndex .header_area.sticky .stellarnav .menu-toggle:after {
        color: #fff;
    }

    .header_area .stellarnav .menu-toggle span.bars span {
        background: #fff;
    }

    .header_area.sticky .stellarnav .menu-toggle span.bars span {
        background: #fff;
    }

    .header_area .stellarnav .menu-toggle:after {
        color: #fff;
    }

    .header_area.sticky .stellarnav .menu-toggle:after {
        color: #fff;
    }

    .stellarnav.mobile>ul>li>a {
        text-align: left;
        overflow: auto;
        height: auto;
        line-height: 150%;
        color: #fff;
        padding: 20px 10px;
    }

    .stellarnav.mobile>ul>li>a.dd-toggle {
        padding: 20px 10px;
        position: absolute;
    }
}

@media only screen and (max-width: 570px) {
    .stellarnav .menu-toggle {
        padding: 15px 10px;
    }
}

@media screen and (max-width:500px) {
    .nav-header{ max-width: 50px; }
    .pageIndex #page .nav-header{ display: none; }
        .stellarnav.mobile { top: 0px;}

}


@media screen and (max-width:350px) {
   .me_tp_features { display: none;}

}

/* 商品下拉超過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個--結束 */


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


.footer .center {max-width: 85%;}
.center {max-width: 85%;}
.footer {background: transparent; width: 100%; padding: 60px 0 20px 0; background-size: cover; background-image: url(https://pic03.eapple.com.tw/jiesenmortor/footer-bg.jpg); background-position: right;}
.footer_info {display: flex;  flex-wrap: wrap;  align-items: center;  justify-content: space-between; padding: 0 0;}
.footer_menu {display: grid;  grid-template-columns: repeat(auto-fit, minmax(min(90px,100%), 1fr));  gap: 3px; width: 100%; text-align: left; margin: 0 0 0 0px; max-width: 800px;}/*footer按鈕最小寬度100px*/
.footer_menu a {color: #c59b5f;margin: 0;	text-align: center;	padding: 18px 5px 20px 5px; border:0; border-right: 0px #f7f7f7 solid;  border-left: 0px #f7f7f7 solid; background: none;  font-size: 14px; transition: all 0.3s;}
.footer_menu a:last-child {border-right: 0px #d6e1e1 solid;}
.footer_menu a:hover {background: transparent; color: #e0e0e0;} 
.copy {background:none; color: #2c2c2c; border:none; padding: 15px 0; text-align: CENTER; margin: 0 0px 0 0; padding: 0 0 30px 0;}
.copy a{color: #2c2c2c;transition:all 0.3s;}
.copy a:hover {color: #2c2c2c;}
.privacyLinks a+a{ border-left: 1px solid #2c2c2c;}
.box_link a{transition:all 0.3s;}
.box_link a:hover {background: #fff;  color: #222;}
.box_link {display: none;}
.footer_logo img {max-width: 160px;}
.footer_logo {text-align: center; width: 20%; max-width: 200px;}
.footer_info ul {width: 86%; text-align: center; display: flex; align-items: center;}
.footer_info li {padding: 15px 30px; display: inline-block;}
.footer_info li p {font-size: 14px; color:#b78f3c; line-height: 230%; text-align: left; width: 100%; display: inline-block; margin-bottom: 0px; font-weight: 400;}
.footer_info li p a{color:#ffffff;}
.footer_info li:nth-child(1) {width: 40%; display: flex; flex-direction: column;}
.footer_info li p:nth-child(1){ order: 2;}
.footer_info li p:nth-child(2){ order: 1;}
.footer_info li p:nth-child(3){ order: 3;}
.footer_info li p:nth-child(4){ order: 4;}

.footer_info li:nth-child(2) {margin-top: 35px; padding: 0 0; margin-bottom: -37px; background:none; width: 59%;}

/*改字*/



.footer_menu a:nth-child(1) {display: none;} /*隱藏回首頁*/

/*top*/
#to_top {width: 44px; height: 44px; bottom: 29px; right: 15px; left: unset; background: #0905059e; box-shadow: none; border-radius: 0; color: #ffffff; border-radius: 2px;}
#to_top i.top {margin-bottom: -12px;}
#to_top i.top:before, #to_top i.top:after {height: 9px; background: #ffffff;}

@media screen and (max-width: 1800px) {
.footer_info li {padding: 15px 0px !important;}
.footer_info li:nth-child(1) {width: 100%;}
.footer_info li:nth-child(2) {width: 100%; margin-top: 5px; margin-bottom: 0px;}
.footer_menu{background: #1a1a1a;}
.footer_info {grid-gap: 10px;}
.footer_info ul{ align-items: flex-start;}
}

@media screen and (max-width: 1380px) {
  .footer_info li:nth-child(2) {width: 100%; margin-bottom: 0px;}
  .copy {text-align: center; width: 100%;}
  .footer_info ul {width: 100%;}
  .footer_logo {width: 100%; max-width: 100%;}
  .footer_menu {max-width: 100%;}
  .footer_info ul{ align-items: center;}
  }
/* @media screen and (max-width: 900px) {
  .footer_menu {grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));}
} */
  @media screen and (max-width: 768px) {
  /* .footer_menu {grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));} */
  .footer_menu{ grid-template-columns:1fr 1fr; }
  .copy {margin: 0px 0px 0 0; padding: 0 0 0px 0;}
  .contact_content .information_right {padding: 30px 0px 10px 0px;}
  .list_before.info li {width: 100%;}
  }

  @media screen and (max-width: 500px) {
    .footer_info ul{ flex-direction: column;}
  }
  

  /* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 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:0px; padding-bottom: 5px;}
.product-layer-two > li ul > li + li { margin-top:5px;}

.product_info_page .product_menu_list { 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;}

@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) {
}


.product_page #content,.product_info_page #content{
    background-image: url(https://pic03.eapple.com.tw/jiesenmortor/in-bg.jpg); background-size: cover;
}

/* 首頁 */
.prod_part{ background: transparent; padding: 50px 20px 100px;}
.animated-arrow.animated-arrow {background: #000;color: #c59b5f;border: 1px solid #c59b5f;height: 52px; width: 183px; }
.i_prod_tit span, .i_video_tit span{font-size: 40px;font-weight: bold; color: #fff; }
.i_prod_tit span::before{ content: "PRODUCTS"; display: block;  font-family:  "Oswald", sans-serif;font-size: 72px; color: #d6ac5b; font-weight: 400;}

@media screen and (max-width:450px) {
    .i_prod_tit span::before{ font-size: 50px;}
}

/*購物車*/
.prod_part {    width: 100%;}
.products-list {    display: grid;    gap: 10px;    grid-template-columns: 1fr 1fr 1fr 1fr;}
.products-list:before{content:none;}
.products-list .item {    width: 100%;}
.product_menu_list>h5{ color: #d6ac5b;}
/*購物車/外層*/
.products-list .more {    border: 1px solid #c59b5f;    color: #c59b5f;}
.products-list .item a:hover .more {    background: #c59b5f; color: #000;}
.products-list .item a{ transition: 0.3s;}
/*價格*/
.products-list .price {    display: flex;    margin-bottom: 5px;    align-items: center;    justify-content: center;    flex-wrap: wrap; display: none;}
.products-list .price b {    margin: 0 5px;    line-height: 180%;    text-align: center;color: #BA926E; display: none;}
.products-list .price b.ori_price {    font-size: 14px;}
/*外層版面*/
.product_page .main_part {    width: 90%;	max-width: 1500px;}
.product_page .show_content {    display: flex;    flex-wrap: wrap;    align-items: flex-start;    justify-content: space-between;}
.product_page .products-list {    width: calc(100% - 280px);}
.product-layer-two {    width: 250px;    margin: 0;}
.product_info_page .product-layer-two {    display: none;}
.product-layer-two li {    margin: 0;    width: 100%;padding: 0 10px;}
.product-layer-two > li.active {    background: transparent;}
.product-layer-two li.active a {    border: unset;border-bottom: 1px dotted #ccc;}
.product-layer-two li a {    color: #c59b5f;    border: none;    background: transparent;    transition: all 0.3s;    line-height: 200%;    transition: all 0.3s;}
.product-layer-two > li > a {    border-bottom: 1px dotted #8B9693;padding-left: 25px;}
.product-layer-two li:hover > a , .product-layer-two li.active > a{color: #c59b5f;}
.product-layer-two li:hover > a:before , .product-layer-two li.active > a:before {background: #c59b5f; color:#fff;}
.product-layer-two > li > a:before {border-radius: 100%;align-items: center; justify-content: center;display: flex;height: 18px; content: "＞";color: #c59b5f;background:transparent;width: 18px; text-align: center; position: absolute; left: 0; top: 50%;transform: translateY(-50%);transition: all 0.3s;padding-left: 2px;font-size: 18px;}
.product-layer-two li ul {    position: relative;padding-top: 1px;}
.product-layer-two li li {    border: none;background: transparent;}
.product-layer-two li li a{    background: transparent;}
.prod_tabs .edit{ color: #fff; text-align: center; }
.product-layer-two li li:hover a{color: #ADA17E;}
.product-layer-two li li {    display: block;}/*hover到才顯示副選單關掉↓*/
.product_info_page .swiper-wrapper .swiper-slide:nth-child(1)::after {display: none;}
.product_info_page .main_part {    width: 90%;}
.inquiry_a1{background: #c59b5f;}
.inquiry_a2{background: #c59b5f;}
.inquiry_a3{ display: none;}
.inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover{background: #8B9693;}
.lastaction {color: #ADA17E;    background-color: #f2f2f2;}
.nextaction {background-color: #ADA17E;}
.product_info li .txt_box {color: #222222;width: 100%;}
.sidebarBtn h2{color: #d6ac5b;  font-weight: bold;}
.sidebarBtn .sp_price {color: #BA926E;}
.sidebarBtn .price span { display: none;}
.sidebarBtn{
  border: 0.3px rgba(221, 221, 221, 0.447) solid;
  background: #12110f;
}
.pd_tabTitle li a{font-size: 24px;    color: #6d7980; font-weight: bold; }
.pd_tabTitle li.activeTab::after{ height: 0.2px; background: #e4c59e6e; }
.mobile_product_name{font-size: 24px;}
.prod_related h6 span:before{font-size: 24px;    color: #595959;}
.prod_related{
  border-top: none;
  background: transparent;
}
.products-list .name{
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  text-align: center;
  margin-bottom: -7px;
}
.product_pic #bx-pager{
  color: transparent;
}
.block{
  background: transparent;
}

ul.prod li h3.prod-thumb{
  color: #000000;
  text-align: left;
  padding: 0  0 3% 0;
  font-size: 23px;
  font-family: "Noto Serif TC" ,  "Quicksand", sans-serif;
  font-weight: 500;
  background: transparent;
}

.related_list li a{ background: #12110f;}
.related_list li a p{ color: #fff;}
.lastPage {
  background: #8d99a5;
  border-radius: 8px;
}

.nextaction {
  background-color: #124375;
  background-image: none;
  text-align: center;
}

.lastaction {
  color: #ffffff;
  background-color: #c59b5f;
  background-image: none;
  text-align: center;
}

.rewrite_simple{
    background: transparent;
    color: #c59b5f;
    border-radius: 8px;
    border: 1px solid #c59b5f!important;
}
.send_simple{
    background: transparent;
    color: #c59b5f;
    border-radius: 8px;
    border: 1px solid #c59b5f!important;
}

.shopping-cart .cart_head{
    background: #0079B0;
}

@media screen and (max-width: 1200px) {
    .products-list{
        grid-template-columns: 1fr 1fr 1fr;
        gap: 24px 10px;
    }
}
@media screen and (max-width:1024px) {
    .product_page #content, .product_info_page #content{
        background-position: left;
    }
}
@media screen and (max-width: 960px) {
    .products-list{
        grid-template-columns: 1fr 1fr;
        gap: 24px 10px;
    }
}

@media screen and (max-width:768px) {
    .product_page .products-list{ width: 100%;}   
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#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;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/*Banner*/
.banner h5 {
  color: #ffffff;
  background: transparent;
  height: 70px;
  padding: 35px 0 0 0;
  position: absolute;
  z-index: 5;
  bottom: min(max(2.875vw, 12vw), 15vw);
  left: 10vw;
  font-size: 40px;
  min-width: 200px;
  font-family:  "Noto Sans TC", sans-serif;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.banner h5:before {
  content: "CONTACT US";
  animation: imgSlideUpAnimation 1s 0.1s ease-in-out forwards;
  opacity: 0;
  font-family:"Oswald", sans-serif;
  font-size: 72px;
  color: #d6ac5b;
}
.services_page #page .banner h5:before{ content: "SERVICES";}
.product_page #page .banner h5:before,.product_info_page #page .banner h5:before{ content: "PRODUCT";}
.album_page #page .banner h5:before,.album_class_page  #page .banner h5:before,.album_info_page #page .banner h5:before{ content: "WORKS";}
.blog_page #page .banner h5:before,.blog_in_page  #page .banner h5:before{  content: "NEWS";}

.banner {
  background-size: cover;
  background-position: center;
  height: 26vw;
  padding: 107px 0;
  position: relative;
  background-image: url(https://pic03.eapple.com.tw/jiesenmortor/in-ban.jpg);
  background-repeat: no-repeat;
 
}
.banner.banB{display: none;}

@keyframes imgSlideUpAnimation{
0% {
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
}
100% {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
}

@media screen and (max-width:1200px) {
    .banner h5{ font-size: 26px;}
    .banner h5:before{ font-size: 48px;}
}

@media screen and (max-width:768px) {
    .banner h5{ font-size: 22px;}
    .banner h5:before{ font-size: 32px;}
}
@media screen and (max-width:600px) {
    .banner h5{ height: 90px;}
    .banner{ background-position: right;}

}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/*文章設定*/
.blog_page #content,.blog_in_page #content{
    background-image: url(https://pic03.eapple.com.tw/jiesenmortor/in-bg.jpg); background-size: cover;
}


.blog_page h4.blog_category_title {
    display: none;
}

.blog_box {
    padding: 0;
    margin-top: 20px;
}

.blog_le {
    padding: 0;
}

.blog_ri {
    padding: 0 0 0 60px;
}

.blog_le,
.blog_ri {
    margin-bottom: 1vw;
}

.blog_subbox {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 24px;
}

.blog_subbox:before {
    content: none;
}

.subbox_item {
    width: 100%;
    margin: 0;
    background: #12110f;
    border-bottom: none;
}

.subbox_item:hover {
    transform: translateY(-6px);
}

.subbox_item a {
    display: flex;
    flex-flow: row wrap;
    gap: 0;
}

.blog_list_le {
    width: 260px;
    padding: 0;
    height: auto;
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
}

.blog_list_le img {
    min-width: 100%;
    display: block;
    width: 100%;
    margin: 0 auto;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog_list_ri {
    display: flex;
    flex-flow: column wrap;
    padding: 44px 36px 44px 44px;
    width: calc(100% - 275px);
    position: relative;
    justify-content: center;
}

.blog_list_ri h5 {
    font-weight: bold;
    color: #d6ac5b;
}

.blog_list_ri em {
    order: 1;
    font-weight: 400;
    margin: 0;
    position: relative;
}

.blog_list_ri p {
    line-height: 165%;
    margin: 16px 0 20px;
    -webkit-line-clamp: 2;
    letter-spacing: 0.5px;
    color: #fff;
}

.blog_list_ri em:after {
    content: 'MORE +';
    letter-spacing: 0.4px;
    color: #c59b5f;
    border: 1px solid #c59b5f;
    font-weight: bold;
    padding: 12px;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 13px;
    font-family: "Oswald", sans-serif;
}

.subbox_item a:before,
.subbox_item a:after {
    content: none;
}

h5.blog_le_t {
    display: none;
}

.blog_le .accordion {
    border-radius: 0;
    background: transparent;
    border: 0px;
}

.accordion li .link a {
    color: #c59b5f;
    font-weight: 400;
    font-size: 15px;
    padding: 12px;
    background: #000;
}
.accordion li+li .link{border-top: 0px;}

.accordion li .link {
    border-bottom: none;
}

.accordion li {
    transition: all 0.2s ease;
    border: 1px solid #c59b5f;
}

.blog_le .accordion>li:hover,
.blog_le .accordion>li.open:hover,
.blog_le .accordion>li.on_this_category:hover {
    background: #c59b5f !important;
}
.blog_le .accordion > li:hover .link a, .blog_le .accordion > li.on_this_category .link a{
    color: #000 !important;   
    background: #c59b5f !important;
}

.blog_le .accordion>li.open,
.blog_le .accordion>li.on_this_category {
    background: #c59b5f !important;
}

.blog_le .accordion>li.open .link a,
.blog_le .accordion>li.open .link i {
    color: #000 !important;
}

.submenu {
    background: #fff;
    font-size: 14px;
}

.submenu a {
    font-family: 'Noto Serif TC', serif;
    color: #444;
    letter-spacing: 0px;
    font-weight: 400;
    padding: 12px 12px 12px 36px;
    border-left: #fff 0 solid;
    transition: all .15s;
}

.submenu li.on_this_category a,
.submenu a:hover {
    background: #fcf9f4;
    color: #222;
}

.submenu a i {
    left: 12px;
    font-weight: 900;
}

.submenu a:hover {
    border-left: #fcf9f4 4px solid;
}

.blog_search input[type=search] {
    background: #fff;
    font-size: 13px;
    border-radius: 0;
    padding: 12px 36px 12px 12px;
}

.blog_search input[type=submit] {
    filter: grayscale(20);
}

.blog_le .accordion li .link i {
    transition: none;
}

/*內頁*/
.articel_mainPic,
.blog_shareData {
    display: none;
}

h4.blog_category_title {
    padding: 0;
    margin-bottom: 20px;
    font-size: 30px;
    color: #d6ac5b;
    letter-spacing: 2px;
}

.blog_box_edit {
    color: #fff;
    font-size: 16px;
}

.blog_box_edit * {
    line-height: 165%;
}

.blog_back {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    justify-content: center;
}

.blog_back a {
    width: 100%;
    font-weight: 500 !important;
}

.blog_back a:hover {
    background: #c59b5f !important;
    color: #000!important;
}

.blog_back a.article_btn_next,
.blog_back a.article_btn_prev,
.blog_back a.article_btn_back {
    background: transparent;
    border: 1px solid #c59b5f;
    transition: all .3s ease;
    color: #c59b5f;
}

.news_related {
    padding: 48px 0;
    background: rgba(0, 0, 0, .1);
}

.news_related_list {
    max-width: 1400px;
    width: 90%;
    display: flex;
    justify-content: center;
}

.lastPage {
    background: transparent;
    border: 1px solid #c59b5f;
    margin: 40px auto 20px;
    transition: 0.3s;
    color: #c59b5f;
    border-radius: 0px;
}

.lastPage:hover{
    background: #c59b5f;
    color: #000;
}


.news_related h6 span:before {
    color: #fff;
}

.news_related_list li a p {
    margin-top: 4px;
    color: rgba(240, 237, 237, 0.941)
}
.news_related_list li a{
    background: unset;
}

.news_related_list li {
    width: calc((100% - 60px) / 4);
    background: #12110f;
}

@media screen and (max-width: 1024px) {

    .subbox_item a {
        flex-direction: column;
    }

    .blog_list_le,
    .blog_list_ri {
        width: 100%;
    }

    .blog_list_ri {
        padding: 24px;
    }

    .blog_list_ri p {
        margin: 10px 0 14px;
    }

    .news_related_list li {
        width: calc((100% - 20px) / 2);
    }

    .news_related_list {
        grid-gap: 20px;
    }
}

@media screen and (max-width: 768px) {

    .blog_ri {
        padding: 0;
    }

    .blog_search {
        margin-bottom: 20px;
    }

    h4.blog_category_title {
        font-size: 26px;
    }

    .news_related_list li a p {
        -webkit-line-clamp: 1;
        word-break: break-all;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .blog_subbox{
        grid-template-columns:1fr 1fr;
    }

}


@media screen and (max-width: 480px) {
    .blog_subbox{
        grid-template-columns:1fr;
    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



.album_page .main_part,.album_info_page .main_part { max-width: 1200px;}
.album_page .show_content,.album_info_page .show_content{ padding-top: 20px;}

.album_page #content,.album_class_page #content,.album_info_page #content {
   background-image: url(https://pic03.eapple.com.tw/jiesenmortor/in-bg.jpg); background-size: cover;
}
/* 相簿=== */
.show-list .item {
    width: 100%;
}
.show-list{
    grid-template-columns:1fr 1fr 1fr;
    grid-gap:30px;
}
.show-list .show_pic {
    /* padding-bottom: 72%; */
    overflow: hidden;
}

.show-list .show_pic img {
    transition: .7s ease-out;
}

.show-list .show_pic img:hover {
    transform: scale(1.05);
    opacity: 0.75;
}

.show-list .show_name {
    text-align: center;
    margin: 20px;
    color: #fff;
}

.show-list .item:hover .show_name {
    color: #c59b5f;
}

.show-list .item:hover .overlay {
    display: none;
}

/* 相簿內頁==== */
.pic-list {
    column-count: 2;
    column-gap: 10px;
}

.pic-list .item {
    width: 100%;
    margin: 0px;
    padding: 0;
}

.pic-list .show_pic {
    padding-bottom: 0;
    height: auto;
}

.album_fixed_title{ 
    background: unset;
}
.subalbum-menu h2{
    padding-left:0px;
    color: #d6ac5b;
}

/* 相簿內頁文案 */
.album_class_page .other_subalbum li p { font-family: "Noto Sans TC";}
.other_subalbum li { background: #12110f}
.other_subalbum li a p{ color: #fff; text-align: center; padding: 10px 0px;} 

@media screen and (max-width:1200px) {
    .show-list{
        grid-template-columns:1fr 1fr 1fr;
        grid-gap:35px;
    }
}

@media screen and (max-width: 768px) {
    .show-list{
        grid-template-columns:1fr 1fr;
        grid-gap:10px;
    }
}


.other_album_choice li {
    background: #000;
    border-radius: 0px;
    border: #c59b5f 1px solid;
}

.other_album_choice li a{ color: #c59b5f ;}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


.contact_page #page{  background-image: url(https://pic03.eapple.com.tw/jiesenmortor/in-bg.jpg); background-size: cover;}
/* 聯絡我們 */
.blank_letter{ color: #bbbbbb; padding-top: 0px;}
.contact_form li .form__label{ color: #fff;}
.info_LINE:before{content:"Line ID" }
.info_TEL:before, .info_TEL2:before, .info_PHONE:before, .info_LINE:before, .info_FAX:before, .info_TAXID:before, .info_MAIL:before, .info_ADD:before, .info_ADD2:before{ width:43px;}
.list_before.info li{ padding-left: 48px; color: #fff; padding-left: 86px;}
.info_TEL:before, .info_TEL2:before, .info_PHONE:before, .info_LINE:before, .info_FAX:before, .info_TAXID:before, .info_MAIL:before, .info_ADD:before, .info_ADD2:before {
  width: 76px !important;
  letter-spacing: 1px !important;
  color: #fff;
  background: #b78f3c;
  padding: 2px 8px;
  font-weight: 500;
  text-align: center;
  border-radius: 0px;}

.list_before{ display: flex;
flex-direction: column;}
/* .list_before.info li.info_PHONE{ order: 1;}
.list_before.info li.info_LINE {order: 2;}
.list_before.info li.info_MAIL{ order: 3;}
.list_before.info li.info_ADD{ order: 4;}
.list_before.info li.info_TAXID{ order: 5;} */
.contact_form{ grid-gap: 24px;}
.contact_form li.last blockquote{ color: #c59b5f;}
.contact_form li.last blockquote, .contact_form li.last cite{ border: 1px solid #c59b5f; border-radius: 0px;background: #000;}
.contact_form li.last cite{ color: #fff; background: #c59b5f;}
.contact_form li:has(input[type=checkbox]) .form__insert, .contact_form li:has(input[type=radio]) .form__insert{ display: unset;}


@media screen and (max-width:600px) {
    .contact_form li .form__label{ background: transparent;}
}




.car_page .information_left {
    display: block;
}
body.car_page .footer_info li p:before{
    position: initial;
    display: inline;
}
.contact_le_map a{background: #2a93d8; }




@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu {}
.footer.with_shopping_mode { padding:30px 0 55px; }
#to_top { bottom:60px;}
}

@media screen and (max-width: 600px) { 
}




