@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}
*/
.pageIndex .edit_part { padding: 0;}
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
:root {
    --MainColor: #EA5529; /*網站主要色系*/
    --SubColor: #9FA0A0; /*網站輔助色系1*/
    --SubColor2: #595757; /*網站輔助色系2*/
    --color:#F7F8F8;
    --SFont:"Noto Sans TC", sans-serif;/*黑體*/
    --SFontE:"Bebas Neue", sans-serif;/*特殊字體*/

    --pd100:100px 0;
    --m100:100px;
    --m50:50px;
    --m30:30px;
    --f100: 100px;
    --f60: 60px;
    --f48: 48px;
    --f40: 40px;
    --f36: 36px;
    --f32: 32px;
    --f28: 28px;
    --f24: 24px;
    --f22: 22px;
    --f20: 20px;
    --f18: 18px;
    --f17: 17px;
    --f16: 16px;
    --m100: 100px;
    --m50: 50px;

}

@media (max-width:1024px) {
    :root {
        --m50: 40px;
        --m30: 25px;
        --f100: 90px;
        --f60: 52px;
        --f48: 40px;
        --f40: 36px;
        --f36: 32px;
        --f32: 28px;
        --f28: 24px;
        --f24: 22px;
        --f22: 20px;
    }
}

@media (max-width:768px) {
    :root {
        --pd100: 70px 0;
        --m100: 70px;
        --m50: 30px;
        --m30: 20px;
        --f100: 72px;
        --f60: 50px;
        --f48: 32px;
        --f40: 28px;
        --f36: 26px;
        --f32: 24px;
        --f28: 20px;
        --f24: 20px;
        --f20: 18px;
        --f18: 17px;
        --f17: 16px;
        --f16: 15px;
    }
}

@media (max-width:600px) {
    :root {
        --pd100: 50px 0;
        --m100: 50px;
        --m50: 25px;
        --f100: 60px;
        --f60: 40px;
        --f48: 28px;
        --f40: 24px;
        --f36: 22px;
        --f32: 20px;
        --f28: 18px;
        --f24: 18px;
        --f22: 18px;
        --f20: 17px;
        --f18: 16px;
        --f17: 15px;
    }
}

@media (max-width:375px) {
    :root {
        --f100: 48px;
        --f60: 32px;
        --f48: 24px;
        --f40: 20px;
        --f36: 18px;
        --f32: 18px;
        --f28: 17px;
        --f24: 17px;
        --f22: 17px;
        --f20: 16px;
        --f18: 15px;
    }
}
  .path { display: none;}
  #content{background: var(--color);}
