@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;}
.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;}
}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*共用*/
.animated-arrow {  background: #979388;}
.path p, .path p a {display: none;}
/*滾輪*/
::-webkit-scrollbar { width: 5px;}/*滾輪寬度*/
::-webkit-scrollbar-button { background: transparent; border-radius: 7px; height: 0;}/*滾輪與視窗上下的間距*/
::-webkit-scrollbar-track-piece { background: #575757;}/*滾輪軌道背景*/
::-webkit-scrollbar-thumb { border-radius: 3px; background-color: #000000; border:1px #ffffff;}/*滾輪樣式*/
::-webkit-scrollbar-track { box-shadow: transparent;}/*滾輪軌道樣式*/

/*top*/
#to_top {  box-shadow: 0px 0px 10px #bbbbbb82; color: #575757;  background: #ffffffd6; backdrop-filter: saturate(100%) blur(10px);}
#to_top i.top {    height: 15px;}
#to_top i.top:before, #to_top i.top:after {  height: 10px;  top: 5px; background: #575757;}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 開場隱藏首頁的主選單 */
.pageIndex #page .stellarnav > ul{
  opacity: 0;
  animation: show  1.5s forwards;
  animation-delay: 3.6s;
}
/*開場隱藏header*/
.pageIndex #page .header_area{
  opacity: 0;
  animation: show 1.5s ease-in-out forwards;
  animation-delay: 3.6s;
}

/*開場隱藏LOGO設定*/
.pageIndex #page .nav-brand img{
  opacity: 0;
  animation: show 1.5s ease-in-out forwards;
  animation-delay: 3.6s;
}


@keyframes show {
  0%{
      opacity: 0;
  }
  100%{
      opacity: 1;
  }
}


/* 開場 */
.bannerindex::after{
  content: "";
  display: block;
  background-image: url(https://pic03.eapple.com.tw/chicaresports/logo01-02.png);
  background-size: cover;
  width: 300px;
  height: 180px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -0%);
  z-index: 10000000000000000000000000;
  pointer-events: none;
  animation: show-logo-1 2.2s forwards;
  
}
/*
.swiper-banner::before{
  content: "";
  display: block;
  background-image: url();
  background-size: cover;
  width: 200px;
  height: 70px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: fixed;
  bottom: 38%;
  left: 50%;
  z-index: 1000000000000010000000000000;  
  transform: translate(-50%,-0%);
  pointer-events: none;
  animation: show-logo-2 3s cubic-bezier(0.73, 0.08, 0.11, 0.99) both;
  animation-delay: 0.7s;
}*/
.bannerindex::before {
  content: "";
  display: block;
  background: #e9e8e8;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10000000000000000000000000;
  animation: banner-bg 4s forwards;
}

@keyframes show-logo-1 {
  0% {
      opacity: 0;
      filter: blur(0);
  }

  25% {
      opacity: 1;
      filter: blur(0);
  }

  50% {
      filter: blur(0);
      opacity: 1;
  }

  80% {
      filter: blur(0);
      opacity: 1;
  }

  100% {
      filter: blur(10);
      opacity: 0;

  }
}

@keyframes banner-bg {
  0% {}

  50% {}

  80% {
      opacity: 1;
  }

  100% {
      opacity: 0;
  }
}

@keyframes show-logo-2 {
  0%{
      opacity: 0;
  }
  20%{
      opacity: 1;
  }
  100%{
      opacity: 0;
  }
}

.pageIndex #page #content_main{
  opacity: 0;
  animation: show 1.5s ease-in-out forwards;
  animation-delay: 2s;
}

@keyframes show {
  0%{
      opacity: 0;
  }
  100%{
      opacity: 1;
  }
}

