@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/

.linksBtn {
    display: none;
}

/*------------------------------------------------*/
/* Header */
/*------------------------------------------------*/

.header_area{
    position:relative;
    z-index:999;
    width:100%;
    background:rgba(255,255,255,.96);
    border-bottom:1px solid rgba(88,111,82,.12);
    box-shadow:0 8px 30px rgba(51,70,47,.04);
    padding: 0px;
}


.main_header_area{
    width:100%;
    background:transparent;
}

.header_area .container{
    width:100%;
    max-width:1600px;
    margin:0 auto;
    padding:0 32px;
    box-sizing:border-box;
}

.navigation{
    position:relative;
    display:grid;
    grid-template-columns:220px minmax(0,1fr) auto;
    grid-template-areas:"logo menu features";
    align-items:center;
min-height: 100px;
    column-gap: 15px;
    max-height: 100px;
}

.header_area.sticky {
        position: fixed;
        background: rgb(255 255 255);
}

/*------------------------------------------------*/
/* Logo */
/*------------------------------------------------*/

.nav-header{
    grid-area:logo;
    width:auto;
    float:none;
}

.nav-brand{
    display:flex;
    align-items:center;
    width:auto;
    padding:0;
}

.nav-brand img{
    display:block;
    width:auto;
    max-width:210px;
    max-height:78px;
    object-fit:contain;
    transition:opacity .25s ease;
}

.nav-brand:hover img{
    opacity:.78;
}

.nav-brand h1{
    position:absolute;
    width:1px;
    height:1px;
    overflow:hidden;
    clip:rect(0 0 0 0);
    white-space:nowrap;
}

/*大圖*/


