@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}
*/


/*電腦LOGO
.nav-brand {}
*/

/*手機LOGO
.nav-brand-m {}
*/


/*header*/
/*==============================LOGO進入畫面=====================*/
@-webkit-keyframes bodybg {
    0% {opacity: 1;-webkit-filter: blur(4px);}
    5% {-webkit-filter: blur(0px);}
    50% {opacity: 1;-webkit-transform: scale(1);transform: scale(1);-webkit-filter: blur(0px);}
    100% {opacity: 0;-webkit-transform: scale(1.5);transform: scale(1.5);-webkit-filter: blur(4px);}
  }
  @keyframes bodybg {
    0% {opacity: 1;-webkit-filter: blur(4px);}
    5% {-webkit-filter: blur(0px);}
    50% {opacity: 1;-webkit-transform: scale(1);transform: scale(1);-webkit-filter: blur(0px);}
    100% {opacity: 0;-webkit-transform: scale(1.5);transform: scale(1.5);-webkit-filter: blur(4px);}
  }
  body.pageIndex::before {
      content: '';
      pointer-events: none;
      display: block;
      width: 100%;
      height: 100%;
      background-image: url(https://pic03.eapple.com.tw/sencaidaylight/B01.jpg);
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 10000;
      animation: bodybg 3s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
  }
  @-webkit-keyframes fade-in {
    0% {opacity: 1;-webkit-filter: blur(2px);}
    20% {-webkit-filter: blur(0px);}
    90% {-webkit-filter: blur(0px);}
    100% {opacity: 0;-webkit-filter: blur(4px);}
  }
  @keyframes fade-in {
    0% {opacity: 1;-webkit-filter: blur(2px);}
    20% {-webkit-filter: blur(0px);}
    90% {-webkit-filter: blur(0px);}
    100% {opacity: 0;-webkit-filter: blur(4px);}
  }
  body.pageIndex::after{
      content: "";
      pointer-events: none;
      display: block;
      width: 20%;
      max-width: 300px;
      aspect-ratio: 30 / 16;
      padding-bottom: 100%;
      background-image: url(https://pic03.eapple.com.tw/sencaidaylight/logo.png);
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain;
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(1);
      z-index: 100000000;
      animation: fade-in 4s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
  }
  @media screen and (max-width: 768px){body.pageIndex::after {width: 30%}}
  @media screen and (max-width: 600px){}
  @media screen and (max-width: 450px){body.pageIndex::after {width: 50%}}

.tp_links {
    display: none;
}
.header_area {
    position: relative;
    z-index: 9999;
    padding: 10px;
    background: #000000;
    position: sticky;
    top: 0;
    width: 100%;
    transition: all 0.5s;
}
.header_area.sticky {
    width: 100%;
    z-index: 9999;
    background: rgb(255 255 255);
    padding: 20px;
}
.navigation {
    width: 100%;
    position: relative;
    padding: 0;
    display: grid;
    grid-template-columns: 200px 1fr;
    grid-gap: 0 20px;
    transition: 0.5s;
}
header.header_area.sticky .navigation {
    padding: 10px;
    transition: 0.5s;
}
.stellarnav > ul > li > a {
    padding: 0;
    color: #d09935;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    line-height: 40px;
    height: 40px;
    margin: 0 0 0 20px;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
}

.stellarnav > ul > li > a::before {
    content: "◆";
    color: #d09935;
    font-size: 0.5em;
    margin-left: 0px;
    vertical-align: bottom;
    display: inline-block;
    transition: 1.3s linear;
}
.stellarnav > ul > li:hover > a::before {
  content: "►";
}
/*=====================下拉選單===============*/
.stellarnav li.has-sub > a:after {
    content: '';
    margin-left: 10px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #898989;
    display: none;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.stellarnav > ul > li.has-sub > a {
    padding-right: 0;
}
.stellarnav ul ul {
    top: auto;
    width: 160px;
    position: absolute;
    z-index: 9900;
    text-align: left;
    display: none;
    background: #d09935ad;
    backdrop-filter: blur(10px);
    left: 20px;
}
.stellarnav li li {
    display: block;
    border: 0 #eeeeee00 solid;
    border-bottom-width: 0;
}
.stellarnav li a {
    padding: 7px 10px;
    display: block;
    color: #ffffff;
    font-size: 13px;
    transition: transform 0.5s ease;
}
.stellarnav li li:hover {
    background: #000000e8;
    backdrop-filter: blur(10px);
}
.stellarnav ul ul li a:hover {
    transform: translateX(8px);
}
/*==============================================*/


/*========================footer==================*/
.footer {
    font-size: 14px;
    background: #d09935;
    position: relative;
    z-index: 99;
    padding-top: 30px;
}
.footer_logo img {
    max-width: 100%;
    filter: brightness(10);
}
.box_link {
    position: absolute;
    top: 0;
    right: 10px;
    width: auto;
    max-width: 110px;
    display: none;
    max-height: 100%;
    flex-direction: column;
}
.footer_info {
    padding: 0;
    display: flex;
    grid-gap: 20px;
    padding-right: 0;
    flex-direction: column;
    align-items: center;
}
.footer_info ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    letter-spacing: 0.15em;
    gap: 0px;
}
.footer_info li {
    display: block;
    padding: 5px;
}
.footer_info li p {
    line-height: 175%;
    letter-spacing: 1px;
    color: #ffffff;
    margin: 0 0 10px;
    position: relative;
  padding-left: 1em;
}

.footer_info li p::after {
  content: "◆";
  color: #ffffff;
  font-size: 0.5em;
  position: absolute;
  left: 0;
  top: 0.2em;
}

.footer_info li p a {
    color: #fff;
}
.footer_menu {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.footer_menu a {
    display: inline-block;
    padding: 5px 7px;
    border: 0 #ccc solid;
    margin: 0 4px 4px 0;
    font-size: 14px;
    line-height: 100%;
    color: #ffffff;
    background: #f0f0f000;
    transition: 0.5s;
}
.footer_menu a:hover {
    background: #ffffff00;
    color: #000000;

}
.copy {
    text-align: center;
    padding: 2px 0;
    font-size: 13px;
    background: #000;
    color: #434343;
    border-top: 0 #ddd solid;
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}
.copy a:hover {
    color: #454545;
}

/* 商品下拉超過30個變大 */
.stellarnav.desktop li.bigMenu>ul{display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); left: 0; width: 100%; position: fixed; padding: 20px;}
.stellarnav.desktop li.bigMenu ul ul{top: 100%; left: 0; width: 100%; background: #efefef; height: auto; max-height: 300px; overflow: auto;}
.stellarnav.desktop li.bigMenu ul ul li{margin: 0;} 
.stellarnav.hasBigMenu li.bigMenu li.has-sub > a:after{border-left: 6px solid transparent; border-bottom:unset; border-right: 6px solid transparent; border-top: 6px solid #898989; right: 5px;}
/* 主分類超過30個但次分類直接顯示 
.stellarnav.desktop li.bigMenu>ul{grid-gap: 10px;}
.stellarnav.desktop li.bigMenu li{border: 0;}
.stellarnav.desktop li.bigMenu>ul>li>a{border: 1px solid #ddd;}
.stellarnav.desktop li.bigMenu ul ul{display: block !important; position: relative; top: 0; background: unset; border: 0;}
.stellarnav.desktop li.bigMenu ul ul li{border: 0;}
 主分類超過30個但次分類直接顯示-結束 */

/* 商品下拉超過30個--結束 */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 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;}
.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; padding-bottom: 5px;}
.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:#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;}
@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) {
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#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;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/* BANNER */

.banner {
    background-image: url(https://pic03.eapple.com.tw/sencaidaylight/B01-01.jpg);
    height: 500px;
}

.banner h5 {
    display: flex;
    flex-direction: column;
    color: #ffffff;
    font-size: 40px;
    font-family: "Noto Sans TC", sans-serif;
    -webkit-animation: puff-in-center 0.7s cubic-bezier(0.470, 0.000, 0.745, 0.715) both;
	        animation: puff-in-center 0.7s cubic-bezier(0.470, 0.000, 0.745, 0.715) both;
}

@keyframes puff-in-center{0%{transform:scale(2);filter:blur(4px);opacity:0}100%{transform:scale(1);filter:blur(0);opacity:1}}

.banB h5::before {
    content: "Our Services";
    color: #d7a84e;
    font-size: 45px;
    font-family:"Jost", sans-serif;
}


.banE h5::before { 
    content: "Projects";
    color: #d7a84e;
    font-size: 45px;
    font-family:"Jost", sans-serif;
}

.banblog h5::before {
    content: "News";
    color: #d7a84e;
    font-size: 45px;
    font-family:"Jost", sans-serif;

}

.path p, .path p a {
    display: none;
}

/* 施工實績 */

.other_album_choice li {
    background: #d7a84e;
}

/* 最新消息 */

h5.blog_le_t {
    text-align: center;
    color: #d7a84e;

}

.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {
    background: #d7a84e !important;
    transition: 0.5s;
}

.subbox_item a:before {
    color: #d7a84e;
}

.subbox_item a:after {
    border: 1px #d7a84e solid;
}

.blog_back a.article_btn_back {
    background: #000000;
}

.blog_back a.article_btn_prev {
    background: #d7a84e;
}

.blog_back a.article_btn_next {
    background: #d7a84e;
}

.news_related {
    display: none;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本分類全版面 ( 限制最寬2000px
.work_page .main_part { max-width:2000px;}
.work_page .show_content { padding:0; width:100%;}
.work_page .show-list .item { width:33%; display:inline-block; float:none; margin:0; padding:0;}
@media screen and (max-width: 768px) {
.work_page .show-list .item { width:49%;}
}
@media screen and (max-width: 570px) {
.work_page .show-list .item { width:100%;}
}
.work_page .show-list .item a { max-width:100%;}
.work_page .show-list .show_pic { height:auto; line-height:0;}
.work_page .show-list .show_pic img { max-width:100%; max-height:100%;}
.work_page .show-list .show_name { position:absolute; top:50%; right:10%; width:80%; height:auto; line-height:160%; font-size: 20px; color: #FFFFFF !important; border: solid 1px #fff; text-align: center; margin: -20px 0 0 -120px; padding:5px 20px; transition:all ease-in .3s; opacity:0;}
.work_page .show-list .item:hover .show_name {opacity:1;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本列表
.work_info_page .main_part { max-width:2000px;}
.work_info_page .show_content { padding:0; width:100%;}
.work_info_page .subalbum-menu { text-align:center;}
.work_info_page .subalbum-menu h2 { float:none;}
.work_info_page .pic-list .item { margin:0; padding:10px; width:49%; float:none; display:inline-block;}
@media screen and (max-width: 768px) {
.work_info_page .pic-list .item { width:100%;}
}
.work_info_page .pic-list .show_pic { height:auto; line-height:0;}
.work_info_page .pic-list .show_pic img { max-width:100%; max-height:100%;}
.work_info_page .pic-list .item a { max-width:100%; pointer-events: none; cursor: default; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */





@media screen and (max-width: 768px) {

.navigation {
    display: flex;
}

.header_area.sticky {
    padding:0;
    background: rgb(0 0 0);
}

.stellarnav.mobile.left > ul {
    background: #000000cf;
}

.stellarnav .menu-toggle:after {
    color: #ffffff;
}

.stellarnav .menu-toggle span.bars span {
    background: #ffffff;
}

.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {
    background: #000000;
}

.stellarnav .icon-close:before {
    border-bottom: solid 3px #ffffff;
}

.stellarnav .icon-close:after {
    border-bottom: solid 3px #ffffff;
}

.stellarnav > ul > li > a::before {
    display:none;
}

.stellarnav.mobile > ul > li {
    border-bottom: 1px #d09e48 solid;
}

.stellarnav a.dd-toggle .icon-plus:before {
    border-bottom: solid 3px #ffffff;
}

.stellarnav a.dd-toggle .icon-plus:after {
    border-bottom: solid 3px #ffffff;
}

.stellarnav.mobile li.open {
    background: #00000059;
    padding: 0;
}

.stellarnav ul ul {
    left: 0;
}

.stellarnav.mobile ul {
    background: #00000082;
}

.stellarnav.mobile li a {
   border-bottom: 1px solid rgb(255 255 255 / 0%); 
}

#bottom_menu {display: none; }
.footer.with_shopping_mode { padding:30px 0 0; }

.footer_info ul {
   display: block;
}

.footer_menu {
    display: flex;
    flex-direction: row;
}

.footer_info li {
    display: block;
    margin: 0 30px auto;
}


#to_top { bottom:60px;}
}

@media screen and (max-width: 655px) { 

.footer_menu {
    display: flex;
    flex-wrap: wrap;
    }
}
@media screen and (max-width: 395px) {
.footer_menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
}


