@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 {}
*/
/* 大圖 */
#content_main {  margin: 0;z-index: 0;}
.bannerindex { position: static; height: auto;z-index: 0;}
.swiper-banner { position: static; margin: 0; height: auto;}
.swiper-slide { padding: 0px !important;}
.swiper-slide img { height: auto;}
.swiper-pagination { display: none;}
.swiper-slide { position: relative;}
.bannerindex .swiper-slide.swiper-slide-active:before {content: ""; position: absolute;  z-index: 999; pointer-events: none;}
.bannerindex .swiper-slide.swiper-slide-active:after {content: ""; position: absolute;  z-index: 999; pointer-events: none;}
@media screen and (max-width: 768px) {.bannerindex { padding:0; margin:0;}}

.bannerindex .swiper-slide.swiper-slide-active:nth-of-type(1)::before {
    -webkit-animation: slide-top 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-top 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    background: url(https://pic03.eapple.com.tw/tsaiyiyan/A00-02.png);
    background-size: contain;
    background-repeat: no-repeat;
    bottom: 28%;
    left: 58%;
    width: 25% !important;
    height: 52% !important;
    background-position: left;
    padding-bottom: calc(100% / 1* 0.12);
}

.bannerindex .swiper-slide.swiper-slide-active:nth-of-type(1)::after {
    -webkit-animation: slide-top 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-top 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
            animation-delay: 1.5s;
    background: url(https://pic03.eapple.com.tw/tsaiyiyan/A00-03.png);
    background-size: contain;
    background-repeat: no-repeat;
    bottom: 0%;
    left: 79%;
    width: 10% !important;
    height: 81% !important;
    background-position: left;
    padding-bottom: calc(100% / 1* 0.12);
}

.bannerindex .swiper-slide.swiper-slide-active:nth-of-type(2)::before {
    -webkit-animation: slide-top 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-top 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    background: url(https://pic03.eapple.com.tw/tsaiyiyan/A00-05.png);
    background-size: contain;
    background-repeat: no-repeat;
    bottom: -4%;
    left: 25%;
    width: 49% !important;
    height: 43% !important;
    background-position: left;
    padding-bottom: calc(100% / 1* 0.12);
}
@keyframes slide-top {
  0% {
    opacity: 0;
    transform: translateY(30%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* end */

/*卷軸==============================================*/
&::-webkit-scrollbar {
    background: #101010;
    width: 7px;
}
&::-webkit-scrollbar-button {
    display: none;
    background: #000000;
    border-radius: 0;
}
&::-webkit-scrollbar-track-piece {
    background: #000000;
}
&::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #ffffff;
}
&::-webkit-scrollbar-track {
    box-shadow: transparent;
}
/*==================================================*/

.me_tp_features {
  display: none;
}
.header_area {
  padding: 15px 0 0;
  background: #ffffff;
  box-shadow: 0 2px 4px rgb(0 0 0 / 30%);
}
.header_area.sticky {
  background: #ffffff;
}
.navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    grid-gap:0;
}
.pageIndex .nav-header {max-width: 255px;transition: 0.8s;filter: brightness(1);}
header.header_area.sticky .nav-header { max-width: 200px;}

/* 下拉 */
.stellarnav ul {text-align: center;}
.stellarnav > ul > li > a {
  color: #656464ed;
  font-size: 18px;
  letter-spacing: 2px;
  margin: 0 22px;
  transition: .3s;
}
.stellarnav > ul > li:hover > a {
color: #000000;
transition: .5s;
}
.stellarnav li.has-sub > a:after {
    border-left: unset;
    border-right: unset;
    border-top: unset;
    transform: translateY(-54%);
    content: "+";
}
.stellarnav ul ul {
  background: #0000009c;
  left: 0;
}
.stellarnav li li {
  border: 1px #ffffff solid;
}
.stellarnav li a {
  color: #ffffff;
  transition: .3s;
}
.stellarnav li li:hover a {
  background: #000000;
  padding-left: 20px;
  transition: .5s;
}
.stellarnav li li.has-sub > a:after {border-left: 6px solid #89898900;right: 10%;}
/* footer */
.box_link {display: none;}

.footer {background: #ffffff;padding: 70px 0 0;box-shadow: 0 -2px 4px rgb(0 0 0 / 10%);}
.footer_logo {margin: auto;}
.footer_info {display: flex;flex-direction: column;align-items: center;padding-right: 0;grid-gap: 70px;}
.footer_info ul {display: grid;grid-template-columns: 1fr 1fr;}
.footer_info li {margin: auto; }
.footer_info li p , .footer_info li a {color: #000000;}

.footer_menu {display: grid;grid-template-columns: repeat(auto-fit, minmax(min(135px, 100%), 1fr));max-width: 280px;gap: 8px;}
.footer_menu a {padding: 10px 20px;border: 0;border-bottom: 1px #000000 solid;color: #000000;background: #ffffff00;transition: .5s;margin: 0;font-size: 13px;text-align: center;}
.footer_menu a:hover {background: #000000;color: #fff;transition: .5s;}

.copy {padding: 2px 0;font-size: 11px;color: #ffffff;border-top: 1px #dddddd00 solid;background: #000000; }
.copy a { color: #ffffff;}
.copy a:hover {color: #555555;}



/* 首頁商品 */
.i_prod_tit span, .i_video_tit span {
  display: flex;
    flex-direction: column;
    color: #000000;
    font-weight: 600;
    font-size: 25px;
    letter-spacing: 7px;
}
.i_prod_tit h2::before, .i_video_tit h2::before {
 content: "Product Info";
    color: #000000;
    font-size: 20px;
    font-family: "Jost", sans-serif;
    letter-spacing: 1px;
}
.animated-arrow {background: #000000;}



.banner {
    background:url(https://pic03.eapple.com.tw/tsaiyiyan/B00-01.jpg) no-repeat;height: 400px;position: relative;}
.banner h5 {
    display: flex;
    flex-direction: column;
    color: #ffffff;
    font-weight: 600;
    font-size: 25px;
    letter-spacing: 7px; }
/*.banner::before {
    content: "";
    position: absolute;
    bottom: 33px;
    left: 50%;
    transform: translateX(-50%);
    width: 1500px;
    height: 1px;
    background: #bababa;
    border-radius: 2px;
}*/

/* 商品介紹 */
.banF h5:before {
    content: "Product Info";
    color: #ffffff;
    font-size: 20px;
    font-family: "Jost", sans-serif;
    letter-spacing: 1px;
}
.path {display: none;}
.product-layer-two > li { width:100%; max-width:100%; padding:0; text-align:left; border-bottom:1px dotted #000000; padding-bottom: 5px;}
.product-layer-two li a {background: #f3f3f300;padding: 35px 16px 14px;color: #000000;text-align: center;border: 1px #ffffff00 solid;transition: .5s;}
.product-layer-two li:hover a {color: #a45d00;transition: .5s; }
.product-layer-two li.active a {border: 1px #cccccc00 solid;}
.product-layer-two li.active li a {color: #000000;transition: .5s;}
.product-layer-two li li.active a {background: rgb(0 0 0 / 0%);}
.product-layer-two li li:hover > a {background: #ffffff00;color: #a45d00;transition: .5s;}
.product-layer-two li li:hover > a:before {background: #a45d00;transition: .5s;}
/*按鈕*/.product-layer-two li i {top: 29px;}

.products-list {grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    grid-gap: 45px;}
.products-list .pic img {transition: 1s;}
.products-list .item:hover .pic img {transform: scale(1.05);transition: 1s;}
.products-list .name {
    text-align: center;
    font-size:16px;
    color: #000000;
    position: relative;
    margin: 10px 0;
}
.products-list .name .numbering {
  color: #de0000;
  font-weight: bold;
font-size: 16px;
letter-spacing: 0px;
}
/*.products-list .name::before {
  content: "2025當季新款，請洽業務";
  color: #de0000;
  font-weight: bold;
font-size: 16px;
    letter-spacing: 0px;
}*/

.products-list .price {display: none;}
.products-list .more {border: 1px solid #000000;color: #000000;transition: all 1s; }
.products-list .item a:hover .more {background: #000000;transition: all 1s;}

.sidebarBtn {
  border: 1px #00000000 solid;
}
.inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover {
    letter-spacing: 1px;
    background: #000000;
}

.proImgSwiper li {align-items: flex-start;}
.pd_tabTitle li.activeTab a {
    color: #ffffff;
    background: #000;
    font-family: "Noto Sans", sans-serif;
    letter-spacing: 4px;
    font-size: 20px;
}
.pd_tabTitle li a {padding: 4px 10px;}
.pd_tabTitle li.activeTab::after {background: #99999900;}
.prod_related {background: #f3f3f300;}
.lastPage  {background: #000000;}


/* 最新消息 */
.banblog h5:before {
    content: "News";
    color: #ffffff;
    font-size: 20px;
    font-family: "Jost", sans-serif;
    letter-spacing: 1px;
}
h5.blog_le_t {color: #000000;text-align: center;}
.accordion li .link a {
  letter-spacing: 1px;
  color: #000000;
    font-size: 15px;
    font-weight: 600;
    padding: 18px 16px;
    transition: .5s;
}
.blog_le .accordion li .link i {
  font-size: 13px;
    color: #000000;
}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {background: #000000 !important;transition: .5s;}
.submenu a {color: #000000;line-height: 2.25;}
.submenu li.on_this_category a, .submenu a:hover {background: #000000;}
.submenu a i {display: none;}
.submenu {background: #fff8ea;}

.module_i_news ul {
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}
.module_i_news li a {
  display: flex;
  flex-direction: column;
}
.subbox_item a, .module_i_news li a {
    padding: 9px;
    border: 0;
    background: #000000;
    display: flex;
    flex-direction: column;
    grid-gap: 5px;
    box-shadow: 0 2px 4px rgb(0 0 0 / 14%);
    z-index: 1;
}
.subbox_item a:after {border: 1px #dddddd00 solid;background: rgb(255 255 255 / 0%);}
.subbox_item:hover .blog_list_le img {transform: scale(1.02);transition: 1s;}
.blog_list_ri h5 {color: #ffffff;text-align: center;letter-spacing: 1px;}
.blog_list_ri em {font-size: 13px;color: #ffffff;}
.blog_list_ri p {display: none;}
.blog_list_ri {padding: 5px 0;}
.subbox_item a:before {
    right: 40%;
    letter-spacing: 1px;
    opacity: 0;
    display: block;
    color: #000000;
    transition: all .5s;
}
.subbox_item a:hover:before, .subbox_item a:hover:after {
    opacity: 1;
    transition: all .5s;
}
.subbox_item a:after {
    border: none;
    top: 100%;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 15px 15px 0 0;
    transition: all .5s;
}
.subbox_item a:hover:after {
    top: 92%;
    transition: all .5s;
}
h4.blog_category_title {color: #000000;letter-spacing: 2px;}
.blog_shareData {display: none;}

.blog_back a.article_btn_prev {background: #000000;}
.blog_back a.article_btn_back {background: #7a4009;}
.blog_back a.article_btn_next {background: #000000;}

.news_related {background: #ffffff;}
.news_related h6 span:before {color: #000000;}
.news_related_list li {transition: 1s;}
.news_related_list li:hover a img {transform: scale(1.05);transition: 1s;}


/* 客戶實績 */
.banE h5:before {
    content: "Client Projects";
    color: #ffffff;
    font-size: 20px;
    font-family: "Jost", sans-serif;
    letter-spacing: 1px;
}
.show-list .item a:before {
    content: "VIEW +";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-bottom: 2px solid #ffffff;
    font-size: 15px;
    max-width: 100px;
    color: #fff;
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all .5s;
    transition-delay: 0s;
    z-index: 9999;
}
.show-list .item a:hover:before {
    opacity: 1;
    height: 25px;
    padding-bottom: 10px;
    transition: all .5s;
    transition-delay: .3s;
    z-index: 100;
}
.show-list .show_name {
    font-size: 18px;
    color: #333;
    height: 26px;
    text-align: center;
}
.show-list .show_name {color: #6a6a6a;}
.show-list .item:hover .show_name {color: #000000;}
.overlay {
    width: 0;
    background: rgb(0 0 0 / 51%);
    backdrop-filter: blur(10px);
    transform: scale(1);
    z-index: 99;
}
.show-list .item:hover .overlay {width: 100%;}
.subalbum-menu h2 {color: #000000;letter-spacing: 1px;}
.other_subalbum li a p {color: #000;font-size: 18px;letter-spacing: 1px;}
.other_album_choice li {background: #000000;}


/* 聯絡我們 */
.banB h5:before {
    content: "Contact Us";
    color: #ffffff;
    font-size: 20px;
    font-family: "Jost", sans-serif;
    letter-spacing: 1px;
}




/* 商品下拉超過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; 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 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_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;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本分類全版面 ( 限制最寬2000px
.work_page .main_part { max-width:2000px;}
.work_page .show_content { padding:0; width:100%;}
.work_page .show-list .item { width:33%; display:inline-block; float:none; margin:0; padding:0;}
@media screen and (max-width: 768px) {
.work_page .show-list .item { width:49%;}
}
@media screen and (max-width: 570px) {
.work_page .show-list .item { width:100%;}
}
.work_page .show-list .item a { max-width:100%;}
.work_page .show-list .show_pic { height:auto; line-height:0;}
.work_page .show-list .show_pic img { max-width:100%; max-height:100%;}
.work_page .show-list .show_name { position:absolute; top:50%; right:10%; width:80%; height:auto; line-height:160%; font-size: 20px; color: #FFFFFF !important; border: solid 1px #fff; text-align: center; margin: -20px 0 0 -120px; padding:5px 20px; transition:all ease-in .3s; opacity:0;}
.work_page .show-list .item:hover .show_name {opacity:1;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本列表
.work_info_page .main_part { max-width:2000px;}
.work_info_page .show_content { padding:0; width:100%;}
.work_info_page .subalbum-menu { text-align:center;}
.work_info_page .subalbum-menu h2 { float:none;}
.work_info_page .pic-list .item { margin:0; padding:10px; width:49%; float:none; display:inline-block;}
@media screen and (max-width: 768px) {
.work_info_page .pic-list .item { width:100%;}
}
.work_info_page .pic-list .show_pic { height:auto; line-height:0;}
.work_info_page .pic-list .show_pic img { max-width:100%; max-height:100%;}
.work_info_page .pic-list .item a { max-width:100%; pointer-events: none; cursor: default; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */





@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu {display: none; }
#to_top { bottom:60px;}
.header_area {padding:0;}
.navigation {padding: 7px 0;}

.stellarnav.mobile .menu-toggle {padding: 10px 0 0 10px;}
.close-menu .full {padding: 0;}


.stellarnav > ul > li > a {
    margin: 0 0 0 20px;
}
.stellarnav .menu-toggle span.bars span {
    background: #000;
}
.stellarnav .menu-toggle:after {
    color: #000;
}
.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {
    background: #000;
    color: #fff;
}
.stellarnav .icon-close:before {
    border-bottom: solid 3px #ffffff;
}
.stellarnav .icon-close:after {
    border-bottom: solid 3px #ffffff;
}
.stellarnav a.dd-toggle .icon-plus:before {
    border-bottom: solid 3px #000;
}
.stellarnav a.dd-toggle .icon-plus:after {
    border-bottom: solid 3px #000;
}
.stellarnav.mobile li.open {
    background: #ffffff;
}
.stellarnav.mobile > ul > li {
    border-bottom: 1px #dddddd00 solid;
}

.stellarnav li li {
    border: 1px #eeeeee00 solid;
}
.stellarnav li a {
    color: #000;
}
.stellarnav li li:hover a {color: #fff;}

.stellarnav.mobile li li a {padding: 10px 0 10px 30px;}


/*最新消息*/
.fa-caret-down::before {color: #000;}



/*footer*/
.footer_info {padding:0;grid-gap: 30px;}
.footer.with_shopping_mode { padding:30px 0 0; }
.footer_menu {max-width: 580px;}
}

@media screen and (max-width: 680px) { 
    .footer_info ul {display: grid;grid-template-columns: 1fr;}

}

@media screen and (max-width: 425px) {
    .footer_menu {
        max-width: 280px;
    }
}


