@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/


body{ font-family:"Quicksand", sans-serif, "Noto Sans TC", serif;}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*上方選單解除滑動固定
.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}
*/


/*大圖特效*/


#content_main {  margin: 0;}
.bannerindex { position: static; height: auto;}
.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-child(1):after {
    background: url(https://pic03.eapple.com.tw/pinjack/title01.svg);
    background-size: contain;
    background-repeat: no-repeat;
    bottom: 33%;
    left: 7%;
    width: 35% !important;
    height: 32% !important;
    background-position: left;
    padding-bottom: calc(100% / 1* 0.12);
}

.bannerindex .swiper-slide.swiper-slide-active:nth-child(1):after { animation: fade-in-elegant  2.5s ease-in-out both;}


  @keyframes fade-in-elegant {
    0% {
        opacity: 0;
        transform: translateY(20px); /* 從下方滑入 */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* 最終位置 */
    }
}

  @media screen and (max-width: 600px) { 
  .nav-brand img {
    max-width: 48%;
}
  


    /*RWD大圖*/
  
  /*.bannerindex .swiper-slide img { display:none; }
  .bannerindex .swiper-slide {height: 117vw;  width: 100% !important; }
  .bannerindex .swiper-slide:nth-child(1) { background-image: url(https://pic03.eapple.com.tw/pinjack/rwd01.jpg); background-position: top; background-size:cover;}
  .bannerindex .swiper-slide:nth-child(2) { background-image: url(https://pic03.eapple.com.tw/pinjack/rwd02.jpg); background-position: top; background-size:cover;}
  */
  /*第一張大圖*/

  /*.bannerindex .swiper-slide.swiper-slide-active:nth-child(1):after {
    background: url(https://pic03.eapple.com.tw/pinjack/title01.svg);
    background-size: contain;
    background-repeat: no-repeat;
    bottom: 39%;
    left: 7%;
    width: 37% !important;
    height: 36% !important;
    background-position: left;
    padding-bottom: calc(100% / 1* 0.12);
}*/
  }
  


/*logo*/

.nav-header {
    width: 170px;
    transition: .4s ease-in-out;

}

.pageIndex .nav-header {
    width: 170px;
    transition: .4s ease-in-out;
	display: none;

}
.nav-brand {
    max-width: 50%;
}


.header_area.sticky .nav-header {    
    transition: .4s ease-in-out;
}

.pageIndex .header_area.sticky .nav-header {
    width: 170px;
    filter: none;
    margin-top: 0px;
	display: block;
}

.pageIndex .nav-header {
    filter: brightness(0) invert(1);
    width: 300px;
    margin-top: 40px;
    animation-delay: .3s;
	
}



@keyframes flip-out-hor-top {
    0% {
              transform: rotateX(70deg);
      opacity: 0;
    }
    100% {
              transform: rotateX(0);
      opacity: 1;
    }
  }
  

/*header*/
.me_tp_features {
display: none;
}

.stellarnav ul {
    text-align: center;
    padding: 25px 0px 5px;
    transition: 0.5s ease-in-out;
}

.pageIndex .stellarnav ul {
    opacity: 0;
	pointer-events: none;
}

.pageIndex .header_area.sticky .stellarnav ul {
    opacity: 1;
	 pointer-events: auto;
	 transition: 0.5s ease-in-out;
}

.header_area {
    padding: 25px 10px 0px;
    position: sticky;
    background: #fff;
}
.pageIndex .header_area {
    padding: 25px 10px 15px;
    position: fixed;
    background: transparent;
}

.header_area.sticky {
    padding: 25px 10px 0px;
    background: #ffffff;
}

.pageIndex  .header_area.sticky {
    padding: 25px 10px 0px;
    background: transparent;
}

.main_header_area {
    position: relative;
    z-index: 10;
}

.pageIndex  .main_header_area::after {
    content: "";
    position: absolute;
    top: -26px;
    left: -12px;
    width: 106%;
    height: 123%;
    background: #fff;
    z-index: -1;
    box-shadow: 1px 1px 25px rgb(0 0 0 / 6%);
    
}

.pageIndex .main_header_area::after {
    background: transparent;
    opacity: 0;
    animation:.5s ease-in-out
    
}

.pageIndex .header_area.sticky .main_header_area::after {
    opacity: 1;
    background: #fff; 
    box-shadow: 1px 1px 25px rgb(0 0 0 / 6%);
    animation:scale-in-ver-top 1.2s cubic-bezier(.25,.46,.45,.94) both
}


@keyframes scale-in-ver-top {
    0% {
        transform: translateY(-30px) scaleY(0); 
        transform-origin: 100% 0%;
        opacity: 0;
    }
    100% {
        transform: translateY(0) scaleY(1); 
        transform-origin: 100% 0%;
        opacity: 1;
    }
}



.navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}



/*第一層*/

.stellarnav > ul > li > a {
    margin: 0 15px;
    letter-spacing: 1px;
    font-size: 15px;
    color: #6d6d6d;
    height: 50px;
}

.stellarnav > ul > li > a b {
    display: flex;
    line-height: 41px;
    height: 20px;
    justify-content: center;
    transition: 0.3s ease-in-out;
}


.stellarnav > ul > li:hover > a b {
    font-weight: 500;
    transition: 0.3s ease-in-out;
}


.stellarnav > ul > li > a b:nth-of-type(2) {
    font-size: 12px;
    opacity: 0;
}

.stellarnav > ul > li:hover > a b:nth-of-type(2) {
    color: #b6a165;
    opacity: 1;
    animation:tracking-in-expand .6s cubic-bezier(.215,.61,.355,1.000) both
}

@keyframes tracking-in-expand {
    0% {
      letter-spacing: -0.5em;
      opacity: 0;
    }
    40% {
      opacity: 0.6;
    }
    100% {
      opacity: 1;
    }
  }
  
  

.stellarnav > ul > li > a:hover b {
    transform: none;
    -webkit-transform: none;
}

.stellarnav > ul > li.has-sub > a {
padding-right:0px
}

.stellarnav li.has-sub > a:after{
    display: none;
}


.stellarnav > ul > li:before {
    content: "";
    position: absolute;
    width: 1px;
    height: 25px;
    background: #b8a162;
    border-radius: 500px;
    top: 52%;
    left: 4%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s ease-out;
}
  
  .stellarnav > ul > li:hover:before {
    transform: translate(-50%, -50%) scale(1.5);
  }
  
  


/*第二層*/
.stellarnav li li {    border: none;}
.stellarnav ul ul {padding: 0px;letter-spacing: 1px;}
.stellarnav li li > a, .stellarnav li li.has-sub > a {
    padding: 15px 10px;
    transition: all 0.3s;
    color: #444;
    font-size: 15px;
    background: #fff;
}

.stellarnav li li:hover > a, .stellarnav li li.has-sub:hover > a {
    border: none;
    margin-left: 10px;
    color:#b8a162;
    font-weight: 500;
    }



/*footer*/

.footer_menu a:first-child {display: none;}
.footer_info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .footer {
    background: #fff;
    padding: 50px 0;
  }
  .footer_menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(120px, 100%), 1fr));
    gap: 0px;
    padding-left: 32px;
    max-width: 400px;
  }
  
  .footer_info li {
  display: inline-table;
  }
  
  .footer_logo {
  display: grid;
  align-items: center;
  }
  
  .footer_info ul {
      display: flex;
      vertical-align: top;
      width: 100%;
      align-items: center;
      justify-content: center;
      padding-left: 109px;
  }
  
  .footer_info ul:after {
      content: "";
      position: absolute;
      bottom: 0px;
      left: 0px;
      width: 100%;
      height: 1px;
      background-color: #EBE7DE;
  }
  
  .footer .center {
    position: relative;
    padding-bottom: 20px;
    }
  
    .footer_menu a {
      margin: 0;
      text-align: center;
      padding: 10px 25px;
      font-size: 13px;
      color: #626262;
      text-transform: uppercase;
      letter-spacing: 1px;
      background-color: transparent;
      position: relative;
      transition: all 0.4s ease;
      border:none;
      border-right: 1pt solid #EBE7DE;
  }
    
    .footer_menu a::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #103561;
      transform: scaleX(0);
      transform-origin: bottom right;
      transition: transform 0.6s ease;
      z-index: -1;  
    }
    
    .footer_menu a:hover {
      color:#555;
      background-color: #EBE7DE;
      border-color: #EBE7DE;
  
    }
    
    .footer_menu a:hover::before {
      transform: scaleX(1); 
    }
    
    
  
  .copy {
      background: transparent;
      color: #a7a7a7;
      border: none;
  }
  .copy a{    color: #a7a7a7;transition:all 0.3s;}
  .copy a:hover {color: #000;}
  .footer_logo img {display: none;}
  .box_link{display:none}
  .footer_info li p.add:before {display:none}
  p.add {display:none}
  .footer_info li p.tel:before {
    content: 'TEL：';
}

.footer_info li p.add2:before {
    content: 'CEO email：';
}
.footer_info li p.mail:before {
    content: 'CEO email :';
}
.footer_info li p.taxid:before {
    content: 'E-mail Corporate：';
}

.footer_info li p.tel2:before {
    content: 'FAX：';
}
  @media screen and (max-width: 980px) {
  
  
    /*FOOTER*/
  
  .footer_info {
      padding: 0 44px 0 0;
  }
  .footer_info ul {
      padding-left: 46px;
  }
  
  }
  
  
  @media screen and (max-width: 900px) {
  
  .footer_info ul {
    padding-left: 10px;
  }
  .footer.with_shopping_mode { padding:30px 0 70px; }
  .footer_info {    justify-content: center;}
  .footer_logo {    text-align: center;}
  
    .footer_info ul {
        display: flex;
        vertical-align: top;
        width: 100%;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
  
  }



/* 商品下拉超過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:none; 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: sticky;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 {
display: none;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*首頁文章*/

.module_i_news .title_i_box
{display: none;}

.i_blog_ri h5 {
    font-weight: 400;}

.module_i_news li a {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.module_i_news ul {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.module_i_news {
    padding: 50px 20px;
    background-image: url(https://pic03.eapple.com.tw//in_01.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/
h5.blog_le_t span {
    display: none;
}

h5.blog_le_t {
    font-size: 20px;
    font-weight: 400;
    font-family: "Kanit", sans-serif, "Noto Sans TC", serif;
    display: grid;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.blog_le .accordion {
    border: none;
    border-radius: 0px;
}

.blog_list_ri h5 {
    font-weight: 400;
}

.subbox_item a {
    display: flex;
    flex-wrap: wrap;
}

.blog_list_ri {
    padding: 0 15px 15px 15px;
}

.accordion li .link a {
    font-weight: 400;
    letter-spacing: 2px;
}

.blog_subbox {
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
}

.subbox_item a:after { background: rgba(0,0,0,0.5);}
.blog_le .accordion > li:hover .link, .blog_le .accordion > li.on_this_category .link {background: #103561;}
.blog_page .main_part {max-width:1600px;}
.submenu li.on_this_category a, .submenu a:hover {
    background: #EBE7DE;
    color: #444;
}
.submenu a {background: #fff;}
.blog_back a.article_btn_prev,.blog_back a.article_btn_next,.blog_back a.article_btn_back {
    background: #fff;
    color: #333;
    letter-spacing: 1px;}
.blog_back a {
    width: auto;
}

.blog_back {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.blog_back:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: #00000017;
    bottom: 56px;
}

.edit {
    padding: 30px 0 90px;
    font-weight: 400;
    color: #333;
    letter-spacing: 0.04em;
}

.subbox_item a:hover:before {
    transform: translate(-50%, -50%) scale(1);
    transition: all 500ms;
}
.path p, .path p a {
display: none;
}



.blog_list_le img {
    z-index: 999;
    padding: 20px;
}

.subbox_item a:hover .blog_list_le img {
    filter: brightness(.6);
    border-radius: 5px;
    padding: 0px;
}

h4.blog_category_title {
    color: #444;
    font-size: 22px;
    font-weight: 400;
}

.subbox_item {
    display: block;
    width: 100%;
    position: relative;
    border: 1px solid #0000001c;
    border-radius: 5px;
}

.subbox_item a:after{display: none;}
.subbox_item a:before{display: none;}

@media screen and (max-width: 640px) {
    .blog_subbox {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

/*相關文章*/

.news_related{display: none;}

.news_related h6 span:before {
    color: #505050;
    font-weight: 400;
}


.news_related_list li a:hover {
    padding: 10px 10px 0px;
    transition: .3s;
}

.news_related_list li a {
    transition: .3s;
}

.news_related {
    background: #f3f3f3b5;
}

.news_related_list li a p {
    padding: 10px;
}
/*首頁文章*/

.animated-arrow{
    background: #3067ae;
    border-radius: 50px;}


    


/*聯絡我們/＝＝＝＝＝*/
.contact_content {display: block !important}
.contact_editbox {    padding: 0;}
.contact_le_map a {    background: #e7e4df;}
.contact_form li.last cite {background: #103561;}
.contact_content {
    padding: 80px 10px 10px;
}

/*浮動按鈕*/

.linksBtn { color: #FFFFFF;  background-color: #050505; display: none;}

/*X按鈕隱藏*/
 .info_fix>span{  display: none;}
 


/*表格排列版面*/
.contact_content .information_left{display: none;}
.red {color: #3067ae;}
.contact_content .information_right {    width: 90%;    padding: 0;    margin: 0 auto 100px;    max-width: 1400px;    display: block;}
.blank_letter {     padding: 0;    font-size: 20px;    color: #3a3a3a;text-align: center;}
.blank_letter .note{display: block;color: #103561;text-align: center;}
.contact_form {    display: grid;    grid-template-columns: repeat(auto-fit, minmax(min(400px,100%), 1fr));    gap: 30px;}
.contact_form li{padding: 0;align-items: center;}
.contact_form li .form__label {    display: block;    width: 100%;    text-align: end;    margin: 0 0 5px;    padding: 0;}
.contact_form li.last {    text-align: center;    grid-column: 1/-1;}
.contact_form li.last blockquote, .contact_form li.last cite{border: 1px #103561 solid;    padding: 0px;}
.noborder {padding: 13px;}

@media screen and (max-width: 600px){
    .contact_form li .form__label {
        text-align: justify;
        background: transparent;
        font-weight: 400;
    }  
}

/*相簿*/
.subalbum-menu h2 {display: none;}
.show-list .show_pic:hover img {transform: translate(0%, 0%) scale(1.1);transition: all 0.6s;}
.show-list .show_pic img{transition: all 0.6s;}
.overlay{display: none;}
.show-list .item {padding: 0px;}
.pic-list {grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));}
.show-list .show_name {
    font-weight: 400;
}
.show-list .item:hover .show_name {
    color: #333;
}
.other_subalbum li a p {
    position: absolute;
    line-height: 2;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    color: #fff;
    background: #0000005c;
    padding: 0px 15px;
    border-radius: 50px;
    border: 1px solid #EBE7DE;
    font-weight: 300;
    text-shadow: 0 0 2px #0000004d;
    font-size: 17px;
}


.show-list .show_pic:after {
    content: '';
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    position: absolute;
    background: #000;
    opacity: 0.2;
    transition: .5s ease-in-out;
}

.show-list .show_pic:hover:after {
    opacity: 0;
    transition: .5s ease-in-out;
}

.show-list {
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
}

@media screen and (max-width: 768px) {
    .show-list {
        grid-template-columns: repeat(auto-fill, minmax(316px, 1fr));
    }
}


/*商品*/

.products-list .more {
    border: none;
    color: #444;
    background: #FFF;
    border-radius: 50px;
    font-weight: 400;
    border: 1pt solid #ceccda;
    box-shadow: 4px 4px 7px #ceccda40;
}

.products-list .item a:hover .more {
    background: #ceccda;
    color: #fff;
}

.products-list .price b {
    color: #ceccda;
}

.product-layer-two li a {
    color: #444;
}

.product-layer-two li li:hover > a {
    color: #A5CE4B;
}

.product-layer-two li li:hover > a:before {
    background: #A5CE4B;
}

.sidebarBtn {
    border: 2px #ddd solid;
}

.sidebarBtn .sp_price {
    color: #ceccda;
}

.inquiry_a1 {
    background: #ceccda;
}

.inquiry_a2 {
    background: #a5ce4b;
}

.prod_related h6 span:before {
    color: #444;
}

.pageIndex .products-list {
    grid-gap: 70px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.pageIndex .animated-arrow {
    background: #3067ae;
    color: #fff;
    display: inline-block;
    margin-top: 67px;
    height: 36px;
    line-height: 34px;
    overflow: hidden;
    width: 243px;
    text-align: center;
    position: relative;
}

/*首頁商品*/

.i_prod_tit, .i_video_tit {
    display: none;
    
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本分類全版面 ( 限制最寬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: 1024px) {

    .nav-header {
        width: 130px;
        padding-bottom: 10px;
    }

    .stellarnav ul {
        padding: 5px 0px 5px;
    }
}    


@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
.footer.with_shopping_mode { padding:30px 0 55px; }
#to_top { bottom:60px;}
.footer_info {    justify-content: center;    padding-left: 30px;}
.footer_logo {    text-align: center;}
.stellarnav > ul > li > a:before{display: none;}
.header_area {
    padding: 10px 10px 0px;
}
.header_area.sticky {
    padding: 10px 10px 0px;
}
.stellarnav.mobile li.open li.open {
    padding: 0px;
}
.stellarnav.mobile li.open {
    background: #f3f3f3;
    padding: 0px 10px 10px 10px;
}

.nav-brand {
    width: 160px;
}

.main_header_area::after {
    top: -26px;
    height: 161%;
}

.stellarnav .menu-toggle, .stellarnav .call-btn-mobile, .stellarnav .location-btn-mobile, .stellarnav .close-menu {
    padding: 7px 10px 15px 10px;
}

.pageIndex .stellarnav.mobile .menu-toggle, .stellarnav.mobile .dd-toggle, .stellarnav.mobile .close-menu, .stellarnav.mobile .call-btn-mobile, .stellarnav.mobile .location-btn-mobile {
    display: none;
}

.pageIndex .header_area.sticky .stellarnav.mobile .menu-toggle, .stellarnav.mobile .dd-toggle, .stellarnav.mobile .close-menu, .stellarnav.mobile .call-btn-mobile, .stellarnav.mobile .location-btn-mobile {
    display: block;
}
.stellarnav ul {
    padding: 0px;
}

.pageIndex .main_header_area::after {
    height: 150%;
}


.pageIndex .header_area {
    animation: none;
    }
    
    
    .pageIndex .stellarnav .menu-toggle:after {
        color: #ffffff;
    }
    
    .header_area.sticky .stellarnav .menu-toggle:after {
        color: #444;
    }
    
    .pageIndex .stellarnav .menu-toggle span.bars span {
        background: #ffffff;
    }
    
    .header_area.sticky .stellarnav .menu-toggle span.bars span {
        background: #444;
    }
    
    .pageIndex .stellarnav > ul > li > a {
        color: #444;
    }
    
    .pageIndex .header_area.sticky {
        padding: 2.5vw 2vw;
    }
    
    .stellarnav > ul > li:not(:nth-last-child(2)):after{display: none;}
    .pageIndex .header_area.sticky .stellarnav > ul > li:not(:nth-last-child(2)):after{display: none;}    
    
    .stellarnav.mobile.left > ul{ animation: slideInFromLeft .8s ease-out forwards;max-width: 100%; }
    
    
    .stellarnav.mobile > ul > li > a b {
        display: grid;
        justify-content: start;
    }
    
    .stellarnav > ul > li > a > b:nth-child(2) {
        font-size: 12px;
        letter-spacing: 2px;
        font-weight: 300;
        color: #aba07d;
        opacity: 1;
    }
    
    .stellarnav.mobile > ul > li > a {
        padding: 25px 43px 25px 10px;
    }
    
    .stellarnav.mobile > ul > li > a.dd-toggle {
        padding-top: 30px;
    }
    
    .stellarnav li li:hover > a, .stellarnav li li.has-sub:hover > a{
    margin-left: 0px;
    }
    
    .stellarnav.mobile li.open li a:not(.dd-toggle):not(.icon-plus) {
        margin-left: 30px;
        font-size: 15px;
        border-left: 1pt solid #bababa;
        padding: 10px 20px;
        color: #878787;
    }
    
    .stellarnav.mobile li.open {
        background: #fff;
    }
    
    .stellarnav li a {
        color: #444;
        background: transparent;
        border-radius: 0px;
    }
    
    .stellarnav > ul > li ul li a:hover {
        background: transparent;
    }
    
    .stellarnav.mobile ul ul {
        padding: 2px;
        box-shadow: none;
    }
    
    .stellarnav.mobile li.open li.open {
        background: #ffffff;
        padding: 0px;
    }
    
    .stellarnav.mobile ul ul ul {
        margin-left: 30px;
    }
    
    .stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul {
        top: -1px;}
    
    
    .stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {
    background: #103561;color: #fff;
    }
    
    .stellarnav .icon-close:before,.stellarnav .icon-close:after{border-color: #fff;}
    .stellarnav > ul > li:before{display: none;}
    
    }
    
    @keyframes slideInFromLeft {
        0% {
          transform: translateX(-100%);
          opacity: 0;      
        }
        100% {
          transform: translateX(0);    
          opacity: 1; 
        }
      }
    




@media screen and (max-width: 600px) { 
    /*Footer/＝＝＝＝＝*/
.box_link {    text-align: center;}



.footer_info { padding-left: 10px;}

.contact_form li .form__label {
    background: transparent
}

.pageIndex .products-list {
    grid-gap: 50px;
}

.pageIndex .nav-header {
    width: 257px;
    margin-top: 5px;
}

.pageIndex .main_header_area::after {
    height: 135%;
}

.copy {
    background: #fdfdfd;
    color: #adadad;
    padding: 5px;
    letter-spacing: 0.04em;
}

.copy a {
    color: #6d6d6d;
    transition: all 0.3s;
}

.total_view {
    padding: 5px;
}

}

@media screen and (max-width: 400px) { 
    .footer_menu {
        max-width: 300px;
    }
}


