@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*上方選單解除滑動固定
.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}
*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jaro:opsz@6..72&display=swap');
:root {
    --MainColor: #0374C3; /*網站主要色系*/
    --SubColor: #ffe600; /*網站輔助色系1*/
    --SubColor2: #FF8700; /*網站輔助色系2*/
    --color:#202020;
    --SFont:"Noto Sans TC", sans-serif;/*黑體*/
    --SFontE: "Jaro", sans-serif;/*特殊字體*/

    --pd100:100px 0;
    --m100:100px;
    --m50:50px;
    --m30:30px;
    --f100: 100px;
    --f60: 60px;
    --f48: 48px;
    --f40: 40px;
    --f36: 36px;
    --f32: 32px;
    --f28: 28px;
    --f24: 24px;
    --f22: 22px;
    --f20: 20px;
    --f18: 18px;
    --f17: 17px;
    --f16: 16px;
    --m100: 100px;
    --m50: 50px;

}

@media (max-width:1024px) {
    :root {
        --m50: 40px;
        --m30: 25px;
        --f100: 90px;
        --f60: 52px;
        --f48: 40px;
        --f40: 36px;
        --f36: 32px;
        --f32: 28px;
        --f28: 24px;
        --f24: 22px;
        --f22: 20px;
    }
}

@media (max-width:768px) {
    :root {
        --pd100: 70px 0;
        --m100: 70px;
        --m50: 30px;
        --m30: 20px;
        --f100: 72px;
        --f60: 50px;
        --f48: 32px;
        --f40: 28px;
        --f36: 26px;
        --f32: 24px;
        --f28: 20px;
        --f24: 20px;
        --f20: 18px;
        --f18: 17px;
        --f17: 16px;
        --f16: 15px;
    }
}

@media (max-width:600px) {
    :root {
        --pd100: 50px 0;
        --m100: 50px;
        --m50: 25px;
        --f100: 60px;
        --f60: 40px;
        --f48: 28px;
        --f40: 24px;
        --f36: 22px;
        --f32: 20px;
        --f28: 18px;
        --f24: 18px;
        --f22: 18px;
        --f20: 17px;
        --f18: 16px;
        --f17: 15px;
    }
}

@media (max-width:375px) {
    :root {
        --f100: 48px;
        --f60: 32px;
        --f48: 24px;
        --f40: 20px;
        --f36: 18px;
        --f32: 18px;
        --f28: 17px;
        --f24: 17px;
        --f22: 17px;
        --f20: 16px;
        --f18: 15px;
    }
}
  .path { display: none;}
