@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/
body{font-family: "Roboto", sans-serif, "Merriweather", serif,"Noto Sans TC", sans-serif, "Noto Serif TC", serif;}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/


/*上方選單右邊設定 臉書/LINE/電話/信箱
.tp_links a:before {寬高大小設定}
.tp_links a.me_tp_fb {}
.tp_links a.me_tp_fb:before {背景換圖/建議.SVG}
.tp_links a.me_tp_line {}
.tp_links a.me_tp_line:before {背景換圖/建議.SVG}
.tp_links a.me_tp_call {}
.tp_links a.me_tp_call:before {背景換圖/建議.SVG}
.tp_links a.me_tp_mail {}
.tp_links a.me_tp_mail:before {背景換圖/建議.SVG}
*/


/*電腦LOGO
.nav-brand {}
*/

/*手機LOGO
.nav-brand-m {}
*/
/*=======================*/
.pageIndex .stellarnav > ul > li {
  opacity: 0;
  transform: translateY(-20px);
  animation: nav-down 1.2s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
  animation-delay: calc(0.11s * var(--i));
}

.pageIndex .stellarnav > ul > li:nth-of-type(1) { --i: 1; }
.pageIndex .stellarnav > ul > li:nth-of-type(2) { --i: 2; }
.pageIndex .stellarnav > ul > li:nth-of-type(3) { --i: 3; }
.pageIndex .stellarnav > ul > li:nth-of-type(4) { --i: 4; }
.pageIndex .stellarnav > ul > li:nth-of-type(5) { --i: 5; }
.pageIndex .stellarnav > ul > li:nth-of-type(6) { --i: 6; }
.pageIndex .stellarnav > ul > li:nth-of-type(7) { --i: 7; }