.me_tp_features{display: none;}
.header_area { background: #ffffff;    padding: 10px 10px 0px 10px;}
/*.header_area.sticky{ background: var(--MainColor);}*/
/*電腦LOGO*/
.nav-header {  max-width: 200px;}
.nav-brand {    width: 100%;transition:all 0.3s;}
.header_area .nav-brand {    transition: all 0.3s;   }
.header_area::after{
    position: absolute;
    content: "";
    background: var(--MainColor);
    width:0;
    height: 100%;
    left: 0%;
    top: 0;
}




/*sticky*/
.header_area.sticky{background: var(--MainColor);}
.header_area.sticky  .nav-brand {  filter: brightness(100);}
.sticky .stellarnav > ul > li > a{color: #fff;}
.sticky .stellarnav > ul > li > a:hover b:nth-child(1), .sticky .stellarnav > ul > li > a:hover b:nth-child(2) { color:#fff}
.sticky .stellarnav li.has-sub > a:after { border-top: 6px solid #fff;}
.sticky .stellarnav li.has-sub:hover > a:after { border-top: 6px solid #fff;}









/*第一層*/
.navigation { grid-template-columns: 280px 1fr;padding: 10px 0; align-items: center;}
.stellarnav { grid-row: 1 / span 2;}
.stellarnav > ul > li > a{transition:all 0.3s;font-family: var(--SFont);color: var(--SubColor2);letter-spacing: 1px;}
.stellarnav > ul > li > a :nth-child(2){font-family: var(--SFontE);font-size: 16px;}
.stellarnav > ul > li:hover > a{color: var(--MainColor);}
.stellarnav > ul > li > a:hover b{color: var(--MainColor);}
.stellarnav li.has-sub > a:after { border-top: 6px solid var(--SubColor);}
.stellarnav li.has-sub:hover > a:after { border-top: 6px solid var(--MainColor);}

.stellarnav > ul > li > a:hover b {
    transform: translateY(-8px);
    -webkit-transform: translateY(-8px);
}
.stellarnav > ul > li > a b { height: 26px;}
.stellarnav > ul > li > a b:nth-child(2){line-height: 4.5;transform: translateY(-30px);opacity: 0;}
.stellarnav > ul > li > a:hover b:nth-child(1) {color: var(--SubColor2);}
.stellarnav > ul > li > a:hover b:nth-child(2) {  opacity: 1;}
/*第二層*/
.stellarnav li li > a , .stellarnav li li.has-sub > a{    padding: 7px 5px;    transition: all 0.3s;border-left:1px solid transparent;color: #fff;}
.stellarnav li li:hover > a , .stellarnav li li.has-sub:hover > a{color: #fff;	padding-left:10px;background: var(--MainColor);}

.stellarnav ul ul { padding-top: 11px;background: #ffffff00;    width: 200px;}
.stellarnav > ul > li>ul>li{background: var(--SubColor2);border: none;border-bottom:1px solid var(--SubColor) ;}





/* 商品下拉超過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個--結束 */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*進入網站動畫*/


/*大圖*/
.swiper-fade .swiper-slide-active:nth-child(1):after{}
.swiper-fade .swiper-slide:nth-child(1)::after{}




/*Banner/＝＝＝＝＝*/
.banner.banblog {}
.banner{
    background: url(https://pic03.eapple.com.tw/cityfitness/banner.jpg) no-repeat;
    background-size: cover!important;
    background-position:center!important;
    position: relative;
    min-height: 400px;
}
.services_page .banner{display: none;}
.banner h5{font-size:32px;font-family: var(--SFontE);font-weight:900;color: var(--SubColor2);position: absolute;}
.banner h5::after{
    position: absolute;
    content: "";
    font-family: var(--SFont);
    color: var(--MainColor);
    font-size: 24px;
    font-weight: 900;
    left: 50%;
    transform: translateX(-50%);
    top: -26px;
}
.other_page .banner h5::after{content: "BRANCH";}

.article_a .banner h5, .article_a .banner h5{color: #FFF;}
.article_a .banner h5::after, .article_a .banner h5::after{content: "EVALUATE";}

.article_b .banner h5, .article_b .banner h5{color: #FFF;}
.article_b .banner h5::after, .article_b .banner h5::after{content: "COLUMN";}

.product_page  .banner, .product_info_page  .banner{  background: url(https://pic03.eapple.com.tw/cityfitness/banner-product.jpg) no-repeat;}
.product_page  .banner h5, .product_info_page .banner h5{color: #FFF;}
.product_page  .banner h5::after, .product_info_page  .banner h5::after{content: "MALL";}

.blog_page .banner, .blog_in_page  .banner{  background: url(https://pic03.eapple.com.tw/cityfitness/banner-news.jpg) no-repeat;}
.blog_page .banner h5, .blog_in_page  .banner h5{ filter: drop-shadow(2px 4px 3px black);}
.blog_page .banner h5::after, .blog_in_page  .banner h5::after{   color:#fff;}




/*Footer/＝＝＝＝＝*/
.footer{background: var(--MainColor);}
.footer_info li dl dd a {letter-spacing: 0; transition: .3s ease-in-out;}
.footer_info li dl dd a:hover {
    background-color: #ffffff00;
    color: #ffffff;
     transition: .3s ease-in-out;
    letter-spacing:0.1em;}
.footer_info li dl dd a:hover img {
    filter:brightness(100) ;
    transform: rotateY(360deg) ;
      transition: .8s ease-in-out;
}


.copy {    background: var(--MainColor);    color:var(--SubColor2);	border:none;}
.copy a{    color: var(--SubColor2);transition:all 0.3s;}
.copy a:hover {  color: var(--color);}
.privacyLinks a+a { border-left: 1px solid var(--SubColor2);}
.box_link{display: none;}
.box_link a{transition:all 0.3s;}
.box_link a:hover {    background: #ADA17E;    color: #fff;}

/*url(https://pic03.eapple.com.tw/cityfitness/icon-01.png) no-repeat;*/

/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 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{position: relative;}
.product-layer-two li a {
    border: none;
    background: #ffffff00;
    padding: 7px 16px 7px 30px;
}
.product-layer-two>li a::after{
    position: absolute;
    content: "";
    background: url(https://pic03.eapple.com.tw/cityfitness/icon-product.png) no-repeat;
    background-size: contain !important;
    width: 20px;
    height: 20px;
    left: 0;
    top: 8px;
    filter: brightness(0) saturate(100%) invert(34%) sepia(14%) saturate(12%) hue-rotate(316deg) brightness(94%) contrast(91%);
    transition: 0.3s ease-in-out;
}
.product-layer-two>li a:hover::after{filter: unset;transition: 0.3s ease-in-out;}



.product-layer-two li ul { position:static; margin-top:5px; /*display:block !important;*/ width:100%; margin-left:0;margin-top: 0;column-gap: 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:var(--MainColor);}
.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:var(--MainColor);}

.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;}


.products-list:hover .item a{opacity: 0.5;transition: 0.3s ease-in-out;}
.products-list .item a:hover{opacity:1;transition: 0.3s ease-in-out;}
.products-list .name { text-align: center;font-weight: bold;font-size: var(--f17);}
.products-list .item a:hover .name{color: var(--MainColor);transition: 0.3s ease-in-out;}
.products-list .more {  border: 1px solid var(--MainColor);   color:var(--MainColor);}
.products-list .item a:hover .more{background: var(--MainColor);}
.products-list .item a .more{display: none;}

.products-list  .item a:hover .pic img{transform: scale(1.1);transition: 0.3s ease-in-out;}

.product-layer-two li.active>a,
.product-layer-two>li:hover>a {
    border:none;
    background:#ffffff;}
.product-layer-two li ul {    grid-gap: 0;}

.edit{text-align: justify;}


    /*首頁*/
.animated-arrow { background:var(--MainColor);}
    
/*產品內頁*/

.sidebarBtn { border:none;}
.inquiry_a1 { background: var(--MainColor);}
.inquiry_a2 { background: var(--color);}
.inquiry_a3 { background:var(--MainColor);}
.lastPage {background:var(--color);}

.prod_tabs {
    border: 1px solid #e1e1e1;
    padding: 0 20px;}
.pd_tabTitle li.activeTab a {  color:var(--SubColor2);    font-size: 22px;
    font-weight: bold;}
.pd_tabTitle li.activeTab::after {
    height: 3px;
    background: var(--MainColor);
    width: 100px;
    left: 50%;
    transform: translateX(-50%);
}
.pd_tabTitle li {  border-bottom: none;}

/*首頁-好評推薦*/
.module_i_news .title_i_box { line-height: 180%;}
.module_i_news .title_i_box h6{color: var(--MainColor);font-family: 'Noto Sans TC';font-size: var(--f24); }
.module_i_news .title_i_box h4{font-family: var(--SFont);font-size: var(--f24);    font-weight: bold;}
.module_i_news ul { grid-template-columns: repeat(4, 1fr);}
.pageIndex .i_blog_le {aspect-ratio: 4 / 3;}
.module_i_news li {
    background: #fff;
    border: 1px solid #f5f5f5;
}
.module_i_news li a { grid-template-columns: 1fr;    padding: 8px;}
.module_i_news li a:hover .i_blog_ri h5{color: var(--MainColor);transition: 0.3s ease-in;}
.i_blog_ri h5{
    color: var(--SubColor2);
    font-weight: bold;
    border-bottom: 1px solid #ddd;
}
.module_i_news li a:after {
    background: rgb(255 255 255 / 0%);
    border: 1px var(--MainColor) solid;
}
.module_i_news li a:before {
    content: 'MORE';
    font-size: 14px;
    bottom: 0;
    right: 0;
    padding: 0 15px;
    color: #fff;
    background: var(--MainColor);
    }







/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#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;}
}




/*相簿 內頁*/
.other_album_choice li{background: var(--MainColor);}
.show-list .show_name {text-align: center;   color: var(--SubColor2);}
.show-list .item:hover .show_name { color: var(--MainColor);}
.album_fixed_title {  background: #ffffff00;}

/*健身專欄-文章*/
.blog_back a.article_btn_back {    background:var(--MainColor);}
.lastPage {  background:var(--MainColor);}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {  background:var(--MainColor) !important;}
.subbox_item a{padding: 5px;}
.blog_list_ri h5{color: var(--SubColor2);font-weight: bold;}
.subbox_item a:after {
    background: rgb(255 255 255 / 0%);
    border: 1px var(--MainColor) solid;}
.subbox_item a:before {
    content: 'MORE';
    bottom: unset;
    top: 0;
    color: #fff;
    background: var(--MainColor);
    padding: 5px 15px;}
.other_subalbum li a p { text-align: center;font-weight: bold;line-height: 3;}
.show-list .item:hover{background: var(--MainColor);}
h5.blog_le_t {
    color: var(--SubColor2);
    position: relative;
    display: flex;
    flex-direction: column-reverse;}
h5.blog_le_t span{font-family: var(--SFont);font-weight: 600;color: var(--MainColor);font-size: 17px;letter-spacing: 0;}

.blog_le .accordion {
    border-radius: 0;
    border: none;}
.accordion li .link a{border-bottom:1px solid var(--SubColor) ;}
.blog_box_edit .articel_mainPic{display: none;}/*關閉文章內頁第一張圖*/


/*聯絡我們*/
.contact_form li.last cite {  background: var(--MainColor);}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

@media screen and (max-width:1024px) { 
    .nav-header { margin: auto;}
    
    .module_i_news ul {  grid-template-columns: repeat(3, 1fr);}
    }
    
    @media screen and (max-width: 980px) { 
    .header_area {
        position: static;
        text-align: center;

    }
    .banner { min-height: 300px;}
    .footer_logo {  max-width: 220px;}
    .footer_menu { margin: calc(1vw + 20px) 0 0;}
    
    
    
    
    
    
    }
    @media screen and (max-width:850px) { 
        /*footer*/
    .footer_logo {  max-width: 190px;}  
    .box_link { top: 193px;  left: 63px;}
       }
    @media screen and (max-width: 768px) { 
    /*HEADER*/
    .nav-header { max-width:140px; }
    .nav-header { position: relative;  z-index: 99999;}


    .header_area.sticky  { position: fixed;transition: 0.3s ease-in-out;}
  
      
    
    /*手機側邊欄位*/
    .nav-header {  margin: auto auto auto 0; }
    .stellarnav.mobile { right: 0;left: unset;}
    .stellarnav.mobile.left > ul{transition: 0.5s ease;max-width: 300px;    left: 0;border-right: none;border-top: none;background: var(--SubColor2);}
    .stellarnav.mobile.active>ul{z-index: 9999999;     animation: move 0.5s linear;box-shadow: 0 0 3px #00000059; }
    @keyframes move{  
        0% {
            transform: translateX(-100%);       
          }
        100% {
            transform: translateX(0%);   
            }
    }
   
   .stellarnav .menu-toggle span.bars span{  background: var(--SubColor2);}
   .sticky .stellarnav .menu-toggle span.bars span {  background: #fff;}

    .stellarnav .menu-toggle:after { color: var(--SubColor2);}
    .sticky .stellarnav .menu-toggle:after { color:#fff;}
    .stellarnav.mobile > ul > li { border-bottom: 1px #575757 solid;}
    .stellarnav.mobile > ul > li > a { padding: 20px 0; }
    .stellarnav > ul > li > a b , .sticky .stellarnav > ul > li > a { color: #FFF;   padding: 20px 0;}
    .stellarnav.mobile > ul > li > a:hover b{color: var(--MainColor);font-weight: bold;}
    .stellarnav.mobile > ul > li > a b:last-child{display: none;}
    .stellarnav a.dd-toggle .icon-plus:after, .stellarnav a.dd-toggle .icon-plus:before {  border-bottom: solid 3px #ffffff;}
    
  .sticky .stellarnav.mobile.left .close-menu { color: var(--color);background: var(--SubColor2);}
    .stellarnav.mobile.left .close-menu {
        padding: 15px 10px 36px;
        background:#fff;
        color: var(--SubColor2);
    }
    .stellarnav .icon-close:before, .stellarnav .icon-close:after {   border-bottom: solid 3px var(--SubColor2);}
    .sticky .stellarnav .icon-close:before,  .sticky .stellarnav .icon-close:after {   border-bottom: solid 3px #fff;}

    .stellarnav.mobile li.open {background: var(--SubColor2);    padding: 0;}
    .stellarnav.mobile li.open >a{border-bottom:1px solid var(--SubColor) ;}
    .stellarnav.mobile li.open >a b{color: var(--MainColor);}
     .stellarnav.mobile li.open >a.dd-toggle .icon-plus:before, .stellarnav.mobile li.open >a.dd-toggle .icon-plus:after{    border-bottom: solid 3px #FFF;}
    .stellarnav.mobile > ul > li > a.dd-toggle{border-bottom:none ;}
    .stellarnav.mobile ul ul{padding-top:0 ;}
    .stellarnav > ul > li>ul>li { border-bottom:none; }
.stellarnav.mobile li li> a { border-bottom:none;    padding: 7px 5px 7px 20px;}




    /* 開啟手機板下方按鈕所需設定 */
    #bottom_menu {display: none; }
    .footer.with_shopping_mode { padding:30px 0 0px; }
    #to_top { bottom:60px;}
    .footer_logo{ margin: 0;}

    .box_link {
        top: 170px;
        left: 50%;
        transform: translateX(-50%);
    }

    


.banner { min-height: 250px;}


    .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;}

    /*首頁-好評推薦*/
      .module_i_news ul {  grid-template-columns: repeat(2, 1fr);}
    }



    @media screen and (max-width: 650px) { 
    .footer_info ul.footer_right {  max-width: 100%;}



    }
    @media screen and (max-width: 600px) { 
        .contact_form li .form__label {  background: rgb(255 255 255 / 0%);    }
    }
    @media screen and (max-width: 500px) { 
        .footer_menu {  grid-template-columns: 1fr 1fr;}
       
    
        .module_i_news { padding: 0px 20px;}    
        .module_i_news ul { grid-template-columns: repeat(1, 1fr);    }
   
    }

    @media screen and (max-width: 450px) { 
        .footer_info li dl {   flex-direction: unset; }
        .footer_info li dl dt a img {
    width: 100%;
    max-width: 50px;
}
    }
    @media screen and (max-width: 3750px) { 
    
    }
    
    