.header_area { background: #ffffff00;    padding: 10px0px;position: absolute;  transition: all 0.3s; }
/*.header_area.sticky{ background: var(--MainColor);}*/
/*電腦LOGO*/
.nav-header {
    margin: auto;
    width: 100%;
    max-width: 300px;
    margin: auto auto auto 0;
    position: absolute;
    top: 20px;
}
.tp_links{display: none;}
.me_tp_features { margin-top: 10px;}
.me_tp_features a.tp_btn_cart, .me_tp_features a.tp_btn_notice { color: #fff;}
.shop_search_btn { background: #5975a6;}
.nav-brand {    width: 100%;transition:all 0.3s;}
.nav-brand img{display: none;}
.header_area .nav-brand {    transition: all 0.3s;   }
.header_area::after{
    position: absolute;
    content: "";
    background: var(--MainColor);
    width:0;
    height: 100%;
    left: 0%;
    top: 0;
}
.main_header_area .container {  max-width: 2000px;}



/*首頁-header*/
.pageIndex .me_tp_features { opacity: 0;}
.pageIndex .nav-header {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 150%;
    
}
.pageIndex .nav-header:after {
    position: absolute;
    content: "";
    background:linear-gradient(180deg, #C2A690, #FFFBE5);
    width: 150px;
    height: 150px;
    border: 1px solid #000;
    border-radius: 200px;
    z-index: -1;
}
.pageIndex .nav-brand img{
    -webkit-animation: rotate-90-ccw 3s linear both;
	        animation: rotate-90-ccw 3s linear both;
}
.pageIndex  .sticky .nav-header:after{display: none;}
@-webkit-keyframes rotate-90-ccw {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  25% {
    -webkit-transform: rotate(-30deg);
            transform: rotate(-30deg);
  }
    50% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
   75% {
    -webkit-transform: rotate(-20deg);
            transform: rotate(-20deg);
  }
     100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes rotate-90-ccw {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  25% {
    -webkit-transform: rotate(-30deg);
            transform: rotate(-30deg);
  }
    50% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
   75% {
    -webkit-transform: rotate(-20deg);
            transform: rotate(-20deg);
  }
     100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.pageIndex .sticky .nav-header {
    position:absolute;
    left: unset;
    transform: unset;
    top: 20px;
     transition: all 0.3s; 
     margin: 0;
}
.pageIndex .header_area .nav-brand {display: flex;    align-items: center;    justify-content: center;}
.pageIndex .nav-brand img{display: block;}
.pageIndex .sticky .nav-brand img{display: none;}
.pageIndex .header_area .nav-brand{background: #ffffff00;}
.pageIndex .sticky .header_area .nav-brand{opacity: 0;}
.pageIndex .stellarnav ul{opacity: 0!important;transition: all 0.3s;}
.pageIndex .sticky .stellarnav ul{opacity: 1!important;transition: all 0.3s;}


/*sticky*/
.sticky .me_tp_features a.tp_btn_cart, .sticky .me_tp_features a.tp_btn_notice{color:#fff;}
.header_area.sticky {
    background:linear-gradient(180deg, #779ac4c7 0%, #7496bf6b 100%);
   position: fixed;
    transition: all 0.3s;
    backdrop-filter: blur(9px);
    border-bottom: 5px solid #fff;
    box-shadow: 0 0 10px #9fd1ed;
}
.sticky.header_area .nav-brand, .header_area .nav-brand{
    background: url(https://pic03.eapple.com.tw/cacacat/logo.png)no-repeat ;
    background-size: contain !important;
    background-position: center;
    width: 100%;
    max-width: 300px;
    height: 45px;
    align-items: center;
   
}
.sticky.header_area .nav-brand{ filter: drop-shadow(0 0 3px #ff8800c7);}
.sticky .stellarnav>ul,  .stellarnav>ul{
    width: max-content;
    margin: auto 0 auto auto;
    background: linear-gradient(180deg, #5975a6 0%, #7192dbdb 30%, #9ac9e77a 50%, #7192dbdb 70%, #5975a6 100%);
    backdrop-filter: blur(9px);
    padding: 0 20px;
    border-radius: 20px;
    border: 2px groove #73a7d7;
        box-shadow: 0 0 5px #71bcff;
    
}


/*第一層*/
.navigation {  display: flex;    flex-wrap: wrap;    justify-content: space-between;}
.me_tp_features a.tp_btn_cart, .me_tp_features a.tp_btn_notice{color:#5975a6;}
.me_tp_features { width: calc(100% - 300px);    margin-left: auto;opacity: 1;}
.sticky .me_tp_features {opacity: 1;}
.stellarnav {    width: calc(100% - 300px);    margin-left: auto;}
/*.navigation { grid-template-columns: 280px 1fr;padding: 0; align-items: center;}*/
.stellarnav { grid-row: 1 / span 2;}
.stellarnav > ul > li > a{transition:all 0.3s;font-family: var(--SFont);color:#fff;letter-spacing: 1px;}
.stellarnav > ul > li > a b:nth-child(2){font-family: var(--SFontE);font-size: var(--f18);}
.stellarnav > ul > li:hover > a{color: var(--SubColor);}
.stellarnav > ul > li > a:hover b{color: var(--SubColor);filter: drop-shadow(1px 1px 2px #3d5681);}
.stellarnav li.has-sub > a:after { border-top: 6px solid #fff;}
.stellarnav li.has-sub:hover > a:after { border-top: 6px solid var(--SubColor);}
/*第二層*/
.stellarnav li li > a , .stellarnav li li.has-sub > a{    padding: 7px 5px;    transition: all 0.3s;border-left:1px solid transparent;color: #fff;}
.stellarnav li li:hover > a , .stellarnav li li.has-sub:hover > a{color:var(--SubColor);	padding-left:10px;background:#ffffff00;}


.stellarnav ul ul{
    background: linear-gradient(180deg, #5975a6 0%, #7192dbdb 30%, #9acae7b7 50%, #7192dbdb 70%, #5975a6 100%);
    backdrop-filter: blur(9px);
     border-radius: 10px;
    border: 2px groove #73a7d7;
    box-shadow: 0 0 5px #71bcff;
}
.stellarnav li li { border: 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個--結束 */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*進入網站動畫*/



/*大圖*/
.pageIndex .swiper-fade .swiper-slide:nth-child(1)::before{
    position: absolute;
    content: "";
    background: url(https://pic03.eapple.com.tw/cacacat/bn-be-2b.png) ;
    background-size: contain;
    background-position: center;
    background-repeat: repeat-x;
    width: 100%;
    height: 0;
    padding-bottom: calc(100% / 1 * 0.25);
    top:25%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
    animation:move 50s linear infinite;

  
}



@-webkit-keyframes move {
0% {background-position: 0;;}

100% {background-position:2000px;}
}



.pageIndex .swiper-wrapper::after{
   position: absolute;
    content: "";
    background: url(https://pic03.eapple.com.tw/cacacat/bn-p.png) no-repeat;
    background-size: contain;
    background-position: center;
    width: 100%;
    height: 0;
    padding-bottom: calc(100% / 1*0.15);
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    
}
/*Banner/＝＝＝＝＝*/
.banner{
    background: url(https://pic03.eapple.com.tw/cacacat/banner.jpg) no-repeat;
    background-size: cover;
    background-position: left;
    min-height: 500px;
    position: relative;
}
.banner h5{
    position: absolute;
    content: "";
    font-size: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
    color: #fff;
    top: 300px;
   text-shadow: 2px 4px 6px #5c5c5c;
}
.banner h5::after{
    position: absolute;
    content: "";
   background: url(https://pic03.eapple.com.tw/cacacat/banner-after.png) no-repeat;
    background-size: contain;
    background-position: center;
    left: 50%;
    transform: translateX(-50%);
      top: -20px;
    width: 500px;
    height: 89px;
    z-index: -1;
}
.banner h5::before{
    position: absolute;
    content: "";
    font-family: var(--SFontE);
    font-size: var(--f20);
    color: var(--color);
    left: 50%;
    transform: translateX(-50%);
 z-index: 9;
 top: -53px;
}
.product_page .banner h5::before{    content: "PRODUCT";}


/*Footer/＝＝＝＝＝*/
.footer .center {  max-width: 2000px;}
.center::after{
	position: fixed;
	content: "";
	 background: url(https://pic03.eapple.com.tw/cacacat/icon-f02.png) no-repeat;
	 background-size: contain;
	 width: 46px;
    height: 25px;
    right: 18px;
    bottom:60px;
	animation: fly .5s infinite alternate;
}
@keyframes fly{
            0%{transform: translateY(0);}
            100%{transform: translateY(-10px);}
        }
.footer{
    background: url(https://pic03.eapple.com.tw/cacacat/footer_bg.png)  ;

}
.footer_logo{position: relative;}
.footer_logo::after{
    position: absolute;
    content: "";
     background:linear-gradient(180deg, #C2A690, #FFFBE5);
    width: 150px;
    height: 150px;
    border: 1px solid #000;
    border-radius: 200px;
    z-index: -1;
        left: 0;
    top: 0;
}
.footer_logo img { width: 100%;}
.footer_info {    
    display: flex;    
    flex-wrap: wrap;    
    align-items: center;    
    justify-content: center;
    padding: 0;    
    width: 100%;
    max-width: 1300px;
    margin: auto;}
.footer_info ul {
    display: flex;
    flex-wrap: wrap;
   justify-content: space-between;
    width: calc(100% - 250px);}
.footer_info li{  width: 45%;}
.footer_info li:nth-child(2){  width:30%;}
.footer_info li p {  color: #fff;    filter: drop-shadow(2px 2px 2px #0e355f);}
.footer_info li p a {  color: #fff;}
.footer_info li p.mail{display: none;}






.footer_menu {    display: grid;    grid-template-columns:1fr 1fr;    gap: 5px;}/*footer按鈕最小寬度100px*/
.footer_menu a {    
    margin: 0;	
    text-align: left;	
    padding: 5px 5px 5px 30px;
    transition: all 0.3s;
    border: none;
    color: #ffffff;
    background:linear-gradient(180deg, #5975a6 0%, #7192dbdb 30%, #9ac9e77a 50%, #7192dbdb 70%, #5975a6 100%);
    position: relative;
    border: 1px solid #fff;
    border-radius:20px;
    border: 2px groove #73a7d7;
    box-shadow: 0 0 5px #325677;
   
}
.footer_menu a::after{
    position: absolute;
    content: "";
    background: url(https://pic03.eapple.com.tw/cacacat/icon-f.png) no-repeat;
    background-size: contain;
    width: 18px;
    height: 17px;
    left: 6px;
    top: 2px;
    
}
.footer_menu a:hover::after{animation:  rotate 3s infinite alternate;}
@keyframes rotate {
    0% {transform: rotateY(365deg);}
    50% {transform: rotateY(182.5deg);}
    100% {transform: rotateY(365deg);}
}

.footer_menu a:hover {    background: #ffffff00;letter-spacing: 2px; box-shadow: 0 0 5px #71bcff;}
.copy {    background: #1439537a;    color: #fff;	border:none;}
.copy a{    color: #fff;transition:all 0.3s;}
.box_link{display: none;}
.box_link a{transition:all 0.3s;}
.box_link a:hover {    background: #ADA17E;    color: #fff;}

/*url(https://pic03.eapple.com.tw/cacacat/icon-01.png) no-repeat;*/

/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 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;margin-top: 0;column-gap: 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;display: none;    background: #ffffff00;}
.product-layer-two li li a{ padding:5px 10px;background: #ffffff00;}
.product-layer-two li li:hover > a { background:#ffffff00; color:var(--MainColor);}
.product-layer-two > li { width:100%; max-width:100%; padding:0; text-align:left;    border-bottom: none;
    padding-bottom: 15px;position: relative;}
    .product-layer-two li i{    right: 20px;}
.product-layer-two > li>a::after{
    position: absolute;
    content: "";
    background: url(https://pic03.eapple.com.tw/cacacat/icon-product-01.png) no-repeat;
    background-size: contain!important;
    width: 30px;
    height: 30px;
    left: 11px;
    top: 3px;
    filter: drop-shadow(2px 4px 3px black);

}
.product-layer-two > li>a:hover::after, .product-layer-two li.active>a::after{
    background: url(https://pic03.eapple.com.tw/cacacat/icon-product-01h.png) no-repeat;    
    width: 31px!important;
    height: 43px!important;
    left: 11px!important;
    top: 0px!important;
     animation: fly .5s infinite alternate!important;
}
.product-layer-two > li:nth-child(2)>a:hover::after, .product-layer-two li.active:nth-child(2)>a::after{  background: url(https://pic03.eapple.com.tw/cacacat/icon-product-02h.png) no-repeat; }
.product-layer-two > li:nth-child(3)>a:hover::after, .product-layer-two li.active:nth-child(3)>a:hover::after {  background: url(https://pic03.eapple.com.tw/cacacat/icon-product-03h.png) no-repeat; }


.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:var(--MainColor);}

.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;}

.products-list .pic {
    border-radius: 20px;
    outline: .25em solid #d5e3ee;
outline: .05em solid #d5e3ee;

}
.products-list .price b.ori_price{color: var(--color);}
.products-list .price b.sp_price{color: var(--SubColor2);}
.products-list .name {
    text-align: center;    
    font-size: 17px;
    font-weight: bold;
    color: #1a75c0;
border-bottom: 1px solid var(--color);
}
.products-list .more {  
    width: max-content !important;
    border: 1px solid var(--MainColor);   
    color:var(--MainColor);
  padding: 0px 25px;
    border-radius: 20px;
    color: #fff;
    box-shadow: 1px 1px 3px 3px #2c5daf inset;
    background: #2a7cc1;}
.products-list .item a:hover .more{background: var(--MainColor);}
.products-list .item a:hover figure.pic{filter: drop-shadow(0 0 5px #9fd1ed);}
.product-layer-two li.active>a {    border: #ffffff00;}
.product-layer-two>li:hover>a {
    border: none;
    background: url(https://pic03.eapple.com.tw/cacacat/icon-product.png) no-repeat;
    filter: drop-shadow(0 0 5px #0000008a);
}
    .product-layer-two li ul {    grid-gap: 0;}
.product-layer-two li a {
    background: url(https://pic03.eapple.com.tw/cacacat/icon-product.png) no-repeat;
    background-size: contain!important;
    color: #fff;
    padding: 10px 55px 10px 55px;
    color: #4b483f;
    font-weight: bold;
}



    /*首頁*/
.animated-arrow { background:var(--MainColor);}
.pageIndex  .i_prod_tit h2{font-family: var(--SFontE);color: var(--color);font-size: var(--f20);line-height: 180%;}
.i_prod_tit span, .i_video_tit span {
    font-size:33px;
    color: #fff;
    font-weight: bold;
filter: drop-shadow(2px 4px 6px #5c5c5c);
text-shadow: 2px 2px 0px #5c5c5c;
background: url(https://pic03.eapple.com.tw/cacacat/icon-index-bg.png) no-repeat;
background-size: contain;
background-position: center;
width: 100%;
max-width: 100%;
padding: 10px 80px;
}













/*產品內頁*/
.sidebarBtn { border: 8px #ffbe6b ridge;position: relative;padding:0  15px 15px;}
.sidebarBtn::after{
    position: absolute;
    content: "";
    background: url(https://pic03.eapple.com.tw/cacacat/icon-product-border.png) no-repeat;
    width: 300px;
    height: 18px;
    background-size: contain!important;
    left: 50%;
    transform: translateX(-50%);
    top:-10px;
}
.sidebarBtn::before{
    position: absolute;
    content: "";
    background: url(https://pic03.eapple.com.tw/cacacat/icon-product-border02.png) no-repeat;
     width: 300px;
    height: 18px;
    background-size: contain!important;
    left: 50%;
    transform: translateX(-50%);
    bottom:-10px;
}

.sidebarBtn h2 { 
 
width: 100%;
text-align: center;
padding: 20px 0;
color: var(--MainColor);
font-size: 22px;
}
.inquiry_a1 { background: var(--MainColor);}
.inquiry_a2 { background: var(--color);}
.inquiry_a3 { background:#0466ca;border: 5px #ffbe6b ridge!important;}

.lastPage {background:var(--color);}
.pd_tabTitle li.activeTab a {  color:var(--color);}
.pd_tabTitle li.activeTab::after {
    height: 3px;
    background: var(--MainColor);
    width: 100px;
    left: 50%;
    transform: translateX(-50%);
}
.pd_tabTitle li {  border-bottom: none;}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#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;}
}




/*相簿 內頁*/
.other_album_choice li{background: var(--MainColor);}
.show-list .show_name {text-align: center;   color: var(--SubColor2);}
.show-list .item:hover .show_name { color: var(--MainColor);}
.album_fixed_title {  background: #ffffff00;}

/*最新消息-文章*/
.blog_back a.article_btn_back {    background:var(--MainColor);}
.lastPage {  background:var(--MainColor);}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {  background:var(--MainColor) !important;}
.subbox_item a{padding: 5px;}
.blog_list_ri h5{color: var(--SubColor2);font-weight: bold;}
.subbox_item a:after {
    background: rgb(255 255 255 / 0%);
    border: 1px var(--MainColor) solid;}
.subbox_item a:before {
    content: 'MORE';
    bottom: unset;
    top: 0;
    color: #fff;
    background: var(--MainColor);
    padding: 5px 15px;}
.other_subalbum li a p { text-align: center;font-weight: bold;line-height: 3;}
.show-list .item:hover{background: var(--MainColor);}





/*聯絡我們*/
.contact_form li.last cite {  background: var(--MainColor);}


/*購物車*/
.send_simple {   background: #7192db url(../images/simple_right.png) 88% center no-repeat;}
.rewrite_simple {    background: var(--SubColor2) url(../images/simple_left.png) 10% center no-repeat;}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

@media screen and (max-width:1024px) { 
    .nav-header { margin: auto;}
    .me_tp_features {  text-align: right;}
    .footer_info li:nth-child(2) {width: 40%;}
    .navigation { align-content: flex-end;}

    .banner { min-height: 300px;}
    .banner h5 {  top: 180px;}
    .banner h5::after {
    top: -10px;
    width: 350px;
    height: 68px;}
    .banner h5::before { top: -32px;}
    }
    
    @media screen and (max-width: 980px) { 
.nav-header {  max-width: 180px;}
.pageIndex .nav-header {  top: 100%;}
.header_area {padding: 10px 10px 0;}
.navigation { padding: 10px 0 0;}


.sticky .header_area .nav-brand {display: none;}
.sticky .stellarnav ul,   .stellarnav ul {
        margin: auto 0 auto auto;
        top: 0;
    }
    
.sticky .stellarnav ul {
    opacity: 1 !important;
    transition: all 0.3s;
    position: relative;
    top: 20px;
}
    
/*首頁header*/
    .pageIndex .nav-header:after {
    width: 130px;
    height: 130px;}
    .pageIndex .sticky .nav-header { left: 0;}
    
    
    
    }
    @media screen and (max-width:850px) { 
        /*footer*/  
        .footer_logo {
           background-position: center;
            width: 100%;
        max-width: 130px;}
        .footer_logo::after {
    width: 130px;
    height: 130px;}
        .footer_info { padding: 0 60px;}
        .footer_info { grid-template-columns: 1fr;}
        .footer_info li:nth-child(1) { width: 100%;}
        .footer_info li:nth-child(2) { width: 100%;}
        .footer_menu {grid-template-columns: 1fr 1fr 1fr;}
        
        .box_link { top: 193px;  left: 63px;}
       }
    @media screen and (max-width: 768px) { 
    /*HEADER*/
    .me_tp_features {   width: 100%;}
    .me_tp_features { text-align: center;}
    .me_tp_features a.tp_btn_cart, .me_tp_features a.tp_btn_notice { color: #fff;}
    .nav-header { max-width:180px; top: 0;}
    .nav-header { position: relative;  z-index: 999;}
    .header_area { position: relative;padding: 10px;    background: #4a5c7d;}
 .pageIndex .me_tp_features{opacity: 1;}
    .header_area.sticky { backdrop-filter: unset;    background: linear-gradient(180deg, #779ac4 0%, #7496bfd1 100%);}

    .pageIndex .nav-header {
    position: relative;
    left: unset;
    transform: unset;
    top: 0;}
    .pageIndex .stellarnav ul { opacity: 1 !important;}
    .pageIndex .header_area .nav-brand {  background: url(https://pic03.eapple.com.tw/cacacat/logo.png) no-repeat;}
    .pageIndex .nav-brand img{display: none;}
    .pageIndex .nav-header:after{display: none;}
.pageIndex .sticky .nav-header {  position: relative;top: 0;}
/*大圖*/
    .swiper-banner .swiper-slide img {
        height: 600px;
        object-fit: cover;
    }

.pageIndex .swiper-wrapper::after {   padding-bottom: calc(100% / 1 * 0.25);}
.pageIndex .swiper-fade .swiper-slide:nth-child(1)::before {
    background-size: cover;
    padding-bottom: calc(100% / 1 * 0.25);}

    /*手機側邊欄位*/
    .stellarnav .icon-close:before, .stellarnav .icon-close:after {   border-bottom: solid 3px #fff;}
    .stellarnav.mobile > ul > li > a.dd-toggle {
    top: 50%;
    transform: translateY(-50%);}
    .stellarnav a.dd-toggle .icon-plus:before, .stellarnav a.dd-toggle .icon-plus:after {  border-bottom: solid 3px #FFF;}
    .stellarnav .menu-toggle span.bars span {  background:#fff;}
    .stellarnav .menu-toggle:after { color:#fff;}
    .sticky .stellarnav .menu-toggle span.bars span {  background: #ffffff;}
    .sticky .stellarnav .menu-toggle:after { color: #fff;}
    .stellarnav.mobile > ul > li { border-bottom: 1px #2a3f66 solid;}
    .stellarnav.mobile > ul > li > a { padding: 20px 0;   text-align: center;}
    .stellarnav > ul > li > a b , .sticky .stellarnav > ul > li > a { color: #fff;        text-align: center;      padding: 20px 0;}
    .stellarnav.mobile > ul > li > a:hover b{color: var(--SubColor);font-weight: bold;}
    .stellarnav.mobile > ul > li > a b:last-child{display: none;}
    .stellarnav.mobile.left > ul{
        transition: 0.5s ease;
        max-width:300px;    
        border-radius: 0 20px 20px 0;    
        border-left: none;
        background: linear-gradient(180deg, #20365e 0%, #526898db 30%, #9ac9e77a 50%, #526898db 70%, #20365e 100%);}
    .stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul { border-right:none;}
    .stellarnav.mobile.left .close-menu,.sticky .stellarnav.mobile.left .close-menu {
        padding: 15px 10px;
        background:#ffffff00;
        color:#fff;
    }
    .stellarnav.mobile li.open {background: #ffffff00;}
    .stellarnav.mobile > ul > li.open > a.dd-toggle{top: 10%;   transform: translateY(-10%);}
    .stellarnav.mobile > ul > li.open >a b{color: var(--SubColor);}
    .stellarnav.mobile ul{background: #20365e8a;}
    .stellarnav li li > a, .stellarnav li li.has-sub > a {text-align: center;}





    /* 開啟手機板下方按鈕所需設定 */
    #bottom_menu {display: none; }
    .footer.with_shopping_mode { padding:30px 0 0px; }
    #to_top { bottom:60px;}
    .footer_info li { width: 90%;}
    .footer_info li p.fax {text-align: center;}
    .footer_menu {  margin: auto;}
    .footer_info {
        grid-template-columns: 1fr;
        width: fit-content;
        margin: auto;
    padding: 0;}
    .footer_info li:nth-child(1) { grid-template-columns: 1fr;}
    .box_link {
        top: 170px;
        left: 50%;
        transform: translateX(-50%);
    }
    .footer_info li p.line{margin-top: 20px;}
    
    .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) { 
        .contact_form li .form__label {  background: rgb(255 255 255 / 0%);    }

        .footer_logo {max-width: 100px;}
        .footer_logo::after {width: 100px; height: 100px; }
        .footer_menu {  grid-template-columns: 1fr 1fr;}
        .footer_info ul { width: calc(100% - 100px);}
        .footer_info li p { text-align: center;}


/*大圖*/
    .swiper-banner .swiper-slide img {  height: 500px; }


    }
    @media screen and (max-width: 500px) { 
       /*大圖*/
    .swiper-banner .swiper-slide img {  height: 400px; }
    
    }
    @media screen and (max-width: 420px) { 
    
    }
    @media screen and (max-width: 3750px) { 
    
    }
    
    