@keyframes nav-down {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*header*/
.pageIndex .header_area {position: fixed;width: 100%;top: 0;left: 0;padding: 0;}
.pageIndex .header_area.sticky { position: fixed;}
.main_header_area { background: transparent;}
.header_area .main_header_area .container {
    position: fixed;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    padding: 15px 0 14px;
    background: #ffffffdb;
    border-radius: 100px;
    box-shadow: 0 0 10px #00000033;
    transition: .5s ease-in-out;
    }
.header_area.sticky .main_header_area .container {max-width: 100%;top: 0;padding: 35px 0 15px;background: #ffffff;border-radius: 0;transition: .5s ease-in-out;}
.me_tp_features {
    display:none
}
/*logo*/
.nav-header { top: -50px; left: 50px;}
.header_area .nav-brand { margin: 0; max-width: 200px; width: 100%; transition: .3s ease-in-out;}
.header_area.sticky .nav-brand {max-width: 220px;transition: .3s ease-in-out;}
.header_area .nav-brand img {transition: .3s ease-in-out;}
.header_area.sticky .nav-brand img { filter: none; transition: .3s ease-in-out;}

/*menu*/
.navigation {padding: 0 40px 0 40px;}
.stellarnav > ul > li { position: relative;}
.stellarnav > ul > li::before {
    content: "";
    position: absolute;
    top: -15px;
    left: 50%;
    width: 35px;
    height: 35px;
    background: url(https://pic03.eapple.com.tw/wheatcurtain/wc1.svg) no-repeat center;
    background-size: contain;
    transform: translateX(-50%);
    opacity: 0;
    transition: .3s ease-in-out;
}
.stellarnav > ul > li:hover::before {top: -30px;opacity: 1;transition: .3s ease-in-out;}


.stellarnav > ul > li > a, .stellarnav li.has-sub > a {position: relative;padding: 0 20px;font-family: 'Leckerli One', 'Kiwi Maru', serif;margin: 0;color: #557b7e;}
.stellarnav > ul > li:hover > a, .stellarnav > ul > li.has-sub:hover > a {color: #e48d3d;}
.stellarnav li.has-sub > a::after {border-top: 6px solid #888;display: none;}/*下拉箭頭*/
.stellarnav li.has-sub:hover > a::after { border-top: 6px solid #CF1F25;}/*下拉箭頭*/

/*--下拉頁面---------------------------------------*/

/*外框*/
.stellarnav ul ul, .stellarnav ul ul ul { background: #fffffff2; border-radius: 0 0 10px 10px; box-shadow: 0 4px 3px #00000022;}
.stellarnav ul ul ul { left: 100%;}
.stellarnav li li { border: none; border-bottom: 1px #ccc solid; margin-bottom: 0;}
.stellarnav li li:last-of-type { border-bottom: none;}
.stellarnav li li:last-of-type a { border-radius: 0 0 0 10px;}

/*右拉箭頭*/
.stellarnav li li.has-sub > a::after { border-left: 6px solid #888;}
.stellarnav li li.has-sub:hover > a::after { border-left: 6px solid #CF1F25; border-top: 6px solid transparent;}

/*項目*/
.stellarnav li li > a, .stellarnav li li.has-sub > a { color: #777; font-size: 15px; padding: 7px 5px; border-left: 1px solid transparent; background: transparent; transition: all 0.3s;}
.stellarnav li li:hover > a, .stellarnav li li.has-sub:hover > a { color: #CF1F25; padding-left: 10px; border-left: 5px solid #CF1F25; transition: all 0.3s;}

/*--手機板選單---------------------------------------*/

/*選單*/
.stellarnav .menu-toggle span.bars span { background: #CF1F25;}
.stellarnav .menu-toggle:after { color: #CF1F25;}

/*展開*/
.stellarnav.mobile.left > ul { background: #ffffff;}
.stellarnav.mobile > ul > li { border-bottom: 1px #888 solid;}
.stellarnav.mobile > ul > li > a { padding: 20px 30px; border-bottom: none; display: block;}
.stellarnav.mobile > ul > li.has-sub > a { padding: 20px 30px 20px 36px;}
.stellarnav.mobile > ul > li.has-sub > a.dd-toggle { padding: 0;}
.stellarnav.mobile > ul > li.has-sub > ul > li > a { color: #444; padding: 20px 30px 20px 40px;}
.stellarnav.mobile > li > a { border-bottom: none;}

/*close*/
.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu { background: #CF1F25; color: #fff;}
.stellarnav .icon-close:after, .stellarnav .icon-close:before { border-bottom: solid 3px #fff;}

.stellarnav.mobile > ul > li > a.dd-toggle { top: 14px;}
.stellarnav a.dd-toggle .icon-plus {width: 0; top: -7px; left: -4px;}
.stellarnav li.open > a.dd-toggle .icon-plus { width: 0; top: -5px; left: 6px;}
.stellarnav a.dd-toggle .icon-plus:before, .stellarnav a.dd-toggle .icon-plus:after { border-bottom: solid 3px #888;}
.stellarnav li.open > a.dd-toggle .icon-plus:before, .stellarnav li.open > a.dd-toggle .icon-plus:after { border-bottom: solid 3px #CF1F25;}

/*下拉*/
.stellarnav.mobile li.open { background: #A7AD2722; padding: 0;}
.stellarnav.mobile li.open > ul > li { margin-bottom: 0; border-bottom: 1px solid #ccc;}
.stellarnav.mobile li.open li.open { padding: 0; background: #ffffff88;}
.stellarnav.mobile ul { background: transparent;}
.stellarnav > ul > li.drop-left > ul { left: 0; right: auto;}

/*--RWD---------------------------------------*/

@media screen and (max-width: 1440px) { 
    .swiper-pagination { display: none;}
}

@media screen and (max-width: 1024px) { 
    /*header*/
    .pageIndex .header_area { position: relative;}
    .main_header_area .container { max-width: 100%;}
    .header_area .main_header_area .container { position: relative; top: 0; left: 0; transform: none; border-radius: 0; padding: 0;}
    .header_area.sticky .main_header_area .container { padding: 0;}

    /*logo*/
    .header_area .nav-brand { max-width: 200px; margin: 10px 0 0; transition: .3s ease-in-out;}

    /*menu*/
    .header_area .navigation, .header_area.sticky .navigation, .navigation { padding: 0;}
    .stellarnav > ul > li:hover::before { opacity: 0;}
    .stellarnav { padding: 0 0 10px;}
    .stellarnav.mobile > ul > li > a.dd-toggle, .stellarnav > ul > li.has-sub > a, .stellarnav.mobile > ul > li.has-sub a.dd-toggle, .stellarnav.mobile > ul > li.has-sub > a { padding: 0 30px;}
    .stellarnav li.has-sub > a::after { top: 49%;}/*下拉箭頭*/
}

@media screen and (max-width: 768px) {

    /*logo*/
    .nav-header { position: static;}
    .header_area.sticky .nav-brand { max-width: 150px; margin-top: 10px; transition: .3s ease-in-out;}    

    /*menu*/
    .stellarnav > ul > li::before { top: 11px; left: 16px; transform: none; opacity: 1;}
    .stellarnav > ul > li:hover::before { top: 11px; opacity: 1;}
    .stellarnav ul ul, .stellarnav > ul > li:hover > ul > li:hover > ul { box-shadow: none;}
    .stellarnav li li { border: none;}
    .stellarnav > ul > li > a b:last-child { display: none;}

    .stellarnav.mobile > ul > li > a,
    .stellarnav > ul > li.has-sub > a,
    .stellarnav.mobile > ul > li.has-sub > a,
    .stellarnav.mobile > ul > li.has-sub > ul > li > a { padding: 20px 30px 20px 60px;}
    .stellarnav li li:last-of-type a { border-radius: 0;}

    .stellarnav.mobile > ul > li.has-sub a.dd-toggle, .stellarnav.mobile > ul > li > a.dd-toggle { padding: 20px 30px;}

    .stellarnav.mobile > ul > li > a.dd-toggle { top: 3px;}
    .stellarnav li.has-sub > a::after { top: 53%;}/*下拉箭頭*/
    .stellarnav li li > a, .stellarnav li li.has-sub > a, .stellarnav li li.has-sub.drop-left a { padding: 10px 30px; border-left: none;}
    .stellarnav li li:hover > a, .stellarnav li li.has-sub:hover > a { border-color: transparent;}
}
/*大圖*/
.bannerindex { position: static; height: auto;}
.swiper-banner { position: static; margin: 0; height: auto;}
.swiper-slide { padding: 0px !important;}
.swiper-slide img {}
.swiper-pagination { display: none;}
.swiper-slide { position: relative;}
.bannerindex .swiper-slide.swiper-slide-active:before {content: ""; position: absolute;  z-index: 999; pointer-events: none;}
.bannerindex .swiper-slide.swiper-slide-active:after {content: ""; position: absolute;  z-index: 999; pointer-events: none;}
@media screen and (max-width: 768px) {.bannerindex { padding:0; margin:0;}}


.bannerindex .swiper-slide:after {
    background: url(https://pic03.eapple.com.tw/wheatcurtain/bnw1.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: 13%;
    left: 32.8%;
    width: 34.5% !important;
    height: 75% !important;
    background-position: left;
    padding-bottom: calc(100% / 1 * 0.12);
    content: "";
    position: absolute;
    z-index: 1;
    pointer-events: none;
     animation:
    fade-in-up 1.8s cubic-bezier(.22, .61, .36, 1) both, /* 一次播放 */
    float-updown 3s ease-in-out 1.8s infinite; /* 延遲1.8s再開始漂浮循環 */
    animation-delay: .3s;
}
/* 進場關鍵影格 */
@keyframes fade-in-up {
  0% {
    transform: translateY(100px) scale(0.5);
    opacity: 0;
    filter: blur(6px);
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}

/* 漂浮：注意這裡要保留 rotateX(0) 否則會閃爍回預設值 */
@keyframes float-updown {
    0%, 100% {
        transform: rotateX(0) translateY(0);
    }
    50% {
        transform: rotateX(0) translateY(-8px);
    }
}
/*Footer/＝＝＝＝＝*/
.footer {padding-top: 45px;background: #fff9ec;}
.footer_info {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 90px;
}
.footer_info ul {display: flex;justify-content: space-around;}
.footer_menu {    display: grid;    grid-template-columns: 1fr 1fr;    gap: 5px 13px;}
.footer_menu a {
    margin: 0;
    text-align: center;
    transition: all 0.3s;
    padding: 5px 20px;
    background: transparent;
    position: relative;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    overflow: hidden;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.footer_menu a:hover:before {    -webkit-transform: scale(2);    transform: scale(2);}
.footer_menu a:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #e48d3d;
    border-radius: 100%;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.footer_menu a:hover {background: #e48d3d;}
.copy {    color: #898989;    border: none;    padding: 35px 20px;}
.copy a{    color: #898989;transition:all 0.3s;}
.box_link a{transition:all 0.3s;}
.box_link a:hover {    background: #EA5413;    color: #fff;}
.box_link {    display: none;}

/* 商品下拉超過30個變大 */
.stellarnav.desktop li.bigMenu>ul{display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); left: 0; width: 100%; position: fixed; padding: 20px;}
.stellarnav.desktop li.bigMenu ul ul{top: 100%; left: 0; width: 100%; background: #efefef; height: auto; max-height: 300px; overflow: auto;}
.stellarnav.desktop li.bigMenu ul ul li{margin: 0;} 
.stellarnav.hasBigMenu li.bigMenu li.has-sub > a:after{border-left: 6px solid transparent; border-bottom:unset; border-right: 6px solid transparent; border-top: 6px solid #898989; right: 5px;}
/* 主分類超過30個但次分類直接顯示 
.stellarnav.desktop li.bigMenu>ul{grid-gap: 10px;}
.stellarnav.desktop li.bigMenu li{border: 0;}
.stellarnav.desktop li.bigMenu>ul>li>a{border: 1px solid #ddd;}
.stellarnav.desktop li.bigMenu ul ul{display: block !important; position: relative; top: 0; background: unset; border: 0;}
.stellarnav.desktop li.bigMenu ul ul li{border: 0;}
 主分類超過30個但次分類直接顯示-結束 */

/* 商品下拉超過30個--結束 */


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2025.12.18  */
.product_page .main_part { max-width:1500px;}

.product_page .show_content,
.product_info_page .show_content { display: flex; justify-content: space-between; flex-wrap: wrap; align-items: flex-start; align-content: flex-start; width: 100%;}
ul.page { width: 100%;}

.ProdFilter_Item_Show { width: 100%;}
.Prods_Menulists { width: 100%; padding: 0;}
.Prods_Wrap { width: calc(100% - 270px);}

/* 篩選器-左手邊 / 產品分類-上面
.ProdFilter_ { order: 2;}
.Prods_Menulists { order: 1;}
.Prods_Wrap { order: 3;}
.ProdFilter_ { width: 250px; letter-spacing: 1px;}
.ProdFilter_ li { width: 100%;}
.ProdFilter_ li > a { background: #f3f3f3; border: none; border-bottom: 3px #ddd solid;}
.ProdFilter_ dl { position: static; width: 100%; display: block;}
*/

/* 產品分類-左手邊 / 篩選器-上面 */

.ProdFilter_ { order: 1; margin-bottom: 25px;}
.Prods_Menulists { order: 2;}
.Prods_Wrap { order: 3;}
.Prods_Menulists { width: 250px; letter-spacing: 1px;}
.Prods_Menulists ul {}
.Prods_Menulists > ul > li { width: 100%; flex-wrap: wrap;}
.Prods_Menulists ul ul { position: static; border: none;}
.Prods_Menulists ul li ul li {}
.Prods_Menulists li.has-sub.open > a { background: #f0f0f0;}

.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: 1024px) {
.product_main { display: block; width: 100%;}    
.sidebarBtn { display: block; width: 100%;}
}
@media screen and (max-width: 980px) {
}
@media screen and (max-width: 768px) {
/* 篩選器-左手邊 / 產品分類-上面
.Prods_Wrap { width: 100%;}
.ProdFilter_ { width: 100%;}
.ProdFilter_Item_Show { width: calc(100% - 110px);}
.ProdFilter_ { order: 1;}
.Prods_Menulists { order: 2;}
.ProdFilter_ li > a span { color: #333;}
*/

.Prods_Wrap { width: 100%; margin-top: 20px;}
.ProdFilter_ { width: 100%;}
.Prods_Menulists { opacity: 0; display: none;}

}
@media screen and (max-width: 600px) {
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 2025.12.26 中間放大*/
.BannerHome02 .swiper-slide-active img { transform: scale(1);}
.BannerHome02 .swiperBan02 .swiper-slide img { transition: transform 5s ease-out; will-change: transform; transform: scale(1);}
.BannerHome02 .swiperBan02 .swiper-slide-active img { transform: scale(1.06);}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */




/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {}
.banner h5 {}
.banner.banA {}
.banner.banB {}
.banner.banC {}
.banner.banD {}
.banner.banE {}
.banner.banblog {}
.banner.banDesign { background-color:#333;}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*一排呈現
.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 {}
.footer.with_shopping_mode { padding:30px 0 70px; }
#to_top { bottom:60px;}
}

@media screen and (max-width: 600px) { 
}