@media screen and (max-width:768px) {
  .pageIndex #page .menu-toggle{
    opacity: 0;
    animation: show  1.5s forwards;
    animation-delay: 3.6s;
  }
  .pageIndex #page .stellarnav > ul{
    opacity: 0;
    animation: show  .5s forwards;
    animation-delay: .1s;
  }
  .bannerindex::after{
      content: "";
      display: block;
      background-image: url(https://pic03.eapple.com.tw/chicaresports/logo01-02.png);
      background-size: cover;
      width: 250px;
      height: 100px;
      background-position: center;
      background-repeat: no-repeat;
      background-size: contain;
      position: fixed;
      top: 40%;
      
  }
  /*
  .swiper-banner::before{
      content: "";
      display: block;
      background-image: url();
      background-size: cover;
      width: 150px;
      height: 45px;
      background-position: center;
      background-repeat: no-repeat;
      background-size: contain;
      position: fixed;
      bottom: 38%;
      left: 50%;
      z-index: 1000000000000010000000000000;  
      transform: translate(-50%,-0%);
      pointer-events: none;
      animation: show-logo-2 3s cubic-bezier(0.73, 0.08, 0.11, 0.99) both;
      animation-delay: 0.7s;
  }*/
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*大圖*/
.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):before {
  background: url(https://pic03.eapple.com.tw/chicaresports/文字-1.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 25%;
  left: 9%;
  width: 100% !important;
  height: 0 !important;
  background-position: left;
  padding-bottom: calc(100% / 3* 0.9);
}

.pageIndex .swiper-slide:nth-child(1):after {
  background: url(https://pic03.eapple.com.tw/chicaresports/文字-2.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 73%;
  left: 67%;
  width: 100%;
  height: 0 !important;
  background-position: left;
  padding-bottom: calc(100% / 3* 0.2);
}

/*第二張大圖的偽元素*/

.pageIndex .swiper-slide:nth-child(2):before {
  background: url(https://pic03.eapple.com.tw/chicaresports/文字-3.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 18%;
  left: 10%;
  width: 100% !important;
  height: 0 !important;
  background-position: left;
  padding-bottom: calc(100% / 2* 0.4);
}

.pageIndex .swiper-slide:nth-child(2):after {
  background: url(https://pic03.eapple.com.tw/chicaresports/文字-4.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 66%;
  left: 11%;
  width: 100%;
  height: 0 !important;
  background-position: left;
  padding-bottom: calc(100% / 2* 0.2);
}

.pageIndex .swiper-slide.swiper-slide-active:nth-child(1):before { animation: slide-left  1s 0.3s both;}
.pageIndex .swiper-slide.swiper-slide-active:nth-child(1):after  { animation: slide-right  1s 0.7s both;}
.pageIndex .swiper-slide.swiper-slide-active:nth-child(2):before { animation: slide-top  1s 0.3s both;}
.pageIndex .swiper-slide.swiper-slide-active:nth-child(2):after  {  animation: slide-left 1s 0.7s 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(10%);  /* 一開始的位置 在Y-100(最下方)*/
            transform: translateX(10%);
            opacity:0;/*透明度0*/}
  100% {-webkit-transform: translateX(0);/* 跑到最後終止的位置 在Y-0(最上方)*/
            transform: translateX(0);
            opacity:1;/*透明度顯示*/}
}
@keyframes slide-top {
  0% {-webkit-transform: translateY(-20%);  /* 一開始的位置 在Y-100(最下方)*/
            transform: translateY(-20%);
            opacity:0;/*透明度0*/}
  100% {-webkit-transform: translateY(0);/* 跑到最後終止的位置 在Y-0(最上方)*/
            transform: translateY(0);
            opacity:1;/*透明度顯示*/}
}
/*上下浮動*/
@keyframes jump {
  0% {
      -webkit-transform: translateY(5%);
      transform: translateY(5%);
  }
  100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
  }
}
/*
@keyframes run01{
  0% {
      background-position-x: 200px;
  }
  100% {
      background-position-x: -30px;
  }
}
.pageIndex #page .swiper-slide img {
  height: auto;
  transform: scale(1.4);
  animation: banner-img 2.8s forwards;
  animation-delay: 3s;
}

@keyframes banner-img {
  0%{
      opacity: 0.5;
      transform: scale(1.2);
  }
  100%{
      opacity: 1;
      transform: scale(1);
  }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*header*/
.navigation {  display: flex;}
.header_area{position: fixed;    width: 100%; background: #f3f3f3b3; border-bottom: 1px #eeeeee solid;  box-shadow: 0px 2px 5px #8686868a;}
.header_area.sticky {  background:#f3f3f3b3; }
.pageIndex .header_area {  width: 100%; top: 0; left: 0; padding: 0;}
.pageIndex .header_area.sticky {    background:#f3f3f3b3;}
.main_header_area {  height: 82px;}
.main_header_area .container { max-width: 96%;}

/*選單漸變效果＝＝*/


/*logo*/
.header_area .nav-brand { position: relative; margin: 0; max-width: 100%; width: 280px; height: 115px; transition: .5s ease-in-out;}
.header_area.sticky .nav-brand {  transition: 1s ease-in-out;}

/*menu*/
.stellarnav > ul { 
  display: grid; 
  align-items: center; 
  grid-template-columns: repeat(7, 1fr); 
  width: 90%; 
  margin: 0 0 0 auto; 
  padding-top: 22px;
}
.stellarnav > ul > li { text-align: center;}
.stellarnav > ul > li > a, .stellarnav li.has-sub > a { 
  font-weight: 600; 
  position: relative; 
  padding: 0; 
  color: #3b3937; 
  font-size: 16px;     
  letter-spacing: 2px;     
  padding: 0px 10px; 
  transition: all 0.3s;
}
.sticky .stellarnav  > ul > li > a, .sticky .stellarnav  li.has-sub > a{color: #2b2b2b;}
.stellarnav > ul > li:hover > a, .stellarnav > ul > li.has-sub:hover > a { color: #ffffff;  transition: all 0.3s;}
.stellarnav li > a b:last-of-type {  font-weight: 600;}/*第二格名稱*/
.stellarnav > ul > li.has-sub > a { padding-right: 20px;}
.stellarnav li.has-sub > a::after { 
  content: '+';
  border-left: none;
  border-right: none;
  border-top: none;
}
.stellarnav>ul>li>a::before {
  background: #575757;
  border: 1px #fff solid;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: scale(1, 0) translate(-50%, -50%);
  border-radius: 10px;
  opacity: 0;
  z-index: -1;
  transition: all 0.3s;
}
.stellarnav>ul>li>a:hover::before {
  transform: scale(1) translate(-50%, -50%);
  opacity: 1;
  transition: all 0.5s;
}
/*下拉箭頭*/
.stellarnav li.has-sub:hover > a::after { }/*下拉箭頭*/

/*購物車查詢欄*/
.me_tp_features {display: none;}
@media screen and (max-width: 1470px) {
  .stellarnav > ul {   width: 100%;     display: block; }
}
@media screen and (max-width: 1024px) {
  .stellarnav > ul {  padding-top: 0px;}
}
@media screen and (max-width: 768px) {
  .stellarnav > ul > li::after, .stellarnav > ul > li::before { display: none;}
}

/*--下拉頁面---------------------------------------*/

/*外框*/
.stellarnav ul ul, .stellarnav ul ul ul { background: transparent; backdrop-filter: blur(10px);}
.stellarnav > ul > li.drop-left > ul { right: auto; left: 50%; transform: translateX(-50%);}
.stellarnav li.drop-left ul ul { left: 100%; right: auto;}
.stellarnav li li { border: 1px solid transparent; margin-bottom: 2px; background: #ffffffcc; box-shadow: 0 5px 20px #00000022;}

/*右拉箭頭*/
.stellarnav li li.has-sub > a::after { display: none;}

/*項目*/
.stellarnav li.has-sub > ul > li.has-sub > a, .stellarnav li.has-sub > ul > li > a { color: #575757; padding: 7px 20px 7px 5px; font-family: "微軟正黑體", sans-serif;}
.stellarnav li li > a, .stellarnav li li.has-sub > a { color:  #ffffff; font-size: 15px; font-weight: normal; padding: 7px 5px; border-left: 1px solid transparent; background: transparent; transition: all 0.3s;}
.stellarnav li li:hover > a, .stellarnav li li.has-sub:hover > a { color: #575757; padding-left: 10px; transition: all 0.3s;}
/*.stellarnav li ul:hover li > a, .stellarnav li ul li.has-sub ul:hover li > a { opacity: .5; transition: .3s ease-in-out;}*/
.stellarnav li ul:hover li:hover > a, .stellarnav li ul li.has-sub ul:hover li:hover > a { opacity: 1; color:  #ffffff; background: #575757; transition: .3s ease-in-out;}

/*--手機板選單---------------------------------------*/

/*選單*/
.stellarnav .menu-toggle span.bars span { background: #575757;}
.stellarnav .menu-toggle:after { color: #575757;}

/*展開*/
.stellarnav.mobile.left > ul { background: #ffffffbb; backdrop-filter: blur(6px);}
.stellarnav.mobile > ul > li { border-bottom: 1px solid #57575782;}
.stellarnav.mobile > ul > li > a { padding: 20px 30px; border-bottom: none; display: block;}
.stellarnav.mobile > ul > li.has-sub > a { padding: 20px 30px 20px 36px;}
.stellarnav.mobile > ul > li.has-sub > a.dd-toggle { padding: 0;}
.stellarnav.mobile > ul > li.has-sub > ul > li > a { color: #fff; padding: 20px 30px 20px 40px;}
.stellarnav.mobile > ul > li.has-sub > ul > li > a:hover { color:  #bbb;}
.stellarnav.mobile > li > a { border-bottom: none;}

/*close*/
.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu { background: #575757; color:  #ffffff;}
.stellarnav .icon-close:after, .stellarnav .icon-close:before { border-bottom: solid 3px  #ffffff;}

.stellarnav.mobile > ul > li > a.dd-toggle { top: 14px;}
.stellarnav a.dd-toggle .icon-plus {width: 0; top: -7px; left: -4px;}
.stellarnav li.open > a.dd-toggle .icon-plus { width: 0; top: -5px; left: 6px;}
.stellarnav a.dd-toggle .icon-plus:before, .stellarnav a.dd-toggle .icon-plus:after { border-bottom: 3px solid #aaa;}
.stellarnav li.open > a.dd-toggle .icon-plus:before, .stellarnav li.open > a.dd-toggle .icon-plus:after { border-bottom: solid 3px #575757;}
.stellarnav > ul > li.has-sub:hover a.dd-toggle { background: transparent;}

/*下拉*/
.stellarnav.mobile li.open { background: #57575787; padding: 0;}
.stellarnav.mobile li.open > ul > li { margin-bottom: 0; border-bottom: 1px solid #57575782;}
.stellarnav.mobile li.open li.open { padding: 0; background: #ffffff88;}
.stellarnav.mobile ul { background: transparent;}

@media screen and (max-width: 1440px) {
  .swiper-pagination { display: none;}
  .sticky.stellarnav > ul { width: 100%;}
}

@media screen and (max-width: 1024px) {
  /*header*/
  .main_header_area {    height: 136px;}
  .sticky .main_header_area {    height:122px;}
  .main_header_area .container {}
  .header_area{position: sticky;      background: #f3f3f3;}

  /*logo*/
  .header_area .nav-brand { max-width: 200px; margin: 3px 0 0; transition: .3s ease-in-out;         height: 85px;}
  .nav-brand {  height: 85px;}
  .sticky .nav-brand { height: 71px;}
  .header_area.sticky .nav-brand {    transition: .5s ease-in-out;}

  /*menu*/
  .header_area .navigation, .header_area.sticky .navigation, .navigation { padding: 0;}
  .stellarnav { padding: 0 0 0px;}
  .stellarnav ul { margin: auto;}
  .stellarnav.mobile > ul > li > a.dd-toggle, .stellarnav.mobile > ul > li.has-sub a.dd-toggle, .stellarnav.mobile > ul > li.has-sub > a { padding: 0 30px;}
  .stellarnav > ul > li > a, .stellarnav li.has-sub > a {  color: #555555;}
  .stellarnav li.has-sub > a::after { top: 49%;}/*下拉箭頭*/
}

@media screen and (max-width: 768px) {
  /*header*/
  .main_header_area {   height: 82px;}
  .sticky .main_header_area {   height: 82px;}

  /*logo*/
  .nav-header { position: static;}
  .header_area .nav-brand { }
  .header_area.sticky .nav-brand { max-width: 200px; transition: .3s ease-in-out;}

  /*menu*/
  .stellarnav ul ul, .stellarnav > ul > li:hover > ul > li:hover > ul { box-shadow: none;}
  .stellarnav li li { border: none;}
  .stellarnav > ul > li > a b:last-child { display: none;}
  .stellarnav.mobile {  top: 15px;}
  .stellarnav.mobile > ul > li > a.dd-toggle, .stellarnav.mobile > ul > li.has-sub a.dd-toggle, .stellarnav.mobile > ul > li.has-sub > a { padding: 20px 30px;}
  .stellarnav.mobile > ul > li > a.dd-toggle { top: 3px;}
  .stellarnav li.has-sub > a::after { top: 53%;}/*下拉箭頭*/
  .stellarnav li li > a, .stellarnav li li.has-sub > a, .stellarnav li li.has-sub.drop-left a { padding: 10px 30px; border-left: none;}
  .stellarnav li li:hover > a, .stellarnav li li.has-sub:hover > a { border-color: transparent;}
  .stellarnav li li { background: #ffffff88;}
}

@media screen and (max-width: 600px) {
  .stellarnav.mobile {    top: 25px;}
}
  
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*下拉*/

/* 商品下拉超過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個--結束 */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*內頁BANNER 設定*/

.banner {
  background-image: url(https://pic03.eapple.com.tw/chicaresports/banner.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 350px;
}
.banner h5 {
  color: #ffffff;
  letter-spacing: 15px;
  font-size: 33px;
  position: absolute;
  top: 28%;
}
.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;  }
}
@media screen and (max-width: 600px) {
  .banner {    height: 100px;}
  .banner h5 {    font-size: 24px;  top: 22%; }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*Footer/＝＝＝＝＝*/
.footer {  background: #ebebeb;  padding: 50px 0 0;    overflow: hidden;}
.footer_logo {    text-align: end; }
.footer_logo a img {    display: block;    width: 100%;}
.footer_logo a {
    background-size: cover;
    width: 360px;
    background-repeat: no-repeat;
    text-indent: 101%;
    overflow: hidden;
    white-space: nowrap;
    transition: all 0.3s ease-in-out;
    display: inline-block;
}

.footer_info {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 15px 12px;
    padding: 0;
    max-width: 1400px;
    width: 90%;
    margin: auto;
    padding-top: 55px;
    padding-bottom: 70px;
    position: relative;
}

.footer .center {
    width: 100%;
    max-width: 100%;
}

.footer_menu {
    align-items: left;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.footer_menu a {
    margin: 0;
    text-align: left;
    padding: 5px;
    transition: none;
    border: none;
    background: transparent;
    width: fit-content;
    transition: all 0.3s;
}

.footer_menu a:hover {
    background: transparent;
    color: #575757;
}
.footer_menu a:nth-child(1){display: none;}
.copy {
    border: none;
    padding: 15px 0;
    background-color: #575757;
    color: #ffffff;
    margin: 0;
}

.copy a {    color: #fff;    transition: all 0.3s;}
.box_link { display: none;}
/**/
.footer {    padding-top: 0;}
.footer_menu a,
.footer_info li:nth-child(1)>p,
.footer_info li:nth-child(1) a {
    transition: all 0.3s;
    font-weight: 400;
    font-style: normal;
    text-transform: none;
    font-size: 13px;
    line-height: 26px;
    letter-spacing: 0;
    color: #3f3f3f;
    padding: 0;
    letter-spacing: 0.1em;
}

.footer_info li p:before {
    position: relative;
    display: inline-block;
    width: auto;
    font-size: inherit;
    font-weight: inherit;
    margin-right: 5px;
    letter-spacing: inherit;
}

.footer_info ul {
    display: grid;
    grid-template-columns: 0.6fr 1.4fr;
    gap: 20px;
    align-items: baseline;
    width: 100%;
    max-width: 900px;
    margin: 0 0 0 auto;
    padding-top: 10px;
}

.footer_info li {    padding: 0;}
.footer_info li:nth-child(2) {    order: -1;   }
.footer_info li:nth-child(1) {   width: 100%;}
.footer_info li:nth-child(1) > p {   display: inline-block;  width: 49%;}
.footer_info li:before,
.box_link:before {
    display: block;
    margin-bottom: 10px;
    border-bottom: 1px #575757 solid;
    padding-bottom: 10px;
    width: 100%;
    text-align: left;
    font-weight: 500;
    font-style: normal;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 1px;
    color: #575757;
}

.footer_info li:nth-child(2):before {
    content: "SITEMAP";
    font-family:"Libre Baskerville", serif;
}
.footer_info li:nth-child(1):before {
    content: "INFORMATION";
    font-family:"Libre Baskerville", serif;
}

.box_link a:hover{    color: #ffffff8f !important;}


@media screen and (max-width: 1200px) {
    .footer_info {     grid-template-columns: 1fr;   }
    .footer_logo {       max-width: 400px;       width: 70%;       margin-left: 0;       border-right: none;   }
    .footer_info ul{max-width: 100%;}
}
@media screen and (max-width: 1024px) {
    .footer_info ul {   grid-template-columns: 1fr 1fr;}
    .footer_info li:nth-child(1) {   width: 100%;}
    .footer_info li:nth-child(1) > p {      width: 100%;  }
    .footer_logo {     max-width: 100%;      width: 100%; margin:0;     text-align: center;}
}
@media screen and (max-width: 768px) {
    .footer_info ul {     grid-template-columns: 1fr;  }
    .footer_info ul {        max-width: 100%;    }
    .footer_info li:nth-child(2) {        border-right: none;    }
    .footer_info li:nth-child(1) {   padding-top: 20px;   }
    .footer_info {   padding-top: 0px;     }
    .footer_logo a {   width: 250px;}
}

@media screen and (max-width: 476px) {

}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*下拉編輯頁*/
.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: #575757;
  font-weight: 600;
  letter-spacing: 3px;
}
.i_news_b a {  border-radius: 20px;}
.i_news_b a:hover {    background: #575757;}
.news_list ul li { border:none;   border-bottom: none;}
.news_list ul li:hover { }
.news_list ul li a{
  border: 1px #575757 solid;
  margin-bottom: 8px;
  border-radius: 50px;
  box-shadow: 0px 2px 5px #b1b1b161;
  background: #ffffff;
}
.news_list ul li a:hover {   background: #575757;}
.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: #575757; 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: #575757;  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 #575757 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 #575757 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: 160px 5% 80px;
  margin: auto;
  background: #fff;
  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 {font-size: 0;}
.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{
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  margin: 50px auto;}
.module_i_news li{
  width: 25%;
  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: #575757d9;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;}
.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: #575757 !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 {width: 33.333%;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 {width: 50%;margin: 0 0 30px 0;border-bottom: 0;}
.module_i_news li a:before {font-size: 15px;height: 120px;width: 120px;bottom: 55%;}
}
@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;}
/*大分類*/
.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: #575757;
  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: #575757 !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;}
.blog_page h4.blog_category_title, .blog_in_page h4.blog_category_title {font-weight: 500;color: #575757;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: #575757 !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: #3e3a39;}
.blog_search input[type=search] {border-radius: 5px;letter-spacing: 1px;padding: 10px 35px 10px 20px;}
.blog_box_edit * {line-height: 180%;}
.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: #575757;border: 1px solid #575757;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: #575757;}

/*相關推薦*/
.news_related { background: #f3efe9;}
.news_related h6 span:before {  color: #575757;}
.lastPage {  background: #575757;}

@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%;}
.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 ;}
@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; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 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 #575757;*/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;}
.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;}
.product-layer-two li li a{ padding:5px 10px;}
.product-layer-two li li:hover > a { background:#fff; color:#57575782;}
.product-layer-two > li { width:100%; max-width:100%; padding:0; text-align:left; border-bottom:1px dotted #575757; 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: #e5d4c3;}

.products-list .price b { color: #7d7b76;}
.products-list .more {  border: 1px solid #575757;  color: #575757;  }
.products-list .item a:hover .more { background: #575757;}

.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:#57575782;}

.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;}

/*商品內頁*/
.sidebarBtn {  border: 1px #a3a38e solid;}
.inquiry_a1 {  background: #ada17e;}
.inquiry_a2 {  background: #727760;}

/*相關推薦*/
.prod_related { background: #f3efe9;}
.prod_related h6 span:before {  color: #575757;}
@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_contact_box{background-image: url(https://pic03.eapple.com.tw/chicaresports/bg.jpg);  background-size: cover;}
.contact_content .information_left {  display: none;}
.pageIndex .contact_content .information_right {     
  padding: 3% 3%;
  border: 2px #575757 solid;
  border-radius: 20px;
  background: #ffffffad;
}
.pageIndex .contact_form li:has(input[type=checkbox]) .form__insert, .pageIndex .contact_form li:has(input[type=radio]) .form__insert { grid-template-columns: repeat(auto-fit, minmax(13px, 13px) minmax(150px, 1fr));}
/*聯絡我們*/
.contact_form li input.noborder {   border: unset; background: unset;}
.contact_form li textarea.noborder {    border: unset; background: unset;}
.contact_form li {
    display: block;
    border-bottom: 1px solid #C2BCB4;
    padding-bottom: 10px;
    width: 48%;
}
.contact_form li .form__label {   color: #393b38; text-align: left; margin-bottom: 5px;}
.contact_form li.last cite {    background:#575757;}
.contact_form li.last blockquote, .contact_form li.last cite {    border: 1px#575757 solid;}
.contact_content .information_right { width: 100%;     padding-left: 0px;     padding: 0 24%;}
.contact_form {  grid-gap: 15px; display: flex;      flex-wrap: wrap;}
.contact_form li.last {  justify-content: center;}
.contact_editbox {   padding: 0px;}
.blank_letter {  color: #575757;}
@media screen and (max-width: 1440px) {
  .contact_form li {    width: 47%;}
}
@media screen and (max-width: 1024px) {
    .contact_content .information_right {   width: 100%;}
}
@media screen and (max-width: 825px) {
    .list_before.info li {    width: 90%; }
}
@media screen and (max-width: 768px) {
  .pageIndex .contact_form li:has(input[type=checkbox]) .form__insert, .pageIndex .contact_form li:has(input[type=radio]) .form__insert {   grid-template-columns: repeat(auto-fit, minmax(13px, 13px) minmax(100px, 1fr));  }
    .contact_page .contact_content {   padding: 30px 15px;}
    .contact_content .information_right {padding-left: 0px; padding: 0px; }
    .contact_form li .form__label {     width: 100%;    }
    .contact_form li .form__insert {  width: 90%;}

}
@media screen and (max-width: 600px) {
    .contact_form li .form__label {   text-align: left;  margin-bottom: 5px;}
    .contact_form {     display: grid;}
    .contact_form li {      width: 100%;  }
    .contact_form li .form__label {   background: rgb(218 189 140 / 15%);}
  }

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu {display: none; }
.footer.with_shopping_mode { padding:30px 0 10px; }
#to_top { bottom:60px;}
}

@media screen and (max-width: 600px) { 
}




