@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/
body{
    font-family: "Noto Sans TC", "Source Sans 3", sans-serif;
}
.path p, .path p a{ display: none;}
.edit{ padding: 0px 0;}
.info_fix { display: none;}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/*大圖上的特效*/
/* 
 .swiper-wrapper .swiper-slide:nth-child(1):before  {
    content: "";
    background: url(https://pic03.eapple.com.tw/sunriseworker/ba-pic.png) no-repeat;
    position: absolute;
    width: 100%;
    height: 100%;
   	max-width: 50vw;
    max-height: 50vh;
    top: 0%;
    left: 4%;
	padding-bottom: calc(100% / 2);
   -webkit-animation: rotation 200s linear infinite;
	       animation: rotation 200s linear infinite;
    background-size: contain;
    z-index: 1;
}

.swiper-wrapper .swiper-slide:nth-child(2):before  {
    content: "";
    background: url(https://pic03.eapple.com.tw/sunriseworker/ba-pic.png) no-repeat;
    position: absolute;
    width: 100%;
    height: 100%;
   	max-width: 50vw;
    max-height: 50vh;
    top: 0%;
    right: 4%;
	padding-bottom: calc(100% / 2);
   -webkit-animation: rotation 200s linear infinite;
	       animation: rotation 200s linear infinite;
    background-size: contain;
    z-index: 1;
}



@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }
} */




 
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* header */
.header_area {  position: fixed;  width: 100%; background: #cccccc00; padding: 0;}
.main_header_area {background: #fff;box-shadow: 1px 1px 10px rgba(0,0,0,.1);}
.main_header_area .container {max-width: 1800px;padding: 0 3%;}
.me_tp_features {display: none;}

.stellarnav{z-index: 99;}
/*新增的效果*/
.stellarnav > ul > li { position: relative;}
.stellarnav > ul > li > a, .stellarnav li.has-sub > a {  font-weight: 500;   position: relative;  padding: 0 20px; margin: 0; color: #fff;}
/*.stellarnav > ul > li:hover > a { color: #ffffff;}*/
.stellarnav > ul > li.drop-left > ul{ right: unset; left: 6px ;}


.stellarnav li a {  padding: 12px 12px;  display: block;  color: #fff;  font-size: 14px;}
.stellarnav li li {  display: block;  border: none;  margin-bottom: 0px;  background: linear-gradient(90deg, #004a72, #9fa94f); border-bottom: 1px solid #f2f2f21a;}


@media screen and (max-width: 1024px){
	.nav-header {position: relative;}
}
@media screen and (max-width: 768px) {
	.stellarnav.mobile {top: 3px;}/*漢堡按鈕*/
	.nav-header{top: 0;z-index: 0;}
	.nav-brand{margin-top: 5px;}
	/*主分類*/
	.stellarnav.mobile > ul > li > a {   vertical-align: middle;  color: #004B72;  padding: 24px 20px; font-size: 16px;}
	.stellarnav.mobile > ul > li > a.dd-toggle {padding: 0px;width: auto;top: 10px;right: 10px;}
	.stellarnav.mobile > ul > li.has-sub > ul a { padding: 20px;    font-size: 14px;   font-weight: 200;  }
    .stellarnav.mobile > ul > li.has-sub > ul a:hover{ color: #9EA94F;}

}
/*※※※※※【【  此案件更動處↓↓↓  】】※※※※※*/
.main_header_area{background: #004B72;}
.main_header_area {
    background: linear-gradient(180deg, #004a72e8, transparent);
    box-shadow: none;
    position: relative;
}
.main_header_area:after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, #004a72ec, #9fa94fa3);
    transition: all .5s;
    transition-timing-function: ease-in;
}
.stellarnav ul ul{ left: 6px;}
.stellarnav > ul > li {  padding: 32px 0;}
.stellarnav > ul > li > a {   color: #fff;  transition: all .8s;  letter-spacing: 2px;  font-size: 16px;   font-weight: 500;   height: 40px;  padding: 0 20px; position: relative;}
.stellarnav > ul > li > a:hover {color: #9EA94F; font-weight: bold; transform: translateY(-10PX);}
.stellarnav > ul > li > a:hover b{color: #9EA94F; font-weight: bold; }
.stellarnav > ul > li > a b {  font-weight: 500;  letter-spacing: 1px;  color: #fff;  font-size: 16px;}
.stellarnav > ul > li > ul a:hover {   color: #9EA94F;  border: none;}
.stellarnav li.has-sub > a {padding: 0px 25px 0px 15px;}
.stellarnav li.has-sub > a:after {border-top: 4px solid #9EA94F;}
.stellarnav li.has-sub > a:hover:after {  color: #9EA94F;}
.header_area.sticky .main_header_area:after{height: 100%; }
.header_area .nav-brand { transition: all 0.8s;}
.header_area.sticky {  width: 100%;  z-index: 9999;  background: rgb(255 255 255 / 0%);}


.stellarnav li.has-sub>a:after {
    content: '+';
    margin-left: 10px;
    border-left: none;
    border-right: none;
    border-top: none;
    color: #9da0a0;
    transition: all 0.3s ease-in-out;
}



  /* 漢堡條 */
  .stellarnav .menu-toggle span.bars span {background: #c6c9ce;}
  .stellarnav .menu-toggle:after { color: #c6c9ce;}
  
  /* close menu 拉出來 */
  .stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu{
      background: #1E4E71;
      color: #FFF;
    }
    .stellarnav .icon-close:before{
      border-bottom: solid 3px #FFF;
    }
    .stellarnav .icon-close:after{
      border-bottom: solid 3px #FFF;
    }
    .stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul{
      background: #fff;
    }
    .stellarnav a.dd-toggle .icon-plus:before{
      border-bottom: solid 3px #004B72;
    }
    .stellarnav a.dd-toggle .icon-plus:after{
      border-bottom: solid 3px #004B72;
    }
    .stellarnav.mobile > ul > li > a.dd-toggle{
      padding: 11px;
      top: 14px;
    }
    .stellarnav.mobile > ul > li > a.dd-toggle:before{
        display: none;
    }
    .stellarnav.mobile li.open{
      background: transparent;
    }
    .stellarnav.mobile ul ul{
      width: 100%;
      position: relative;
      left: 0;
    }
    .stellarnav.mobile > ul > li{
      border-bottom: 0px;
    }
  
    .stellarnav.mobile li a{ border-bottom: 0px;}
  
    .stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul{max-width: 100%;}


.nav-header {  width: 260px;   max-width: max-content;}
.nav-brand {  margin-top: 10px;}
.nav-brand img{ max-width: 100%;}

@media screen and (max-width:1270px) {
    .stellarnav > ul > li > a{ font-size: 15px;}
}

@media screen and (max-width: 1200px){
	.main_header_area .container {   max-width: 1800px;  padding: 0px 2%;}
	
	.stellarnav > ul > li > a {  padding: 0 10px;}
	.stellarnav > ul > li > a { font-size: 14px;}
    .stellarnav > ul > li{ padding: 40px 0px; }
}

@media screen and (max-width: 1024px){
    .main_header_area { background: linear-gradient(180deg, #004a72, #9fa94f); }
	.navigation {padding: 0;}
	.nav-brand { width: 80% !important;  }
	.stellarnav > ul > li {padding: 0;}
    .stellarnav ul{ padding-top: 10px;}
    .stellarnav > ul > li > a{padding: 0px 18px;}
	.nav-header {  top: 20px; width: 240px;}
	
	.nav-brand {   margin: 0px 0 10px 0;}
	
}

@media screen and (max-width: 768px){
    .nav-brand{margin: -8px 0 24px 0; }
    .nav-header{ z-index: 9;}
	.stellarnav.mobile.left > ul{ top: -11px;}
    .stellarnav > ul > li > a:before{
        top: 35px;
        left: 8px;
    }
    .stellarnav.mobile ul ul{ padding-top: 0px;}
    .nav-brand img{ max-width: 90%;}
    .stellarnav > ul > li.drop-left > ul{ left: 0px;}
}

@media screen and (max-width:570px)  {
    .stellarnav.mobile{top: 13px;}
}

/* 商品下拉超過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個--結束 */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/* 展示footer demo */
.footer_logo{ display: none;}
.footer_info ul { display: none;}
.copy{ display: none;}
.box_link{ display: none;}
.footer {
    border-top: none !important;
    padding:0 0;
    height:367px;
    background-image: url(https://pic03.eapple.com.tw/sunriseworker/footer.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
.fix_ri{display: block!important;}

@media screen and (max-width:1400px) {
    .footer{ height: 269px;}
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */




/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.product_page .main_part { max-width:1500px; width: 90%;}
.product_info_page .main_part { max-width:1350px;width: 90%;}

.product_page .show_content,
.product_info_page .show_content { width: 100%; display: flex; justify-content: space-between; flex-wrap: wrap; align-items: flex-start; align-content: flex-start;}
.product_page .product_menu_list { position: relative; width: 220px; letter-spacing: 1px; /*border-right: 1px solid #ccc;*/min-height: 30vw;}
.product_page .products-list,
.product-wrapper { width: calc(100% - 270px);}
ul.page { width: 100%;}

.product-layer-two li ul { position:static; margin-top:5px; /*display:block !important;*/ width:100%; margin-left:0;}
.product-layer-two li:hover ul { border: none !important; /*display:block !important;*/}
.product-layer-two li li { display: block; padding:0; transition:all ease .3s;}
.product-layer-two li li a{ padding:5px 10px;}
.product-layer-two li li:hover > a { background:#fff; color:#ad925e;}
.product-layer-two > li { width:100%; max-width:100%; padding:0; text-align:left; border-bottom:1px dotted #ccc;}
.product-layer-two > li ul > li + li { margin-top:5px;}

.product_info_page .product_menu_list { display: none;} 
.product_info_page .products-list,
.product-wrapper { width: 100%;}

.product-layer-two li li:hover{ margin-left: 15px;}
.product-layer-two li li > a:before { content: ""; position: absolute; width: 12px; height: 8px; background: transparent; left: 0; margin-left: -20px; top: 50%; margin-top: -4px; clip-path: polygon(0 0, 100% 50% , 0 100%);}
.product-layer-two li li:hover > a:before { background:#ad925e;}

.product_info_page .half_box { width: 100%; float: none; padding-right: 0;}
.product_info_page .half_box li.btn_blankTop { margin-top: 50px; justify-content: space-between; display: flex;}
.product_info_page .half_box li.btn_blankTop input { width: calc(50% - 10px); background-image: none; padding: 0; text-align: center;}
.product_info_page  .swiper-wrapper .swiper-slide:nth-child(1)::after { display: none;}

@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 980px) {
}
@media screen and (max-width: 768px) {
.product_menu_list,
.products-list,
.product-wrapper { width: 100%;}
.product-layer-two { margin-right: 0; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); grid-gap: 5px;}
.product_page .product-layer-two,
.product_page .products-list { width: 100%; border-right: none;}
.product_page .product_menu_list>h5{display: block;}

.product_page .show_content > a { order: 1;}
.product_page ul.products-list { order: 2;}
.product_page ul.page { order: 3;}
.product_page .product_menu_list {width: 100%; order: 0; min-height: unset;}
}
@media screen and (max-width: 600px) {
}

.product_page #content,.product_info_page #content{
background-image: url(https://pic03.eapple.com.tw/sunriseworker/in-bg.jpg); background-size: cover; background-position: top;
    background-size: cover;
    background-position: top;
}

.car_page #content,.remit_page #content{
background-image: url(https://pic03.eapple.com.tw/sunriseworker/in-bg.jpg); background-size: cover; background-position: top;
    background-size: cover;
    background-position: top;
}

/* 首頁 */
/* .i_prod_tit{ display: flex; justify-content: center;}
.i_prod_tit span, .i_video_tit span{color: #696969; font-size: 0px; font-weight: bold;  margin-bottom: 20px;}
.i_prod_tit span::after{
    content: "";
     background-image: url(https://pic03.eapple.com.tw/kuohwa66/in-p-title.png);
     background-size: cover;
    width: 460px;
    height: 149px;
    display: block;

}
.animated-arrow{ background: #B79F80; width: 200px; height: 40px; line-height: 36px; border: 2px solid #D9CDB7; border-radius: 8px;} 
.animated-arrow b { font-weight: 400;}
.prod_part{ padding: 50px 20px 80px;  margin-top: 50px;} */

/* 左邊選單 */
/* .product-layer-two > li{ border-bottom: 1px solid rgba(103, 107, 114, 0.5);} */
.product-layer-two > li:last-child{ border-bottom: 0px;}
.product-layer-two li a{ background: transparent; color: #2AA4A6; border: 1px solid #2AA4A6 ;padding: 12px 16px; transition: 0.3s; margin-bottom: 8px;}
.product-layer-two li a:hover{ background: #84B381; color: #fff; border: 0px;}
.product-layer-two li li a{ color: #000; background: unset; }
.product-layer-two li i{ color: #fae5ea; } 
.product-layer-two li.active a{ background: #84B381; border: 0px; color: #fff;}


/* 商品 */
.products-list{grid-template-columns:1fr 1fr 1fr 1fr ; grid-gap: 80px 40px ;}
.products-list .price { text-align: center;  color: #434343;  display: none;}
.products-list .name{ font-size: 18px; color: #004B72; font-weight: bold; text-align: center;height: 1.5em;
    /* height: 68px; */
}
.products-list .item a{ transition: 0.3s; padding-bottom: 0px;}
.products-list .more{ font-size: 15px; color: #2AA4A6;  bottom: -17%; border: 1px solid #2AA4A6; background: transparent;}
.products-list .item a:hover .more{ background: #84B381; color: #fff;}
.products-list .pic img{ width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: 0.5s;
}

    .products-list .pic{ overflow: hidden}
.products-list .item a:hover img  {
    background: rgba(165,187,116,.2);
    z-index: 999;
     transform: scale(1.2);
}

/* 內頁 */
.product_info_page #content .swiper-slide:nth-child(1):before,.product_info_page #content .swiper-slide:nth-child(2):before{ display: none;}
.product_main{ width: 100%;}
.product_info_page .products-list, .product-wrapper{ width: 76%;}
.sidebarBtn{ border-radius: 0px; display: none;}
.sidebarBtn h2{ color: #004B72; font-size: 26px;}
.sidebarBtn .sp_price{ color: #434343;}
.proImgSwiper img{height: 100%;width: 100%;object-fit: cover;overflow: hidden;}
.pd_tabTitle li.activeTab a{ color: #332A28; font-size: 22px; font-weight: bold;}
.pd_tabInner_contain .edit { text-align: center;}

.pd_tabTitle li.activeTab::after{ height: 0px; background: #E4E4E4;}
.sidebarBtn{ border: 1px #ddd solid;}
.inquiry_a1,.inquiry_a2,.inquiry_a3{ background: transparent; color: #2AA4A6; border: 1px solid #2AA4A6!important; border-radius: 0px;}
.inquiry_a1:hover,.inquiry_a2:hover,.inquiry_a3:hover  { background: #84B381; color: #fff;}

.total_amount{ width: 320px;}
.rewrite_simple{ background: transparent; color: #2AA4A6; border: 1px solid #2AA4A6!important;}
.send_simple{ background: #84B381;}


/* 相關推薦 */
.prod_related h6 span:before{  color: #332A28; font-size: 22px; font-weight: bold;}
.prod_related{ background: transparent; padding: 80px 15px 60px; display: none; }
.related_list li a{ background: transparent;}

.lastPage{ background: #84B381;}

@media screen and (max-width:1529px) {
    .products-list .name{ font-size: 16px; margin-bottom: 10px; height: 30px;}
}

@media screen and (max-width:1024px) {
    .products-list{grid-template-columns:1fr 1fr 1fr ;}
}
@media screen and (max-width:980px) {
    .products-list, .pageIndex .products-list{
        grid-gap:80px 40px;
    }
}
@media screen and (max-width:930px) {
    .products-list{grid-template-columns:1fr 1fr;}
}

@media screen and (max-width:768px) {
    .product-layer-two{ display: block!important;}
    .product_page .product_menu_list>h5{ display: none;}
    .product_info_page #content .main_part{ padding:80px 20px 60px; width: 100%;}
    .mobile_product_name{ display: none;}
    .products-list .more{ bottom: -11%;}
}
@media screen and (max-width:500px) {
    .i_prod_tit span::after{    
        width: 280px;
        height: 86px;
    }
}
@media screen and (max-width:450px) {
    .products-list{gap: 48px 24px;}
    .total_amount{ width: 200px;}
}




/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#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:1024px) {
    .bannerindex{ margin-top: 109px;}
}
@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0; margin-top: 55px;}
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



.banner h5 {  display: block;  position : relative;  width: 100%;  height: max-content;  margin: 10px auto;  text-align: right;  font-size: 36px; font-weight: bold; color: #004B72;right: 7%; font-family: "Noto Sans TC", "Source Sans 3", sans-serif;  letter-spacing: 1px;}
/* .banner:before { display: block; font-size: 72px; font-family: "Source Sans 3", sans-serif; margin: 10px;position:absolute;right: 7%; top: 16%;color: #004B72;} */
/* .banner.banE:before {  content: "WORKS";}
.banner.banblog:before {  content: "NEWS";}
.banner.banC:before {  content: "CONTACT";} */

.banner {  padding:170px 0 150px 0;  background: url(https://pic03.eapple.com.tw/sunriseworker/in-ban.jpg) no-repeat top center fixed;  }
.banner.banA {}
.banner.banB {  }
.banner.banC {}
.banner.banD {}
.banner.banE {}
.banner.banblog {}

@media screen and (max-width: 1024px) {
.banner{  background-size: unset; padding: 200px 0 80px 0;}
.banner:before{ top: 20%;}
}
@media screen and (max-width: 768px) {
.banner {    padding: 60px 0 60px 0 ; background-attachment: unset;  margin-top: 0px; background-position: 52% 63% ;}
.banner h5 {  display: block;  position: relative;  max-width: 100%;  width: 100%;  height: max-content;    margin: 10px auto;  text-align: center;   font-size: 30px;  left: 0%;  letter-spacing: 1px; width: initial;  padding: 6px 20px;  color: #fff; margin: 67px auto 0px; text-shadow: 3px 3px 5px #004B72;}
.banner:before { display:none;}
}
@media screen and (max-width: 500px) {
.banner {  padding: 23px 0 31px 0; background-position: 47% 65%; }
}


/*內頁BANNER 設定*/
.banner {}
.banner h5 {}
.banner.banA {}
.banner.banB {}
.banner.banC {}
.banner.banD {}
.banner.banE {}
.banner.banblog {}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*首頁文章管理*/
.module_i_news {  padding: 50px 20px;  background: #fff;}
.i_blog_ri h5{ color: #004B72;}
.i_blog_ri em{ font-size: 12px;}
.i_blog_ri p{ color: #000;}
.i_blog_le, .blog_list_le { display: none; }
.i_blog_le img, .blog_list_le img { transition: 0.5s;}
.module_i_news li a:hover  .i_blog_le img { transform: translate(-50%, -50%) scale(1.05); }
.module_i_news_list li a:before { content: "";  position: absolute;  bottom: 0px;  left: 0;  width: 50px;  height: 2px;  background-color: #84B381;  transition: 0.3s;  z-index: 1;}
.module_i_news_list li a:hover:before { width: 100%; transition: all .5s;}
.module_i_news_list li a{ border-bottom: 1px solid #ccc;}
.i_blog_ri{ padding: 20px 5px;}

.module_i_news li {width: 100%;  background: #ffffff; }
.i_blog_ri , .i_blog_le { width: 100%;}
.i_blog_ri p {  font-size: 15px;   color: #666;   line-height: 150%;  display: -webkit-box;  -webkit-line-clamp: 2;  -webkit-box-orient: vertical;   white-space: normal;  overflow: hidden;  word-break: break-all;}

.module_i_news li a {  position: relative;  display: flex;  grid-gap: 10px;  flex-direction: column;}
.module_i_news li a:before , .module_i_news li a:after , .subbox_item a:before , .subbox_item a:after{    transition: 0.3s;}
.module_i_news li a:after , .subbox_item a:after{ background: rgb(222 184 135 / 70%);content: none;}
.module_i_news li a:before , .subbox_item a:before { transform: translateX(-50%);    width: 100%;   top: unset; }
.module_i_news li a:hover:before , .subbox_item a:hover:before { opacity: 1;  transform: translateX(-50%);  bottom: 0;}
.module_i_news li a:before {  left: 50%;   font-size: 18px;  padding: 10px 5px;}


.module_i_news .title_i_box h4 { 	color: #808080;font-size:40px; font-weight: bold;}  
.module_i_news .title_i_box h4:after{ content: "WORKS"; color: #004B72;  font-family: "Source Sans 3", sans-serif; font: 32px; font-weight: 500; display: block; }


/* 文章 */
.blog_page #content,.blog_in_page #content { background-image: url(https://pic03.eapple.com.tw/sunriseworker/in-bg.jpg); background-size: cover; background-position: top;}


.blog_page .main_part { width: 90%; max-width: 1500px;}
.blog_in_page .main_part { width: 90%; max-width: 1500px;}
h4.blog_category_title { font-size: 24px;  border-bottom: 1px #f4f4f4 solid;  padding: 15px 0; color: #004B72;}
h4.blog_category_title span{font-size: 24px;}
.blog_search input[type=search] { border: solid 0 #ccc; border-radius: 0;   background: #f6f8f7;}
.blog_le .accordion { border-radius: 0;  border: 0px #ccc solid;}
.blog_le .accordion > li{transition:all 0.3s;}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {background: #84B381 !important;}
.submenu a:before { content: '｜';}
.submenu a:hover {    background:#81a081;}
.blog_le .accordion li .link:last-child { border-bottom: 1px solid #f6f8f7;}
.subbox_item {  width: 100%;}
.module_i_news li a , .subbox_item a {  padding: 5px;}
.subbox_item:before { content: "";  position: absolute;  bottom: 0px;  left: 0;  width: 50px;  height: 2px;  background-color: #747A6A;  transition: 0.3s;   z-index: 1;}
.module_i_news li a:after , .subbox_item a:after{ pointer-events:none; opacity: 0; }
.module_i_news li a:hover:before, .module_i_news li a:hover:after { opacity: 0;  transition: all .5s;}
.blog_page .subbox_item a:before { color: transparent;}
.blog_list_le {  overflow: hidden;}
.module_i_news ul{ grid-template-columns: 1fr 1fr 1fr 1fr;}
.i_blog_le img, .blog_list_le img { transition: 0.5s;}
.i_blog_le img, .subbox_item:hover .blog_list_le img { transform: translate(-50%, -50%) scale(1.05); }
.subbox_item a:hover:after { opacity: 0; transition: all .5s;}
.i_blog_le , .blog_list_le{  position: relative;  padding-bottom: 100%;  height: 0;}/*文章縮圖長寬比例，100% →100:100 = 1:1 正方形 */
.i_blog_le img , .blog_list_le img{display:block; max-width: 100%;  min-width: 100%;  height: 100%;  object-fit: cover;  -moz-object-fit: cover;  -ms-object-fit: cover; -o-object-fit: cover; -webkit-object-fit: cover;  position: absolute;  left: 50%;  top: 50%;  transform: translate(-50%,-50%);}
.subbox_item:hover .blog_list_le img { transform: translate(-50%, -50%) scale(1.1);  transition: 0.5s;}
.blog_list_ri{ padding: 22px 0;}
.blog_page .blog_list_ri h5 {  padding: 10px 0;  color: #004B72; -webkit-line-clamp: 2;}
.blog_page .blog_list_ri em { font-size: 12px;  margin: 0;}
.blog_page .blog_list_ri p { -webkit-line-clamp: 2;  line-height: 160%;  font-size: 14px; color: #2f2f2f;} 
h5.blog_le_t span {  display: inline-block;  font-size: 16px;  padding-left: 5px;  letter-spacing: 1px;}
h5.blog_le_t em {  display: inline-block;  font-style: normal;  font-size: 24px;  letter-spacing: 0px;}
.accordion li .link a {  font-size: 16px;  font-weight: 500;   letter-spacing: 1px;}
.blog_back a { padding: 15px 15px;}
.blog_back a.article_btn_back{background:#84B381;}
.blog_back a.article_btn_prev, .blog_back a.article_btn_next {color: #2AA4A6;background: transparent;border: 1px solid #2AA4A6;}
.promotion_title span { border: none; padding: 0; margin: 0;}
.promotion_title em { width: 100%; border: none; padding: 0 0px 20px;  margin: 0; }
.promotion_title h2 {  width: 100%; border-bottom: 1px solid #e5e5e5;  padding: 0 0 15px; font-weight: 600;}
.blog_box_edit { padding: 20px 20px;}
.blog_box_edit .articel_mainPic{ display: none; }
.blog_page .subbox_item:hover:before { width: 100%; transition: all .5s;}
.blog_page .subbox_item:before { content: "";  position: absolute;  bottom: 0px;  left: 0;  width: 50px;  height: 2px;  background-color: #2AA4A6;  transition: 0.3s;  z-index: 1;}
.blog_page .subbox_item a { border-bottom: 1px solid #ccc;}
.lastPage {  background: #84B381;}
.news_related{ background: transparent;}
.news_related h6 span:before { color: #555;}
.subbox_item a { display: flex;  position: relative; grid-gap: 0px; flex-direction: column;  align-items: flex-start;}

.blog_subbox { display: grid;  grid-template-columns: 1fr 1fr 1fr; grid-gap: 20px;}
/* .animated-arrow {  background: #84B381;  width: 180px;  font-size: 14px;} */
@media screen and (max-width: 1200px) {
.blog_subbox {  grid-template-columns: repeat(2, 1fr);}
}

@media screen and (max-width: 1024px) {
.pageIndex .module_i_news {padding: 70px 4% 120px;}
.module_i_news ul{ grid-template-columns: 1fr 1fr 1fr;}
}



@media screen and (max-width: 980px) {
h4.blog_category_title{font-size: 24px;}
h4.blog_category_title span{font-size: 20px;}
.module_i_news ul , .blog_subbox{grid-template-columns:1fr 1fr;}
/* .i_blog_le, .blog_list_le {  padding-bottom: 100%;} */
h4.blog_category_title{font-size: 20px;}
h4.blog_category_title span{font-size: 18px;}
.blog_subbox { grid-template-columns: 1fr 1fr ; gap: 10px;}
.blog_page .blog_list_ri { width: calc(100% - 0%); padding: 20px 0 20px;}
.pageIndex .i_blog_ri {transform: translate(0, 0px); padding: 15px 15px;}
.module_i_news ul, .blog_subbox { grid-template-columns: 1fr 1fr;}

}

@media screen and (max-width: 768px) {
  .pageIndex .module_i_news ul { grid-template-columns: 1fr 1fr; gap: 10px;}
  .module_i_news ul, .blog_subbox { grid-template-columns: 1fr 1fr ;}
  .blog_le .accordion{ display: block!important;}
  h5.blog_le_t{ display: none; }
}


@media screen and (max-width: 580px) {
.pageIndex .module_i_news { background-size: 100%;}
.pageIndex .module_i_news .title_i_box:before { width: 260px;  left: 0;  position: absolute; left: 50%; transform: translate(-50%, -50%);}
.pageIndex .module_i_news .title_i_box h6:before {top: 60px; left: -50px; width: 40px; font-size: 12px; padding: 10px; height: 40px;}
.module_i_news ul, .blog_subbox { grid-template-columns: 1fr ;}
.pageIndex .module_i_news ul{grid-template-columns: 1fr ; }
}


.link a {  width: 100%; display: block;  letter-spacing: 1px;  font-size: 14px;}
.article_a  .banblog[data-banner=news_a_list_1441] + .main_part .blog_le .accordion > li{display:none;}
.article_a  .banblog[data-banner=news_a_list_1441] + .main_part .blog_le .accordion > li.on_this_category {
  display: block;
}
  

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



.promotions_page #content{
   background-image: url(https://pic03.eapple.com.tw/sunriseworker/in-bg.jpg); background-size: cover; background-position: top;
}

/* 促銷方案 */


/* 首頁 */
.news_part .title_i_box h4{ color: #9EA94F; font-size: 36px; font-weight: bold;}
.news_part .title_i_box h4::before{ content: "NEWS"; display: block; text-align: center; font-size: 72px; font-weight: bold; color: #004B72;font-family: "Source Sans 3", sans-serif;  margin-bottom: -15px;}  
.animated-arrow {  background: #84B381;  width: 180px;  font-size: 14px; margin-top: 40px;}
.news_list ul li a:hover{ background: #FAFBF6;}
.news_list ul li span{color: #D8DDB9; }
.news_list ul li p:after{ color: #99B7C7;}
.news_list ul li p{ color: #004B72;}
.news_list ul li a:hover p{ color: #9EA94F;}


/* 促銷方案背景 */
.promotions_page .edit { color: #000; padding: 40px 0 80px;  font-family: "Noto Sans TC", "Source Sans 3", sans-serif;}

/*上面那排標題*/
.promotion_title{ font-family: "Noto Sans TC", "Source Sans 3", sans-serif;}
.promotions_page .promotion_title em{ border: 0px ;    padding: 16px 16px;   background: #9EA94F;  color: #fff; max-width: 84px;}
.promotions_page .promotion_title span{ display: none;}
.promotions_page  .promotion_title h2{color: #004B72; font-size: 28px;padding-left: 0px; line-height: 50px; font-weight: bold;  font-family: "Noto Sans TC", "Source Sans 3", sans-serif;}
/* 下方sitemap */
.other_promotion li a{ background: #FAFBF6; border: 0px; color: #9EA94F; transition: 0.2s;}
.other_promotion li a:hover{ background: transparent; color: #99B7C7;}
.other_promotion .pmtTitle h3{ color: #271d1d;}

@media screen and (max-width:1024px) {
    .promotions_page #content{
        background-position: left;
    }
}

@media screen and (max-width:768px) {
    .promotions_page .promotion_title h2{ padding-left: 0px;}
    /* .news_list ul li{ background:#FAFBF6;} */
	.news_list ul li{ background: transparent;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本分類全版面 ( 限制最寬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; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */




/* 聯絡我們 */
.contact_page .main_part { width: 90%; max-width: 1500px;}

.contact_page #content{ background-image: url(https://pic03.eapple.com.tw/sunriseworker/in-bg.jpg); background-size: cover; background-position: top;}
.contact_content .information_right:before{
  content: "預約免費諮詢，讓「日作能源」為您開啟綠能新篇章!";
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  display: block;
  color: #004B72;
}

.contact_content .information_left{ margin-top: 33px;}

.contact_form{ grid-gap: 15px;}
.contact_form li.last blockquote{ color: #2AA4A6;}
.contact_form li.last blockquote, .contact_form li.last cite{ border: 1px solid #2AA4A6; }
.contact_form li.last cite{ color: #fff; background: #84B381; border: 0px;}
.contact_form li:has(input[type=checkbox]) .form__insert, .contact_form li:has(input[type=radio]) .form__insert{ display: unset;}
.contact_form li .form__label{ max-width: 90px;}

.info_TEL:before, .info_TEL2:before, .info_PHONE:before, .info_LINE:before, .info_FAX:before, .info_TAXID:before, .info_MAIL:before, .info_ADD:before, .info_ADD2:before{ color: #004B72;}
.list_before{ display: flex; flex-direction: column;}
.list_before.info li.info_PHONE{ order: 1;}
.list_before.info li.info_TEL { order: 2;}
.list_before.info li.info_MAIL {order: 3;}
.list_before.info li.info_ADD { order: 4;}


@media screen and (max-width:768px) {
    .contact_content .information_left{ margin-top: 0px;}
}

@media screen and (max-width:600px) {
    .contact_form li .form__label{ background: transparent;}
}






.car_page .information_left {
    display: block;
}
body.car_page .footer_info li p:before{
    position: initial;
    display: inline;
}
.contact_le_map a{background: #2a93d8; }




@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu {}
.footer.with_shopping_mode { padding:30px 0 55px; }
#to_top { bottom:60px;}
}

@media screen and (max-width: 600px) { 
}

/* 20251216 */
/* footer */
.footer_set * {
            box-sizing: border-box;
            max-width: 100%;
        }
        .footer_set {
	    	max-width:2000px;
            width: 100%;
	    	margin:auto;
            font-family: "Noto Sans TC", sans-serif;
            border: 0;
            text-decoration: none;
            overflow: hidden;
			position: relative;
			z-index: 999;
        }
        .footer_set img {
            width: auto;
            max-width: 100%;
            vertical-align: bottom;
        }
        .footer_set ul {
            padding: 0 0;
            margin:0;
        }
        .footer_set li {
            list-style: none;
        }
        .footer_set h6,
        .footer_set h5,
        .footer_set h4,
        .footer_set h3,
        .footer_set h2 {
            margin: 0;
        }
        .footer_set u {
            text-decoration: none;
        }
        .footer_set p {
            margin: 0;
        }
        .footer_set em,
        .footer_set i {
            font-style: normal;
        }
        .footer_set a {
            text-decoration: none;
        }
        .footer_set dd,
        .footer_set dt {
            margin: 0 0;
        }
		footer{
			padding:0;
			margin:0;
			overflow: hidden;
		}
		.frr01{
			padding:80px 20px 25px 20px;
			position: relative;
		}
		.frr01>img:nth-of-type(1) {
			display: block;
			width: fit-content;
			height: 100% !important;
			object-fit: cover;
			object-position: left;
			position: absolute;
			right: 0;
			bottom:0;
			z-index: 20;
		}
		.frr01>img:nth-of-type(2) {
			position: absolute;
			top:0;
			left: 0;
			z-index: 20;
		}
		.frr02 {
			max-width: 1310px;
			margin:auto;
			position: relative;
			z-index: 50;
			display: flex;
			justify-content: space-between;
			align-items: center;
		}
		.frr03 {
			max-width: 920px;
			width: 100%;
			display: flex;
			justify-content: space-between;
			align-items: center;
		}
		.frr04{
			max-width: 760px;
			width: 100%;
			display: flex;
			justify-content: space-between;
			align-items: center;
		}
		.frr05 {
			max-width: 582px;
			width: 100%;
			margin-left: 25px;
		}
		.frr05 strong{
			display: block;
			color:#004B72;
			font-size: 17px;
			font-weight: 700;
			line-height: 200%;
			letter-spacing: 0.1em;
			padding-bottom: 25px;
			margin-bottom: 35px;
			border-bottom: 1px #EBEEDC solid;
		}
		.frr05 strong img{margin-right: 10px;vertical-align: middle;}
		.frr06{
			display: grid;
			grid-template-columns: repeat(2,1fr);
			grid-gap: 15px 20px;
		}
		.frr06 a{
			display: block;
			color:#000000;
			font-size: 15px;
			font-weight: 400;
			line-height: 160%;
			text-align: justify;
			padding-left: 51px;
			position: relative;
			word-break: break-all;
			transition: .5s;
		}
		.frr06 a:hover{
			transition: .5s;
			color:#004B72;
		}
		.frr06 a i {
			display: block;
			width: 40px;
			min-width: 40px;
			border-right: 1px #83B280 solid;
			color:#004B72;
			font-size: 15px;
			font-weight: 400;
			line-height: 160%;
			position: absolute;
			left: 0;
		}
		a.line_footer{
			display: block;
			width: 90px;
			min-width: 90px;
			margin-left: 25px;
			transition: .5s;
		}
		a.line_footer:hover{
			transition: .5s;
			transform: scale(1.05);
		}
		.footer_menu{
			width: 165px;
			margin-left: 25px;
			display: grid;
			grid-template-columns: repeat(2,1fr);
			grid-gap: 25px 10px;
		}
		.footer_menu a{
			display: block;
			width: fit-content;
			color:#000000;
			font-size: 13px;
			font-weight: 400;
			line-height: 120%;
			padding:0;
			margin:0;
			background: transparent;
			border: none;
			transition: .5S;
		}
		.footer_menu a:hover{
			transition: .5s;
			color:#2AA4A5;
			background-color: transparent;
		}
		.footer_menu a:nth-of-type(2n) {
			margin:0 0 0 auto;
		}
		.frr_copy {
			position: relative;
			z-index: 50;
			overflow: hidden;
		}
		.copy{
			display: block;
			border: none;
			padding:0;
			margin:0;
			margin-top: 80px;
		}
		.copy ,.copy a{
			color:#CDCDCD;
			font-size: 13px;
			font-weight: 300;
			line-height: 120%;
			text-align: center;
		}
		.copy p {
			display: inline-block;
		}
		.copy p a{
			display: inline-block;
		}

		@media (max-width:1500px) {
			.frr01>img:nth-of-type(1){
				width: 18vw;
				height: auto !important;
			}
			.frr01>img:nth-of-type(2){
				width: 11vw;
			}
		}

		@media (max-width:1440px) {
			.frr01{
				padding:80px 40px;
			}
		}

		@media (max-width:960px) {
			.frr02 {
				flex-direction: column;
			}
			.footer_menu{
				max-width: 1200px;
				width: 100%;
				margin:35px auto 0 auto;
				grid-template-columns: repeat(7,1fr);
			}
			.footer_menu a:nth-of-type(n) {
				margin:auto;
			}
		}

		@media (max-width:800px){
			.frr03{
				flex-direction: column;
			}
			a.line_footer{
				margin:25px 0 0 0;
			}
		}

		@media screen and (max-width:768px) {
			.footer_set{ z-index: 9;}
			.frr01>img:nth-of-type(1){ bottom: 43px;}
		}

		@media (max-width:600px) {
			.frr06{grid-template-columns: repeat(1,1fr);grid-gap: 20px 0;}
			.footer_menu{grid-template-columns: repeat(4,1fr);}
		}

		@media (max-width:475px) {
			.frr01{
				padding:50px 40px;
			}    
			.frr01>img:nth-of-type(2) {width: 26vw;}
			.frr01>img:nth-of-type(1){width: 26vw;}
			.frr04{
				flex-direction: column;
			}
			.frr05{
				margin:25px 0 0 0;
			}
		}

		@media (max-width:375px) {
			.footer_menu{
				grid-template-columns: repeat(2,1fr);
			}
		}




