@charset "utf-8";/*這段一定要加否則中文會變亂碼*/

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 
/* 滾動條 -------------------- */
/* 捲軸寬度及高度 */
::-webkit-scrollbar {
    width: 10px;
    /*右側捲軸寬度*/
    height: 0px;
    /*下方捲軸高度*/
}

/* 軌道背景底色 */
::-webkit-scrollbar-track {
    background-color: #EADAC3;
}

/* 滑桿顏色 */
::-webkit-scrollbar-thumb {
    background-color: #681810;
    border-radius: 3px;
}

/* 滑桿滑鼠滑入時的顏色 */
::-webkit-scrollbar-thumb:hover {
    background: #681810;
}

/*反白顏色*/
::-moz-selection {
    background-color:#681810;
    color: #EADAC3;
}

::selection {
    background-color:#681810;
    color: #EADAC3;
}
/*----------------------------------------------*/



/*動畫入場text-----------------------------------*/
.bannerindex .swiper-slide:nth-child(1):before {
    content: "";
    background-image: url(https://pic03.eapple.com.tw/chyuan/text01.png);
    height: 100%;
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(0%, 0%);
    opacity: 1;
    z-index: 999;
    position: absolute;
}/*---active分開寫避免時間差-----*/
.bannerindex .swiper-slide.swiper-slide-active:nth-child(1):before{
    animation: inside1 1.2s;
    animation-timing-function: linear;
}
/*----------------------------------------------*/
.bannerindex .swiper-slide:nth-child(2):before {
    content: "";
    background-image: url(https://pic03.eapple.com.tw/chyuan/text02.png);
    height: 100%;
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(0%, 0%);
    opacity: 1;
    z-index: 999;
    position: absolute;
}/*---active分開寫避免時間差-----*/
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2):before{
    animation: inside2 1.2s;
    animation-timing-function: linear;
}

/*------------------動畫在這裡---------------------------------------*/
@keyframes inside1{
	0% {transform: translate(5%, 0%);opacity: 0.5;filter: blur(5px);}
    50%{filter: blur(1px);}
	100%{opacity: 1;}
}
@keyframes inside2{
	0% {transform: translate(-5%, 0%);opacity: 0;filter: blur(5px);}
	100%{opacity: 1;}
}
/*------------------------------------------------------------------*/

/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/
.header_area {
    z-index: 9999;
    padding: 10px;
    background: linear-gradient(180deg, #521507eb, transparent);
    position: fixed;
    top: 0;
    width: 100%;
    transition: .3s;
}
.header_area.sticky {
    width: 100%;
    z-index: 9999;
    background: #fff;
    box-shadow: 0px 2px 10px 1px #0000004f;
    transition: .3s;
    position: sticky;
}
.main_header_area .container {
    max-width: 95%;
    margin: auto;
    transition: .3s;
}
.header_area.sticky .main_header_area .container {
    max-width: 1500px;
    transition: .3s;
}
.navigation {
    width: 100%;
    position: relative;
    padding: 0;
    display: flex;
    grid-gap: 0 20px;
}
.nav-header {
    z-index: 123;
    top: 0;
    left: 0;
    max-width: 160px;
    width: 100%;
    grid-row: 1 / span 2;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    filter: brightness(20) drop-shadow(1px 1px 6px #360000);
    margin-top: 10px;
    transition: 0s;
}
.header_area.sticky .nav-header {
    filter: brightness(1);
    transition: 0s;
    max-width: 200px;
}
.me_tp_features {
    display: none;
}    
.stellarnav {
    position: relative;
    width: 100%;
    z-index: 9900;
    line-height: normal;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}
.stellarnav > ul > li > a {
    padding: 0;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    font-size: 18px;
    letter-spacing: 3px;
    line-height: 25px;
    height: 25px;
    margin: 30px 20px 5px 20px;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    font-family: 'noto serif tc';
    font-weight: 600;
    filter: drop-shadow(1px 1px 6px #360000);
}
.header_area.sticky .stellarnav > ul > li > a {
    filter: unset;
    color: #ad3828;
}
.stellarnav > ul > li:before {
    content: "";
    position: absolute;
    background: url(https://pic03.eapple.com.tw/chyuan/ginger.svg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 40px;
    height: 0px;
    transform: translateX(-50%);
    left: 50%;
    bottom: 60%;
    opacity: 0;
    transition: .3s all;
}
.stellarnav > ul > li:hover:before {
    transition: .3s all;
    height: 40px;
    opacity: 1;
}
.header_area .stellarnav > ul > li:before {
    filter: brightness(6);
}
.header_area.sticky .stellarnav > ul > li:before {
    filter: brightness(1);
}
.stellarnav > ul > li:after {
    content: "";
    background: #e9d1a9;
    width: 1px;
    height: 20px;
    position: absolute;
    top: 52.5%;
}
.stellarnav > ul > li:last-of-type:after {
    display: none;
}



















/*上方選單右邊設定 臉書/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 {}
*/
/*----------FOOTER---------*/
.footer {
    padding: 60px 0 0;
    font-size: 14px;
    background: url(https://pic03.eapple.com.tw/chyuan/footer.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    position: relative;
    z-index: 99;
}
.footer .center {
    position: relative;
    max-width: 1500px;
}
.footer_info {
    padding: 0;
    display: flex
;
    grid-gap: 20px;
    padding-right: 0;
    flex-direction: column;
}
.box_link {
    display: none;
}
.footer_info ul {
    display: flex
;
    width: 100%;
    flex-direction: column;
}
.footer_info li p {
    line-height: 180%;
    letter-spacing: 1px;
    color: #6a584d;
    font-weight: 600;
    font-family: 'Noto Serif TC';
}
.footer_info li p a {
    line-height: 180%;
    letter-spacing: 1px;
    color: #6a584d;
    font-weight: 600;
    font-family: 'Noto Serif TC';
}
.footer_menu a {
    font-family: 'Noto serif TC';
    letter-spacing: 2px;
    display: inline-block;
    font-weight: 700;
    padding: 0px 15px;
    border: 0;
    margin: 10px 0;
    font-size: 16px;
    line-height: 100%;
    color: #ad3828;
    background: unset;
    border-right: 1px solid #c6b991;
    transition: .3s;
}
.footer_menu a:nth-child(1) {
    padding: 0px 10px 0px 0px;
}
.footer_menu a:last-of-type {
    border-right: 0;
}
.footer_menu a:hover {
    background: unset;
    color: #d3860d;
    transition: .3s;
}

.copy {
    text-align: center;
    padding: 15px 0;
    font-size: 12px;
    color: #b6a389;
    letter-spacing: 1px;
    border-top: 0px;
    margin: auto;
    margin-top: 15px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    width: 80%;
}
.copy a {
    color: #b6a389;
}
.privacyLinks a+a {
    border-left: 1px solid #b6a389;
}



/* 商品下拉超過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個--結束 */

/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 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:1px dotted #ccc; padding-bottom: 5px;}
.product-layer-two > li ul > li + li { margin-top:5px;}

.product_info_page .product-layer-two { display: none;}
.product_info_page .products-list,
.product-wrapper { width: 100%;}

.product-layer-two li li:hover{ margin-left: 15px;}
.product-layer-two li li > a:before { content: ""; position: absolute; width: 12px; height: 8px; background: transparent; left: 0; margin-left: -20px; top: 50%; margin-top: -4px; clip-path: polygon(0 0, 100% 50% , 0 100%);}
.product-layer-two li li:hover > a:before { background:#ad925e;}

.product_info_page .half_box { width: 100%; float: none; padding-right: 0;}
.product_info_page .half_box li.btn_blankTop { margin-top: 50px; justify-content: space-between; display: flex;}
.product_info_page .half_box li.btn_blankTop input { width: calc(50% - 10px); background-image: none; padding: 0; text-align: center;}
@media screen and (max-width: 1200px) {
}

@media screen and (max-width: 980px) {
}

@media screen and (max-width: 768px) {
.product_menu_list,
.products-list,
.product-wrapper { width: 100%;}
.product-layer-two { margin-right: 0; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); grid-gap: 5px;}
.product_page .product-layer-two,
.product_page .products-list { width: 100%; border-right: none;}
.product_page .product_menu_list>h5{display: block;}

.product_page .show_content > a { order: 1;}
.product_page ul.products-list { order: 2;}
.product_page ul.page { order: 3;}
.product_page .product_menu_list {width: 100%; order: 0; min-height: unset;}
}

@media screen and (max-width: 600px) {
}


/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */


/*預設解除背景輪播*/
#content_main { margin:0;}
.bannerindex { position:relative; height:auto;}
.swiper-banner { position:static; margin:0; height:auto;} 
/* .swiper-slide img { height:auto;} */
@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0;}
}


/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */


/*內頁BANNER 設定*/
.banner {}
.banner h5 {}
.banner.banA {}
.banner.banB {}
.banner.banC {}
.banner.banD {}
.banner.banE {}
.banner.banblog {}

/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */


/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/


/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */


/*相本分類全版面 ( 限制最寬2000px
.work_page .main_part { max-width:2000px;}
.work_page .show_content { padding:0; width:100%;}
.work_page .show-list .item { width:33%; display:inline-block; float:none; margin:0; padding:0;}
@media screen and (max-width: 768px) {
.work_page .show-list .item { width:49%;}
}
@media screen and (max-width: 570px) {
.work_page .show-list .item { width:100%;}
}
.work_page .show-list .item a { max-width:100%;}
.work_page .show-list .show_pic { height:auto; line-height:0;}
.work_page .show-list .show_pic img { max-width:100%; max-height:100%;}
.work_page .show-list .show_name { position:absolute; top:50%; right:10%; width:80%; height:auto; line-height:160%; font-size: 20px; color: #FFFFFF !important; border: solid 1px #fff; text-align: center; margin: -20px 0 0 -120px; padding:5px 20px; transition:all ease-in .3s; opacity:0;}
.work_page .show-list .item:hover .show_name {opacity:1;}
*/


/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */


/*相本列表
.work_info_page .main_part { max-width:2000px;}
.work_info_page .show_content { padding:0; width:100%;}
.work_info_page .subalbum-menu { text-align:center;}
.work_info_page .subalbum-menu h2 { float:none;}
.work_info_page .pic-list .item { margin:0; padding:10px; width:49%; float:none; display:inline-block;}
@media screen and (max-width: 768px) {
.work_info_page .pic-list .item { width:100%;}
}
.work_info_page .pic-list .show_pic { height:auto; line-height:0;}
.work_info_page .pic-list .show_pic img { max-width:100%; max-height:100%;}
.work_info_page .pic-list .item a { max-width:100%; pointer-events: none; cursor: default; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */





@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu {display: block; }
.footer.with_shopping_mode { padding:30px 0 70px; }
#to_top { bottom:60px;}
}

@media screen and (max-width: 600px) { 
}




