@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Scope+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200..900&display=swap');

body {
    font-family: "Noto Serif TC", serif;
}

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/
&::-webkit-scrollbar {
    background: #fff;
    width: 7px;
}

&::-webkit-scrollbar-button {
    background: #fff;
    border-radius: 0;
}

&::-webkit-scrollbar-track-piece {
    background: #eee;
}

&::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #bf986d;
}

&::-webkit-scrollbar-track {
    box-shadow: transparent;
}






 

/* 大圖 */
/* ==================== */

/* 第 1 張輪播圖 */
.bannerindex .swiper-slide.swiper-slide-active:nth-child(1)::before {
    content: "";
    position: absolute;
    background-image: url(https://pic03.eapple.com.tw/7farmcare/banner01.png);
    width: 120%;
    height: 120%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left top;
    z-index: 10001;
    pointer-events: none;
    left: -10%;
    top: -10%;
    opacity: 0;
    transform: translateX(-10%);
    animation: banner-appear-and-fade 3s ease-out 1s forwards;
}


.bannerindex .swiper-slide.swiper-slide-active:nth-child(1)::after {
    content: "";
    position: absolute;
    background-image: url(https://pic03.eapple.com.tw/7farmcare/banner02.png);
    width: 60%;
    height: 15%;
    padding-bottom: 4%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    z-index: 10000;
    pointer-events: none;
    right: 25vw;
    top: 40%;
    opacity: 0;
    transform-origin: center center;
    transform: scale(0);
    filter: blur(8px);
    animation: banner02-blur-in-out 5s ease-in-out forwards;
    animation-delay: 0.2s;
}



/* 第 2 張輪播圖 */
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2)::before {
    content: "";
    position: absolute;
    background-image: url(https://pic03.eapple.com.tw/7farmcare/banner01.png);
    width: 120%;
    height: 120%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left top;
    z-index: 10001;
    pointer-events: none;
    left: -10%;
    top: -10%;
    opacity: 0;
    transform: translateX(-10%);
    animation: banner-appear-and-fade 3s ease-out 1s forwards;
}

.bannerindex .swiper-slide.swiper-slide-active:nth-child(2)::after {
    content: "";
    position: absolute;
    background-image: url(https://pic03.eapple.com.tw/7farmcare/banner03.png);
    width: 60%;
    height: 15%;
    padding-bottom: 4%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    z-index: 10000;
    pointer-events: none;
    right: 25vw;
    top: 40%;
    opacity: 0;
    transform-origin: center center;
    transform: scale(0);
    filter: blur(8px);
    animation: banner02-blur-in-out 5s ease-in-out forwards;
    animation-delay: 0.2s;
}




/* ==================== */
/* 動畫定義 */
/* ==================== */
@keyframes banner-appear-and-fade {
    0% {
        transform: translateX(-15%);
        opacity: 0;
    }
    50% {
        transform: translateX(0%);
        opacity: 1;
    }
    100% {
        transform: translateX(5%);
        opacity: 0;
    }
}

@keyframes banner02-blur-in-out {
    0% {
        opacity: 0;
        transform: scale(0.9);
        filter: blur(6px);
    }
    30% {
        opacity: 1;
        transform: scale(1.02);
        filter: blur(2px);
    }
    55% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0px);
    }
    90% {
        opacity: 0.5;
        transform: scale(1);
        filter: blur(3px);
    }
    100% {
        opacity: 0;
        transform: scale(1);
        filter: blur(6px);
    }
}



/* ============================== */
/* 預設不顯示動畫圖 */
/* ============================== */
.bannerindex .swiper-slide.swiper-slide-active:nth-child(1)::before{ pointer-events: none;}

.bannerindex .swiper-slide.swiper-slide-active:nth-child(2)::before{ pointer-events: none;}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*背景*/
#content {
    min-height: 80vh;
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-size: cover;}
#content_main {

    width: 100%;
    min-height: 80vh;
    overflow: hidden;
    z-index: 60;
    position: relative;
    margin-top: 100vh;
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-size: cover;}

#to_top {
    position: fixed;
    left: 10px;
    z-index: 600;
    width: 50px;
    height: 50px;
    padding-top: 10px;
    font-size: 12px;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 0%);
    border-radius: 0%;
    background-color: #bf986d;
    }
    #to_top i:before, #to_top i:after {
        content: "";
        display: block;
        position: absolute;
        border-radius: 100px;
        background: #ffffff;
        transition: all 100ms ease-in-out;}
        


/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/

/*Main/＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/*Main/＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*Header/＝＝＝＝＝*/
/*首頁*/

