@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: #232323;  
  background: url(https://pic03.eapple.com.tw/jwesthelmet/p1bg00.jpg) no-repeat top center fixed;    
  background-size: cover; 
}
.bannerindex { position:sticky; height:auto;  }
.swiper-banner { position:static; margin:0; height:auto;} 
/*點點*/
.swiper-pagination-bullet{
  width: 5px;
  height: 5px;
}
/* .swiper-slide img { height:auto;} */
@media screen and (max-width: 768px) {
  #content_main {background: url(https://pic03.eapple.com.tw/jwesthelmet/p1bg00.jpg) repeat-y top center scroll;  }
  .bannerindex { padding:0; margin:0;}
}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*共用*/
#content { background: #232323;  }
.other_page #content {   background: url(https://pic03.eapple.com.tw/jwesthelmet/p1bg00.jpg) no-repeat top center fixed;     background-size: cover;  }
.animated-arrow {  background: #979388;}
.path p, .path p a {display: none;}
.i_prod_tit, .i_video_tit {   color: #fff;}
@media screen and (max-width: 600px) {   
  .other_page #content {  background: url(https://pic03.eapple.com.tw/jwesthelmet/p1bg00.jpg) repeat-y top center scroll;   } 
  .prod_part {  padding: 100px 5% 100px  } 
}

/*滾輪*/
::-webkit-scrollbar { width: 6px;}/*滾輪寬度*/
::-webkit-scrollbar-button { background: transparent; border-radius: 7px; height: 0;}/*滾輪與視窗上下的間距*/
::-webkit-scrollbar-track-piece { background: #313131;}/*滾輪軌道背景*/
::-webkit-scrollbar-thumb { border-radius: 3px; background-color: #a64a31; border:1px #a64a31 solid;}/*滾輪樣式*/
::-webkit-scrollbar-track { box-shadow: transparent;}/*滾輪軌道樣式*/

/*top*/
#to_top { box-shadow: 0px 0px 10px #433d3d9e;  color: #a64a31;  background: #a64a31; backdrop-filter: saturate(100%) blur(10px); border-radius: 55%;}
#to_top i.top {    height: 15px;}
#to_top i.top:before, #to_top i.top:after {  height: 11px;  top: 11px; background: #ffffff;}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*大圖*/

.bannerindex::before {
    content: "";
    display: block;
    background-image: url(https://pic03.eapple.com.tw/jwesthelmet/ban-logo.png);
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 35%;
    left: 0;
    transform: translate(-50%, -50%);
    z-index: 101;
    pointer-events: none;
    -webkit-animation: bounce-in-top 1.1s both;
    animation: bounce-in-top 1.1s both;
    aspect-ratio: 311 / 60;
}



@keyframes bounce-in-top {
    0% {
        -webkit-transform: translateY(-500px);
        transform: translateY(-500px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    38% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        opacity: 1;
    }

    55% {
        -webkit-transform: translateY(-65px);
        transform: translateY(-65px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    72% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    81% {
        -webkit-transform: translateY(-28px);
        transform: translateY(-28px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    90% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    95% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*選單設定*/
.nav-menu {    margin: 0;}
.main_header_area .container {    max-width: 80%;}
.nav-menu>li:not(.tp_links) {    padding-right: 15px;}

.nav-menu>li:hover>a,
.nav-menu>li.active>a,
.nav-menu>li.focus>a {    color: #0DF0F5;}

.nav-dropdown>li:hover>a,
.nav-dropdown>li.focus>a {    color: #0DF0F5;}

.nav-dropdown>li {    text-align: center;}
.header_area {
    position: fixed;
    z-index: 9999;
    width: 100%;
    padding: 0;
    background: transparent;
}
.header_area.sticky {    background: transparent;}

.header_area .main_header_area {
    background: transparent;
     opacity: 0;
    transition: all 0.3s;
}

.header_area.sticky .main_header_area {
    background: transparent;
    transition: all 0.3s;
    opacity: 1;
}

.header_area .main_header_area::before {
    content: "";
    display: block;
    background-color: transparent;
    width: 0%;
    height: 74px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0%);
    transition: all 1s;
}

.header_area.sticky .main_header_area::before {
    width: 100%;
    transition: all 2s cubic-bezier(0.77, 0, 0.65, 0.99);
}

.header_area .main_header_area::after {
    content: "";
    display: block;
    border-top: 15px #a64a31 solid;
    background-color: #000000de;
    width: 0%;
    height: 160px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 1s;
    z-index: -10;
}

.header_area.sticky .main_header_area::after {
    width: 100%;
    transition: all 1s;
}

/*LOGO*/
.nav-header {    max-width: 138px;     margin: auto;}

/*----*/
.stellarnav ul { text-align: center;}

.stellarnav>ul>li>a {
    padding: 0;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 40px;
    height: 40px;
    margin: 0 15px;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    transition: all 0.1s;
    letter-spacing: 1.5px;
}
.stellarnav>ul>li>a:hover {    color: #c5c5c5;}

.stellarnav>ul:hover>li>a b:nth-child(1) {
    color: #acabab;
    transition: all 0.5s;
}

.stellarnav>ul>li>a b:nth-child(2) {
    color: #fff;
    transition: all 0.3s;
}

.stellarnav>ul>li:hover>a b:nth-child(1) {
    color: #fff;
    transition: all 0.5s;
}

.stellarnav>ul>li.has-sub>a {    padding-right: 0;}
.stellarnav li.has-sub>a:after {    display: none;}

.navigation {
    width: 100%;
    position: relative;
    padding: 20px 0 10px;
    display: flex;
    flex-direction: column;
}

/*下拉*/
.stellarnav li li.has-sub > a {  padding: 7px 10px;}
.stellarnav li li a:hover {   background: #a64a31;   color: #fff;}
/*--*/
.me_tp_features {    text-align: center;     position: absolute;   top: 39%;   left: 20%;} 
.me_tp_features a {   color: #fff;}
.me_tp_features a i {
    margin: 0 0px;
    border: 1px #fff solid;
    border-radius: 50px;
    padding: 10px;
}
.me_tp_features span { display: none;}
.box_search {display: none;}
.tp_links a {  color: #ffffff; display: none;}

@media screen and (max-width: 1024px) {
    .main_header_area .container {    max-width: 100%;}
}

@media screen and (max-width: 768px) {
  .header_area .main_header_area {  /* opacity: 1;   */ }
  .header_area .main_header_area::after {  height: 120px;}
    
  /*側邊選單*/
  .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 {  top: 25px;}
  .stellarnav.mobile > ul > li > a {   line-height: 200%;}
  .stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul {  max-width: 100%;   background: #000000b0;  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: 14px 15px;     position: relative;   top: 2px;}
  .stellarnav.mobile ul {    background: none;  }
  .stellarnav.mobile li.open li.open {     background: #535353;}
  .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 li li a {  color: #fff;}
  .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;}
/* 主分類超過30個但次分類直接顯示 
.stellarnav.desktop li.bigMenu>ul{grid-gap: 10px;}
.stellarnav.desktop li.bigMenu li{border: 0;}
.stellarnav.desktop li.bigMenu>ul>li>a{border: 1px solid #ddd;}
.stellarnav.desktop li.bigMenu ul ul{display: block !important; position: relative; top: 0; background: unset; border: 0;}
.stellarnav.desktop li.bigMenu ul ul li{border: 0;}
 主分類超過30個但次分類直接顯示-結束 */
/* 商品下拉超過30個--結束 */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*footer*/
.footer {    background: #333333;    padding-top: 50px;}

.footer .center {    max-width: 1500px;}

.footer_info {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.footer_logo {
    max-width: 14%;
    text-align: center;
    z-index: 1;
    
}

.footer_info ul {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 70px;
    align-items: center;
}
.footer_info li p, .footer_info li p a {    color:#fff;     letter-spacing: 2px; margin-bottom: 5px;}

.footer_info li:nth-child(1) {
    display: flex;
    flex-direction: column;
    z-index: 2;
}
.footer_info li:nth-child(2) {    z-index: 2;}

.footer_menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
}
.footer_menu a {
    color: #a19f9f;
    border: none;
    position: relative;
    padding: 8px 14px;
    background:none;
}
.footer_menu a:hover {
    background: none;
    color: #dab462;
}

.footer_menu a:first-child {    display: none;}

.footer_menu a:before {
    content: "";
    width: 0%;
    height: 1px;
    background: #dab462;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all .5s;
    transition-timing-function: ease-in-out;
}
.footer_menu a:hover:before {
    width: 100%;
}
.box_link {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    max-width: 100%;
    bottom: 0;
    position: relative;
    right: 0;
    z-index: 999;
}
.box_link a {
    height: 40px;
    border-radius: 56px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    border: none;
    margin: 5px;
    backdrop-filter: blur(4px);
    transition: all .5s;
    color: #a1a1a1;
    font-size: 15px;
}

.fa-phone-volume::before {    font-size: 17px;}
.box_link a:hover {    background: #a64a31; color:#fff;}
.box_link a:hover i {   }

/*版權*/
.copy {
  font-size: 9px;
  color: #ffffff;
  border-top: 1px #ffffff solid;
  background: #333333;
  letter-spacing: 3px;
  margin-top: 30px;
}
.copy a {  color: #ffffff;}
.copy a:hover {  color: #ffffff;}

@media screen and (max-width: 768px) {
.box_link {  /* order: 3; */  justify-content: center;}
.footer_menu a {  padding: 8px 3px;}
.footer_info ul {  /* flex-direction: column; */  position: relative;  align-items: flex-start;}
.footer_logo {  max-width: 20%;}
.footer_info li:nth-child(2) {  margin-top: 0;}
}
@media (max-width:600px) {
  .footer_info ul {      flex-direction: column;      padding: 0 20px;      align-items: center;  }
  .footer_info li:nth-child(1) {      align-items: center;  }  
  .footer_info li:nth-child(2) {      margin-top: 13px;  }
  .footer_menu {       grid-template-columns: 1fr 1fr 1fr;  }
  .footer_logo {display: none;}
  .box_link {      order: 3;  }
}
@media (max-width:375px) {
  .footer_menu {      }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*內頁BANNER 設定*/

.banner {
  background-image: url(https://pic03.eapple.com.tw/jwesthelmet/ban01.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 450px;
}
.banner h5 {
  color: #ffffff;
  letter-spacing: 15px;
  font-size: 33px;
  position: absolute;
  top: 35%;
  right: 10%;
  font-weight: 400;
}
.banner.banA {}
.banner.banB {}
.banner.banC {}
.banner.banD {}
.banner.banE {}
.banner.banblog {}

.other_select_page.bodyDesktop .banner h5{display: none;}

@media screen and (max-width: 1024px) {
  .banner {    height: 250px;}
  .banner h5 {    font-size: 26px;   position: unset; }
}
@media screen and (max-width: 768px) {
  .banner {    height: 170px;}
  .banner h5 {    font-size: 24px;    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*下拉編輯頁*/
.other_select_page.bodyDesktop .promotion_title h2 {display: none;}
.other_select_page.bodyDesktop .other_promotion{display: none;}
.other_select_page.bodyDesktop  ul.page {  display: none;}

@media screen and (max-width: 768px){ 
  .other_select_page.bodyMobile .other_promotion{display: none;}
  .other_select_page.bodyMobile .promotion_title h2 {display: none;}
  .other_select_page.bodyMobile  ul.page {  display: none;}
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*首頁促銷方案*/
.news_part {background: #e9e1da;}
.news_part .title_i_box h4 {
  font-size: 28px;
  color: #dab462;
  font-weight: 600;
  letter-spacing: 3px;
}
.i_news_b a {  border-radius: 20px;}
.i_news_b a:hover {    background: #dab462;}
.news_list ul li { border:none;   border-bottom: none;}
.news_list ul li:hover { }
.news_list ul li a{
  border: 1px #dab462 solid;
  margin-bottom: 8px;
  border-radius: 50px;
  box-shadow: 0px 2px 5px #b1b1b161;
  background: #ffffff;
}
.news_list ul li a:hover {   background: #dab462;}
.news_list ul li a:hover span {   color: #fff;}
.news_list ul li a:hover p {   color: #ffffff;}
.news_list ul li p:after {  transform: translateX(-50%) translateY(-50%);}
.news_list ul li a:hover p:after {   color: #fff;}

/*促銷方案*/
.promotion_title * {  color: #dab462; font-weight: 600;   font-size: 16px;   letter-spacing: 1px;}
.promotion_title { text-align: center;}
.promotion_title em {  border:none; padding: 6px 15px; margin: 0 0px 0px 0; background: #dab462;  color: #fff;  border-radius: 50px;}
.promotion_title span { border:none; padding: 6px 0px;   margin: 0px 0px 0px 0;}
.promotion_title h2 {  display: block;  font-size: 30px;     border-bottom: 2px #dab462 solid;  padding: 0px 0px 10px 0px;}
.promotion_title h2 span {   display: none;}
.other_promotion li a {  border: none; border-top: 1px solid #e5e5e5;   }
.other_promotion li a:hover {  background: none;}
.other_promotion li a:before { border: 2px #dab462 solid; border-bottom: none;  border-right: none; border-left: none;}
.other_promotion li a:after { display: none;}

@media screen and (max-width: 768px) {
  .news_part .title_i_box h4 {   font-size: 24px;}
  .news_part {  margin: 0px auto;     padding: 40px 20px;  width: 100%;}
  .news_list ul li {   background: #ffffff;         border-radius: 20px;}
}
@media screen and (max-width: 600px) {
  .news_list ul li a {    border-radius: 20px;   padding: 15px;}
  .news_list ul li p:after {   transform: translateX(0%) translateY(10%);}
}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/
/*首頁文章*/
.module_i_news {
  max-width: 100%;
  padding: 60px 5% 80px;
  margin: auto;
  background: #00000061;
  position: relative;
}
.module_i_news:last-of-type {background: #fafafa;}
.module_i_news .title_i_box {margin-bottom: 30px;text-align: center;position: relative;display: flex;justify-content: center;}
.module_i_news .title_i_box h4 { color: #fff;}
.module_i_news .title_i_box h6 {font-family: 'Libre Baskerville';font-weight: bold;font-size: 100px;
  color: #f5f5f5;position: absolute;transform: translate(-50%, -50%);top: -60%;left: 50%;}

.module_i_news ul{
grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  max-width: 100%;
  margin: 50px auto;
}
.module_i_news li{
  width: 100%;
  padding: 0 5px;
  margin: 0 0 20px 0;
}
.module_i_news li:nth-child(n+5){display: none;}
.module_i_news li a {display: flex;flex-direction: column;overflow: hidden;padding: 10px;background: #ffffff;}
.module_i_news li a:before {content: '+ MORE';font-size: 17px;display: flex;transform: translate(-50%, 0%) scale(0, 0);left: 50%;right: 0;
  bottom: 50%;height: 150px;line-height: 50px;opacity: 0;color: #fff;background: #a64a31d6;transition: all .3s;
  width: 150px;border-radius: 100%;text-align: center;justify-content: center;align-items: center;letter-spacing: 0.05em;}
.module_i_news li a:after {display: none;}
.module_i_news li a:hover:before, .module_i_news li a:hover:after {transform: translate(-50%, 0%) scale(1, 1);opacity: 1;}
.module_i_news_list, .module_i_news_list.swiper {  padding: 0px 0;}

.i_blog_le{width: 100%; padding: 0;padding-bottom: 100%;height: 0;overflow: hidden;position: relative;}
.i_blog_le img {position: absolute;transform: translate(-50% , -50%);min-height: 100%;object-fit: cover;top: 50%;left: 50%;}
.i_blog_ri {display: flex;flex-direction: column;flex-wrap: wrap;width: 100%;
  background: unset;min-height: 150px;padding: 10px;text-align: center;}
.i_blog_ri h5{font-size: 20px;font-weight: 600 !important;color: #dab462 !important;height: 75px;
  -webkit-line-clamp: 2;letter-spacing: 0.05em;order: 2;line-height: 1.5;padding: 10px 0;}
.i_blog_ri em {color: #C8C9C9 !important; order: 1;margin: 0;}
.i_blog_ri p{line-height: 1;letter-spacing: 0.05em;font-size: 15px;-webkit-line-clamp: 1;order: 3;}
@media screen and (max-width: 1024px){
.module_i_news li {margin: 0 0 50px 0;}
.i_blog_ri h5 {font-size: 18px;}
}
@media screen and (max-width: 768px){
.module_i_news {padding: 150px 5% 80px;}
.module_i_news .title_i_box h6 {font-size: 80px;}
.module_i_news li {margin: 0 0 30px 0;border-bottom: 0;}
.module_i_news li a:before {font-size: 15px;height: 120px;width: 120px;bottom: 55%;}
.module_i_news ul{grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));     grid-gap: 0px;}
}
@media screen and (max-width: 600px){
.module_i_news {padding: 100px 5% 50px;}
.module_i_news .title_i_box:before {height: 25px;}
.module_i_news li {width: 100%;}
.module_i_news li a {padding: 5px;}
.i_blog_ri h5 { font-size: 17px;height: 65px;}
.module_i_news li a:before {font-size: 14px;height: 90px;width: 90px;bottom: 60%;}
}

/*文章設定*/
/*(新)文章分類*/
/*文章管理*/
h5.blog_le_t {font-size: 20px;letter-spacing: 2px;margin-bottom: 10px;text-align: center;font-family: auto;color: #000;}
h5.blog_le_t em { padding-right: 5px; color: #fff;}
/*大分類*/
.blog_box {display: flex;padding: 0;flex-wrap: wrap;justify-content: space-between;}
.blog_le {width: 18%;padding: 0;}
.blog_ri {width: 78%;padding: 0;}
.blog_subbox{grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));}
.subbox_item{padding: 5px;margin: 0 0 20px 0;}
.subbox_item a {display: flex;flex-direction: column;overflow: hidden;padding: 5px;border: 1px dotted #C8C9C9;}
.subbox_item a:before {
  transform: translate(-50%, 0%);
  left: 50%;
  right: 0;
  bottom: -15%;
  letter-spacing: 2px;
  height: 48px;
  line-height: 48px;
  opacity: 0;
  display: block;
  color: #fff;
  background: #dab462;
  width: 100%;
  text-align: center;
}
.subbox_item a:hover:before{bottom: 0;}
.subbox_item a:after {display: none;}
.submenu li.on_this_category a, .submenu a:hover { background: #979797;}
.blog_list_le{width: 100%; padding: 0;padding-bottom: 100%;height: 0;overflow: hidden;position: relative;}
.blog_list_le img {position: absolute;transform: translate(-50% , -50%);min-height: 100%;object-fit: cover;top: 50%;left: 50%;}
.blog_list_ri {width: 100%;background: #ffffff00;padding: 10px 10px;}
.blog_list_ri h5{font-size: 18px;font-weight: 500 !important;color: #dab462 !important;}
.blog_list_ri em {color: #C8C9C9 !important;}
.blog_list_ri p{line-height: 160%;min-height: 45px;font-size: 14px;-webkit-line-clamp: 2; color: #dddddd;}
.blog_page h4.blog_category_title, .blog_in_page h4.blog_category_title {font-weight: 500;color: #dab462;border-bottom: 1px #C8C9C9 solid;letter-spacing: 0.05em;}
.blog_le .accordion {border-radius: 0;border: unset;background: unset;}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {    background: #dab462 !important;}
.accordion li .link {text-align: center;font-weight: normal;letter-spacing: 1px;}
.blog_le .accordion li .link:last-child {border-bottom: 1px solid #C8C9C9;}
.accordion li .link a {color: #ffffff;}
.blog_search input[type=search] {border-radius: 5px;letter-spacing: 1px;padding: 10px 35px 10px 20px;}
.blog_box_edit * {line-height: 180%; color: #fff;}
.blog_box_edit * iframe {min-height: 500px;}
/*文章內頁按鈕*/
.blog_back {
  display: flex;
  width: 100%;
  text-align: center;
  justify-content: space-between;}
.blog_back a {
  width: 33%;
  padding: 15px;
  border-radius: 5px;
  letter-spacing: 2px;}
.blog_back a.article_btn_back {    background: #ffffff; border: 1px solid #9d9d9d; color: #9d9d9d;}
.blog_back a.article_btn_back:hover {background: #dab462;border: 1px solid #dab462;color: #ffffff;}
.blog_back a.article_btn_prev, .blog_back a.article_btn_next  {background: #9d9d9d;}
.blog_back a.article_btn_prev:hover, .blog_back a.article_btn_next:hover  {background: #dab462;}

/*相關推薦*/
.news_related { 
  border-top: 1px #fff solid;
  background: #232323;  
  background: url(https://pic03.eapple.com.tw/jwesthelmet/p1bg00.jpg) no-repeat top center fixed;    
  background-size: cover; 
}
.news_related h6 span:before {  color: #dab462;}
.lastPage {  background: #dab462;}

@media screen and (max-width: 1024px){
.blog_box {flex-direction: column;}
.blog_le, .blog_ri {width: 100%;}
}

@media screen and (max-width: 768px){
.blog_page .main_part {padding: 30px 5%;}
.blog_subbox{grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 0px;}
.subbox_item {margin: 0;}
.blog_page h4.blog_category_title{display: none;}
h4.blog_category_title {font-size: 22px;}
.blog_box_edit * {font-size: 16px !important;}
}

@media screen and (max-width: 475px){
.subbox_item { } 
.subbox_item a {align-items: center;}
.blog_box_edit * iframe {min-height: 250px;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*相簿*/
.other_subalbum li a p {
  text-align: center;
  letter-spacing: 1px;
  font-size: 18px;
  font-weight: 600;
  color: #616161;
}
.other_subalbum li a p:hover{color: #6161618f ;}

.pic-list .show_pic {    aspect-ratio: 2 / 3;}
.album_fixed_title {
    color: #ffffff;
    background: #4f4f4f;
    display: none;
}

@media screen and (max-width: 600px){
  .other_subalbum li a p {  font-size: 15px;}
}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*相本分類全版面 ( 限制最寬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; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*首頁*/
.i_prod_tit h2, .i_video_tit h2 {   display: none;}

/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.product_page .main_part { max-width:1500px;  font-family: 'Noto Sans TC';}
.product_info_page .main_part,
.car_page .main_part{  font-family: 'Noto Sans TC';}


.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 #dab462;*/min-height: 30vw;}
.product_page .products-list,
.product-wrapper { width: calc(100% - 270px);}
ul.page { width: 100%;}

.product-layer-two li a {  background: none;  padding: 13px 16px;  border:none;     color: #ffffff;}
.product-layer-two li i {  top: 6px;}
.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; background:none ;}
.product-layer-two li li a{ padding:5px 10px;     background: none;}
.product-layer-two li li:hover > a { background:none; color:#ffffff;}
.product-layer-two > li { width:100%; max-width:100%; padding:0; text-align:left; border-bottom:1px dotted #dab462; padding-bottom: 5px;}
.product-layer-two > li ul > li + li { margin-top:5px;}

.product-layer-two li.active a {  border: none;}
.product-layer-two li li.active a {  background: #a64a31;}

.products-list .price b { color: #f1f1f1;}
.products-list .name {    color: #ffffff;}
.products-list .more {  border: 1px solid #dab462;  color: #dab462; display: none; }/*詳細資料隱藏*/
.products-list .item a {    padding-bottom: 5px;    border-bottom: 1px #dab462 solid;}
.products-list .item a:hover .more { background: #dab462;}
.products-list .pic img {transform: scale(1);  transition: all 0.3s;}
.products-list .pic img:hover {transform: scale(1.1);  transition: all 0.3s;}

.product_info_page .product-layer-two { display: none;}
.product_info_page .products-list,
.product-wrapper { width: 100%;}

.product-layer-two li li:hover{    background: #a64a31; }

.product-layer-two li.active li a {  color: #ffffff;}

.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;}

.fa-circle-plus::before {    color: #fff;}

/*商品內頁*/
.sidebarBtn {  border: 1px #a3a38e solid;}
.inquiry_a1 {  background: #eba334;}
.inquiry_a2 {  background: #a58d7c;}
.pd_tabInner_contain {    color: #fff;}
.pd_tabTitle li.activeTab a {
  color: #fff;
  font-size: 20px;
  letter-spacing: 3px;
}

/*相關推薦*/
.prod_related { 
  border-top: 1px #fff solid;
  background: #232323;  
  background: url(https://pic03.eapple.com.tw/jwesthelmet/p1bg00.jpg) no-repeat top center fixed;    
  background-size: cover; 
}
.prod_related h6 span:before {  color: #dab462;}

/*詢價車內頁*/
.shopping-cart .cell.product_name a {    color: #fff;}
.formbox_form li .form__label {    color: #fff;}

/*結帳頁*/
.shopping-cart .cell {   color: #fff;}
.total_amount li {   color: #fff;}
.form label {  color: #ffffff;}
.form label.Bigcheck { color: #ffffff;}
.declaration {  background: #7d7b7b;}
.order_list_tab td {   color: #ffffff;}
.order_list_pro td {  color: #ffffff;}
.order_list_tit b {  color: #dab462;}
.last_box_money p, .last_box_money em {  color: #ffffff;     background: #434343;}

@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 980px) {
}
@media screen and (max-width: 768px) {
.products-list {   grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));}
.product_menu_list,
.products-list,
.product-wrapper { width: 100%;}
.product-layer-two { margin-right: 0; grid-template-columns: repeat(auto-fill, minmax(160px, 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;}

/*商品內頁*/
.mobile_product_name {  color: #fff; }
/**/
.product_menu_list>h5 {   color: #ffffff;}
.product_menu_list a.pd_menu_toggle {  color: #fff;}
}
@media screen and (max-width: 600px) {
  .pageIndex .products-list {  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));}
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*聯絡表單*/
.contact_page .main_part { max-width:1500px;  font-family: 'Noto Sans TC';}

/*表單最大寬度設定*/
.contact_content .information_right { max-width: 1400px;}

.contact_form li {
    padding: 10px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}
.contact_form li .form__label {
    width: 100%;
    text-align: left;
    margin: 0 0 10px;
    color: #fff;
    max-width: 100%;
}
.contact_form li .form__insert {
    color: #fff;
}

/*標題*/
.blank_letter { color: #dab462;}

/*側邊資訊*/
.list_before { margin-top: 10px; color: #ffffff;}
ul.list_before.info {    color: #fff;}
.list_before li {  line-height: 2;}
.list_before.info li {    padding-left: 66px;}

.info_TEL:before, .info_TEL2:before, .info_PHONE:before, .info_LINE:before, .info_FAX:before, .info_TAXID:before, .info_MAIL:before, .info_ADD:before, .info_ADD2:before {  width: 65px;}

/*表格樣式*/
.contact_form li input.noborder {  border: 1px #ddd solid;   background: #353333;}/*文字欄*/
.contact_form li textarea.noborder { background: #353333; border: 1px #ddd solid;}/*文字區塊*/
.form select {}/*下拉式*/
.contact_form li.last {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    flex-direction: row;
}

/*驗證碼對齊*/
.contact_form li:nth-last-of-type(2) .form__insert { display: inline-flex; align-items: center; justify-content: flex-start; flex-wrap: nowrap;}
.contact_form li:nth-last-of-type(2) input.noborder { border: 1px #ddd solid;}
.captcha { margin-right: 20px;}

/*按鈕*/
.contact_form li.last blockquote { border: 1px #dab462 solid; color: #ffffff;}
.contact_le_map a { background: #dab462; display: none;}
.contact_form li.last cite {background: #dab462;   border: 1px #dab462 solid;  }

@media screen and (max-width: 600px){
.contact_form li .form__label {background: none;}
}
@media screen and (max-width: 425px){
    /*聯絡表單*/
    /*.contact_form li { padding-left: 0;}*/
    .contact_form li .form__label { margin: 0 0 10px; width: 100%; text-align: left;}
    .contact_form li .form__insert { width: 100%;}
}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu {    
  background-image: url(https://pic03.eapple.com.tw/jwesthelmet/phbg01.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; 
}
#bottom_menu li a em {    color: #fff;}
#bottom_menu li a i {  color: #fff;}
.footer.with_shopping_mode { padding:30px 0 60px; }
#to_top { bottom:130px;}
}

@media screen and (max-width: 600px) { 
}




