@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=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
    --MainColor:#45A8BA; /*網站主要色系*/
    --SubColor: #5e5d5d; /*網站輔助色系1*/
    --SubColor2: #B4E7FE; /*網站輔助色系2*/
    --color:#202020;
    --SFont:"Noto Sans TC", sans-serif;/*黑體*/
    --SFontE:"Anton", sans-serif;/*特殊字體*/
    --SFontE2:"Kanit", 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;
    }
}
#content_mai, #content, .box_container{background: #080808;}
.path { display: none;}
.edit_part { padding:0px;}
.contact_editbox {padding: 0;}

.other_select_page ul.page{display: none;}
.me_tp_features{display: none;}
.header_area { background: #00000000;    padding: 10px 10px 0px 10px;position: fixed;}
/*促銷方案*/
.promotion_title span { color: #fff;border: none;}
.promotion_title em{color: #fff;background: var(--MainColor);border-radius:20px ;border: 1px solid var(--SubColor2);}
.other_promotion .pmtTime { color: #fff;}
.promotion_title h2 {color: #fff;font-family:var(--SFont) ;font-weight: bold;}
.pmtTitle { color: #fff;}
.other_promotion .pmtTitle h3 { color: #ffffff;font-weight: bold;transition: 0.3s ease-in;font-family: var(--SFont);}
.other_promotion li a:hover .pmtTitle h3 {letter-spacing: 2px;transition: 0.3s ease-in;}
.other_promotion li a { border: 1px #5a5a5a dashed;}
.other_promotion li a:hover { background: var(--MainColor); border: 1px var(--SubColor2) dashed;}
.other_promotion li a:hover:after {
    border: 1px var(--SubColor2) solid;    
    border-top: none;
    border-left: none;}
.other_promotion li a:hover:before{
        border: 1px var(--SubColor2) solid;
    border-bottom: none;
    border-right: none;
}

/*頁碼*/
.page li {  color: #fff;}
.page li a, .page li strong {  color: #fff;}
.page li.active  strong{color: var(--color);}









/*.header_area.sticky{ background: var(--MainColor);}*/
/*電腦LOGO*/
.nav-header {  max-width: 80px;}
.nav-brand {    width: 100%;transition:all 0.3s;}
.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;
}



/*sticky*/
.header_area.sticky{position: fixed;background: #000000b8;}



/*第一層*/
.navigation { grid-template-columns: 100px 1fr;padding: 10px 0; align-items: center;}
.stellarnav { grid-row: 1 / span 2;}
.stellarnav > ul > li{text-align: center;}
.stellarnav > ul > li.has-sub{min-width: 79px;}
.stellarnav > ul > li > a{transition:all 0.3s;font-family: var(--SFont);color:#fff;letter-spacing: 1px;}
.stellarnav > ul > li:hover{background: #000;transition: 0.3s ease-in;}
.stellarnav > ul > li:hover > a{color: var(--SubColor2);}
.stellarnav > ul > li > a:hover b{color: var(--SubColor2);}
.stellarnav > ul > li > a:hover b:nth-child(1){color: #fff!important;}
.stellarnav > ul > li.has-sub > a { padding-right: 0;}
.stellarnav li.has-sub > a:after { display: none;}
.stellarnav li.has-sub:hover > a:after { border-top: 6px solid var(--SubColor2);}
.stellarnav > ul > li::after{
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    border: 1px solid #fff;
    border-right:none ;
    border-bottom:none ;
    left: 0;
    top: 0;
opacity: 0;
transition: 0.3s ease-in;
}
.stellarnav > ul > li::before{
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    border: 1px solid #fff;
    border-left:none ;
    border-top:none ;
    right: 0;
   bottom:  0;
opacity: 0;
transition: 0.3s ease-in;
}
.stellarnav > ul > li:hover::before, .stellarnav > ul > li:hover::after{opacity: 1;transition: 0.3s ease-in;}

.stellarnav > ul > li > a:hover b {
    transform: translateY(-8px);
    -webkit-transform: translateY(-8px);
}
.stellarnav > ul > li > a b { height: 26px;}
.stellarnav > ul > li > a b:nth-child(2){line-height: 4.5;transform: translateY(-30px);opacity: 0;}
.stellarnav > ul > li > a:hover b:nth-child(1) {color: var(--SubColor2);}
.stellarnav > ul > li > a:hover b:nth-child(2) {  opacity: 1;}
/*第二層*/
.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(--SubColor2);	padding-left:10px;background: #0000;}


.stellarnav> ul>li> ul {
    background: #ffffff00;
    padding-top: 15px;
    }
.stellarnav> ul>li> ul::after{
    position: absolute;
    content: "";
     background:  #508685;
    width: 10px;
    height: 10px;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    top: 0px;
    left: calc(50% - 30px);
    transform: translateX(-50%);

}
.stellarnav li li{
    background: #141414;
    border: none;
    border-bottom:1px solid #202020 ;
}
/* 商品下拉超過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個--結束 */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*進入網站動畫*/


/*大圖*/
.swiper-fade .swiper-slide-active:nth-child(1):after{}
.bannerindex .swiper-fade .swiper-slide:nth-child(1)::before{
    position: absolute;
    content: "";
    background: url(https://pic03.eapple.com.tw/yttai/bn01-be.png) no-repeat;
    background-size: contain!important;
    background-position: left!important;
    width: 100%;
    height: 0;
    padding-bottom: calc(100% / 1*0.14);
    left:10%;
    bottom:25%;
    z-index: 1;
}
.bannerindex .swiper-fade .swiper-slide:nth-child(1)::after{
    position: absolute;
    content: "";
    background: url(https://pic03.eapple.com.tw/yttai/bn01-af.png) no-repeat;
    background-size: contain!important;
    background-position:right!important;
    width: 100%;
    height: 0;
    padding-bottom: calc(100% / 1*0.3);
    right: 10%;
    bottom:15%;
    z-index: 1;
    filter: drop-shadow(2px 2px 5px #000);
}

.bannerindex .swiper-fade .swiper-slide:nth-child(2)::before{
    position: absolute;
    content: "";
    background: url(https://pic03.eapple.com.tw/yttai/bn02-be.png) no-repeat;
    background-size: contain!important;
    background-position: left!important;
    width: 100%;
    height: 0;
    padding-bottom: calc(100% / 1*0.14);
    left:10%;
    bottom:25%;
    z-index: 1;
}
.bannerindex .swiper-fade .swiper-slide:nth-child(2)::after{
    position: absolute;
    content: "";
    background: url(https://pic03.eapple.com.tw/yttai/bn02-af.png) no-repeat;
    background-size: contain!important;
    background-position:right!important;
    width: 100%;
    height: 0;
    padding-bottom: calc(100% / 1*0.3);
    right: 10%;
    bottom:15%;
    z-index: 1;
    filter: drop-shadow(2px 2px 5px #000);
}





/*Banner/＝＝＝＝＝*/
.banner{
    background: url(https://pic03.eapple.com.tw/yttai/banner.jpg) no-repeat;
    background-size: cover!important;
    background-position: left!important;
    min-height: 600px;
    position: relative;
}
.banner h5{
    position: absolute;
    content: "";
    font-size:var(--f22);
    font-family: var(--SFont);
    font-weight: bold;
    left: 50%;
    transform: translateX(-50%);
    top: 400px;
    color: #fff;
}
.banner h5::before{
    position: absolute;
    content: "";
    font-size:var(--f60);
    font-family: var(--SFontE2);
    font-weight: bold;
    left: 50%;
    transform: translateX(-50%);
    top: -70px;
    width: max-content;
}
.services_page .banner{background: url(https://pic03.eapple.com.tw/yttai/banner-service.jpg) no-repeat;}
.services_page .banner h5::before{    content: "LEASE";}


.album_a .banner h5::before{    content: "Project";}


.product_page .banner, .product_info_page .banner{background: url(https://pic03.eapple.com.tw/yttai/banner-product.jpg) no-repeat;}
.product_page .banner h5::before, .product_info_page  .banner h5::before{    content: "Product";}



.article_a .banner h5::before{    content: "Q&A";}


.contact_page .banner h5::before{    content: "Contact";}
.contact_page .banner{background: url(https://pic03.eapple.com.tw/yttai/banner-contact.jpg) no-repeat;}

.promotions_page  .banner h5::before{    content: "Fuel Gauge";}

/*Footer/＝＝＝＝＝*/
.footer{  
    background: url(https://pic03.eapple.com.tw/yttai/footer.jpg) no-repeat;
    background-size: cover!important;}
.footer_logo{max-width: 130px;}
.footer_logo img { width: 100%;}
.footer_info {    display: flex;    flex-wrap: wrap;    align-items: center;         justify-content: space-around;padding: 0;}
.footer_info ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: calc(100% - 300px);}
.footer_info li{  width:45%;position: relative;padding: 10px 0;}
.footer_info li:nth-child(1){padding: 35px 0px 10px;}    
.footer_info li:nth-child(1)::after{
    position: absolute;
    content: "億泰發電機有限公司";
    font-family: var(--SFont);
    font-weight: 600;
    left: 0;
    top: 0;
    font-size: 16px;
    color: #fff;
    letter-spacing: 4px;
}
.footer_info li p {  color: #fff;}
.footer_info li p a {  color: #fff;}
.footer_info li p:hover a{color: var(--SubColor2);}
.footer_info li p.fax:hover a{pointer-events: none;}


.footer_info li p:before{font-family: var(--SFontE2);color:#ffffff9c;margin: 0 12px 0 0;}
.footer_info li p.tel:before { content: 'TEL';}
.footer_info li p.fax:before { content: 'FAX';}
.footer_info li p.add:before { content: 'ADDERSS';}
.footer_info li p.mail:before {content: 'EMAIL';}


.footer_menu {  
    display: grid;
    gap: 5px;
    grid-template-columns: repeat(2, 1fr);
}/*footer按鈕最小寬度100px*/
.footer_menu a {    
    margin: 0;	
    text-align: left;	
    padding: 5px;
    transition: all 0.3s;
    border: none;
    color: #ffffffcc;
    background: #ffffff00;
    position: relative;
}


.footer_menu a:hover {    background: #ffffff00;letter-spacing: 2px;color: #fff;}
.copy {    background: #000;    color: #fff;	border:none;}
.copy a{    color: #fff;transition:all 0.3s;}

.box_link {
    max-width: max-content;
    flex-direction:unset;
    z-index: 99;
    display: none;
}
.box_link a{transition:all 0.3s;color:#5d5d5d;border-radius: 30px;    font-size: 18px;    border: 1px #5d5d5d solid;}
.box_link a:hover {    background:var(--SubColor2);    color:#000; border: 1px #000 solid;}
.box_link a.me_tp_mail, .box_link a.me_tp_call{display: none;}
















/*url(https://pic03.eapple.com.tw/yttai/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: 250px; letter-spacing: 1px; /*border-right: 1px solid #ccc;*/min-height: 30vw;}
.product_page .products-list,
.product-wrapper { width: calc(100% - 300px);}
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;}
.product-layer-two li li a{ padding:5px 10px;}
.product-layer-two li li:hover > a { background:#fff; color:var(--MainColor);}
.product-layer-two > li { width:100%; max-width:100%; padding:0; text-align:left; border-bottom:none; padding-bottom: 5px;}
.product-layer-two li a {
    border:none;
    background: #ffffff00;
    color: #fff;
    padding: 7px 16px 7px 25px;
}
.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 .item a { background:#525252;padding-bottom: 0;}
.products-list .name { text-align: center;color: #fff;position: relative;}
.products-list .name::after{
    position: absolute;
    content: "";
    background: rgba(0, 0, 0, 0.678);
    width: 90%;
    height: 1px;
    left: 50%;
    transform: translateX(-50%);
    top: -20px;
    z-index: 9;
}

.products-list .more { 
    border: none;   
    background:var(--color) ;
    color:#fff;
    opacity: 1;
    position: absolute;
    content: "";
    top: 45%;
    bottom: unset;
    width: max-content!important;
    font-size: 15px;
    padding: 0 10px;
    opacity: 0;
        transition: 0.3s ease-in;
}
.products-list .item a:hover .more{background: var(--MainColor);opacity: 1;    transition: 0.3s ease-in;}
.product-layer-two li ul {    grid-gap: 0;}
.product-layer-two li.active>a,
.product-layer-two>li:hover>a {
    border:none;
    background:#ffffff00;
    color: var(--SubColor2);
}
.product-layer-two li {  position: relative;}
.product-layer-two>li>a::before{
    position: absolute;
    content: "";
    background: url(https://pic03.eapple.com.tw/yttai/product-icon.png) no-repeat;
    background-size: contain!important;
   width: 14px;
    height: 21px;
    left: 0;
    top: 7px;
    filter: saturate(0.3);
}
.product-layer-two>li:hover>a::before{animation:  rotate 3s infinite alternate;  filter: saturate(1);}
@keyframes rotate {
    0% {transform: rotateY(365deg);}
    50% {transform: rotateY(182.5deg);}
    100% {transform: rotateY(365deg);}
}

.products-list .item .pic::before{
    position: absolute;
    content: "";
    background: #000000a6;
    backdrop-filter: blur(3px);
    width: 0%;
    height:100%;
    left: 0;
    top: 0;
    transition: 0.3s ease-in;
}
.products-list .item:hover .pic::before{width: 100%;    transition: 0.3s ease-in;}

    /*首頁*/
.animated-arrow { background:var(--MainColor);}
.prod_part{background: #222222;}
.i_prod_tit span, .i_video_tit span{color: #fff;font-family: var(--SFont);font-weight: bold;font-size: var(--f20);}
.i_prod_tit h2, .i_video_tit h2{font-family: var(--SFontE2);font-size: var(--f60);color: #ffff;}
.i_prod_tit h2::first-letter, .i_video_tit h2::first-letter{color: var(--SubColor2);}

.prod_part .products-list .item:nth-child(n+9){display: none;}



    
/*產品內頁*/
.sidebarBtn {     border: 5px #b4e7fe00 solid;    background: #2e2e2e;}
.sidebarBtn h2 { color: var(--SubColor2);}
.inquiry_a1 { background: var(--MainColor);}
.inquiry_a2 { background: var(--color);}
.inquiry_a3 { background:var(--MainColor);}
.toShare {  border-top: 1px solid var(--SubColor2);color: #fff;}
.product_info li span {
    display: block;
    font-size: 12px;
    color: #000000;
    background: var(--SubColor2);
    width: max-content;
    padding: 0 8px;}
.product_info li .txt_box { color: #dadada;}
.lastPage {background:var(--color);}
.pd_tabTitle li.activeTab a {  color:var(--SubColor2);background: #181818;font-family: var(--SFont);font-weight: bold;}
.pd_tabTitle li.activeTab::after {
    height: 3px;
    background: var(--MainColor);
    width: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
}
.pd_tabTitle li {  border-bottom: none;}
.prod_related {  background: #000000;}
.prod_related h6 span:before{color: var(--SubColor2);}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#content_main { margin:0;}
.bannerindex { position:relative; height:auto;background-color: #000;}
.swiper-banner { position:static; margin:0; height:auto;} 
/* .swiper-slide img { height:auto;} */
@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0;}
}




/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/


/*相簿*/
.show-list .item .overlay{  transform: scale(1)!important;}
.show-list:hover .item .overlay{opacity: 1!important;  background: #000000c7;}
.show-list .item:hover .overlay{    background: #ffffff00;}
.show-list .item:hover{background: #ffffff00;}
.show-list .item:hover .show_name { color: var(--SubColor2);}
.show-list .show_name{
    text-align: center;   
    color:#fff;
    position: absolute;
    content: "";
    top: 45%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    filter: drop-shadow(0 0 5px #000);
}


/*相簿 內頁*/
.other_album_choice li{background: var(--MainColor);}
.album_fixed_title {  background: #ffffff00;}
.subalbum-menu h2 {   color: #ffffff;}
.other_subalbum li { background: #ffffff00;}
.other_subalbum li a p {  color: #fff;}
.show-list .item a:hover p{color: var(--SubColor2);}


.page strong, .page a:hover {
    background:var(--SubColor2);
    color: var(--color);
}
.album_fixed_title { color: #ffffff;}

.album_descrip { color: #ffffff;}

/*最新消息-文章*/
h5.blog_le_t{color: #fff;}
h5.blog_le_t em::first-letter{color: var(--SubColor2);}
h5.blog_le_t span{font-family: var(--SFontE);}
.blog_back a.article_btn_back {    background:var(--MainColor);}
.lastPage {  background:var(--MainColor);}
.blog_le .accordion{border: none;border-radius: 0;}
.accordion li .link a { color: #fff;}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {  background:var(--MainColor) !important;}
.blog_le .accordion > li:hover .link a, .blog_le .accordion > li.on_this_category .link a {    color:var(--color) !important;}
.blog_le .accordion > li:hover .link, .blog_le .accordion > li.on_this_category .link {  color:var(--SubColor2) !important;}
.link, .blog_le .accordion > li.on_this_category .link {border-bottom:1px solid #313131;}
.blog_le .accordion > li.open{ border: 1px solid var(--color2);}
.blog_le .accordion > li a::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    right: 100%;
    height: 100%;
    background-color: var(--SubColor2);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    -webkit-transition: 0.8s;
    transition: 0.8s;
    z-index:9;
}

.blog_le .accordion > li a:hover::after {
        width: 100%;
        right: -100%;
    }



.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:180%;}
.blog_list_ri p { color: #c9c9c9;}


.submenu {  background: #000000;}
.blog_le .accordion ul.submenu li{border: none;}
.submenu li.on_this_category a, .submenu a:hover { background:var(--SubColor);}






.blog_box_edit .articel_mainPic{display: none;}/*關閉文章內頁第一張圖*/
h4.blog_category_title { color: #ffffff;}
.blog_box_edit { color: #fff;}
.news_related { background: #000000;}
.news_related h6 span:before { color: #ffffff;}
.news_related_list li a {background: #ffffff00;}
.news_related_list li a p { color: #ffffff;}






/*聯絡我們*/
.contact_form li.last cite {  background: var(--MainColor);}
.blank_letter{color: #fff;}
.list_before.info li { color: #fff;}
.contact_form li .form__label {   color: #fff;}
.contact_form li input.noborder, .contact_form li textarea.noborder { border: 1px #487f9b4f solid;  background: #000;color: #fff;}
.contact_form li.last blockquote {
    color: var(--SubColor2);
    background: #000;
    border: 1px solid var(--SubColor2);
}

.contact_form li.last cite{ border: 1px solid #000;}













/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

    @media screen and (max-width:1200px) { 
    .banner {   min-height: 400px;}
    .banner h5 { top: 300px;}
/*
    .header_area {
        position: static;
        text-align: center;
        background:#000;
    }
        .navigation {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        }
        */
    }
    @media screen and (max-width:1024px) { 
    .nav-header { margin: auto;}
    
    
    }
    
    @media screen and (max-width: 980px) { 
  
   
    .banner {   min-height: 250px;}
    .banner h5 { top:150px;}
    
    .subbox_item {   border-bottom: 1px #2e2e2e solid!important;}
    .blog_list_ri h5{border-bottom:1px solid var(--SubColor2) ;}
    
    }
    @media screen and (max-width:885px) { 
.prod_part .products-list .item:nth-child(n+7){display: none;}

    }
    @media screen and (max-width:850px) { 

    /*footer*/
    .footer_logo {
        background-position: center;
        max-width: 100px;
        width: 100%;}
    .footer_info { padding: 0 60px; align-items: flex-start;    justify-content: space-between;}
    .footer_info ul { width: calc(100% - 120px);}
    .footer_info li:nth-child(1) { width: 50%;}
    .footer_info li:nth-child(2) { width: 35%;}

        
    .box_link { top: 193px;  left: 63px;}
       }
    @media screen and (max-width: 768px) { 
    /*HEADER*/
    .nav-header { max-width:65px;  position: relative;  z-index: 99999;}
    .navigation { padding: 0;}
  
    /*大圖*/
.swiper-banner .swiper-slide img{padding-bottom:calc(100% / 1*0.78) ;}
.bannerindex .swiper-fade .swiper-slide:nth-child(1){
    background: url(https://pic03.eapple.com.tw/yttai/bn01-768-bg.png) no-repeat;
    background-size:contain !important;
    background-position:center !important;
    width: 100%;
    height: 0;
    padding-bottom: calc(100% / 1*0.78);
}
.bannerindex .swiper-fade .swiper-slide:nth-child(1)::before{    
    background: url(https://pic03.eapple.com.tw/yttai/bn01-768-be.png) no-repeat;
    padding-bottom: calc(100% / 1*0.25);
    z-index: 99;
    bottom: unset;
    top: 25%;
}
.bannerindex .swiper-fade .swiper-slide:nth-child(1)::after, .bannerindex .swiper-fade .swiper-slide:nth-child(2)::after{
    padding-bottom: calc(100% / 1 * 0.4);
    right:5%;
    bottom: 5%
}

.bannerindex .swiper-fade .swiper-slide:nth-child(2){
    background: url(https://pic03.eapple.com.tw/yttai/bn02-768-bg.png) no-repeat;
    background-size:contain !important;
    background-position:center !important;
    width: 100%;
    height: 0;
    padding-bottom: calc(100% / 1*0.78);
}
.bannerindex .swiper-fade .swiper-slide:nth-child(2)::before{    
    background: url(https://pic03.eapple.com.tw/yttai/bn02-768-be.png) no-repeat;
    padding-bottom: calc(100% / 1*0.25);
     z-index: 99;
      bottom: unset;
    top:25%;
}








    
    /*手機側邊欄位*/
    .nav-header {  margin: auto auto auto 0; }
    .stellarnav.mobile { right: 0;left: unset;}
    .stellarnav.mobile.left > ul{transition: 0.5s ease;max-width: 300px;    left: unset;        right: 0;}
    .stellarnav.mobile.active>ul{z-index: 9999999;     animation: move 0.5s linear;box-shadow: 0 0 3px #00000059; }
    @keyframes move{  
        0% {
            transform: translateX(100%);       
          }
        100% {
            transform: translateX(0%);   
            }
    }
    .stellarnav .icon-close:before, .stellarnav .icon-close:after {   border-bottom: solid 3px #fff;}
   .stellarnav .menu-toggle span.bars span, .sticky .stellarnav .menu-toggle span.bars span {  background:#fff;}
   .stellarnav a.dd-toggle .icon-plus:before,  .stellarnav a.dd-toggle .icon-plus::after  {  border-bottom: solid 3px #fff;}
    .stellarnav .menu-toggle:after, .sticky .stellarnav .menu-toggle:after { color:#fff;}
    .stellarnav.mobile > ul > li > a { padding: 20px 10px;  color: #fff;}
    .stellarnav > ul > li > a b , .sticky .stellarnav > ul > li > a { color: #fff;    }
    .stellarnav.mobile > ul > li > a:hover b{color: var(--MainColor);font-weight: bold;}
    .stellarnav.mobile > ul > li > a b:last-child{display: none;}
    .stellarnav.mobile.left > ul{transition: 0.5s ease;max-width: 300px;background: #000000cc;backdrop-filter: blur(5px);}

    .stellarnav.mobile.left .close-menu,   .sticky .stellarnav.mobile.left .close-menu {
        padding: 15px 10px;
        background: #ffffff00;
        color:#fff;
    }
    .stellarnav.mobile li.open {background: #1c1c1c;}
    .stellarnav.mobile ul>li>ul{ background: #141414!important;padding-top:0 ;}
    .stellarnav.mobile > ul > li {border-bottom: 1px #000000 solid;}
    .stellarnav > ul > li::after, .stellarnav > ul > li::before{display: none;}
    .stellarnav.mobile li a {   border-bottom: 1px solid rgb(0 0 0 / 15%);}
    .stellarnav> ul>li> ul::after { background: #1c1c1c;    top: -1px;    width: 15px;    height: 11px;}
    .stellarnav li li > a, .stellarnav li li.has-sub > a {  padding-left: 25px;}



    /* 開啟手機板下方按鈕所需設定 */
    #bottom_menu {display: none; }
    .footer.with_shopping_mode { padding:30px 0 0px; }
    #to_top { bottom:60px;}
    .footer_logo{display: none;}
    .footer_info {
        grid-template-columns: 1fr;
        width: fit-content;
        margin: auto;
        gap: 0;
        padding: 0 60px 0 10px;
    }
    .footer_info ul { width: 100%; }
    .footer_info li { width: 100%!important;}
    .footer_info li:nth-child(1) { grid-template-columns: 1fr;}
    .footer_info li+li {  border-top: 1px solid #5e5e5e;margin-top: 0;}
    .box_link {
        top: 170px;
        left: 50%;
        transform: translateX(-50%);
    }
    .footer_menu { grid-template-columns: repeat(3, 1fr);}
    
    .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%);    }

    .stellarnav.mobile { top: 10px;}

    }
    @media screen and (max-width: 500px) { 
    .footer_menu {  grid-template-columns: 1fr 1fr;}
    .other_subalbum li a p { font-weight: 400;font-size: 15px;}



    }
    @media screen and (max-width: 420px) { 
    
    }
    @media screen and (max-width: 3750px) { 
    
    }
    
    