@charset "utf-8";

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton+SC&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Gentium+Book+Plus:ital,wght@0,400;0,700;1,400;1,700&family=Gentium+Plus:ital,wght@0,400;0,700;1,400;1,700&display=swap');

body { font-family: "Noto Sans TC", sans-serif;}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*反白顏色*/
::-moz-selection { background-color:#f3f3f3; color: #c7cfdf;}
::selection { background-color:#f3f3f3; color: #c7cfdf;}

/*滾輪顏色*/
::-webkit-scrollbar {width: 8px;}
::-webkit-scrollbar-track {box-shadow: inset 0 0 8px #e1cdcf;}
::-webkit-scrollbar-thumb {background-color: #e1cdcf;}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
.linksBtn {display: none;}

.edit_part {
    padding: 0;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*大圖*/
.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/happy2balloon/banner_ac1.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: 19%;
    left: 45%;
    width: 100% !important;
    height: 0 !important;
    background-position: left;
    padding-bottom: calc(100% / 2 * 0.7);
}

.pageIndex .swiper-slide:nth-child(1):after {
    background: url(https://pic03.eapple.com.tw/happy2balloon/banner_ac2.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: 42%;
    left: 19%;
    width: 100%;
    height: 0 !important;
    background-position: left;
    padding-bottom: calc(100% / 2 * 0.18);
}


/*第二張大圖的偽元素*/

.pageIndex .swiper-slide:nth-child(2):before {
    background: url(https://pic03.eapple.com.tw/happy2balloon/banner_ac3.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: 48%;
    left: 76%;
    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/happy2balloon/banner_ac4.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: 40%;
    left: 59%;
    width: 100%;
    height: 0 !important;
    background-position: left;
    padding-bottom: calc(100% / 2 * 0.20);
}

.pageIndex .swiper-slide.swiper-slide-active:nth-child(1):before {  animation: jump 1.1s infinite linear alternate;}
.pageIndex .swiper-slide.swiper-slide-active:nth-child(2):before {  animation: jump 1.1s infinite linear alternate;}
.pageIndex .swiper-slide.swiper-slide-active:nth-child(1):after  { animation: slide-top  2s 0.3s both;}
.pageIndex .swiper-slide.swiper-slide-active:nth-child(2):after  { animation: slide-left  2s 0.3s both;}

/*文字出現特效*/
@keyframes slide-left {
0% {-webkit-transform: translateX(-5%);  /* 一開始的位置 在X-100(最下方)*/
          transform: translateX(-5%);
          opacity:0;/*透明度0*/}
100% {-webkit-transform: translateX(0);/* 跑到最後終止的位置 在X-0(最上方)*/
          transform: translateX(0);
          opacity:1;/*透明度顯示*/}
}
@keyframes slide-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);
  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);
  }
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/* 頁面的麵包屑 首頁/頁面名稱/ */
.path {display: none;}
/*首頁+聯絡按鈕*/
.animated-arrow { background: transparent; color: #9f9aa0; border-bottom: 1px #9f9aa0 solid;}
.swiper-pagination { display: none; left: 50%; margin-left: 0; transform: translate(-50%, 0);}


/*預設解除背景輪播*/
#content_main { margin: 0;background:#ffffff;}
.pageIndex .bannerindex { position: relative; height: auto;}
.pageIndex .swiper-banner { position: static; margin: 0; height: auto;}
.pageIndex .swiper-slide img { height: auto; animation: none !important; transform: scale(1.011);}
@media screen and (max-width: 768px) {
.pageIndex .bannerindex {position: relative; height: 0;}
.pageIndex .swiper-banner {position: relative; margin: 0;height: auto;}
.pageIndex .bannerindex {padding-bottom: 50vw; background-size: cover; margin-top: 90px;}
.pageIndex .swiper-banner .swiper-slide img { max-width: 100%;  height: auto; width: 100%;}
.pageIndex .swiper-wrapper .swiper-slide {   display: flex; justify-content: center;}
}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*選單設定*/
.nav-menu {margin: 0;}

.header_area .main_header_area .container {  max-width:85%;  transition: all 0.3s;}
.header_area.sticky .main_header_area .container { max-width: 80%; transition: all 0.3s;}
.nav-menu>li:not(.tp_links) { padding-right: 15px;}
.tp_links {
    display: none;
}
.nav-menu>li:hover>a,
.nav-menu>li.active>a,
.nav-menu>li.focus>a {color: #2B3047;}
.me_tp_features {
    width: 100%;
    text-align: right;
    margin-bottom: 8px;
}

.shop_search_btn {
    background: #9f9aa0;
    color: #fff;
}
.nav-dropdown>li:hover>a,
.nav-dropdown>li.focus>a { color: #2B3047;}

.nav-dropdown>li { text-align: center;}

.nav-header { position: absolute; top: 50%; z-index: 98999999; transform: translate(0, -50%); transition: all 0.5s;}
.sticky .nav-header { top: 70px; transition: all 0.5s;}
.nav-header::before {
    content: "";
    display: block;
    width: 100%;
    height: 150px;
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f8e6e8;
    z-index: -1;
    border-radius: 0;
    opacity: 1;
    border-radius: 0 0 20px 20px;
    transition: all 0.3s;
}

.pageIndex .nav-header::before { top: -100px; opacity: 1; transition: all 0.3s; transition-delay: 0.5s;}
.sticky .nav-header::before { top: 50%;  opacity: 1;  transition: all 0.3s;  transition-delay: 0.5s;}

.nav-header::after {}
.nav-header:hover:after { animation-play-state: paused; transition: all 0.3s;}
.nav-header:hover:before { transition: all 0.3s;}

@keyframes rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg);}
    100% { transform: translate(-50%, -50%) rotate(360deg);}
}


/*icon-----------------------------------------------------------------------*/
.stellarnav li a:before {
    content: "";
    display: block;
    position: relative;
    width: 50px;
    height: 50px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin: 0 auto;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.stellarnav li a:hover:before {
    transform: scale(1.1) rotate(10deg);
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}



.stellarnav li:nth-of-type(1) a:before {
    background: url(https://pic03.eapple.com.tw/happy2balloon/hdicon_01.png) no-repeat center;
    background-size: contain;
}
.stellarnav li:nth-of-type(2) a:before {
    background: url(https://pic03.eapple.com.tw/happy2balloon/hdicon_02.png) no-repeat center;
    background-size: contain;
}
.stellarnav li:nth-of-type(3) a:before {
    background: url(https://pic03.eapple.com.tw/happy2balloon/hdicon_03.png) no-repeat center;
    background-size: contain;
}
.stellarnav li:nth-of-type(4) a:before {
    background: url(https://pic03.eapple.com.tw/happy2balloon/hdicon_04.png) no-repeat center;
    background-size: contain;
}
.stellarnav li:nth-of-type(5) a:before {
    background: url(https://pic03.eapple.com.tw/happy2balloon/hdicon_05.png) no-repeat center;
    background-size: contain;
}
.stellarnav li:nth-of-type(6) a:before {
    background: url(https://pic03.eapple.com.tw/happy2balloon/hdicon_06.png) no-repeat center;
    background-size: contain;
}


@keyframes upDown {
    0% {margin-top: -10px; margin-bottom: 10px;    }
    100% {margin-top: 0; margin-bottom: 0;    }
}

@-webkit-keyframes upDown {
    0% {margin-top: -10px; margin-bottom: 10px;    }
    100% {margin-top: 0; margin-bottom: 0;    }
}

/*icon-----------------------------------------------------------------------*/



.header_area { position: fixed; z-index: 9999; width: 100%; padding: 0 6%; top: 0;  background: transparent; transition: all 0.7s;}
.header_area.sticky { top: 0px;  background: transparent;  transition: all 0.7s; }
.main_header_area { position: relative;  background: #ffffff; border-radius: 0px 0px 50px 50px;}
.header_area .main_header_area::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    position: absolute;
    top: -160px;
    left: 0;
   box-shadow: 0px 0px 0 rgb(0 0 0 / 10%);
    transition: all 0.85s cubic-bezier(0.68, 0, 0.265, 1.55);
}

.header_area.sticky .main_header_area::before { height: 100%; top: 0; border-radius: 0px 0px 50px 50px; transition: all 0.85s cubic-bezier(0.68, 0.1, 0.265, 1);}
header.header_area.sticky .stellarnav li a:before {  content: "";  display: block;  position: relative;  width: 35px;  height: 35px;}
.stellarnav li.has-sub>a:after { display: none;}

.stellarnav>ul>li>a { padding: 0px 15px;  color: #fff;  text-transform: uppercase;  position: relative; display: inline-block; font-size: 16px; line-height: 50px;  height: 50px;  margin: 0 15px;  cursor: pointer;    text-align: center; transition: all 0.5s;}

.stellarnav>ul>li>a { color: #666666;}
.sticky .stellarnav>ul>li>a { color: #666666;  transition: all 0.5s;}


.stellarnav>ul>li>a:hover {  color: #7f99aa;  transition: all 0.5s;}
.stellarnav > ul > li > a:hover b { transform: none; -webkit-transform: none; -moz-transform: none;}
.stellarnav > ul > li > a { line-height: 90px;  height: 90px;}
.stellarnav>ul>li>a b { font-weight: 500;  transition: all 0.5s;}
.stellarnav>ul>li>a b:nth-of-type(2) { color: #7f99aa;  line-height: 0;  height: 0;  font-size: 10px; transition: all 0.5s; }
.stellarnav > ul > li > a b { line-height: 35px; height: 35px; }


.header_area .navigation {
    display: flex;
    width: 100%;
    position: relative;
    padding: 20px 0;
    opacity: 1;
    transition: all 0.3s;
    justify-content: flex-end;
    flex-direction: column;
}
.header_area.sticky .navigation {    padding: 10px 0 0;    opacity: 1;    transition: all 0.5s;    transition-delay: 0.5s;}



/*下拉*/
.nav-dropdown>li>a {  background: #f7f5f5;    transition: 0.2s;    letter-spacing: 1.5px;    width: 100%;}
.nav-dropdown>li>a:hover { transition: 0.2s; background-color: #2B3047;color: #fff}

.nav-dropdown>li:hover>a .submenu-indicator-chevron,
.nav-dropdown>.focus>a .submenu-indicator-chevron { border-color: transparent #fff #fff transparent;}

.stellarnav li li a { padding: 10px 15px;  display: block;  color: #555555; background-color: transparent;  transition: all 0.3s;}
.stellarnav li li a:hover {
    color: #ffffff;
    background-color: #d4a0a6;
    transition: all 0.3s;
}


.header_area .stellarnav li li a:before { display: none;}
.header_area.sticky .stellarnav li li a:before { display: none;}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*HEADER_LOGO設定*/
.header_area .nav-brand {  display: inline-block;  width: 100px;  transition: all 0.5s;}
.header_area.sticky .nav-brand { width: 110px;  transition: all 0.5s;}
.header_area .nav-brand img { width: 100%;  max-width: 100%; transition: all 0.3s;}
.header_area.sticky .nav-brand img { transition: all 0.3s;}
.footer_logo img {width: 100%;}
.footer_logo { width: 200px;}

@media screen and (max-width: 1700px) {
.header_area {padding: 0 0;}
.header_area.sticky .main_header_area .container { max-width: 90%;}
.header_area .main_header_area .container { max-width: 90%;}
.stellarnav>ul>li>a {  padding: 0px 5px;}
.sticky .stellarnav>ul>li>a { padding: 0px 10px;}
}
@media screen and (max-width: 1500px) {
.header_area.sticky .main_header_area .container { max-width: 95%;}
.header_area .main_header_area .container { max-width: 90%;}
.sticky .stellarnav>ul>li>a { padding: 0px 5px;}
}
@media screen and (max-width: 1440px) {
.main_header_area .container { max-width: 90%;}
.header_area.sticky .main_header_area .container { max-width: 90%;}
.stellarnav>ul>li>a {padding: 0px 10px;}
}
@media screen and (max-width: 1300px) {
.header_area.sticky .main_header_area .container {max-width: 95%;}
.header_area .main_header_area::before {content: "";  display: block; width: 100%;  height: 100%; position: absolute; top: -110px; left: 0;   transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
.stellarnav ul { text-align: right;}
.stellarnav>ul>li.has-sub>a { padding-right: 0;}
.stellarnav>ul>li>a {padding: 0;margin: 0 10px;}
.nav-header { max-width: 150px;}
}
@media screen and (max-width: 1024px) {
.header_area.sticky .main_header_area .container { max-width: 100%;}
.header_area.sticky .navigation { padding: 0 0 ;}
.header_area .navigation { padding: 15px 0;}
.header_area .main_header_area::before {content: "";  display: block; width: 100%;  height: 100%; position: absolute; top: -110px; left: 0;   transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
.stellarnav ul { text-align: right;}
.stellarnav>ul>li.has-sub>a { padding-right: 0;}
.stellarnav>ul>li>a {padding: 0;}
.header_area .navigation { padding: 30px 0; }
.navigation { display: flex; flex-direction: column; justify-content: flex-start; align-items: center;  align-content: center;}
.nav-header { position: relative;top: 0;  transform: translate(0, 0);}

.stellarnav ul {text-align: center;}
.pageIndex .header_area .main_header_area::before { top: -110px;}
.pageIndex .header_area.sticky .main_header_area::before {top: 0;}
.sticky .nav-header { top: -50px;}
.pageIndex .nav-header::before { opacity: 0; top: 40px;}
.header_area.sticky .nav-brand { width: 0;}
.sticky .nav-header::before { opacity: 0;}
}

@media screen and (max-width: 980px) {
.header_area .main_header_area .container { max-width: 100%;}
.header_area .navigation { padding: 20px 0; }
.sticky .stellarnav>ul>li>a { padding: 0px 0px;}
}

@media screen and (max-width: 768px) {
.header_area .main_header_area .container { max-width: 90%;}
.header_area.sticky .main_header_area .container { max-width: 90%;}


.nav-header { position: absolute; top: 10px; left: 50%; z-index: 0; transform: translate(-50%, 0%); transition: all 0.5s;}
.nav-brand-m { display: block; text-align: left;  padding: 15px 10px; }
.nav-brand-m img {  max-width: 200px; width: 100%;}
.stellarnav.mobile {top: 9px;}
.stellarnav .menu-toggle span.bars span { background: #fff; transition: all 0.3s; }
.stellarnav .menu-toggle:after { color: #fff; transition: all 0.3s;}
.sticky .stellarnav .menu-toggle span.bars span { background: #060c13;  transition: all 0.3s;}
.sticky .stellarnav .menu-toggle:after {color: #060c13; transition: all 0.3s;}
.stellarnav.mobile>ul { border-top: 0;}


.stellarnav.mobile.right .close-menu,
.stellarnav.mobile.left .close-menu {  display: inline-block;  text-align: right;  font-size: 12px;  background: #bbc8d7;  color: #fff;}
.stellarnav .icon-close:after { border-bottom: solid 3px #fff; }
.stellarnav .icon-close:before { border-bottom: solid 3px #fff;}
.stellarnav.mobile>ul>li>a { padding: 25px 43px 25px 10px;}
.stellarnav.mobile>ul>li>a.dd-toggle { padding: 0;  position: absolute;  top: 20px;}
.stellarnav.mobile.left>ul { left: 0;  padding: 0;  border: 0; max-width: 320px;}
.stellarnav.mobile li.open { background: transparent;  padding: 0px; }
.stellarnav li li:hover { background: inherit; border-radius: 0;  color: inherit;  transform: none;  box-shadow: none;  z-index: 100000; transition: all 0.3s;}
.stellarnav li li:hover>a { color: inherit;  transition: all 0.3s;}
.stellarnav.mobile li.open li.open { background: transparent; padding: 0px;}
.stellarnav.mobile li li.has-sub a { padding: 15px 43px 15px 10px;}
.stellarnav.mobile li.open li.open { background: transparent; padding: 0;}
.stellarnav.mobile li a { border-bottom: 0;}
.stellarnav li li a { padding: 15px 15px; color: #666;}


.header_area .navigation { padding: 40px 0;}
.sticky .nav-header::before { opacity: 1;}
.stellarnav .menu-toggle:after { color: #7f99aa; }
.stellarnav .menu-toggle span.bars span { background: #7f99aa; }
.pageIndex .nav-header::before { opacity: 1; }

/*menu*/

.stellarnav li a:before { display: none;}
.stellarnav li a:hover:before { display: none;}
header.header_area.sticky .stellarnav li a:before { display: none;}
header.header_area.sticky .stellarnav li a:hover:before { display: none;}
.stellarnav>ul>li>a b:nth-of-type(2){ display: none;}
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/*Banner/＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*＝＝＝＝＝最外層banner區塊的before＝＝＝＝＝ */
@keyframes oxxo {
    0% { transform: scale(1.1);}
    100% { transform: scale(1);}
   }
   
   /*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
   .banner {
       background: repeat center center #f9f9f900;
       background-size: 100%;
       background-position: bottom;
       background-repeat: no-repeat;
       width: 100%;
       max-width: 2000px;
       height: 100vw;
       max-height: 700px;
       min-height: 300px;
       margin: 0% auto;
       border-radius: 0vw 0vw 0vw 0vw;
       overflow: hidden;
       position: relative;
       z-index: 1;
   }
   .banner h5 {
       color: #796f70;
       background: transparent;
       height: auto;
       z-index: 5;
       position: relative;
       right: 0;
       top: 100px;
       font-size: 42px;
       letter-spacing: 2px;
       font-weight: 900;
   }
   .banner h5:after {
       content: "";
       width: 100%;
       height: 100%;
       display: block;
       z-index: 2;
       -webkit-transform-origin: bottom;
       transform-origin: bottom;
       font-size: 16px;
       -webkit-animation: imgSlideUpAnimation 1s 0.1s ease-in-out forwards;
       animation: imgSlideUpAnimation 1s 0.1s ease-in-out forwards;
       opacity: 0;
       letter-spacing: 4px;
       margin-top: 15px;
   }
   
   .banner::before{content: ""; width: 100%; height: 100%; position: absolute; top: 0; left: 0; z-index: -1; background-size:cover; background-position: center; 
                   background-image:url(https://pic03.eapple.com.tw/happy2balloon/bn_01.jpg);}
   
   .banner.banA::before{content:""; width:100%; height:100%; background-image:url(https://pic03.eapple.com.tw/happy2balloon/bn_01.jpg);}
   .banner.banA h5:after { content: "NEWS";letter-spacing: 2px;   margin-top: 6px;  color: #d4a0a6;}
   
   .banner.banC::before{content:""; width:100%; height:100%; background-image:url(https://pic03.eapple.com.tw/happy2balloon/bn_01.jpg);}
   .banner.banC h5:after { content: "CONTACT";letter-spacing: 2px;   margin-top: 6px;  color: #d4a0a6;}
   
   .banner.banD::before{content:""; width:100%; height:100%; background-image:url(https://pic03.eapple.com.tw/happy2balloon/bn_01.jpg);}
   .banner.banE::before{content:""; width:100%; height:100%; background-image:url(https://pic03.eapple.com.tw/happy2balloon/bn_01.jpg);}
   .banner.banE h5:after { content: "";letter-spacing: 2px;   margin-top: 6px;  color: #d4a0a6;}
   
   .banner.banF::before{content:""; width:100%; height:100%; background-image:url(https://pic03.eapple.com.tw/happy2balloon/bn_01.jpg);}
   .banner.banF h5:after { content: "PRODUCTS";letter-spacing: 2px;   margin-top: 6px;  color: #d4a0a6;}
   
   body.blog_page.article_a .banner.banblog:before{content:""; width:100%; height:100%; background-image: url(https://pic03.eapple.com.tw/happy2balloon/bn_01.jpg);}
   body.blog_page.article_a .banner.banblog h5:after { content: "PHOTO";letter-spacing: 2px;   margin-top: 6px;  color: #d4a0a6;}
   
   body.blog_page.article_b .banner.banblog:before{content:""; width:100%; height:100%; background-image: url(https://pic03.eapple.com.tw/happy2balloon/bn_01.jpg);}
   body.blog_page.article_b .banner.banblog h5:after { content: "NEWS";letter-spacing: 2px;   margin-top: 6px;  color: #d4a0a6;}
   

   
   @-webkit-keyframes imgSlideUpAnimation {
       0% {    opacity: 0; -webkit-transform: translateY(30px); transform: translateY(30px); }
       100% {  opacity: 1;  -webkit-transform: translateY(0); transform: translateY(0); }
   }
   @keyframes imgSlideUpAnimation {
       0% {    opacity: 0;  -webkit-transform: translateY(30px); transform: translateY(30px); }
       100% {  opacity: 1;  -webkit-transform: translateY(0); transform: translateY(0); }
   }
   
   @media screen and (max-width: 1024px) {
   .banner { padding: 200px 0 60px;}
   .banner h5 { top: 70px;}
   }
   @media screen and (max-width: 768px) {
   .banner { padding: 130px 0 40px;}
   .banner h5 { font-size: 32px; top: 70px;}
   .banner h5:after { font-size: 16px;margin-top: 0px; }
   }
   @media screen and (max-width: 480px) {
   .banner { height: 60vw;  max-height: 500px;  min-height: 350px; padding: 130px 0 40px;}
   .banner h5 { font-size: 32px; top: 40px;}
   .banner h5:after { margin-top: 10px; font-size: 10px;  margin-top: 10px; letter-spacing: 2px; }
   }
   /*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*首頁文章*/
.pageIndex .module_i_news section {
    max-width: 1600px;
    margin: 0 auto;
}

/*文章設定*/
/*文章管理/＝＝＝＝＝*/
.blog_page .main_part{ max-width: 1300px;padding: 0 20px 50px;}
.blog_in_page .main_part{ max-width: 1300px;padding: 0 20px 50px;}
h4.blog_category_title{font-size: 28px; color:#333333; border-bottom: 1px #ffffff solid;}
h4.blog_category_title span{font-size: 24px;}
h5.blog_le_t{text-align: left; }
h5.blog_le_t em {
    font-weight: 700;
    color: #505050;
    font-family: 'Noto Sans TC';
    font-size: 22px;
}
h5.blog_le_t span { display: none;}
.blog_search input[type=search] { border-radius: 15px;}

/*文章管理/外層＝＝*/
.module_i_news {    padding: 100px 20px;}
.module_i_news ul, .blog_subbox {    display: grid;    gap: 0;}
.module_i_news li, .subbox_item {
    width: 100%;
    position: relative;
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition-property: background-color, color;
    transition-property: background-color, color;
    -webkit-transition-duration: .4s;
    transition-duration: .4s;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
	border-radius: 30px;
}
.i_blog_le img, .blog_list_le img{ opacity: 1; border-radius: 20px;}
.subbox_item a:hover img { opacity: 1;}
.subbox_item{margin-bottom: 0;}
.module_i_news li:hover, .subbox_item:hover {
    background-color: #fff6f7;
    transition: all 0.3s ease-in-out;
}
.module_i_news li:hover:before, .subbox_item:hover:before { opacity: 0;}
.module_i_news li:hover::after, .subbox_item:hover::after { opacity: 0;}

.module_i_news li:before, .subbox_item:before, .module_i_news li:after, .subbox_item:after {
    position: absolute;
    width: 1px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 86.04%;
    background-color: rgb(204 204 204 / 30%);
    -webkit-transition: opacity .4s linear;
    transition: opacity .4s linear;
    content: "";
}
.module_i_news li:before, .subbox_item:before {left: 0;}
.module_i_news li:after, .subbox_item:after  {    right: 0;}

.module_i_news .title_i_box h6 {
    font-size: 17px;
    color: #a5b5a3;
    font-weight: normal;
}
.module_i_news .title_i_box h4 {
    font-size: 36px;
    color: #24221F;
    font-weight: 600;
    letter-spacing: 3px;
}
.i_blog_ri h5, .blog_list_ri h5 {
    color: #333;
    padding-top: 7px;
    padding-bottom: 7px;
}
.blog_list_ri h5 {
    -webkit-line-clamp: 2;
    height: 64px;
}
.i_blog_ri p, .blog_list_ri p {
    color: #24231f;
    font-size: 14px;
    line-height: 190%;
    min-height: 60px;
    -webkit-line-clamp: 2;
}
.module_i_news li a, .subbox_item a {
    padding: 5px;
    padding: 10% 10%;
}
.subbox_item a {  grid-template-columns: unset;grid-gap: 10px;}
.module_i_news li a:after , .subbox_item a:after{pointer-events:none; }
.module_i_news li a:before, .subbox_item a:before { display: none;}
.module_i_news li a:after, .subbox_item a:after {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #cccccc;
    -webkit-transition: opacity .4s linear;
    transition: opacity .4s linear;
    content: "";
    opacity:0;
    border: none;
    top: 100%;
}
.subbox_item a:hover:before, .subbox_item a:hover:after {
    opacity: 0;
    transition: all .5s;
}

.i_blog_le, .i_blog_ri , .blog_list_le , .blog_list_ri {width: 100%;}
.blog_list_ri{ padding-top: 15px;}
.i_blog_le , .blog_list_le{position: relative;padding-bottom: 100%;height: 0;}/*文章縮圖長寬比例，100% →100:100 = 1:1 正方形 */

.i_blog_le img , .blog_list_le img{
	display:block;
    max-width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.module_i_news li a:hover h5, .subbox_item a:hover h5 {color: #565656;}
.module_i_news li a:hover:before, .subbox_item a:hover:before {color: #fff;}
.module_i_news li a:hover em, .subbox_item a:hover em {color: #777;}
.module_i_news li a:hover  p, .subbox_item a:hover p {color: #565656;}

/*側邊*/
.blog_le{ margin-top: 0;}

.blog_le .accordion { border: none; border-radius: 0px;}
.blog_le .accordion > li{transition:all 0.3s;}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {background:#f6f6f6 !important;}
.blog_le .accordion > li:hover .link a, .blog_le .accordion > li.on_this_category .link a {  color: #565656 !important;}
.accordion li .link a { font-weight: 500; font-size: 18px; color: #565656;}
.submenu a:hover {background: rgb(245 218 99 / 50%);}
/*首*/
.module_i_news ul { width: 100%;  grid-template-columns: 1fr 1fr 1fr;  max-width: 1600px;}
/*功*/
.blog_subbox{grid-template-columns:1fr 1fr 1fr;}
.blog_subbox:before{content:none;}


/*文章管理/內層＝＝*/
.articel_mainPic {  display: none;}
.blog_back a.article_btn_back { background: #d4a0a6;}
.blog_back a.article_btn_prev, .blog_back a.article_btn_next {  background: #d4a0a6; color: #ffffff;}

/* 滑入進場效果 */
.blog_list_le:before {
    content: 'MORE';
    font-size: 0.8em;
    color: #ccc;
    position: absolute;
    top: 0;
    right: 0;
    background: #d4a0a6;
    color: #FFF;
	font-family: "Cinzel", serif;
    text-align: center;
    line-height: 35px;
    padding: 0 10px;
    -moz-transform: translate(50px, -40px);
    -ms-transform: translate(50px, -40px);
    -webkit-transform: translate(50px, -40px);
    transform: translate(50px, -40px);
    -moz-transition: -moz-transform 0.6s;
    -o-transition: -o-transform 0.6s;
    -webkit-transition: -webkit-transform 0.6s;
    transition: transform 0.6s;
    position: absolute;
    z-index: 1;
    opacity: 0;
	border-radius: 0 0 0 20px;
}
.subbox_item:hover .blog_list_le:before {
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
}

/*相關推薦*/
.news_related { background:#fcfcfc;}
.news_related h6 span:before { color: #333333;}
@media screen and (max-width:1024px) {
.blog_subbox{ grid-template-columns:1fr 1fr; }
}
@media screen and (max-width:450px) {
.blog_subbox{ grid-template-columns:1fr; }
.module_i_news li a, .subbox_item a {  padding: 5% 8%;}
.blog_list_ri h5 { -webkit-line-clamp: 2;  height: 60px;}
}




/*購物車*/
.product_page .main_part {max-width: 1500px;}
.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;min-height: 30vw;}
.product_page .products-list,
.product-wrapper {width: calc(100% - 270px); }
ul.page {width: 100%; }

.product-layer-two li ul {position: static;margin-top: 5px;width: 100%;margin-left: 0;}
.product-layer-two li:hover ul {border: none !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: #7f99aa;}
.product-layer-two>li { width: 100%; max-width: 100%; padding: 0; text-align: left; }
.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: #7f99aa;    }

.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;}

/*購物車選單*/
.product-layer-two li a {background: transparent;border: none;color: #333333;padding: 10px 15px;border-bottom: 1px solid #f7e6e8;    transition: ease .4s;}
.product-layer-two li a:hover {
    background: #bdc8d7;
    color: #ffffff;
}
.product-layer-two li.active a {border: none; background: #d4a0a6; color: #333333; font-weight: 500;}
.product-layer-two li i {color: #7f99aa;}
.product-layer-two li.active li a {  font-weight: normal;  color: #333; background: transparent;}
.product-layer-two li li>a:before{display: none;}
.products-list .pic {  border-radius: 3px;    transition: all .5s;}
.products-list .pic img{  transition: all .4s 100ms cubic-bezier(.42,0,.58,1); }
.products-list .pic:hover img{ transform: scale(1.1); }

/*顏色*/
.products-list .more { border: 1px solid #d4a0a6; color: #333333;  border-radius: 3px;}
.products-list .item a:hover .more {
    color: #ffffff;
    background: #a5b5a3;
}
.products-list .price b {color: #d4a0a6;    }
.products-list .price .sp_price {color: #7f99aa;    }

/*購物車/內層＝＝*/
.product_info_page .main_part {   width: 90%;    }
.pd_tabTitle li.activeTab a {color: #333333;    }
.pd_tabTitle li.activeTab::after { height: 0px; background: #999999;}

/*按鈕顏色*/
.inquiry_a1 {background: #d4a0a6;    }
.inquiry_a2 {background: #a5b5a3;    }
.inquiry_a3 {background: #bdc8d7;    }

.lastaction {color: #bdc8d7;background-color: #f2f2f2;}
.nextaction {background-color: #bdc8d7;    }
.lastPage {background: #bdc8d7;    }

/*商品側邊規格*/
.sidebarBtn {background: transparent;    }
.product_info li .txt_box { color: #333333; width: 100%;}
.sidebarBtn .sp_price {color: #d4a0a6;    }
.mobile_product_name {font-size: 24px;    }

/*相關推薦*/
.prod_related {  padding: 60px 15px; background: #fcfcfc;}
.prod_related h6 span:before {color: #6d7980; font-size: 24px; color: #333333; font-weight: 900;}

/*購物車清單*/
body.car_page.bodyDesktop .show_content {  background: #fff; padding: 30px 20px; box-shadow: 1px 2px 15px #00000024;}
.rewrite_simple {background: #a5b5a3 url(../images/simple_left.png) 10% center no-repeat;}
.send_simple { background: #bdc8d7 url(../images/simple_right.png) 88% center no-repeat;}

@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;}
}


/*關於我們*/

.contact_le_map a {
    display: block;
    background: #bec8d6;
    text-align: center;
    padding: 10px;
    color: #fff;
}
.contact_form li.last cite {
    background: #bec8d6;
    color: #fff;
}
.contact_form li.last blockquote, .contact_form li.last cite {
    display: block;
    vertical-align: top;
    font-style: normal;
    padding: 7px;
    text-align: center;
    border: 1px #bec8d6 solid;
    width: 150px;
    max-width: calc(50% - 10px);
}

.contact_content .information_left {
    width: 295px;
    display: none;
}

.contact_content .information_right {
    width: 100%;
    padding-left: 0;
}

.contact_page .main_part {
    width: 100%;
    max-width: 1000px;
    margin: auto;
    padding: 50px 20px;
}

/*******************************************/
/*聯絡我們MAP區改滿版編輯區*/
.contact_content {    width: 100%;padding: 0;}
.contact_page .main_part {    max-width: 100%;    padding: 0;}
.contact_page .path {    display: none;}
.contact_content .information_left {    width: 100%;    padding: 0;}
.contact_content .information_right {    width: 90%;    margin: 80px auto;    padding: 0 10px;    display: block;}
.contact_content .information_left > h4.blank_letter {    display: none;}
.contact_content .list_before {    width: 100%;		max-width: 100%;    padding: 0;    margin: 0 auto;}
.contact_content .list_before > li:not(li:last-of-type) {    display: none;}
.contact_content .list_before.info > li:last-of-type {    padding: 0;    margin: 0;}
@media screen and (max-width: 768px) {.contact_content .information_right {    margin: 50px auto;}}
/**/
/*電腦版表單最大寬度設定*/
.contact_content .information_right {    max-width: 1000px;}
/**/
/*******************************************/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*footer*/
.footer {
    background: #ffffff;
    padding: 0;
    /*background: url(https://pic03.eapple.com.tw/chicken888/footer_bg.jpg);*/
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.footer_logo {
    width: 100%;
    margin: 0 auto;
    padding-right: 20px;
}

.footer_info {
    display: grid;
    grid-template-columns: 200px 1fr 100px;
    gap: 20px 20px;
    padding: 0;
    max-width: 1400px;
    margin: auto;
    padding-top: 60px;
    padding-bottom: 25px;
}

.footer_info ul {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 30px;
    align-items: baseline;
    width: 100%;
    max-width: 900px;
    margin: 0 0 0 auto;
    padding-top: 20px;
}

.footer_info li {
    padding: 0;
}

.footer_info li:nth-child(1) {
    padding-left: 20px;
}

.footer_info li:nth-child(2) {
    border-right: solid 1px rgb(0 0 0 / 30%);
    padding-right: 25px;
}

.footer_info li:nth-child(2) {
    order: -1;
}

.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: #000000;
    padding: 0;
    letter-spacing: 0.1em;
    font-family:"Noto Sans TC", sans-serif;

}

.footer_menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.footer_menu a {
    margin: 0;
    text-align: left;
    padding: 0;
    border: none;
    background: transparent;
    width: fit-content;
    transition: all 0.3s;
    font-family:"Noto Sans TC", sans-serif;
}

.footer_menu a:hover {
    background: #ffffff00;
    color: #687f9e;
    border-bottom: 1px solid #bec8d6;
}

.footer_info li:before, .box_link:before {
    display: block;
    margin-bottom: 10px;
    width: 100%;
    text-align: left;
    font-weight: 900;
    font-style: normal;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0px;
    color: #7f99aa;
}

.box_link:before {
    content: "CONTACT";
}

.footer_info li:nth-child(1):before {
    content: "INFORMATION";
}

.footer_info li:nth-child(2):before {
    content: "RELATED LINK";
}


/*footer聯絡資訊順序*/
.footer_info li p.line {order:1;}
.footer_info li p.tel  {order:2;}
.footer_info li p.phone  {order:3;}
.footer_info li p.taxid  {order:4;}
.footer_info li p.fax  {order:5;}
.footer_info li p.mail { display:6;}
.footer_info li p.add  {order:7;}


.box_link {
    display: none;
}


.box_link a:hover:after { opacity: 1;}
.box_link a:hover:before { opacity: 0;}
.copy { padding: 8px 0; color: #525252;  margin: 0;  border: none;    background: #bdc8d7;}
.copy a { color: #525252;}

@media (max-width:1200px) {
.me_tp_features {width: fit-content;  position: absolute;  right: 10px; }
.footer_info {grid-template-columns: 1fr;}
.footer_logo { max-width: 100%;  padding-left: 63px; }
.footer_logo img { width: 130px;}
.footer_info ul { max-width: 100%;  padding: 10px 60px 0;}
.box_link {max-width: 100%; padding-left: 65px;}
}
@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
/*#bottom_menu {display: block; }*/
.footer.with_shopping_mode {padding: 30px 0 53px}
#to_top {bottom: 60px;}
.pageIndex .nav-header::before{display: none;}
.header_area .nav-brand { width: 80px;}
.nav-header {top: 2px;}
.module_i_news ul {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    max-width: 1600px;
}

}
@media (max-width:600px) {
.me_tp_features {position: relative; display: none;}
.footer_info ul {grid-template-columns: 1fr;padding: 10px 30px 0;}
.footer_info li:nth-child(1) {padding-left: 0;}
.footer_info li:nth-child(2) {order: 2;border-right: none;margin-top: 0;}
.footer_menu {grid-template-columns: 1fr 1fr 1fr;}
.footer_logo {padding-left: 30px;}
.box_link {padding-left: 30px;}
}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */







