@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 {}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#content_main { margin:0;     background: #000000;}
#content {  background: #000000;}
.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;}
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*共用*/
.path {  display: none;}
.fa-caret-down::before { color: #fff;}
.animated-arrow {
  background: #5b5b5b4f;
  border-radius: 5px;
  box-shadow: 0px 0px 13px 6px #575757;
}
.animated-arrow:hover {
  background: #d72028;
  box-shadow: 0px 0px 13px 6px #938f8f;
}

/*滾輪*/
::-webkit-scrollbar { width: 5px;}/*滾輪寬度*/
::-webkit-scrollbar-button { background: transparent; border-radius: 7px; height: 0;}/*滾輪與視窗上下的間距*/
::-webkit-scrollbar-track-piece { background: #313131;}/*滾輪軌道背景*/
::-webkit-scrollbar-thumb { border-radius: 3px; background-color: #d72028; border: #d72028;}/*滾輪樣式*/
::-webkit-scrollbar-track { box-shadow: transparent;}/*滾輪軌道樣式*/

/*top*/
#to_top {
  bottom: 70px;
  right: auto;
  left: 16px;
  width: 44px;
  height: 44px;
  color: #d72028;
  background: #d72028;
  border: 1px #fcef0f solid;
  box-shadow: 0px 0px 10px #0000008c;
}
#to_top i.top {
  width: 14px;
  height: 14px;
  top: 14px;
  transform: translateY(-50%);
}
#to_top i.top:before, #to_top i.top:after {
  height: 10px;
  width: 2px;
  top: 0;
  left: 46%;
}
#to_top i:before, #to_top i:after {background: #fff;}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/* 開場 LOGO 遮罩效果 */
/* 白色背景 */
.pageIndex::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000000;
  z-index: 10000;
  pointer-events: none;
  animation: bgFadeOut 1.5s ease forwards;
  animation-delay: 1.2s; /* 與 logo 淡出時間一致 */
}

/* Logo 圖片 */
.pageIndex::after {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: url('https://pic03.eapple.com.tw/atrtracing/op-logo.png') no-repeat center center;
  background-size: contain;
  transform: translate(-50%, -50%);
  z-index: 10001;
  pointer-events: none;
  animation: logoFloatFade 1.5s ease forwards;
}


@keyframes logoFloatFade {
  0% {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  20% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  80% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -60%);
    visibility: hidden;
  }
}

@keyframes bgFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@media screen and (max-width: 600px) {
  .pageIndex::after { width: 200px;  height: 200px;}
}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*大圖點點*/
.swiper-pagination-bullet {     width: 100px; height: 3px; border-radius: 0%;  background: #fdfdfd;}

@media screen and (max-width: 600px) {
  .swiper-pagination-bullet {    width: 50px;}
}


/*大圖*/
.pageIndex .swiper-slide {position: relative;}/*因為偽元素，所以要加的*/
.swiper-slide:before ,.swiper-slide:after { content: ""; position: absolute;  z-index: 999; pointer-events:none;}/*before+after依樣要寫的內容拆出來寫一起，要寫在個別下方也可以*/
/*第一張大圖的偽元素*/

.pageIndex .swiper-slide:nth-child(1):after {
  background: url(https://pic03.eapple.com.tw/atrtracing/w-1.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 59%;
  left: 49%;
  width: 100%;
  height: 0 !important;
  background-position: left;
  padding-bottom: calc(100% / 2* 0.12);
}
.pageIndex .swiper-slide:nth-child(1):before {
  background: url(https://pic03.eapple.com.tw/atrtracing/w-2.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 73%;
  left: 58%;
  width: 100%;
  height: 0 !important;
  background-position: left;
  padding-bottom: calc(100% / 2* 0.12);
}

/*第二張大圖的偽元素*/
.pageIndex .swiper-slide:nth-child(2):after {
  background: url(https://pic03.eapple.com.tw/atrtracing/w-3.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 45%;
  left: 8%;
  width: 100%;
  height: 0 !important;
  background-position: left;
  padding-bottom: calc(100% / 2* 0.3);
}

.pageIndex .swiper-slide.swiper-slide-active:nth-child(1):after  { animation: slide-botton  1s 0.3s both;}
.pageIndex .swiper-slide.swiper-slide-active:nth-child(1):before  { animation: slide-top  1.5s 0.5s both;}
.pageIndex .swiper-slide.swiper-slide-active:nth-child(2):after  { animation: slide-left  1.5s 0.3s both;}

/*文字出現特效*/
@keyframes slide-left {
0% {-webkit-transform: translateX(-5%);  /* 一開始的位置 在X-100(最下方)*/
          transform: translateX(-5%);
          opacity:0;/*透明度0*/}
100% {-webkit-transform: translateX(0);/* 跑到最後終止的位置 在X-0(最上方)*/
          transform: translateX(0);
          opacity:1;/*透明度顯示*/}
}
@keyframes slide-right {
  0% {-webkit-transform: translateX(5%);  /* 一開始的位置 在Y-100(最下方)*/
            transform: translateX(5%);
            opacity:0;/*透明度0*/}
  100% {-webkit-transform: translateY(0);/* 跑到最後終止的位置 在Y-0(最上方)*/
            transform: translateY(0);
            opacity:1;/*透明度顯示*/}
}
@keyframes slide-top {
  0% {-webkit-transform: translateY(5%);  /* 一開始的位置 在Y-100(最下方)*/
            transform: translateY(5%);
            opacity:0;/*透明度0*/}
  100% {-webkit-transform: translateY(0);/* 跑到最後終止的位置 在Y-0(最上方)*/
            transform: translateY(0);
            opacity:1;/*透明度顯示*/}
}
  @keyframes slide-botton {
  0% {-webkit-transform: translateY(-5%);  /* 一開始的位置 在Y-100(最下方)*/
            transform: translateY(-5%);
            opacity:0;/*透明度0*/}
  100% {-webkit-transform: translateY(0);/* 跑到最後終止的位置 在Y-0(最上方)*/
            transform: translateY(0);
            opacity:1;/*透明度顯示*/}
  }
  

  
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*HEADER*/
.main_header_area .container { max-width: 90%; }
.navigation {    grid-template-columns: 275px 1fr; }
.header_area { background: #ffffff00;     position: absolute; transition: all 1s; padding: 0;}
.header_area.sticky {  position: fixed;    background: rgba(45, 43, 43, 0); }

.header_area.sticky .main_header_area .container {background:none; transition: all 1s;}
.header_area.sticky .main_header_area { height: 78px; transition: all 1s; } 

.pageIndex .main_header_area{background: none; height: 0px;  transition: all 1s;}
.main_header_area{ height: 78px;  transition: all 1s;}

.header_area .main_header_area::before {
  content: "";
  width: 0%;
  height: 100%;
  position: absolute;
  top:0px;
  right: 0;
  opacity: 0;
  height: 88px;
  background: linear-gradient(90deg, #000000ed, #d72028bd);
  backdrop-filter: saturate(100%) blur(10px);
  box-shadow: 0px 2px 10px #0f0f0f82;
  transition: all 1s;
}
.header_area.sticky .main_header_area::before {
  width: 100%;
  opacity: 1;
  transition: all .5s;
}
/*LOGO*/
.nav-header {   max-width: 260px;  padding-top: 20px;}
.pageIndex .nav-brand {   transition: all 3s;}
.header_area.sticky .nav-brand {   transition: all .3s;}
.nav-brand {  }

/*選單*/
.stellarnav {  top: 23px;}
.stellarnav > ul > li > a { color: #ffffff; letter-spacing: 2px;     font-size: 18px;   font-weight: 600; margin: 0 20px;}
.stellarnav li.has-sub > a:after {display: none;}
.stellarnav > ul > li.has-sub > a {  padding-right: 0px;}

.me_tp_features {display: none;}
.tp_links a { display: none;}
/*下拉*/
.stellarnav ul ul { width: 200px;     background: #000000b3;}
.stellarnav li li {  border: 1px #555555 solid;}
.stellarnav li li.has-sub > a {padding: 7px 10px;}
.stellarnav li li:hover { background: #d72028;}
.stellarnav li a {  color: #d3d3d3;}
.stellarnav li a:hover { color: #ffffff;}
.stellarnav li.drop-left ul ul {   right: 198px;}

/* 商品下拉超過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;}

@media screen and (max-width:1024px) {
  .header_area { padding: 0px;  position: sticky; box-shadow: 0px 3px 10px #55555582;}
  .header_area.sticky .nav-brand {}
  .nav-brand { }
  .nav-header {    position: unset; padding-top: 20px; }
  .pageIndex .nav-brand { }
  .pageIndex .main_header_area {   background:linear-gradient(90deg, #000000ed, #d72028); }
  .main_header_area {    background:linear-gradient(90deg, #000000ed, #d72028);  height: auto; }
  .nav-brand {  }
  .header_area.sticky .main_header_area { height: 120px; }

  .header_area .main_header_area::before{ border-radius: 0px 0 0 0px;   top: 0px;}
  .header_area.sticky .main_header_area::before {display: none; }

  .stellarnav { position: unset;}

  .stellarnav > ul > li > a {    margin: 0 12px;}
}
@media screen and (max-width:768px) {
  .navigation { flex-direction: row;}
  .header_area {  position: relative;}
  .main_header_area {    height:48px;  }
  .header_area.sticky .main_header_area {   height:48px;}
  .header_area.sticky {   background: rgb(255 255 255);      box-shadow: 0px 3px 10px #55555582;}
  .header_area.sticky .nav-brand {}
  .pageIndex .main_header_area {  height: auto;}
  .pageIndex .nav-brand {}
  .nav-header {    max-width: 160px; padding-top: 10px;}

  .pageIndex .main_header_area {}
  .nav-brand { }
  .header_area .main_header_area::before { display: none;}

  /*側邊選單*/
  .pageIndex .stellarnav .menu-toggle span.bars span {   background:  #ffffff;}
  .sticky .stellarnav .menu-toggle span.bars span {  }
  .pageIndex .stellarnav .menu-toggle:after {        color:  #ffffff;    }
  .sticky .stellarnav .menu-toggle:after {          }

  .stellarnav .menu-toggle span.bars span {   background:  #ffffff;}
  .stellarnav .menu-toggle:after {     color:  #ffffff;}
  .stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul {  max-width: 100%;   background: #000000d9;  backdrop-filter: saturate(100%) blur(10px);  transition: all 1s;   left: 0;}
  .stellarnav.mobile.left .close-menu {   background: none;        color:  #ffffff; }
  .stellarnav .icon-close:after {    border-bottom: solid 3px  #ffffff;}
  .stellarnav .icon-close::before {    border-bottom: solid 3px  #ffffff;}
  .stellarnav a.dd-toggle .icon-plus:after {    border-bottom: solid 3px  #ffffff;}
  .stellarnav a.dd-toggle .icon-plus:before {    border-bottom: solid 3px  #ffffff;}
  .stellarnav > ul > li:not(.tp_links) > a:before {display: none;}
  .stellarnav .menu-toggle, .stellarnav .call-btn-mobile, .stellarnav .location-btn-mobile, .stellarnav .close-menu { padding: 7px 0px;     position: relative;   top: 0px;}
  .stellarnav.mobile {   left: auto;     right: 0;    }
  .stellarnav.mobile ul {    background: none;  }
  .stellarnav.mobile li.open li.open {     background: #2d2d2d;}
  .stellarnav.mobile li.open {   background: none;  }
  .stellarnav.mobile > ul > li {         border-bottom: 1px  #ffffff solid; text-align: center;     margin: 0px 30px; }
  .stellarnav > ul > li:after {display: none;}
  .stellarnav li li {   border-bottom: 1px #eee solid; border: none;}
  .stellarnav > ul > li > a { color: #ffffff;}
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*下拉*/

/* 商品下拉超過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;}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*FOOTER*/
.footer {padding: 50px 0 0;background: #000000;font-size: 16px;}
.footer .center { }
.footer_info {grid-template-columns: repeat(2, 1fr);align-items: end;grid-gap: 20px;padding-right: 0;}
.footer_info ul {display: flex;grid-column: 1 / 3;width: 100%;order: 2;justify-content: space-between; align-items: flex-end;
    padding-top: 30px; }
.footer_info li:nth-child(1) {display: flex;align-items: flex-start;padding: 0;
    justify-content: flex-start;gap: 15px 0;flex-direction: column;     font-size: 14px;}
.footer_info li p {line-height: 1;letter-spacing: 0.08em;color: #ffffff;}
.footer_info li p a {color: #ffffff;}

/*FOOTER_MENU*/
.footer_info li:nth-child(2) {padding: 0;}
.footer_menu {display: flex;flex-wrap: wrap;justify-content: flex-end;width: 100%;}
.footer_menu a {text-align: right;padding: 0 0 0px 20px;font-size: 14px;letter-spacing: 0.08em;
    color: #ffffff;background: unset;border: 0;margin: 0;transition: 0.3s ease;}
.footer_menu a:first-of-type {display: none;}
.footer_menu a:hover {background: unset;color: #b5b5b5;transition: 0.3s ease;}

/*FOOTER_ICON*/
.box_link {position: relative;right: 0;max-width: 225px;justify-content: flex-end;max-width: unset;
    align-items: flex-end;flex-direction: unset;flex-wrap: unset;order: 1;max-height: max-content; display: none;}
.box_link a {display: flex;width: 40px;height: 40px;background: none;border: 1px #ffffff solid;border-radius: 20px;transition: 0.3s ease;
    padding: 0;font-size: 20px;margin: 0px 5px;margin: 0px 5px;color: #f1ebe6;justify-content: center;align-items: center;}
.box_link a:hover {color: #fff;font-size: 18px;transition: 0.3s ease;}
a.me_tp_ig {font-size: 25px;}
.box_link a.me_tp_ig:hover {color: #fff;font-size: 20px;transition: 0.3s ease;}
/*LOGO*/
.footer_logo {max-width: 240px;}
/*COPY*/
.copy {max-width: 1500px; margin: auto;text-align: right;
    padding:50px 0 30px 0;font-size: 11px;color: #8f8f8f;border-top: 0;margin-top: 0;}
.copy a {color: #8f8f8f;}

@media screen and (max-width: 1024px) {
.footer {padding: 30px 0 0;font-size: 15px;}

.box_link a {width: 35px;height: 35px;font-size: 18px;}
.box_link a:hover {font-size: 16px;}
a.me_tp_ig {font-size: 23px;}
.box_link a.me_tp_ig:hover {font-size: 18px;}
.footer_menu a {font-size: 14px;}
}
@media screen and (max-width: 900px) {
.footer_info ul { gap: 30px 0;padding-bottom: 50px; }
.footer_info li+li {margin-top: 0;}
.footer_menu {justify-content: flex-start;}
.footer_menu a {padding: 10px 15px 0 0;}
.copy {text-align: left;font-size: 12px;}
}
@media screen and (max-width: 768px) {
.footer {font-size: 14px;}
.footer_info {grid-gap: 20px; }
.footer_info ul {gap: 15px 0;padding-top: 20px; padding-bottom: 5px;   flex-direction: column;  align-items: flex-start;}
.box_link {justify-content: flex-start; }
.footer_info li:nth-child(1) {gap: 10px 0;}
.footer_menu a {font-size: 12px;}
}
@media screen and (max-width: 600px) {
  .footer_logo {max-width: 150px;}
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*內頁BANNER 設定*/
.banner {      
  height: 430px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  padding: 0px;
  background: url(https://pic03.eapple.com.tw/atrtracing/ban-1.jpg) repeat center center;
  background-size: cover;
  background-color: #ccc;
}
.banner h5 {
  color: #fff;
  padding: 1% 10%;
  border-bottom: 1px #ffffff solid;
  position: relative;
  top: 10%;
  filter: drop-shadow(1px 2px 5px #554b4ab0);
  letter-spacing: 4px;
}

@media screen and (max-width: 768px) {
.banner {    height: 135px;  font-size: 26px;}
}
@media screen and (max-width: 320px) {

}

.banner.banA {}
.banner.banB {}
.banner.banC {}
.banner.banD {}
.banner.banE {}
.banner.banblog {}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*●●● 文章分類 ●●●*/
/*首頁部分*/
.module_i_news {background: url(https://pic03.eapple.com.tw/thankfulan/i_article_bg.jpg) no-repeat;padding: 80px 20px;  background-size: cover !important;}
.module_i_news .title_i_box h4{color: #fff;font-weight: 600;font-size: 30px;}
.module_i_news .title_i_box h6 {font-size: 18px;color: #ccc;letter-spacing: 3px;}
.module_i_news ul {display: flex;justify-content: center;}
.module_i_news li {width: 30%;margin: 1%;}
.module_i_news li:nth-child(n+4){display: none;}
.module_i_news li a:before {width: 100%;bottom: auto;right: auto;top: 50%;left: 50%;transform: translate(-50%,-50%);}
.module_i_news li a:hover:before{font-size: 12px;letter-spacing: 2px;background: #2b4229;padding: 20px 10px;width: 60%;}
.module_i_news li a:hover:after{background: rgba(43,66,41,.6);border: none;}
.i_blog_le{width: 100%;padding: 0;padding-bottom: 70%;height: 0;overflow: hidden;position: relative;}
.i_blog_le img{position: absolute;top: 50%;left: 50%;transform: translate(-50%,-50%);}
.i_blog_ri {width: 100%;padding: 20px 10px;}
.i_blog_ri h5{color: #fff;}
.i_blog_ri p{color: #ccc;}
.i_blog_b a b{font-weight: 300;font-size: 14px;}
/*側邊選單*/
h5.blog_le_t em{display: block;font-weight: 600;}
h5.blog_le_t span {font-size: 14px;}
.blog_search input[type=search]{border-radius: 0;}
.blog_le {width: 250px;padding: 15px;display: none;}
.blog_le .accordion {border-radius: 0;border: none;}
.blog_le .accordion li{border-bottom: 1px solid #ddd;}
.blog_le .accordion li:last-child{border-bottom: none;}
.blog_ri {width: 100%;padding: 0 0 0 50px;}
.accordion li .link{padding: 0;}
.accordion li .link a{padding: 15px 10px;display: inline-block;}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {background: #ad925e !important;}
/*分類頁*/
.blog_subbox {  display: block;}
h4.blog_category_title {padding: 0;margin: 0 0 5px 0;font-weight: 300;font-size: 20px;color: #ffffff;}
.subbox_item{width: 100%;margin-bottom: 50px;}
.subbox_item a {  display: block;}
.subbox_item a:before { content: '了解更多';    opacity: 1; color: #000000;font-weight: 500;letter-spacing: 2px;font-size: 12px;line-height: 50px;    right: 10.5%;    bottom: 16%;    left: auto;}
.subbox_item a:after {border: none;background: rgba(0,0,0,.8);height: 50px;top: auto;bottom: 0;display: none;}
.blog_list_le{width: 65%;height: 0;padding-bottom: 45%;overflow: hidden;position: relative;}
.blog_list_le img{position: absolute;top: 50%;left: 50%;transform: translate(-50%,-50%);transition: all .8s;}
.subbox_item a:hover .blog_list_le img{transform: translate(-50%,-50%) scale(1.05);}
.blog_list_ri{width: 45%;padding: 50px 30px 100px 30px;position: absolute;background: #fff;right: 8%;bottom: 10%;    max-width: 600px;}
.blog_list_ri h5 {font-weight: 600;color: #333;}
.blog_list_ri em {position: absolute;bottom: 20px;font-size: 12px;right: 30px;}
.blog_list_ri p {line-height: 160%;font-weight: 300;font-size: 14px;margin-top: 10px;}
/*詳細頁*/
.toShareNews {  color: #ffffff;}
.blog_box_edit {  color: #fff;}
.blog_in_page h4.blog_category_title {font-weight: 600;font-size: 24px;border-bottom: 1px solid #ddd;padding-bottom: 15px;    margin-bottom: 15px;}
.blog_back a.article_btn_back {background: #d72028;}
.blog_back a.article_btn_prev {  background: #ffffff;  color: #d72028;}
.blog_back a.article_btn_next {  background: #ffffff;  color: #d72028;}
/*相關資訊*/
.news_related {  background: #000000;  border-top: #fff 1px solid;}
.news_related h6 span:before {  color: #ffffff;  letter-spacing: 2px;}
.lastPage {  background: #d72028;}
@media screen and (max-width: 1024px){
	.blog_list_ri {position: relative;width: 80%;right: -25%;transform: translateY(-65%);}
  .subbox_item a:before {    right: 12.5%;    bottom: 27%;}
}
@media screen and (max-width: 960px){
	.subbox_item{border-bottom: none;}
}
@media screen and (max-width: 768px) {
	/*首頁*/
	.module_i_news ul{flex-wrap: wrap;}
	.module_i_news li {width: 48%;border-bottom: none;}
	.module_i_news li:nth-child(n+4){display: inherit;}
	.module_i_news li:nth-child(n+5){display: none;}
	/*分類頁*/
	.blog_ri {width: 100%;padding: 0;}
	.blog_le{width: 100%;}
	.blog_list_le {width: 80%;padding-bottom: 60%;}
  .blog_list_ri {    right: -10%;    transform: translateY(-15%);     padding: 25px 30px 100px 30px;   }
  .subbox_item a:before {    right: 13.5%;    bottom: 10%;}
  /*相關訊息*/
  .news_related h6 span:before {  font-size: 20px;}
}
@media screen and (max-width: 600px) { 
	.module_i_news {padding: 50px 20px;}
	.module_i_news li {width: 100%;}
	.i_blog_ri h5{font-size: 18px;}
  .subbox_item a:before {    right: 16.5%;    bottom: 13%;}
	/*功能頁*/
	.subbox_item {margin-bottom: 0px;}
}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*相簿*/
.subalbum-menu h2 {  color: #ffffff; display: none;}
.show-list {  grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));}
.album_fixed_title {  color: #ffffff;  background: #00000000;}
.other_subalbum li {  background: #ffffff00;  }
.other_subalbum li a p {
  color: #fff;
  text-align: center;
  letter-spacing: 3px;
  font-size: 18px;
}
@media screen and (max-width: 600px) {
  .show-list {      grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));}
  .other_subalbum li a p {    font-size: 14px;}
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 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) {
}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*影片首頁*/
.i_prod_tit h2, .i_video_tit h2 {  color: #fff;     letter-spacing: 3px;}
.i_prod_tit span, .i_video_tit span { font-size: 18px; color: #fff; letter-spacing: 5px;}

/*影片管理*/
.video-list .vidTitle {  color: #ffffff;}

/*側邊選單*/
.video-layer-two li a { border: none; background: none;  color: #ffffff; letter-spacing: 2px;}
.video-layer-two li a:hover {  color: #b3b3b3;}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu {display: none; }
.footer.with_shopping_mode { padding:30px 0 20px; }
#to_top { bottom:33px;}
}

@media screen and (max-width: 600px) { 
}




