@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/
.edit{ padding: 0px 0;}


/* 麵包屑 */
.path{ display: none;}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* banner */

.banF {
    font-size: 40px;
    padding: 250px 0;
    text-align: center;
    background-image: url(https://pic03.eapple.com.tw/jiehchen/ban.jpg) 
}


.banC { font-size: 40px;
    padding: 250px 0;
    text-align: center;
    background-image: url(https://pic03.eapple.com.tw/jiehchen/ban.jpg) 
}


.banblog{
    font-size: 40px;
    padding: 250px 0;
    text-align: center;
    background-image: url(https://pic03.eapple.com.tw/jiehchen/ban.jpg) 
}


.banner h5 {
    letter-spacing: 2px;
    color: #fff;
    z-index: 1;
    position: relative;
    font-weight: 400;
    text-shadow: 0px 0px 9px #2d2d2de6;
    font-size: 26px;
}

.banner h5:before {
    content: '';
    width: 1px;
    height: 60px;
    display: block;
    background: #ffffff80;
    margin: auto;
    margin-bottom: 20px;
}

.main_part {
    width: 100%;
    max-width: 100%;
    margin: auto;
    padding: 50px 50px;
}

.show-list .show_name {
    color: #fff;
}

.show-list .item:hover .show_name {
    color: #c69855;
}

.overlay {
    background: #c6985557;
}

.other_album {
    display: none;
    position: relative;
}

.pic-list .item h6 {
    color: #fff;
}



#content  {background-image: url(https://pic03.eapple.com.tw/jiehchen/bg.jpg) }


@media screen and (max-width: 1024px) {  
.banF { padding: 220px 0;}
.banC { padding: 220px 0;}
.banblog{ padding: 220px 0; }
}

@media screen and (max-width: 768px) {  
    .banF {
    font-size: 40px;
    padding: 235px 0;
    text-align: center;
    background-image: url(https://pic03.eapple.com.tw/jiehchen/ban.jpg) 
}}

@media screen and (max-width: 480px) { 
    .banF {
        font-size: 40px;
        padding: 145px 0;
        text-align: center;
        background-image: url(https://pic03.eapple.com.tw/jiehchen/700_600.jpg) 
    }

    .banC { font-size: 40px;
        padding: 145px 0;
        text-align: center;
        background-image: url(https://pic03.eapple.com.tw/jiehchen/700_600.jpg) 
    }
    
    
    .banblog{
        font-size: 40px;
        padding: 145px 0;
        text-align: center;
        background-image: url(https://pic03.eapple.com.tw/jiehchen/700_600.jpg) 
    }
    

}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = =====================================================================*/

/* 聯絡我們 */


.blank_letter {
    color: #7b5543;
}

.contact_form {
    color: #000000;
}

.red {
    color: #c69855;
}

.list_before {
    color: #7b5543;
}

.contact_form li .form__label {
    color: #7b5543;
}

.contact_content {
    margin: auto;
    padding: 20px 20%;
}

.contact_content .information_left {
    width: 290px;
}

input[type="reset"] {
    color: #7b5543;
}

.contact_form li.last cite {
    background: #e1dcd7;
    color: #7b5543;
}

.contact_form li.last blockquote, .contact_form li.last cite {
    border: 1px #7b5543 solid;
}

.contact_le_map a {    background: #7b5543;}
.contact_le_map a i.fa-solid.fa-right-to-bracket {display: none;}


@media screen and (max-width: 1399px) {

.contact_content {
    margin: auto;
    padding: 20px 10%;
}}


/* =================================================================================================================================================*/

.swiper-wrapper .swiper-slide::before{
    content: "";
    display: block;
    position: absolute;
    bottom: 81px;
    left: 50%;
    width: 12px;
    height: 12px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 100000;
    bottom: 110px;
    border-right: 1px solid rgba(255,255,255,0.5);
    border-bottom: 1px solid rgba(255,255,255,0.5);
    transform: translateX(-50%) rotate(45deg);
    -webkit-animation: bannerScrollAnimation 0.8s linear infinite;
    animation: bannerScrollAnimation 0.8s linear infinite;
}

/* 圓點隱藏 */
.swiper-pagination{display: none;}


@keyframes bannerScrollAnimation{
    0%, 100% {
       bottom: 81px;
       border-color: rgba(255,255,255,0.5);
    }
    50% {
        bottom: 90px;
        border-color: #fff;
    }
}


@media screen and (max-width: 500px) {

    .swiper-wrapper .swiper-slide:nth-child(2)::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
     -webkit-transform: translateX(-0%);
     transform: translateX(-0%) rotate(0);
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10000;
    }
    
    @keyframes bannerScrollAnimation{
        0%, 100% {
           bottom: 20px;
           border-color: rgba(255,255,255,0.5);
        }
        50% {
            bottom: 30px;
            border-color: #fff;
        }
    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/* 選單變化 */
.header_area {
    position: fixed;
    z-index: 9999;
    width: 100%;
    top: 0;
    left: 0;
    background: #e9e7e5d6;
}

.header_area .main_header_area {
    background: transparent;
    transition: all 0.5s;
}
.header_area.sticky .main_header_area {
    background: transparent;
    transition: all 1s;
}
.header_area .main_header_area::before {
    content: "";
    width: 0%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    background: linear-gradient(90deg,  #ccbfb5,#dbd7cd);
    transition: all 0.5s;
}
.header_area.sticky .main_header_area::before {
    width: 100%;
    box-shadow: #000000a8 1px 1px 2px;
    opacity: 1;
    transition: all 1s;
}
.header_area .main_header_area::after {
    content: "";
    position: relative;
    display: block;
    width: 0%;
    background: linear-gradient(90deg, #aba07d, #e2d8b8, #7b5543);
    height: 2px;
    transition: all 0.3s;
    z-index: 0;
    top: 10px;
}
.header_area.sticky .main_header_area::after {
    width: 100%;
    transition: all 5s;
}
.header_area .navigation {
    width: 100%;
    position: relative;
    padding: 25px 0 10px 220px;
    font-family: 'Noto Serif CJK TC',"Oswald";
    top: 10px;
    transition: all 0.3s;
}

.header_area.sticky .navigation {
    top: 10px;
    transition: all 0.3s;
}

/* .header_area .navigation::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0%;
    height: 90px;
    background: linear-gradient(180deg, #000000d3, #0000002f);
    border-radius: 5px;
    transition: all 0.3s;
}
.header_area.sticky .navigation::before {
    width: 100%;
    transition: all 0.3s;
} */


@media screen and (max-width:1024px) {
    .header_area .navigation {
        padding: 0;
    }
    
    
}


/*  = 預設解除背景輪播 =  */

#content_main {
    margin: 0;
}

.bannerindex {
    position: static;
    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;
    }
}



#to_top {    background: #dbd7ce;   box-shadow: unset;    border-radius: 0%;}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*LOGO設定*/
.nav-brand img {    max-width: 100%;}
.footer_logo {
    display: inline-block;
    vertical-align: top;
    width: 150px;
    margin: 0 10px;
}
.footer_logo img {
    width: 150px;
    
}

.header_area .nav-header {
    position: absolute;
    z-index: 123;
    top: -20px;
    left: 0;
    transition: all 0.3s;
}
.header_area.sticky .nav-header {
    top: -20px;
    transition: all 0.3s;
}
/* LOGO變化 */
.header_area .nav-brand {
    display: inline-block;
    width: 300px;
    transition: all 0.3s;
}
.header_area.sticky .nav-brand {
    display: inline-block;
    width: 300px;
    transition: all 0.3s;
    padding: 15px 0 0 0;
}


.nav-header{    max-width: 300px;}

@media screen and (max-width: 1440px) {
    
}


@media screen and (max-width: 768px) {
.nav-brand-m {    display: block;    text-align: left;    padding: 15px 10px;}
.nav-brand-m img {    max-width: 200px;    width: 100%;}
}



/*選單設定*/



.nav-menu {    margin: 0;}
.main_header_area .container {    max-width: 85%;}
.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: #82633F;}
.nav-dropdown>li:hover>a, .nav-dropdown>li.focus>a {    color: #82633F;}
.nav-dropdown>li {    text-align: center;}
.me_tp_features{
    display: block; 
}
.me_tp_features a {
    color: #474747;
    margin-left: 16px;
}
.tp_links{
    display: none;
}

.stellarnav > ul > li {
    display: inline-block;
    font-weight: 800;
}
/*  */


.navigation {    grid-template-columns: unset;}
.shop_search_btn {    background: #474747;}


/* .stellarnav > ul > li::before {
    content: "";
    display: block;
    width: 0%;
    height: 104px;
    background: linear-gradient(90deg, transparent, #ffffff1a, transparent);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-53%);
    transition: all 0.3s;
} */
.stellarnav > ul > li:hover:before {
    width: 100%;
    transition: all 0.3s;
}

.header_area .stellarnav > ul > li::before{
    display: none;
}
.header_area.sticky .stellarnav > ul > li::before{
    display: block;
}

.stellarnav > ul > li > a {
    padding: 0;
    margin: 0 24px;
    color: #686868;
    font-size: 15px;
}

.stellarnav > ul > li > a b {
    letter-spacing: 6px;
    color: #484848;
    font-weight: 300;
}

/* nav hover */
.stellarnav > ul > li > a:hover::before {
    height: 25px;
    transform-origin: right bottom;
}
.stellarnav > ul > li > a::before{
    content: "";
    width: 1px;
    height: 0px;
    display: block;
    background: #fff;
    position: absolute;
    top: -13px;
    left: 50%;
    transform-origin: left bottom;
    transition: 0.6s;
}

.stellarnav li.has-sub > a:hover::after {
    height: 25px;
    transform-origin: right bottom;
}

.stellarnav li.has-sub > a::after{
    content: "";
    width: 1px;
    height: 0px;
    display: block;
    background: #fff;
    position: absolute;
    top: -13px;
    left: 50%;
    transform-origin: left bottom;
    transition: 0.6s;
}

.stellarnav > ul > li > a:hover{
    color: #513d2e;
}
.stellarnav li.has-sub > a:after {
    display: none;
}

.stellarnav > ul > li > a:hover b {
}



@media screen and (max-width: 1440px) {
    .main_header_area .container {
        max-width: 85%;
    }
    .stellarnav > ul > li > a {
        margin: 0 12px;
    }
}

@media screen and (max-width: 1024px) {
    .header_area {
        position: relative;
    }
    .header_area.sticky .nav-brand {padding: 0px 0 10px 0;}
    .header_area.sticky {position: fixed;  padding: 0 0;}

    .header_area .main_header_area {
        transition: none;
        transition-timing-function: none;
        position: relative;
    }
    .header_area .nav-header {
        top: 8px;
        position: relative;
    }
    .header_area.sticky .nav-header {
        top: 14px;
        position: relative;
    }
    .navigation {
        width: 100%;
        position: relative;
        padding: 0;
    }
    .stellarnav ul {
        text-align: center;
        padding: 0 0 10px 0;
    }

    .header_area.sticky .main_header_area::before{    box-shadow: #00000000 1px 1px 2px;}

    .header_area .main_header_area::after {    top: 0px;}
}


@media screen and (max-width: 768px) {
    .header_area {
        position: relative;
    }
    .header_area .navigation {
        padding: 0;
        top: 0;
    }
    .header_area .nav-header {
        z-index: 0;
    }
    .header_area.sticky .nav-header {
        z-index: 0;
    }
    .header_area .nav-brand {
        width: 250px;
    }
    .header_area.sticky .nav-brand {
        width: 285px;
    }
    .header_area.sticky .nav-header {
        top: 5px;
    }
      
}


@media screen and (max-width: 425px) {
    .header_area.sticky .nav-brand {
        width: 230px;
    }

    .stellarnav.mobile .menu-toggle, .stellarnav.mobile .dd-toggle, .stellarnav.mobile .close-menu, .stellarnav.mobile .call-btn-mobile, .stellarnav.mobile .location-btn-mobile{padding-left: 20px;}

}

@media screen and (max-width: 375px) {
    .header_area.sticky .nav-brand {
        width: 225px;
    }
}



/*下拉*/

/*  */
.stellarnav ul ul {
    background: transparent;
    border: 0;
    border-radius: 6px;
    width: 140px;
    left: -16px;
}
.stellarnav > ul > li > ul > li{
    border: 0;
}
.stellarnav > ul > li > ul > li > a:hover, .stellarnav > ul > li > ul > li > ul > li > a:hover {
    background-color: #7B5543;
    color: #ffffff;
    transition: all 0.3s;
}

.stellarnav > ul > li > ul > li > a, .stellarnav li li.has-sub > a, .stellarnav > ul > li > ul > li > ul > li > a {
    background-color: #B5ADA7;
    padding: 15px 15px;
    color: #343a40;
    text-align: left;
    transition: all 0.3s;
    font-size: 13px;
    line-height: 17px;
    text-align: center;
}



/* .stellarnav > ul > li > ul > li > a::after,.stellarnav > ul > li > ul > li.has-sub > a::after,.stellarnav > ul > li > ul > li > ul > li > a::after {
    content: "";
    position: relative;
    display: block;
    width: 0%;
    height: 1px;
    background-color: #808080;
    bottom: -15px;
    opacity: 0;
    transition: all 0.5s;
} */
.stellarnav > ul > li > ul > li > a:hover:after,.stellarnav > ul > li > ul > li.has-sub > a:hover:after,.stellarnav > ul > li > ul > li > ul > li > a:hover:after {
    width: 100%;
    opacity: 1;
   
    float: none;
    margin-right: 0;
    border: none;
    transition: all 0.5s;
}
.stellarnav li.drop-left li.has-sub > a:after {
    float: none;
    margin-right: 0;
    border: 0;
}

/*        */
.stellarnav > ul > li > ul > li > ul{
    border: 0;
    overflow: visible;
}
.stellarnav > ul > li > ul > li > ul > li{
    border: 0;
}



/* 手機板 */
@media screen and (max-width: 768px) {
    .nav-brand img{
        margin: 6px 0;
    }
    .stellarnav .menu-toggle span.bars span {
        background: #5e5e5e;
    }
    .stellarnav .menu-toggle:after {
        color: #5e5e5e;
    }
    .me_tp_features{
        display: none;
    }
    
    .stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {
        background: #7b5543;
        color: #fff;
    }
    .stellarnav .icon-close:before {
        border-bottom: solid 3px #fff;
    }
    .stellarnav .icon-close:after {
        border-bottom: solid 3px #fff;
    }
    .stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul {
        border-right: 0px #eee solid;
        background-color: rgb(218 214 205);
    }

    .stellarnav.mobile{ 
        left: -36px;
        top: 3px;
    }
    .stellarnav.mobile > ul > li > a {
        padding: 20px 10px;
        border: 0;
    }
    .stellarnav > ul > li:nth-last-child(1) > a {
        margin: 0 7px;
    }
    .stellarnav.mobile > ul > li > a b:nth-child(2) {
        font-size: 12px;
        vertical-align: bottom;
        letter-spacing: 2px;
    }
    .stellarnav.mobile li.open {
        background: #dad6ce;
    }
    .stellarnav.mobile ul ul {
        background-color: #dad6ce;
    }
    .stellarnav.mobile > ul > li {
        border-bottom: 1px #c69855;
    }
    .stellarnav.mobile li a {
        border-bottom: none;
        background-color: transparent;
    }
    .stellarnav > ul > li > ul > li > a {
        background-color: #00000033;
        border: 0;
    }
    .stellarnav > ul > li > ul > li {
        border: 0;
        background-color: #00000033;
    }
    .stellarnav.mobile ul ul li{
        background-color: #dad6ce;
    }
    .stellarnav.mobile li.open li.open {
        background: rgba(12,12,12,1);
        padding: 3px;
    }
    .stellarnav.mobile li li.has-sub a {
        padding: 20px 43px 20px 10px;
        border: 0;
    }
    .header_area.sticky .stellarnav > ul > li::before {
        display: none;
    }
    .stellarnav > ul > li > ul > li > a:hover {
        background-color: transparent;
    }
    .stellarnav > ul > li > ul > li > a, .stellarnav li li.has-sub > a, .stellarnav > ul > li > ul > li > ul > li > a {
        background-color: transparent;
        font-size: 15px;
        text-align-last: left;
        margin-left: 23px;
    }
    .stellarnav > ul > li > ul > li > a, .stellarnav li li.has-sub > a, .stellarnav > ul > li > ul > li > ul > li > a {
        padding: 20px 15px;
    }
    .stellarnav.mobile > ul > li > a.dd-toggle{ top: 11px;}
    .stellarnav a.dd-toggle .icon-plus:before{border-bottom: solid 3px #878787;}
    .stellarnav a.dd-toggle .icon-plus:after{ border-bottom: solid 3px #878787;}
    .stellarnav > ul > li > a::before{ display: none;}
}


@media screen and (max-width: 425px) {
    .contact_content {margin: auto;
        padding: 20px 10px;}

    .main_part {
        width: 100%;
        max-width: 100%;
        margin: auto;
        padding: 50px 10px;
}}




/* ====footer===================================================================================================================== */
/*Footer/＝＝＝＝＝*/
.footer {    padding: 80px 0 0;    background: #b5ada6;}
.footer_info li p, .footer_info li p > a {    color: #e8e8e8; line-height: 220%;}
.footer_info {    display: flex;    padding: 0;    justify-content: space-between;}
.footer_logo {        display: none; }
.footer_logo img {    max-width: 100px;}
.footer_info ul {    display: flex;    align-items: flex-start;    justify-content: space-between;    width: 100%;}
.footer_info li {    padding: 0;}
.footer_info li:nth-child(1) {    width: 48%;}
.footer_info li:nth-child(2) {    width: 48%;    text-align: right;}

.footer_menu a {
    background: transparent;
    color: #eee;
    border: none;
    /* width: 42%; */
    display: block;
}
.footer_menu a:first-child {    display: none;}
.footer_menu a:hover {    background: transparent; color: #513d2e;}

.box_link {
    top: 100%;
    width: 100%;
    text-align: left;
    padding: 0 13.5%;
    transition: all 0.3s;
}
.box_link a {
    display: none;
    width: 30px;
    height: 30px;
    background: transparent;
    border-radius: 30px;
    font-size: 18px;
    padding: 2px;
    color: #eee;
    border: 1px #88888847 solid;
    transition: all .3s;
}
.box_link a:hover {    background: transparent;    color: #767676;}
.copy {
    border: none;
    padding: 53px 19%;
    text-align: right;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    background-color: #b5ada7;
}
.copy, .copy a {    color: #ddd; transition:all 0.3s;}
.copy a:hover {
    color: rgb(147, 221, 255);
}


/*--RWD---------------------------------------*/

@media screen and (max-width: 1024px){
    /*.footer_info {padding: 0 80px 0 0;}*/

}

@media screen and (max-width: 768px) {
    /*footer*/
    .footer_info { align-items: center;}
    .footer_logo { text-align: center;}
    .footer_info ul { flex-direction: column;}
    .footer_info li:nth-child(1) { width: 100%;text-align: center;padding: 5%;}
    .footer_info li:nth-child(2) { width: 100%; border-left: none;text-align: center;}
    .copy {    text-align: center;}
    .double_key {    text-align: center;}

    .footer_info { display: flex;
            padding: 0;
            justify-content: space-between;
            flex-wrap: wrap;
        }
    

    /*底部按鈕*/
    #to_top { bottom:60px;}
    #bottom_menu {display: flex; }
    .footer.with_shopping_mode { padding:30px 0 0px; }

    .footer_menu {
        display: flex;
        width: 100%;
        justify-content: center;
        margin: 15px 0;
    }
    .copy {    padding: 30px 0 60px;}
}

@media screen and (max-width: 600px) { 
    /*footer*/
    .footer_info ul { width: 100%;}

    /*聯絡icon*/
    .box_link { text-align: center;}
}
@media screen and (max-width: 425px) {
    .footer_menu {
        display: flex;
        width: 100%;
        justify-content: center;
        flex-direction: column;
    }
    .copy {
        padding: -1px 0 70px;
    }
}



/* = = = 購物車 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

/*--首頁、外層 共同設定---------------------------------------*/

.products-list { display: grid; gap: 10px; grid-template-columns: repeat(4,1fr);}
.products-list::before { content:none;}
.products-list .item { width: 100%;}

/*--首頁區塊---------------------------------------*/

.prod_part { width: 100%;}

/*英文標題*/
.prod_part .i_prod_tit h2 { display: none; color: #7B5543;}

/*中文*/
.prod_part .i_prod_tit span { position: relative; color: #3F4049; font-weight: 600; text-shadow: 2px 2px 0 #FFFFFF, -2px -2px 0 #FFFFFF, 2px -2px 0 #FFFFFF, -2px 2px 0 #FFFFFF;}
.prod_part .i_prod_tit span::before {
    content: "PRODUCT";
    position: absolute;
    top: -45px;
    left: -60%;
    width: 100%;
    text-align: center;
    font-size: 60px;
    color: #7B5543;
    letter-spacing: 3px;
    text-shadow: none;
    transform: translateX(-50%);
    z-index: -1;
}

/*--購物車/外層---------------------------------------*/

/*顏色*/
.products-list .more { border: 1px solid #7B5543; color: #7B5543;}
.products-list .item a:hover .more { background: #7B5543;}

/*名稱*/
.products-list .name { color: #7B5543; font-weight: 600; font-size: 16px; height: 51px;}

/*價格*/
.products-list .price { display: flex; margin-bottom: 5px; align-items: center; justify-content: center; flex-wrap: wrap;}
.products-list .price b { margin: 0 5px; line-height: 180%; text-align: center;color: #7B5543;}
.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;gap: 20px;}
.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: #B5ADA7; border-radius: 10px;}
.product-layer-two li.active li a { color: #fff; border: unset;}

/**/
.product-layer-two li a { color: #222; border: none; border-bottom: 1px dotted transparent; background: transparent; line-height: 200%; transition: all 0.3s;}
.product-layer-two > li > a { border-bottom: 1px dotted #ccc; padding-left: 25px;}
.product-layer-two li:hover > a { color: #7B5543;}
.product-layer-two li.active > a { color: #fff; border: none;}
.product-layer-two li:hover > a:before { background: #7B5543; color:#fff;}
.product-layer-two li.active > a:before { background: #fff; color:#7B5543;}
.product-layer-two > li > a:before {
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    height: 18px;
    content: "＞";
    color: #7B5543;
    background: #f2f2f2;
    width: 18px;
    text-align: center;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
    padding-left: 2px;
    font-size: 13px;
}

/**/
.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;}
.product-layer-two li li:hover a { color: #7B5543;}
.product-layer-two li.active li:hover a { color: #7B5543;}

/*hover到才顯示副選單 關掉↓*/
.product-layer-two li li { display: block;}

/*--購物車/內層---------------------------------------*/

.product_info_page .main_part { width: 90%;}
.mobile_product_name { color: #7B5543; font-size: 24px; text-align: center;}

/*次分類*/
.block { background: #7B5543;}

/*按鈕顏色*/
.inquiry_a1 { background: #7B5543; transition: .3s ease-in-out;}
.inquiry_a2 { background: #658781; transition: .3s ease-in-out;}
.inquiry_a3 { background: #7B5543; transition: .3s ease-in-out;}
.inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover { background: #B5ADA7; transition: .3s ease-in-out;}
.lastaction { color: #fff; background-color: #7B5543; transition: .3s ease-in-out;}
.lastaction:hover { color: #fff; background-color: #222; transition: .3s ease-in-out;}
.nextaction { background-color: #7B5543; transition: .3s ease-in-out;}
.nextaction:hover { color: #fff; background-color: #222; transition: .3s ease-in-out;}
.lastPage { background: transparent; border: 1px solid #7B5543; color: #7B5543; transition: all 0.3s;}
.lastPage:hover { color: #fff; background-color: #7B5543; border: 1px solid #7B5543; transition: all 0.3s;}

/*商品照輪播*/
/*..product_main { width: 100%;}*/
.product_pic h6 { display: none; color: #444;}
.product_pic #bx-pager .block { background: #444;}

/*商品側邊規格*/
.product-layer-two li:hover li{display: block;}
/*.sidebarBtn { display: none;}*/
.product_info li .txt_box { color: #222222; width: 100%;}
.sidebarBtn .sp_price { color: #7B5543;}

/*區塊*/
.prod li { text-align: center;}
.prod li .prod-panel { margin: 20px 0 40px; text-align: justify;}

/*內文*/
ul.prod li h3.prod-thumb { background: transparent; color: #7B5543; border-bottom: 1px solid #7B554388; padding: 5px 5px 15px; display: inline-block;}

/*Q&A*/
/*li.prod-item:not(.is-active) { display: none;}隱藏*/
.qaform .breakF { background: transparent;}
.half_box ul li { text-align: left;}
.half_box ul li img { margin-left: 10px;}/*驗證碼*/

/*相關推薦*/
.prod_related { background: transparent; text-align: center;}
.prod_related h6 { color: #7B5543; border-bottom: 2px solid #7B554388; padding: 5px 5px 15px; display: inline-block;}
.prod_related h6 span:before { font-size: 20px; color: #7B5543;}
.related_list { display: grid; grid-template-columns: repeat(4,1fr);}
.related_list li { padding: 7px 7px 22px; overflow: hidden; width: auto;}
.related_list li:hover { opacity: 0.6; transition: .3s ease-in-out;}
.related_list li a { max-height: 300px;}
.related_list li a img { max-height: 250px;}
.related_list li a p { margin-top: 10px;}

/*--RWD---------------------------------------*/

@media screen and (max-width: 1200px) { .products-list { grid-template-columns: repeat(3,1fr);}}
@media screen and (max-width: 1024px) { .product_page .products-list { grid-template-columns: repeat(2,1fr);}}
@media screen and (max-width: 768px) { 
    .products-list { grid-template-columns: repeat(2,1fr);}
    .product_page .products-list, .product-layer-two { width:100%;}
    .prod_related h6 span:before { font-size: 24px;}
    /*順序*/
    .product_page .products-list { order: -1;}
}
@media screen and (max-width: 600px) { 
    .prod_related h6 span:before{font-size: 20px;}
    .related_list { grid-template-columns: repeat(2,1fr);}
}
@media screen and (max-width: 375px) { .products-list, .product_page .products-list  { grid-template-columns: 1fr;}}



/*文章管理/＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*首頁_文章管理*/
h5.blog_le_t em{display: none;}
h5.blog_le_t span {display: none;}


/*首*/
.module_i_news ul{width: 90%;	grid-template-columns:1fr ;}
.module_i_news ul, .blog_subbox {  display: flex;  gap: 30px;}
.pageIndex .module_i_news { max-width: 2000px; margin: 0 auto; padding: 70px 0 120px 0; background-image: url(https://pic03.eapple.com.tw/jiehchen/ind_news_bg.jpg), url(https://pic03.eapple.com.tw/700451/ind_bg.jpg);
    background-position: left top, center; background-repeat: no-repeat, repeat;}
.pageIndex .module_i_news ul { max-width: 1400px; width: 100%; margin: 70px auto 20px auto;}
.pageIndex .module_i_news li {border-bottom: 0px #eee solid; }
.pageIndex .module_i_news .title_i_box:before { content: ""; width: 550px; border-top: 1px solid #ffffff;  position: absolute;  z-index: 1;}
.module_i_news .title_i_box {  text-align: center;  display: flex;  justify-content: center; align-items: flex-end; margin: 0;}
.pageIndex .module_i_news .title_i_box h6 {font-size: 110px; color: #5F745D; font-weight: 500; font-family: Noto Sans TC; letter-spacing: 5px; padding: 0 0 0 120px;}/*英標*/
.pageIndex .module_i_news .title_i_box h4 {  font-size: 18px;   color: #ffffff;  font-weight: 300;  font-family: Noto Sans TC;  padding:0 120px 0 0px;  bottom: 28px;  position: relative;}/*中標*/
.pageIndex .i_blog_ri { background: #fff; transform: translate(35px, 0px); padding: 15px 35px; position: relative;}
.pageIndex .i_blog_ri h5 {  height: 66px; font-size: 18px; padding: 10px 0; color: #555555; transition: all 0.3s; -webkit-line-clamp: 2;}
.pageIndex .module_i_news li a:hover h5 { color:#033661;}
.i_blog_le{ box-shadow: 4px 16px 40px rgba(30, 103, 64, 0.16);}
.blog_list_le { box-shadow: 4px 16px 40px rgba(30, 103, 64, 0.16);}
.pageIndex .i_blog_ri em { font-size: 12px;  margin: 0;}
.pageIndex .i_blog_ri p { display:none;}
.module_i_news li:hover .i_blog_ri:before { width: 100%;}
.i_blog_ri:before { content: ""; width: 0;  height: 2px;  background: #7b5543;  transition: all .5s;  position: absolute;  bottom: 0;  left: 0;}
.pageIndex .i_blog_le, .blog_list_le {  overflow: hidden;}
.i_blog_le, .i_blog_ri{  width: 100%;}
.pageIndex .i_blog_le img, .blog_list_le img { transition: 0.5s;}
.pageIndex .module_i_news li :hover .i_blog_le img, .subbox_item:hover .blog_list_le img { transform: translate(-50%, -50%) scale(1.05); }
.pageIndex .subbox_item a:hover:before, .subbox_item a:hover:after { opacity: 0; transition: all .5s;}
.module_i_news li{  width: 100%;}

/*查看更多按鈕*/
.fa-arrow-right::before { content: "+";}
.animated-arrow {  background: #7b5543; font-size: 16px; font-weight: 200;  font-family: Noto Sans TC;}
/*-------------------------------------------------------------------------------------------------------------------------------------------------*/






/*-------------------------------------------------------------------------------------------------------------------------------------------------*/

/*文章管理/＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*首頁_文章管理*/
h5.blog_le_t em{display: none;}
h5.blog_le_t span {display: none;}


/*首*/
.module_i_news ul{width: 90%;	grid-template-columns:1fr;}
.module_i_news ul, .blog_subbox {  display: grid;  gap: 30px;}
.blog_subbox {grid-template-columns:unset;}
.pageIndex .module_i_news { max-width: 2000px; margin: 0 auto; padding: 70px 0 120px 0; background: #b5ada7;
    background-position: left top, center; background-repeat: no-repeat, repeat;}
.pageIndex .module_i_news ul { max-width: 1400px; width: 100%; margin: 70px auto 20px auto;}
.pageIndex .module_i_news li {border-bottom: 0px #eee solid; }
.pageIndex .module_i_news .title_i_box:before { content: ""; width: 550px; border-top: 1px solid #ffffff;  position: absolute;  z-index: 1;}
.module_i_news .title_i_box {  text-align: center;  display: flex;  justify-content: center; align-items: flex-end; margin: 0;}
.pageIndex .module_i_news .title_i_box h6 {font-size: 110px; color: #5F745D; font-weight: 500; font-family: Noto Sans TC; letter-spacing: 5px; padding: 0 0 0 120px;}/*英標*/
.pageIndex .module_i_news .title_i_box h4 {  font-size: 30px;   color: #ffffff;  font-weight: 500;  font-family: Noto Sans TC;  padding:0 120px 0 0px;  bottom: 28px;  position: relative;}/*中標*/
.pageIndex .i_blog_ri { background: #fff; transform: translate(0px, 0px); padding: 15px 35px; position: relative;}
.pageIndex .i_blog_ri h5 {  height: 66px; font-size: 18px; padding: 10px 0; color: #555555; transition: all 0.3s; -webkit-line-clamp: 2;}
.pageIndex .module_i_news li a:hover h5 { color:#033661;}
.i_blog_le{ box-shadow: 4px 16px 40px rgba(30, 103, 64, 0.16);}
.blog_list_le { box-shadow: 4px 16px 40px rgba(30, 103, 64, 0.16);}
.pageIndex .i_blog_ri em { font-size: 12px;  margin: 0;}
.pageIndex .i_blog_ri p { display:none;}
.module_i_news li:hover .i_blog_ri:before { width: 100%;}
.i_blog_ri:before { content: ""; width: 0;  height: 2px;  background: #c0002f;  transition: all .5s;  position: absolute;  bottom: 0;  left: 0;}
.pageIndex .i_blog_le, .blog_list_le {  overflow: hidden;}
.i_blog_le, .i_blog_ri{  width: 100%;}
.pageIndex .i_blog_le img, .blog_list_le img { transition: 0.5s;}
.pageIndex .module_i_news li :hover .i_blog_le img, .subbox_item:hover .blog_list_le img { transform: translate(-50%, -50%) scale(1.05); }
.pageIndex .subbox_item a:hover:before, .subbox_item a:hover:after { opacity: 0; transition: all .5s;}
.module_i_news li{  width: 100%;}

/*查看更多按鈕*/
.fa-arrow-right::before { content: "+";}
.animated-arrow {  background: #7b5543; font-size: 16px; font-weight: 200;  font-family: Noto Sans TC;}
/*-------------------------------------------------------------------------------------------------------------------------------------------------*/






/*-------------------------------------------------------------------------------------------------------------------------------------------------*/

/*文章管理/外層＝＝*/
.blog_page .main_part { width: 90%; max-width: 1500px;}
h4.blog_category_title { font-size: 24px;  border-bottom: 2px #7b5543 solid;  padding: 15px 0; }
h4.blog_category_title span{font-size: 24px;}
.path p, .path p a {    color: #d0d0d0;}

/*文章管理/外層＝＝*/
/*側邊*/
.blog_search input[type=search] { border: solid 0 #ccc; border-radius: 0;   background: #f6f8f7;}
.blog_le .accordion { border-radius: 0;  border: 0px #ccc solid;}
.blog_le .accordion > li{transition:all 0.3s;}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {background: #7b5543 !important;}
.blog_le .accordion > li:hover .link a, .blog_le .accordion > li.on_this_category .link a{    color: #000000 !important;}
.submenu a:before { content: '｜';}
.submenu a:hover {    background:#9999;}
.blog_le .accordion li .link:last-child { border-bottom: 1px solid #7b5543;}
.subbox_item a {display: flex;}
.blog_le .accordion > li:hover .link a, .blog_le .accordion > li.on_this_category .link a { color: rgb(255, 255, 255) !important;}

/*右*/
.subbox_item {  width: 100%;}
.module_i_news li a , .subbox_item a {  padding: 5px;}
.module_i_news li, .subbox_item:hover a h5 {color: #7b5543;}
.subbox_item:before { content: "";  position: absolute;  bottom: 0px;  left: 0;  width: 50px;  height: 2px;  background-color: #747A6A;  transition: 0.3s;   z-index: 1;}
.module_i_news li a:after , .subbox_item a:after{ pointer-events:none; opacity: 0; }
.module_i_news li a:hover:before, .module_i_news li a:hover:after { opacity: 0;  transition: all .5s;}
.blog_page .subbox_item a:before { color: transparent;}
.accordion li .link a {    color: #7b5543;}


.blog_list_le {  overflow: hidden;}
.i_blog_le img, .blog_list_le img { transition: 0.5s;}
.i_blog_le img, .subbox_item:hover .blog_list_le img { transform: translate(-50%, -50%) scale(1.05); }
.subbox_item a:hover:after { opacity: 0; transition: all .5s;}
.i_blog_le , .blog_list_le{  position: relative;  padding-bottom: 100%;  height: 0;}/*文章縮圖長寬比例，100% →100:100 = 1:1 正方形 */
.i_blog_le img , .blog_list_le img{display:block; max-width: 100%;  min-width: 100%;  height: 100%;  object-fit: cover;  -moz-object-fit: cover;  -ms-object-fit: cover; -o-object-fit: cover; -webkit-object-fit: cover;
    position: absolute;  left: 50%;  top: 50%;  transform: translate(-50%,-50%);}
.subbox_item:hover .blog_list_le img { transform: translate(-50%, -50%) scale(1.1);  transition: 0.5s;}


.blog_page .blog_list_le { width: 260px; padding-bottom: 20%;}
.blog_page .blog_list_ri h5 { font-size: 18px;  padding: 10px 0;  color: #474747; -webkit-line-clamp: 2;}
.blog_page .blog_list_ri em { font-size: 12px;  margin: 0;}
.blog_page .blog_list_ri { padding: 35px 30px 0; width: calc(100% - 310px);}
.blog_page .blog_list_ri p { padding: 20px 0 0; -webkit-line-clamp: 2;  line-height: 180%;    color: #ffffff;}

/*文章管理/內層＝＝*/
.blog_back a { padding: 15px 15px;}
.blog_back a.article_btn_back{background:#2d2d2d;}
.blog_back a.article_btn_prev, .blog_back a.article_btn_next { background: #7b5543; color: #ffffff; }
.promotion_title span { border: none; padding: 0; margin: 0;}
.promotion_title em { width: 100%; border: none; padding: 0 0px 20px;  margin: 0; }
.promotion_title h2 {  width: 100%; border-bottom: 1px solid #e5e5e5;  padding: 0 0 15px; font-weight: 600;}
.blog_box_edit { padding: 20px 20px;}
.blog_page .subbox_item:hover:before { width: 100%; transition: all .5s;}
.blog_page .subbox_item:before { content: "";  position: absolute;  bottom: 0px;  left: 0;  width: 50px;  height: 2px;  background-color: #7b5543;  transition: 0.3s;  z-index: 1;}
.blog_page .subbox_item a { border-bottom: 1px solid #ccc;}



@media screen and (max-width: 1024px) {
    .module_i_news ul{grid-template-columns:1fr 1fr;}
    .pageIndex .module_i_news {padding: 70px 4% 120px;}
    .blog_page .blog_list_le {padding-bottom: 40%;}
    }
    @media screen and (max-width: 980px) {
    h4.blog_category_title{font-size: 24px;}
    h4.blog_category_title span{font-size: 20px;}
    .module_i_news ul , .blog_subbox{grid-template-columns:1fr;}
    .i_blog_le, .blog_list_le {  padding-bottom: 100%;}
    h4.blog_category_title{font-size: 20px;}
    h4.blog_category_title span{font-size: 18px;}
    .pageIndex .module_i_news ul { grid-template-columns: 1fr 1fr; gap: 10px;}
    .module_i_news ul, .blog_subbox { grid-template-columns: 1fr ; gap: 10px;}
    .blog_page .blog_list_le { width: 100%; padding-bottom: 70%;}
    .blog_page .blog_list_ri { width: calc(100% - 0%); padding: 35px 0 20px;}
    .pageIndex .i_blog_ri {transform: translate(0, 0px); padding: 15px 15px;}
    .pageIndex .i_blog_ri h5 { font-size: 14px; padding: 0px 0 10px; -webkit-line-clamp: 3;         height: 60px;}
    }
    
    
    @media screen and (max-width: 768px) {
        .subbox_item a {display: flex ; flex-direction: column;}
        .blog_page .blog_list_ri{        padding: 0 0;}
        .module_i_news ul, .blog_subbox{gap: 60px;}
        .pageIndex .module_i_news{ background-image:unset;    background-color: #b5ada6;}
        }
    
    
    @media screen and (max-width: 580px) {
    .pageIndex .module_i_news { background-size: 100%;}
    .pageIndex .module_i_news .title_i_box:before { width: 260px;  left: 0;  position: absolute; left: 50%; transform: translate(-50%, -50%);}
    .module_i_news .title_i_box { margin: 0 0px 0 50px;}
    .pageIndex .module_i_news .title_i_box h6 { font-size: 50px; padding: 0;}
    .pageIndex .module_i_news .title_i_box h6:before {top: 60px; left: -50px; width: 40px; font-size: 12px; padding: 10px; height: 40px;}
    .pageIndex .module_i_news .title_i_box h4 {font-size: 12px; padding: 0; bottom: 10px;}
    }
    
    
    
    @media screen and (max-width: 425px) {    .pageIndex .module_i_news ul {
        grid-template-columns: unset;}}
    @media screen and (max-width: 320px){.header_area .nav-brand{        width: 210px;}}