.header_area.sticky .main_header_area {
        background: #ffffff7e;
        transition: all 0.3s;
    }

.header_area .main_header_area {
        transition: all 0.3s;
        background: linear-gradient(180deg, #1c1c1c, #14000000);}

.header_area {position:fixed;z-index: 9999;padding: 0px;background: #ffffff00; width: 100%;}

/**/
.main_header_area:after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    background: #0a294300;
    transition: all .5s;
    transition-timing-function: ease-in;
}
.header_area .main_header_area::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 100%;
    top: 0px;
    left: 0%;
    background:#ffffff7a;
    transition: all 1s;
    opacity: 0;}
.header_area.sticky .main_header_area::after {
    width: 100%;
    opacity: 1;}


/*其他分頁*/

.main_header_area .container {
        max-width: 1700px;
        transition: all 0.3s;}
.header_area.sticky {
    background: #ffffff8c;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 1px 1px 5px rgba(169, 169, 169, 0.3);}



 .swiper-banner:after {
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0; }

 .swiper-pagination-bullet {
        display: none; }


/*第一層*/
/*文字顏色*/
.stellarnav  ul  li  a {    color: #ffffff;font-weight: 700;}
.stellarnav  ul  li:hover  a {color: #ffffff; }

.sticky .stellarnav  ul  li  a {    color: #bf986d;}
.sticky .stellarnav  ul  li:hover  a {color: #606e4a; }

/*其他分頁文字顏色*/
.stellarnav > ul > li > a {padding: 0 10px 0 0;font-size: 17px; line-height: 30px;margin: 0px 5px;height: 30px;}
.stellarnav  ul  li:hover  a {color: #606e4a; }


.nav-menu {    margin: 0 auto;padding: 0;text-align:center;}
.nav-header {    position: relative;}
.nav-menu>li:hover>a, .nav-menu>li.active>a, .nav-menu>li.focus>a {
    color: #bf986d;}



.nav-menu>li:not(.tp_links) {
    display: none;
}

.nav-menu>li>a {
    color: #bf986d;
    letter-spacing: 3px;
    padding: 25px 7px;
}


.nav-menu>li.focus>a {
    color: #bf986d;
}
.nav-dropdown>li:hover>a .nav-dropdown>li.focus>a {
    color: #bf986d
}


.stellarnav li.has-sub > a:after {
        content: '';
        margin-left: 10px;
      
        position: absolute;
        top: 40%;
        right: 5px;
        transform: translateY(-50%);}   


.navigation {     padding: 20px 0px 20px 300px;}
.navigation {
    width: 100%;
    position: relative;
    padding: 0;
    display: grid;
    grid-template-columns: 100px 1fr;
    grid-gap: 0 20px;
    align-content: stretch;
    justify-content: center;
    align-items: center;
    justify-items: end;}
/*下拉箭頭*/
.stellarnav li.has-sub > a:after {
            height: 8px;
            width: 8px;
            display: block;
            border-style: solid;
            border-width: 0 1px 1px 0;
            border-color: transparent #ffffffe0 #ffffffc6 transparent;
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
            -webkit-transition: border .2s;
            transition: border .2s;    }    

.stellarnav li.has-sub > a:after {
    border-width: 0px 2px 2px 0;
    border-color: transparent #ffffffc6 #ffffffc6 transparent;}

.sticky .stellarnav li.has-sub > a:after {border-color: transparent #bf986d #bf986d transparent; }    

.sticky  .stellarnav li.has-sub > a:after {border-color: transparent #bf986d #bf986d transparent;}
    
    
/*上方購物車*/
.me_tp_features {   display: block; z-index: 999;}
.me_tp_features a {
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px;
    font-size: 14px;
    color: #ffffff;
}
.sticky .me_tp_features a {color: #bf986d;}

.me_tp_features a:hover.tp_btn_cart  {color: #606e4a;}
.me_tp_features a:hover.tp_btn_notice  {color: #606e4a;}


.shop_search_btn {
    background: #bf986d;
    color: #fff;
    font-size: 13px;
    border: none;
    border-radius: 20px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
    padding: 4px 12px;
    cursor: pointer;
    height: 100%;
}


/*第二層*/
.stellarnav li li > a , .stellarnav li li.has-sub > a{    padding: 7px 5px;   transition: all 0.3s; }
.stellarnav li li:hover > a , .stellarnav li li.has-sub:hover > a{color: #ffffff;	padding-left:10px;}
.stellarnav li li.has-sub:hover > a {color: #606e4a;}




/*次選單樣式-半透明底色*/
.stellarnav ul ul {
    background:#ffffff;
    border-radius: 0 0  6px 6px;
    padding: 7px;
    box-shadow: 0px 3px 10px 0px rgb(0 0 0 / 12%);
    -webkit-backdrop-filter: saturate(180%) blur(5px);
    backdrop-filter: saturate(180%) blur(5px);
    width: 180px;
}

/*次選單欄位邊框*/
.stellarnav li li {
    border: 0px var(--f3-color) solid;
}

/*次選單文字樣式*/
.stellarnav li a {
    padding: 7px 10px;
    display: block;
    color: #bf986d;
   
    letter-spacing: .1rem;
}
.stellarnav li li > a ,
.stellarnav li li.has-sub > a {
    padding: 7px 5px;
    border-left: 2px solid transparent ;
}

/*hover欄位樣式-向右滑動*/
.stellarnav li.has-sub ul li a:hover{
    color:#606e4a ;
    padding-left: 10px;
    
}

/*文字底色透明*/
.stellarnav.desktop li.has-sub ul a {
    background: transparent;
    letter-spacing: .1rem;
    position: relative;
}




/*LOGO*/
.nav-header::before {
    content: "";
    display: block;
    width: 120%;
    height: 150px;
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #606e4a;
    z-index: -1;
    border-radius: 0;
    opacity: 1;
    border-radius: 0 0 20px 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
.nav-brand {
    display: block;
    max-width: 100%;
    margin: auto;
    margin-top: 10px;
     animation: iconrun 15s linear infinite;
}

.sticky .nav-brand {animation: none;}

.pageIndex .nav-header::before { top: -100px; opacity: 1; transition: all 0.3s; transition-delay: 0.5s;}
.sticky .nav-header::before { top: 50%;  opacity: 1;  transition: all 0.3s;  transition-delay: 0.5s;}



@keyframes iconrun {
    0% {
        transform: rotate3d(0, 0, 1, 0deg);
    }

    100% {
        transform: rotate3d(0, 0, 1, 360deg);
    }
}

   
/* = = = 頁尾 = = = =  = = = = = = = = */




.footer_logo img {
    width: 100%;
    animation: glowPulse 5s ease-in-out infinite;
}

   
@keyframes glowPulse {
  0%, 100% {
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.2));
  }
  50% {
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.863));
  }
}




.footer {
    padding: 60px 0 0;
    font-size: 14px;
    background-color: #606e4a;
}
    
.footer .center {    max-width: 90%;}
.footer_info {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    padding-right: 0px;
}
.footer_info ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 0px;
    border-top: 1px solid #bf986d;
    border-bottom: 1px solid #bf986d;
    padding-right: 0px;
    align-items: center;
}
.footer_info li p {    display: inline-block;    padding-right: 26px;}
.footer_info li p, .footer_info li p a {    
    color: #bf986d;    
    display: flex;
    flex-direction: column;}
.footer_info li:nth-child(1) {
    color: #bf986d;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}
p.tel {    order: 2;}
p.add {    order: 3;}
p.line {    order: 1;}
.footer_menu {    display: inline-block;}
.footer_menu a {
    margin: 0;
    text-align: center;
    padding: 5px 10px;
    transition: all 0.3s;
    background: transparent;
    border: none;
    color: #bf986d;
}
.footer_menu a:hover {    background: transparent;}
.copy {    background: transparent;    color: #bf986d;	border:none;}
.copy a{    color: #bf986d;transition:all 0.3s;}
.copy a:hover {
    color: #f0f0f0;
}
.box_link {   display: none;}
.box_link a{transition:all 0.3s;}
.box_link a:hover {    background: #bf986d;   color: #fff;}
.privacyLinks a+a {
    border-left: 1px solid #bf986d;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/

.banner.banA {
    background: url(https://pic03.eapple.com.tw/7farmcare/banner1.jpg);
    position: relative;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    flex-direction: column;
    height: 80vw;
    max-height: 650px;
}
.banner.banblog {
    background: url(https://pic03.eapple.com.tw/7farmcare/banner2.jpg);
    position: relative;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    flex-direction: column;
    height: 80vw;
    max-height: 650px;
}
.banner.banF {
    background: url(https://pic03.eapple.com.tw/7farmcare/banner3.jpg);
    position: relative;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    flex-direction: column;
    height: 80vw;
    max-height: 650px;
}
.banner.banC {
    background: url(https://pic03.eapple.com.tw/7farmcare/banner4.jpg);
    position: relative;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    flex-direction: column;
    height: 80vw;
    max-height: 650px;
}


.banner.banB {display: none;}

.banner {
    background: url(https://pic03.eapple.com.tw/7farmcare/banner1.jpg);
   position: relative;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    flex-direction: column;
    height: 80vw;
    max-height: 650px;}

.banner h5 {color:#ffffff;}
.banner h5:before  {
    content: "";
    font-size: 50px;
    white-space: pre-line;
    display: block;
    color: #ffffff;
   font-family: "Scope One", serif !important;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.1;
    -webkit-animation: imgSlideUpAnimation 1s 0.1s ease-in-out forwards;
    animation: imgSlideUpAnimation 1s 0.1s ease-in-out forwards;
    opacity: 0;}

.product_page h5:before {
    content: 'Shop';} 
.product_info_page h5:before {
    content: 'Shop';} 
.blog_page .banner h5:before {
    content: 'Article';} 
.promotions_page h5:before {
    content: 'News';} 
.contact_page .banner h5:before {
    content: 'Contact';} 
.blog_in_page .banner h5:before {
    content: 'Article';} 

.car_page h5:before {
    content: 'Shop';} 
/*匯款*/
.remit_page h5:before {
    content: 'Remittance advice';} 


 @-webkit-keyframes imgSlideUpAnimation {
        0% {
            opacity: 0;
            -webkit-transform: translateY(30px);
            transform: translateY(30px);
        }
    
        100% {
            opacity: 1;
            -webkit-transform: translateY(0);
            transform: translateY(0);
        }
    }
    
 @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: 768px) {
    .banner {
        background-position: 80%;


    }
}


    @media screen and (max-width: 768px) {
       
            
         .banner h5 {
               margin-top: 40px;
                color: #ffffff;
                font-size: 26px;

        }}

/*上方選單右邊設定 臉書/LINE/電話/信箱
.tp_links a:before {寬高大小設定}
.tp_links a.me_tp_fb {}
.tp_links a.me_tp_fb:before {背景換圖/建議.SVG}
.tp_links a.me_tp_line {}
.tp_links a.me_tp_line:before {背景換圖/建議.SVG}
.tp_links a.me_tp_call {}
.tp_links a.me_tp_call:before {背景換圖/建議.SVG}
.tp_links a.me_tp_mail {}
.tp_links a.me_tp_mail:before {背景換圖/建議.SVG}
*/


/*電腦LOGO
.nav-brand {}
*/

/*手機LOGO
.nav-brand-m {}
*/
/*按鈕*/
.animated-arrow {
    background: #bf986d;
    color: #fff;
    display: inline-block;
    margin-top: 20px;
    /* margin-left: auto; */
    height: 50px;
    line-height: 50px;
    overflow: hidden;
    width: 250px;
    /* padding-left: 5%; */
    text-align: center;
    position: relative;}

/*頁碼*/
.path p {
display: none;}


/* = = = 促銷方案 = = = =  = = = = = = = = */

.news_part .title_i_box h4 {
    font-size: 24px;
    color: #606e4a;
    font-weight: 800;
}
/* = = = 相簿 = = = =  = = = = = = = = */

/*外層*/
.show-list .item a {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    text-align: center;
}
/*hover*/
.show-list .item .show_name {
    position: relative;
    color: #9a774f;
    text-decoration: none;
    display: inline-block;
    overflow: hidden;
}
.show-list .item:hover .show_name {
    color: #bf986d;
}
.show-list .item .show_name::before,
.show-list .item .show_name::after {
    content: "";
    position: absolute;
    height: 2px;
    background: #bf986d;
    width: 0;
    transition: width 0.5s ease;
}

.show-list .item .show_name::before {
    top: 0;
    left: 0;
}

.show-list .item .show_name::after {
    bottom: 0;
    right: 0;
}

.show-list .item:hover .show_name::before,
.show-list .item:hover .show_name::after {
    width: 100%;
}



/*內層*/
.other_album_choice li {
    background: #6f5f55;
    font-size: 15px;
    display: inline-block;
    border-radius: 18px;
    padding: 7px 20px;
    margin: 0 7px 7px 0;
}





/* = = = 文章管理 = = = =  = = = = = = = = */

h5.blog_le_t {
    font-size: 24px;
    font-weight: 500;
    color:  #bf986d;
    font-family: serif;
    letter-spacing: 2px;
    margin-bottom: 7px;}
/*側邊標題*/
.accordion li .link a {
    cursor: pointer;
    display: block;
    padding: 15px 10px;
    color:  #bf986d;
    font-size: 14px;
    font-weight: 700;
    position: relative;}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {    background: #bf986d  !important;}  
/*右側文章排版*/
.blog_subbox {

        padding: 5px;
        display: flex ;
        justify-content: flex-start;
        align-items: stretch;
        align-content: stretch;
        flex-wrap: wrap;}
/*標題*/
.blog_list_ri h5 {
            font-weight:bold;
            font-size: 20px;
            color:  #bf986d;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            white-space: normal;
            overflow: hidden;}
/*時間*/
.blog_list_ri em {
                font-size: 14px;
                color: #858585;
                font-style: normal;
                display: block;}
/*內文*/
.blog_list_ri p {
    font-size: 15px;
    color:  #333;
    line-height: 130%;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    word-break: break-all;}
/*內文hover*/
.subbox_item a:after {
        content: '';
        width: 100%;
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        z-index: 8;
        background:#e9dfd3;
        opacity: 0;
    
        transition: all .5s;}
.subbox_item a:before {
    content: 'READ MORE';
    position: absolute;
    z-index: 19;
    bottom: 10px;
    right: 10px;
    opacity: 0;
    font-size: 15px;
    color: #ffffff;
    transition: all .6s;
    background-color: #bc956d;
    padding: 5px 10px;
}

/*文章*/
.blog_box_edit * {
    line-height: 150%;
    color:  #000000;}

.subbox_item {
    display: block;
    width: 100%;
    position: relative;
    border-bottom: 1px solid #bc956d;
    padding: 20px;}


/*分享文字*/
.toShareNews {
        font-size: 1em;
        color:  #bf986d;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        align-content: center;
        flex-wrap: wrap;}
/*文章按鈕*/
.blog_back a.article_btn_back {
        background: #bf986d;}

/*隱藏預覽縮圖*/
.articel_mainPic img{display: none;}

.blog_back a.article_btn_back:hover, .blog_back a.article_btn_prev:hover, .blog_back a.article_btn_next:hover {
            background: #bf986d;}
/*相關文章*/
.news_related {
    background: #e9dfd3;
    padding: 25px 15px;}
.news_related h6 span:before {
        content: '相關文章';
        font-size: 24px;
        color: #bf986d;}
/*按鈕*/
.lastPage {
        font-size: 16px;
        color: #fff;
        background: #bf986d;
        padding: 10px 20px;
        display: block;
        margin: 40px auto;
        width: 130px;
        text-align: center;}

/*上一頁*/
.blog_back a.article_btn_prev { background: #dac0a7;}
.blog_back a.article_btn_next {background: #dac0a7;}
/*文章按鈕*/
.blog_back a.article_btn_back {
    background: #bc956d;
}
.blog_back a.article_btn_back:hover, .blog_back a.article_btn_prev:hover, .blog_back a.article_btn_next:hover {
    background: #97774f;
}



/* = = = 文章管理 -首頁= = = =  = = = = = = = = */

.module_i_news li a:after {    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 8;
    background:rgb(225 225 225 / 90%);
    opacity: 0;
    border: 1px #696969 solid;}
/*首頁-文章顯示*/
 .module_i_news li:nth-child(n+5){
        display:none !important;}
/*標題*/

.module_i_news .title_i_box h4 {
    font-size: 24px;
    color: #606e4a;
    font-weight: 800;
}
/*文章標題*/
.i_blog_ri h5 {
    font-weight: 500;
    font-size: 20px;
    color: #000000;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;}
/*時間*/
    .i_blog_ri em {
        font-size: 14px;
        color: #858585;
        font-style: normal;
        display: block;
        margin: 7px 0;}  
 /*內文*/
 .i_blog_ri p {
    font-size: 15px;
    color: #000000;
    line-height: 130%;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    word-break: break-all;}   

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

.car_page .information_left {
    display: block;
}
/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 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;
  
    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;
    
    width: 100%;
    margin-left: 0;
}

.product-layer-two li:hover ul {
    border: none !important;
    
}

.product-layer-two li li {
    display: block;
    padding: 0;
    transition: all ease .3s;
}

.product-layer-two li.active a {
    font-weight: bold;
    border: 0px #ccc solid;
}




.product-layer-two li li a {
    padding: 5px 10px;
    background-color: #f3f3f32b;
}

.product-layer-two li li:hover>a {
    background: #fff;
    color: #bc956d;
}

.product-layer-two>li {
    width: 100%;
    max-width: 100%;
    padding: 0;
    text-align: left;
    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%;
    background: transparent;
    padding: 20px;
}

.product-layer-two li li:hover {
    margin-left: 15px;
    border-bottom: 1px dotted #ccc;
}

.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: #bc956d;
}

.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;
}

#prod_thumbSwiper .swiper-slide {
    padding-top: calc(25% - 2px);
    position: relative;
}

#prod_thumbSwiper img {
    position: absolute;
    left: 0;
    top: 0;
}

/*外層*/
.products-list .more {
    border: 1px solid #bc956d;
    color: #bc956d;
    font-size: 16px;
    font-weight: bold;
    line-height: 32px;
    text-align: center;
    transition: all .5s;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    bottom: 0;
}

.products-list .item a:hover .more {
    background: #bc956d;
    color: #ffffff;
    letter-spacing: 2px;
}

.products-list .name {
    font-size: 15px;
    color: #444;
    letter-spacing: 1px;
    margin-top: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2em;
}

.products-list .price b {
    color: #bc956d;
    width: calc(50% - 10px);
}

.products-list .item {
    position: relative;
    background-color: transparent;
    padding: 5px;
}

/*左側分類*/

.product-layer-two li a {
    position: relative;
    background: transparent;
    padding: 7px 16px;
    display: block;
    font-size: 16px;
    color: #bc956d;
    border-bottom: 1px #bc956d solid;
    border-left: 0;
    border-right: 0;
    border-top: 0;
}

.product-layer-two li:hover a {
    color: #bc956d;
    border: 1px #bc956d solid;
    background-color: #bc956d00;
}
/*下拉圖示*/
.product-layer-two li i.close::before {
    content: '\f056';
    color: #bc956d;
}

/*左邊分類底色*/
.product-layer-two>li.active {
    background: transparent;

}

/*產品資訊標題*/
.pd_tabTitle li.activeTab a {
    color: #bc956d;
}

element.style {
    color: #bc956d;
}

/*產品資訊內文*/
element.style {
    color: #bc956d;
}
.pd_tabInner_contain {
    padding-top: 20px;
    color: #bc956d;
}

/*右側商品資訊*/
.product_info li .txt_box {
    display: inline-block;
    vertical-align: top;
    color: #bc956d;
}

/*標題*/
.sidebarBtn h2 {
    color: #bc956d;
    font-size: 24px;
}

.sidebarBtn .price {
    color: #bc956d;
    font-size: 22px;
}

.sidebarBtn .sp_price {
    display: block;
    color: #bd2424;
    font-size: 22px;
    font-weight: bold;
}
/*加入購物車*/
.inquiry_a3 {
   background: #b6a495;;
}
/*加入詢價*/
.inquiry_a1 {
    background: #dac0a7;
}
/*檢視詢價車*/
.inquiry_a2 {
    background: #dac0a7;
}


.inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover {
    letter-spacing: 2px;
    background: #b9a084;
}

/*底*/
.sidebarBtn {
    padding: 15px;
    display: inline-block;
    width: 28%;
    vertical-align: top;
    border: 0px #dddddd00 solid;
    background: transparent;
}

/*內文*/
.product_info li span {
    display: block;
    font-size: 12px;
    color: #bc956d;
    margin-bottom: 3px;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 1px;
}


/*底下相關商品*/
.prod_related {
    background: #e9dfd3;
    padding: 25px 15px;
}

.prod_related h6 span:before {
    content: '相關推薦';
    font-size: 24px;
    color: #bc956d;
}

.related_list li a {
    display: block;
    padding: 0px;
    background: #fff;
    height: 100%;
}

/*詢價車*/
/*回產品頁*/
.rewrite_simple {
    background: #dcc2a7 url(../images/simple_left.png) 10% center no-repeat;
}


/*送出詢價*/
.send_simple {
    background: #dcc2a7 url(../images/simple_right.png) 88% center no-repeat;
}

.shopping-cart .cart_head {
    background: #dcc2a7;
    color: #fff;
}

/*訂購資料*/
.formbox_form li .form__label {
    display: block;
    width: 100%;
    text-align: left;
    color: #bc956d;
}

.form label {
    display: block;
    position: relative;
    float: left;
    width: auto;
    margin-right: 20px;
    margin-bottom: 5px;
    color: #bc956d;
}

.form label.Bigcheck {
    float: none;
    display: inline-block;
    color: #bc956d;
    font-size: 15px;
    margin-left: 20px;
    top: 5px;
}

.declaration {
    background: #dcc2a7;
    line-height: 40px;
    padding: 5px 15px;
}

.shopping-cart .cell.product_name p {
    width: calc(100% - 90px);
    color: #bc956d;
}

.shopping-cart .cell {
    padding: 10px;
    text-align: center;
    width: 20%;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 5px;
    color: #281f16;
}

.total_amount li b {
    font-weight: normal;
    color: #bc956d;
}

.total_amount li span {
    color: #bc956d;
}


.total_amount li {
    margin: 10px 0;
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    color: #bc956d;
}

.total_amount li .couponData, .total_amount li .transFree {
    color: #ff4f4f;
}

.send_simple:hover {
    background-color: #b9a084
}

.rewrite_simple:hover {
    background-color: #b9a084
}


/*購物車-首頁*/
.i_prod_tit span, .i_video_tit span {
    font-size: 24px;
    color: #606e4a;
    font-weight: 800;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/* = = = 表單= = = =  = = = = = = = = */
.contact_form li {
    display: grid;
    grid-template-columns: 120px 1fr;
    grid-gap: 10px;
}
.contact_form li .form__label {
    display: block;
    max-width: 120px;
    text-align: right;
}


/* = = = 表單= = = =  = = = = = = = = */

.contact_le_map a {
    display: block;
    background: #bf986d;
    text-align: center;
    padding: 10px;
    color: #fff;
}
.contact_form li.last cite {
    background: #bf986d;
    color: #fff;
}
/*標題*/
.blank_letter {
    font-family: "Noto Serif TC", serif;
    padding-top: 30px;
    font-size: 24px;
    color: #9a774f;
    background-position: left bottom;
    background-repeat: no-repeat;
    font-weight: 700;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*大圖*/
/*預設解除背景輪播*/
#content_main { margin:0;}
.bannerindex { position:static; height:auto;}
.swiper-banner { position:static; margin:0; height:auto;} 





@media screen and (max-width: 1400px) {
.container {max-width: 1200px;transition: all 0.3s;}

/*footer*/

.footer_info ul {    flex-direction: column;}
.footer_info li:nth-child(1) {    padding-left: 10px;    padding-top: 15px;}
.footer_info li:nth-child(2) {    padding-top: 2px;    padding-bottom: 15px;}


}

 @media screen and (max-width: 980px) {



.me_tp_features a {
    color: #bf986d;
} 
.stellarnav ul li a {
    color: #bf986d;
    font-weight: 700;
}
.main_header_area .container .navigation {    grid-template-columns: 1fr;}
.main_header_area .container .navigation> *{grid-row:unset;grid-column:unset;text-align: center;}
.nav-menu>li>a {padding: 10px 0px;}
.pageIndex .header_area {position: relative;width: 100%;}
.header_area.sticky {position: fixed;top: 0;left: 0;width: 100%;z-index: 9999;}
.pageIndex .header_area .main_header_area , .pageIndex .header_area.sticky .main_header_area{    background: #ffffff;}
.pageIndex .stellarnav  ul  li:hover  a { font-weight:bold ;}
.nav-menu>li>a {    padding: 15px 0px;letter-spacing: 2px;}
.me_tp_features {width: 100%;text-align: center; margin-bottom: 7px;}

/*footer*/

.footer_info li p {    padding-right: 5px;}

/*logo*/
.nav-brand img {transition: all 0.3s;text-align: center; }
.nav-brand img {max-width: 50%;}
.nav-header::before { height: 100px;}
.navigation {grid-template-columns: 200px 1fr;grid-gap: 0 20px;align-content: stretch;justify-content: center;align-items: center;justify-items: center}
.tp_links {display: none;}}


 @media screen and (max-width: 960px) {
     /*文章*/
.subbox_item {
        width: 100%;
        border-bottom: 1px solid #bc956d;
    }
}
@media screen and (max-width: 768px) {

 .bannerindex { padding:0; margin:0;}
/*logo隱藏*/
.nav-brand {
    display: none;}
.nav-header::before   { display: none;}

/*footer*/

.footer.with_shopping_mode { padding:70px 0; }
.footer_info {    justify-content: center;}
.footer_logo {    text-align: center;}
.footer_info ul { margin-top: 20px; }
.footer_info li:nth-child(1) {    flex-direction: column;width: 100%;}
.footer_info li:nth-child(2) {    text-align: center;}
.footer_menu a:first-child {    display: none;}
.footer_info li p {    padding: 5px 10px;}
.footer_menu a {
    margin: 2px;
    text-align: center;
    padding: 5px 10px;
    transition: all 0.3s;
    background: transparent;
    border: 1px #bf986d solid;
    color: #bf986d;
}
 /*側邊選單*/
.main_header_area .container {max-width: 95%;transition: all 0.3s;}
.header_area.sticky .main_header_area .container {max-width: 95%;transition: all 0.3s;}

.stellarnav.mobile > ul > li {
    display: block;
    border-bottom: 1px #ddd solid;
    margin-left: 20px;
    width: 80%;
}
 /*menu*/
 .pageIndex .header_area.sticky a {color: #bf986d;}
.stellarnav .menu-toggle span.bars span {display: block;width: 24px;height: 2px;border-radius: 6px;background: #bf986d; margin: 0 auto 4px;}
.stellarnav .menu-toggle:after {content: 'MENU';font-size: 12px;color: #bf986d;display: block;transform: scale(0.9);}
 .stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul {position: fixed;top: 0; bottom: 0;width: 100%;max-width: 80%; overflow-x: hidden;overflow-y: auto;-webkit-overflow-scrolling: touch;z-index: 9999;border-right: 1px #bf986d solid;background:#ffffff;}
.stellarnav.mobile li.open { background: transparent;}
.stellarnav.mobile ul {background: transparent;box-shadow:none;}
.pageIndex .stellarnav ul li a { border-right: 0;}
.stellarnav ul li:hover a {  border-right: 0;}
.stellarnav.mobile .menu-toggle, .stellarnav.mobile .dd-toggle, .stellarnav.mobile .close-menu, .stellarnav.mobile .call-btn-mobile, .stellarnav.mobile .location-btn-mobile {display: inline-block;padding: 5px 7px;}


    /*產品頁面*/


    .product_menu_list>h5 {
        color: #3f3a35;
        font-size: 18px;
        padding: 10px;
    }

    .product_menu_list>h5 a {
        width: 100%;
        height: 100%;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        text-align: right;
        display: flex;
        align-items: center;
        align-content: center;
        justify-content: center;
    }

    a.pd_menu_toggle {
        width: 100%;
        height: 100%;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        align-content: center;
        justify-content: center;
        border: 1px #3f3a35 solid;
        border-radius: 20px;
    }

    /*產品內頁-標題名稱*/
    .mobile_product_name {
        display: block;
        margin-bottom: 10px;
        color: #3f3a35;
    }

    /*產品資訊*/
    .sidebarBtn {
        padding: 15px;
        display: inline-block;
        width: 100%;
        vertical-align: top;
        border: 0px #dddddd00 solid;
    }

    .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% !important;
        border-right: none;
    }

    .product_page .product_menu_list>h5 {
        display: block;
    }

    .product_page .product_menu_list {
        width: 100% !important;
        order: 0;
        min-height: unset;
    }


/*購物車*/
.shopping-cart .cell { width: 100%;}
.shopping-cart .cell, .shopping-cart .cell.amount, .shopping-cart.check .cell.amount, .shopping-cart.check .cell {width: 100%;}




/*close*/
 .stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {display: inline-block;text-align: right;font-size: 12px;background: #ffffff;color: #9a774f;}
.stellarnav .icon-close:after {content: '';display: block;width: 12px;height: 0px;top: 50%;border-bottom: solid 2px #9a774f;position: absolute;transform: rotate(-45deg);}
.stellarnav .icon-close:before {content: '';display: block; width: 12px;height: 0px;border-bottom: solid 2px #9a774f;position: absolute;top: 50%;transform: rotate(45deg);}

/*表單*/
.contact_form li .form__label {
    width: 100%;
    margin-left: 0;
    text-align: left;
    font-weight: bold;
    padding: 5px;
    background: transparent;
}
.contact_form li {
    display: flex;
    grid-template-columns: 120px 1fr;
    grid-gap: 10px;
    flex-direction: row;
    flex-wrap: wrap;
}
.contact_form li .form__label {
    display: block;
    max-width: 100%;
   
}


#to_top { bottom:60px;}
#bottom_menu li a {  background: #434f30;}
#bottom_menu li a:hover {  background: #353f24;}
#bottom_menu li a em {
    display: block;
    font-size: 12px;
    font-style: normal;
    color: #bf986d;
}
.fa-house::before {
    content: "\f015";
    color: #bf986d;
}
.fa-credit-card::before {
    content: "\f09d";
     color: #bf986d;
}
.fa-cart-shopping::before {
    content: "\f07a";
     color: #bf986d;
}

/* 開啟手機板下方按鈕所需設定 */
.footer.with_shopping_mode { padding:30px 0 60px; }
#to_top { bottom:55px;}}

@media screen and (max-width: 600px) {
  /*footer*/
    .box_link {    text-align: center;}
 }