.swiper-fade .swiper-slide:nth-child(2){
    background: url(https://pic03.eapple.com.tw/zhaojuneco/ban2_01.png) no-repeat;
    background-position: center;
    background-size: cover;
   
}
/*
.swiper-fade .swiper-slide:nth-child(2)::before{
    position: absolute;
    content: "";
    background: url(https://pic03.eapple.com.tw/zhaojuneco/ban2_01.png) no-repeat;
    background-position: center top;
    background-size: contain;
    width: 100%;
    height: 0;
    padding-bottom: calc(100% / 1*1);
    left: 0;
    top: 0;
    z-index: -1;
}
*/
.swiper-fade .swiper-slide:nth-child(2)::after{
    position: absolute;
    content: "";
    background: url(https://pic03.eapple.com.tw/zhaojuneco/ban2_02.png) no-repeat;
    background-position: center top;
    background-size: contain;
    width: 100%;
    height: 0;
    padding-bottom: calc(100% / 1*0.35);
    left: 0;
    top: 0;
    z-index: -2;
    opacity: 0;
}
.swiper-fade .swiper-slide-active:nth-child(2)::after{  animation: scale-out-bottom 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;}
@-webkit-keyframes scale-out-bottom {
    0% {
      -webkit-transform: scale(1);
              transform: scale(1);
      -webkit-transform-origin: 50% 100%;
              transform-origin: 50% 100%;
      opacity: 1;
    }
    100% {
      -webkit-transform: scale(0);
              transform: scale(0);
      -webkit-transform-origin: 50% 100%;
              transform-origin: 50% 100%;
      opacity: 1;
    }
  }

/*------------------------------------------------*/
/* 主選單 */
/*------------------------------------------------*/

.stellarnav{
    grid-area:menu;
    width:100%;
    padding:0;
}

.stellarnav > ul{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:2px;
    margin:0;
    padding:0;
}

.stellarnav > ul > li{
    position:relative;
    float:none;
    width:auto;
}

.stellarnav > ul > li > a{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:106px;
    padding:0 15px;
    color:#465143;
    font-size:16px;
    font-weight:600;
    letter-spacing:1.5px;
    line-height:1.5;
    white-space:nowrap;
    transition:
        color .25s ease,
        background-color .25s ease;
}

.stellarnav > ul > li > a::before{
    content:"";
    position:absolute;
    left:50%;
    bottom:28px;
    width:0;
    height:1px;
    background:#7F9979;
    transform:translateX(-50%);
    transition:width .28s ease;
}

.stellarnav > ul > li:hover > a,
.stellarnav > ul > li > a:hover{
    color:#6C8766;
}

.stellarnav > ul > li:hover > a::before,
.stellarnav > ul > li > a:hover::before{
    width:28px;
}

/* 聯絡我們 */

.stellarnav > ul > li:last-child{
    margin-left:10px;
}

.stellarnav > ul > li:last-child > a{
    min-height:46px;
    padding:0 23px;
    color:#fff;
    border-radius:999px;
    background:#0B4A25;
    box-shadow:0 8px 20px rgba(96,126,90,.17);
        font-size: 18px;
}

.stellarnav > ul > li:last-child > a::before{
    display:none;
}

.stellarnav > ul > li:last-child > a:hover{
    color:#fff;
    background:#7F9979;
}

/*------------------------------------------------*/
/* 子選單 */
/*------------------------------------------------*/

.stellarnav.desktop > ul > li > ul{
    position:absolute;
    top:calc(100% - 16px);
    left:50%;
    z-index:50;
    display:none;
    width:190px;
    min-width:190px;
    padding:12px;
    border:1px solid rgba(91,113,86,.12);
    border-radius:14px;
    background:rgba(255,255,255,.98);
    box-shadow:0 18px 42px rgba(49,67,46,.11);
    transform:translateX(-50%);
}

.stellarnav.desktop > ul > li:hover > ul{
    display:block;
    animation:subMenuShow .22s ease both;
}

@keyframes subMenuShow{
    from{
        opacity:0;
        transform:translate(-50%,8px);
    }
    to{
        opacity:1;
        transform:translate(-50%,0);
    }
}

.stellarnav.desktop ul ul li{
    position:relative;
    display:block;
    width:100%;
    margin:0;
    border:0;
}

.stellarnav.desktop ul ul li + li{
    margin-top:3px;
}

.stellarnav.desktop ul ul li a{
    position:relative;
    display:block;
    width:100%;
    padding:11px 14px;
    color:#566052;
    font-size:14px;
    font-weight:500;
    letter-spacing:1px;
    line-height:1.6;
    border-radius:9px;
    background:transparent;
    box-sizing:border-box;
    transition:
        color .22s ease,
        background-color .22s ease,
        padding-left .22s ease;
}

.stellarnav.desktop ul ul li a::before{
    content:"";
    position:absolute;
    left:14px;
    top:50%;
    width:4px;
    height:4px;
    border-radius:50%;
    background:#91A88C;
    opacity:0;
    transform:translateY(-50%);
    transition:opacity .22s ease;
}

.stellarnav.desktop ul ul li a:hover{
    padding-left:25px;
    color:#587052;
    background:#F2F6F0;
}

.stellarnav.desktop ul ul li a:hover::before{
    opacity:1;
}

/* 移除外掛預設三角形 */

.stellarnav li.has-sub > a::after{
    border:0;
}

.stellarnav.desktop > ul > li.has-sub > a{
    padding-right:20px;
}

.stellarnav.desktop > ul > li.has-sub > a::after{
    content:"";
    position:absolute;
    right:13px;
    top:50%;
    width:6px;
    height:6px;
    border-right:1px solid #778573;
    border-bottom:1px solid #778573;
    transform:translateY(-65%) rotate(45deg);
    transition:transform .22s ease;
}

.stellarnav.desktop > ul > li.has-sub:hover > a::after{
    transform:translateY(-35%) rotate(225deg);
}


/**/

@media screen and (max-width:768px){

    .stellarnav > ul > li > a {
        min-height: 55px;
        color: #555; 
    }

    .stellarnav > ul > li > a::before {
        display: none;
    }
    .stellarnav > ul > li:last-child {
        margin-left: 0px;
    }
    .stellarnav > ul > li:last-child > a {
        color: #555; 
        min-height: 45px;
        border-radius: unset;
        background: none;
        box-shadow: unset;
        font-size: 16px;
        padding: 10px;
    }
    .navigation {
        position: relative;
        display: grid;
        grid-template-columns: 280px minmax(0, 1fr) auto;
        grid-template-areas: "logo menu features";
        align-items: center;
        min-height: 100px;
        column-gap: 15px;
        max-height: 100px;
    }
}

@media screen and (max-width:400px){
    .navigation {
        grid-template-columns: 240px minmax(0, 1fr) auto;
    }
    .stellarnav > ul > li > a {
        min-height: 50px;
    }
    .stellarnav > ul > li > a {
        font-size: 15px;
    }
    .stellarnav > ul > li:last-child > a {
        font-size: 15px;
    }

}


/*footer/＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.footer_logo {
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    height: 70px;
    width: 250px !important;
}
.footer {
	border-top: 0px;
	font-size: 14px;
	background: #A0C878;
	padding-top: 100px;
	padding-right: 0;
		padding-left: 0;box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
}
.footer_menu { width: 100%;  display: grid; grid-template-columns: repeat(3, 1fr);}
.footer_menu a {
	border: none;
	text-align: center;
	color: #ffffff;
	font-weight: 500;
	padding: 10px 10px;
	transition: all .3s;
	background: NONE;
	border-bottom-width: 1px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-bottom-color:#ffffff5c;
}
.footer_menu a:hover { background: transparent;  color: #ffffff; font-weight: bold; }
.footer_menu a:nth-child(1) { display: none;}
.footer_info ul { display: flex; justify-content: flex-end;  border-left: 1px solid #fff5ed85;}
.footer_info {  padding: 0;  display: grid;    grid-template-columns: 360px 1fr;    grid-gap: 20px;}
.footer_info li { padding: 0px;}
.footer_info li:before { font-size: 18px;  text-transform: uppercase; display: block;  color:#ffffff;    font-weight:bold;    margin-bottom: 18px;}
.footer_info li:nth-child(1):before { content: "Contact Info"; }
.footer_info li:nth-child(1) { width: 50%;  display: flex;  flex-flow: column;  margin-left: 70px;  padding: 0 17px;  flex-wrap: wrap;  flex-direction: row;}
.footer_info li p {  color:#ffffff; line-height: 160%;  display: inline-block;  width: 100%;  font-size: 14px;}
.footer_info li p a { color: #ffffff;}
.footer_info li:nth-child(2):before { content: "Sitemap"; }
.footer_info li:nth-child(2) { width:50%;  margin: 0;  border-top: 0px solid #ffffff;  padding-top: 0;}


/*順序*/
/*
.footer_info li p.tel {order:3;}
*/
/*footer_logo*/
.footer_logo {
    background-repeat: no-repeat;
    background-size: contain;
    transition: all 0.5s ease-in-out;
    background-position: center;
    margin-right: 0;
    width: auto;
	margin-left: 5px;
}
.footer_logo img {
    width: 100%;
    filter: brightness(0) invert(1);
}
.copy {
    text-align: center;
    padding: 10px 0;
    font-size: 13px;
    border-top: 0px;
    margin-top: 50px;
    background: #A0C878;
}
.copy a,.copy p,.total_view{ color:#ffffff; transition: all 0.5s ease-in-out;}
.copy a:hover { color: #eee3d0;}
#to_top { bottom: 30px; color:#ffffff;  background:#306F9E; box-shadow: 0px 0px 0 rgba(0, 0, 0, 0.1);  border-radius: 50px;}
#to_top i:before, #to_top i:after { background: #ffffff;}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.box_link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    max-width: 280px;
    width: 100%;
    left: 0;
    top: 67%;
    flex-direction: row;
    display: none;
}
.box_link a {
    transition: all 0.3s;
    background: #8d96a0;
    width: 15%;
    height: 40px;
    border-radius: 100px;
    font-size: 18px;
    color: #ffffff;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
.box_link a:hover { background:#000;}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

@media screen and (max-width: 1350px) {
.footer .center { max-width: 90%;}
}
@media screen and (max-width: 1200px) {
.footer_info {  grid-template-columns: 200px 1fr;}
.box_link { max-width: 280px;}
.footer_info li:nth-child(1) { margin-left: 15px;}
}
@media screen and (max-width: 1024px) {
.footer { padding: 32px 0 0;}
.footer .center { max-width: 100%;}
.footer_info { display: flex; flex-direction: column;}
.footer_logo { width: 100%; margin: 0 auto; text-align: center;}
.box_link { left: 41%; top: 42%; }

/*手機板footer*/
.footer_menu a { width: auto; text-align: center;}
.footer_info { padding: 25px 70px 0;}
.footer_info li p { width: calc(100% / 1);}
.footer_info li:nth-child(1) { width: 100%; text-align: justify; padding: 0;}
.footer_info li:nth-child(2) { width: 100%; text-align: left;}
.footer_info ul { width: calc(100% - 0px); margin: 10% 0 0;  border-left: 0px;}
#bottom_menu li:nth-child(1) { border-right: 1px solid #ddd;}
#bottom_menu li:nth-child(2) { border-right: 1px solid #ddd;}
#bottom_menu li:nth-child(1) {width: 100%!important; border-right: 1px solid #ddd; }

}
@media screen and (max-width:768px) {
    .box_link{ display:none;}
}
@media screen and (max-width:766px) {
.footer_info ul { width: calc(100% - 0px);  margin: 0 0; display: flex; flex-direction: column; }
.footer_info li:nth-child(1) { width: 100%;  text-align: justify;  padding:0px 0px 25px;}
.footer_info li:nth-child(2) { margin-left: 15px; }

/*Footer/＝＝＝＝＝*/
#to_top { bottom:120px;}
.footer_info { justify-content: center;}
.footer_logo { height: 80px; margin: 0 0; background-position: left;}

}
@media screen and (max-width: 600px) {
.copy{ margin-top: 0px;}
.footer_info { padding: 20px 25px 16px;}
.footer_info li:nth-child(2) { padding: 20px 0;}
}
@media screen and (max-width: 480px) {
.copy { margin-top: 0;}
.footer_info li:nth-child(2){ margin-left: 5px;}
.footer_info li:nth-child(1){ margin-left: 5px;}

}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/* 商品下拉超過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) { 
}




