@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=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Wix+Madefor+Display:wght@400..800&display=swap');

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/
body{ 
    font-family: "Noto Sans TC", "Playfair Display","Wix Madefor Display", serif;
}
.path p, .path p a{ display: none;}

.edit{ padding: 0px 0;}

.pageIndex #content_main{  background-image: url(https://pic03.eapple.com.tw/imay/i-in-bg.jpg); background-size: cover; background-position: top;}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



.pageIndex .swiper-wrapper .swiper-slide:nth-of-type(1)::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/imay/bantext2-1.png);
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 100000000000000;

}

.pageIndex .swiper-wrapper .swiper-slide:nth-of-type(2):before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/imay/bantext1-1.png);
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 100000000000000;

}

.pageIndex .swiper-wrapper .swiper-slide.swiper-slide-active::before{
       animation:font-in-text 4s ease-in-out infinite;
}


@keyframes banner-title {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.pageIndex .swiper-wrapper .swiper-slide:nth-of-type(1)::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/imay/bantext2-2.png);
    width: 100%;
    max-width: 100%;
    height: 100%;
    opacity: 0;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 100000000000000;
    opacity: 0;
    
}

.pageIndex .swiper-wrapper .swiper-slide:nth-of-type(2)::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/imay/bantext1-2.png);
    width: 100%;
    max-width: 100%;
    height: 100%;
    opacity: 0;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 100000000000000;
}


.pageIndex .swiper-wrapper .swiper-slide.swiper-slide-active::after {
   opacity: 0;
  animation: rightToCenterScale 4s ease-out forwards;
}


@keyframes rightToCenterScale {
  from {
    opacity: 0;
    transform: translateX(100px) scale(1.3);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}


@keyframes font-in-text {
     from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes banner-text {
    0% {
        height: 112%;
        opacity: 0;
    }

    100% {
        height: 100%;
        opacity: 1;
    }
}



.pageIndex .swiper-wrapper .swiper-slide img {
    transform: none !important;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/*反白顏色*/
::-moz-selection{
    background-color: #AEDBDC;
    color: #f7f7f7;
  }
  ::selection{
    background-color: #AEDBDC;
    color: #f7f7f7;
  }
  
  body{
      overflow: overlay;
  }
  &::-webkit-scrollbar {
      background: #f7f7f7;
      width: 7px;
  }
  &::-webkit-scrollbar-button {
      display: none;
      background: #f7f7f7;
      border-radius: 0;
    }
  &::-webkit-scrollbar-track-piece {
      background: #f7f7f7;
    }
  
  &::-webkit-scrollbar-thumb {
      border-radius: 4px;
      background-color: #AEDBDC;
    }
  
  &::-webkit-scrollbar-track {
      box-shadow: transparent;
}




/* 開場動畫 */

body.pageIndex:before {
    content: ' ';
    position: fixed;
    z-index: 999999991;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #fff;
    animation: fadein 6s forwards;
}

@keyframes fadein {
    50% {
        opacity: 1;
    }

    60% {
        pointer-events: auto;
    }

    100% {
        opacity: 0;
        pointer-events: none;
    }
}

body.pageIndex:after {
    content: ' ';
    position: fixed;
    z-index: 999999999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url(https://pic03.eapple.com.tw/imay/open-logo.svg) center / cover no-repeat;
    animation: fadeinlogo 6s forwards;
}

@keyframes fadeinlogo {
    0% {
        opacity: 0;
    }

    45% {
        opacity: 1;
    }

    60% {
        opacity: 0;
        pointer-events: auto;
    }

    100% {
        opacity: 0;
        pointer-events: none;
    }
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/*選單設定*/




.header_area{
    padding: 0;
}


.header_area .main_header_area {
    position: fixed;
    background: transparent;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    transition: all 0.5s;
}
.header_area.sticky .main_header_area {
    transition: all 0.5s;
}


.me_tp_features {
  display: none;
}


.header_area .stellarnav .menu-toggle,.stellarnav .call-btn-mobile, .stellarnav .location-btn-mobile {
    display: block;
    position: fixed;
    top: 20px;
    right: 1%;
    transition: all 0.5s;
    pointer-events: all;
}
.header_area.sticky  .stellarnav .menu-toggle,.stellarnav .call-btn-mobile, .stellarnav .location-btn-mobile {
    top: 27px;
    transition: all 0.5s;
}


/* ham */
.stellarnav .menu-toggle{
    text-align: center;

}
.stellarnav .menu-toggle:after{
    content: "MENU";
    display: none;
    font-size: 12px;
    text-align: center;
    color: #43453D;
    font-family: "Playfair Display ", "Microsoft JhengHei UI","Noto Serif TC", serif;
    margin-top: 10px;
}


.stellarnav.desktop .menu-toggle span.bars span {
    display: block;
    position: relative;
    width: 50px;
    height: 3px;
    border-radius: 6px;
    background: #111010;
    margin: 0;
    margin-bottom: 8px;
    left: 0;
    transition: 0.5s;
}
.stellarnav.desktop .menu-toggle:hover span.bars span:nth-child(1) {
    transition: all  0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.stellarnav.desktop .menu-toggle span.bars span:nth-child(2) {
    opacity: 1;
    width: 25px;
    transition: all 1s;
}
.stellarnav.desktop .menu-toggle span.bars span:nth-child(3) {
    opacity: 1;
    width: 50px;
    transition: all 1s;
}
.stellarnav.desktop .menu-toggle:hover span.bars span:nth-child(2) {
    width: 50px;
    transition: all 1s;
}



/* 漢堡關 */

.stellarnav .menu-toggle span.bars {
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* 未開啟 */

.stellarnav.desktop > ul {
    display: none !important;
    margin: 0;
    padding: 0;
    text-align: center;
    background: transparent;
    position: relative;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    z-index: -5;
    transition: all 0.3s;
}
.stellarnav.desktop{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -5;
    line-height: normal;
    background-color: transparent;
    pointer-events: none;
    transition: 1s;
}
.stellarnav.desktop::before{
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    z-index: -5;
    line-height: normal;
    background-color: transparent;
    transform: translate(-50%,-50%);
    opacity: 0;
    transition: 1s;
}



/* 開啟 */
.stellarnav.desktop.active > ul {
    display: flex !important;
    transition: all 0.3s;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content:center;
    pointer-events: all;
    width: 100%;
    height: 100%;
    background: transparent;
    padding: 200px 4% 60px;
    padding-top: 130px;
    align-items: center;
    gap: 30px;
}

.stellarnav.desktop.active > ul::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    right: 0;
    background-color: #ffffffed;
    backdrop-filter:blur(8px);
    animation:nav-updown 1s forwards;
    z-index: -2;
}
.stellarnav.desktop.active{
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-content: flex-end;
}
.stellarnav.desktop.active::before{
    content: "";
    width: 100%;
    height: 100%;
    /* background-color: #fff; */
    border-radius: 0;
    /* backdrop-filter: blur(5px); */
    opacity: 1;
    transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.stellarnav.desktop.active > ul::after{
    content: "";
    display: block;
    width: 1377px;
    height: 1000px;
    background-image: url(https://pic03.eapple.com.tw/imay/nav-shadow-bg.png);
    background-size: cover;
    -webkit-animation: shadowMove2 12s infinite ease;
    animation: shadowMove2 12s infinite ease;
    opacity: 0.45;
    position: absolute;
    right: -100px;
    top: -120px;
    z-index:-1;
    animation: floatShadow 20s infinite cubic-bezier(0.65, 0.01, 0.28, 0.94);
}

@keyframes shadowMove2{
    0% {
        -webkit-transform: rotate(0) skew(0deg, 0deg);
        transform: rotate(0) skew(0deg, 0deg);
    }
    33% {
        -webkit-transform: rotate(-4deg) skew(1deg, 3deg);
        transform: rotate(-4deg) skew(1deg, 3deg);
    }
    
    66% {
        -webkit-transform: rotate(6deg) skew(3deg, 2deg);
        transform: rotate(6deg) skew(3deg, 2deg);
    }
    100% {
        -webkit-transform: rotate(0) skew(0deg, 0deg);
        transform: rotate(0) skew(0deg, 0deg);
    }
}


@keyframes floatShadow {
    0%,100%{
        transform: scale(1.2) rotateZ(0deg) translate(0px,0);
    }
    50%{
        transform: scale(1.3) rotateZ(2deg) translate(-100px,0);
    }

}


@keyframes nav-left {
    0%{
        width:  0;
    }
    100%{
        width:  100%;
    }
    
}

@keyframes nav-updown {
     0% {
    opacity: 0;
    transform: scaleY(0.1) translateY(0);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.05) translateY(0);
  }
  100% {
    opacity: 1;
    transform: scaleY(1) translateY(0);
  }
}


@keyframes line-up {
    0%{
        height: 0%;
    }
    100%{
        height: 100%;
    }
}



/* ham close */

.stellarnav.desktop.active .menu-toggle:hover span.bars span:nth-child(1) {
    transform: rotate(-49deg);
    left:0px;
    top: 20px;
    transition: all 1s;
}
.stellarnav.desktop.active .menu-toggle:hover span.bars span:nth-child(3) {
    transform: rotate(225deg);
    transition: all 1s;
}
.stellarnav.desktop.active .menu-toggle:hover span.bars span:nth-child(2) {
    opacity: 0;
    transition: all 1s;
}


/* 選項 */
.stellarnav > ul > li > a {
    margin: 0 20px;
    padding-left: 0;
    color: #DED5BC;
    display: flex;
    text-transform: uppercase;
    position: relative;
    font-size: 17px;
    line-height: 20px;
    height: auto;
    margin: 0;
    overflow: visible;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
    opacity: 1;
    flex-direction:row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    letter-spacing: 5px;
    transform-origin: 0 0;
  
    font-family:"Playfair Display","Wix Madefor Display", serif;
}
.stellarnav > ul > li > a b {
    line-height: 15px;
    height: 30px;
}
.stellarnav > ul > li > a b:nth-child(1) {font-weight: 400;margin-bottom: 5px; font-size: 66px; color: #6CA6AD;  font-family:  "Playfair Display", serif; margin: 0px 8px; }
.stellarnav > ul > li > a b:nth-child(2) {
    font-size: 22px;
    color: #3E3A39;
    word-break: keep-all;
      font-family: "Noto Sans TC", "Playfair Display","Wix Madefor Display", serif;
    display: block;
    transition: 0.5s;
    font-weight: bold;
    margin: 0px 8px;
}


.stellarnav li {
    opacity: 1;
    width: 100%;
}
.stellarnav > ul > li::before {
    content: "";
    display: none;
    width: 0%;
    height: 1px;
    margin: 15px 0;
    background-color: #43453d21;
    animation: line-left-right 1s forwards linear;
}
.navigation {
    width: 100%;
    position: relative;
    padding: 0;
}

.stellarnav > ul > li > a:hover b {
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    opacity: 0.3;
}

/* animate word */
.stellarnav > ul > li{
    opacity: 0;
    animation: slideInLeft 1.5s forwards;
    animation-delay: 0.2s;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 0;
}

.stellarnav > ul > li:nth-child(2) {
    animation: slideInRight 1s forwards;
    animation-delay: 0.7s;
}
.stellarnav > ul > li:nth-child(3) {
    animation: slideInLeft 1s forwards;
    animation-delay: 0.9s;
}
.stellarnav > ul > li:nth-child(4) {
    animation: slideInRight 1s forwards;
    animation-delay: 1.2s;
}
.stellarnav > ul > li:nth-child(5) {
    animation: slideInLeft 1s forwards;
    animation-delay: 1.5s;
}
.stellarnav > ul > li:nth-child(6) {
    animation: slideInRight 1s forwards;
    animation-delay: 1.7s;
}
.stellarnav > ul > li:nth-child(7) {
    animation: slideInLeft 1s forwards;
    animation-delay: 1.9s;
}
.stellarnav > ul > li:nth-child(8) {
    animation: slideInRight 1s forwards;
    animation-delay: 2.2s;
}
/* 
@keyframes slideInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
  
    100% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
  } */


  /* .stellarnav > ul > li:nth-child(2) a, .stellarnav > ul > li:nth-child(4) a, .stellarnav > ul > li:nth-child(6) a, .stellarnav > ul > li:nth-child(8) a { flex-direction: row-reverse;} */

/* 從左滑入 */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(30px);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

/* 從右滑入 */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

/* 下拉 */
.stellarnav ul ul {
    border-radius: 5px;
    left: -155px;
    top: 0;
    background: #2c383d;
    box-shadow: 1px 1px 5px #000000b3;
    display: none!important;
}
.stellarnav li li {
    display: block;
    border: 0;
    margin-bottom: -1px;
    background: transparent;
    transition: all 0.3s;
}


.stellarnav li li:nth-child(1) {
}
.stellarnav li li:nth-last-child(1) {
    border-radius: 0 0 5px 5px;
}
.stellarnav li li:hover {
    background: rgba(0, 0, 0, 0.551);
    z-index: 100000;
    transition: all 0.3s;
}

.stellarnav li li a {
    padding: 15px 10px;
    display: block;
    color: #EAE3CE;
    font-size: 14px;
    transition: all 0.3s;
}
.stellarnav li li:hover > a {
    color: #fff;
    letter-spacing: 1.1px;
    transition: all 0.3s;
}


/* 下拉二層 */

.stellarnav ul ul ul {
    top: 0;
    left: 240px;
}
.stellarnav li.has-sub > a:after{
    display: none;
}

@keyframes ul-show {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
    
}


  /* 漢堡條 */
  .stellarnav .menu-toggle span.bars span {background: #111010; width: 32px; height: 2.5px;}
  .stellarnav .menu-toggle:after { color: #111010;}
  
  /* close menu 拉出來 */
  .stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu{
      background: #7EB2B6;
      color: #fff;
    }
    .stellarnav .icon-close:before{
      border-bottom: solid 3px #fff;
    }
    .stellarnav .icon-close:after{
      border-bottom: solid 3px #fff;
    }
    .stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul{
      background: #fffffff6;
      backdrop-filter:blur(8px);
    }
    .stellarnav a.dd-toggle .icon-plus:before{
      border-bottom: solid 3px #B8B8B8;
      display: none;
    }
    .stellarnav a.dd-toggle .icon-plus:after{
      border-bottom: solid 3px #B8B8B8;
      display: none;
    }
    .stellarnav.mobile > ul > li > a.dd-toggle{
      padding: 11px;
      top: 14px;
    }
    .stellarnav.mobile > ul > li > a.dd-toggle:before{
        display: none;
    }
    .stellarnav.mobile li.open{
      background: #384a53d5;
    }
    .stellarnav.mobile ul ul{
      width: 100%;
      position: relative;
      left: 0;
    }
    .stellarnav.mobile > ul > li{
      border-bottom: 0px;
    }
  
    .stellarnav.mobile li a{ border-bottom: 0px;}
  
    .stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul{max-width: 100%;}


@media screen and (max-width:768px) {
    .stellarnav > ul > li{
        padding-bottom: 10px;
        padding-top: 10px;
    }
    .stellarnav > ul > li > a b:nth-child(2){
        opacity: 1;
    }
    .stellarnav > ul > li > a b:nth-child(1){ font-size: 48px;}
    .stellarnav > ul > li > a b:nth-child(2){ font-size: 20px;}
}

@media screen and (max-width:570px) {
    .pageIndex #page .stellarnav.mobile{
        animation: show 1.5s ease-in-out forwards;
        animation-delay: 1.5s;
        opacity: 0;
    }
    .header_area .stellarnav .menu-toggle,.stellarnav .call-btn-mobile, .stellarnav .location-btn-mobile {
        top: 26px;
        right: 3%;
    }
    
}
@media screen and (max-width:380px) {
    .header_area .stellarnav .menu-toggle,.stellarnav .call-btn-mobile, .stellarnav .location-btn-mobile {
        top: 20px;
        right: 2%;
    }
    .stellarnav > ul > li > a b:nth-child(1){ font-size: 32px;}
}





/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*logo*/
.nav-brand img {
    position: relative;
    top: 43px;
    left: -55px;
    width: 100%;
    max-width: 100%;
    transition: all 0.3s;
    opacity: 1;
}

.pageIndex #page .nav-brand img {
        opacity: 0;
    animation: show 1.5s ease-in-out forwards;
    animation-delay: 2.5s;
}


@keyframes show {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

@keyframes show-line {
    0%{
        right: 100%;
        opacity: 0;
    }
    100%{
        right: 0;
        opacity: 1;
    }
}

/* logo反白 */
.header_area .nav-brand img {    filter: none;  }
/* .header_area.sticky .nav-brand img { filter:brightness(1) invert(1);    transition: all 0.3s;} */


.nav-header {
    position: fixed;
    z-index: 123;
    top: -23px;
    left: 4%;
    transition: all 0.3s;
}

.nav-brand {
    display: inline-block;
    width:150px;
    transition: all 0.3s;
}


@media screen and (max-width: 1024px) {
    .nav-brand {
        width: 130px;
    }
    .nav-brand img {
        position: relative;
        max-width: 100%;
        z-index: 100000;
        transition: all 0.3s;
    }
    .header_area.sticky a.nav-brand::before {  
        width: 20%;
        left: 50%;
        transform: translateX(-50%);
        transition: all 0.3s;
    }
    .stellarnav > ul > li > a {
        margin: 0 15px;
    }
    
}
@media screen and (max-width: 768px) {
.nav-brand-m {    display: block;    text-align: left;    padding: 15px 10px;}
.nav-brand-m img {    max-width: 120px;    width: 100%;}
.nav-brand {
    display: inline-block;
    width: 120px;
}
.header_area.sticky a.nav-brand::before {
    width: 120%;
}
.nav-header {
    z-index: 0;
    top: -32px;
    left: 4%;
}
}

@media screen and (max-width:570px) {
    .nav-brand{ width: 80px;}
     .nav-header{ left: 2%;}
}

@media screen and (max-width:450px) {
   .pageIndex #page .nav-brand img{ display: none;}
}



/*開場NAV */
.pageIndex #page .stellarnav.desktop .menu-toggle{
    opacity: 0;
    top: 27px;
    animation: show 1.5s ease-in-out forwards;
    animation-delay: 1.5s;
    z-index: 9;
}

@keyframes show {
0%{
    opacity: 0;
}
100%{
    opacity: 1;
}
}

/* 商品下拉超過30個變大 */
.stellarnav.desktop li.bigMenu>ul{display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); left: 0; width: 100%; position: fixed; padding: 20px;}
.stellarnav.desktop li.bigMenu ul ul{top: 100%; left: 0; width: 100%; background: #efefef; height: auto; max-height: 300px; overflow: auto;}
.stellarnav.desktop li.bigMenu ul ul li{margin: 0;} 
.stellarnav.hasBigMenu li.bigMenu li.has-sub > a:after{border-left: 6px solid transparent; border-bottom:unset; border-right: 6px solid transparent; border-top: 6px solid #898989; right: 5px;}
/* 主分類超過30個但次分類直接顯示 
.stellarnav.desktop li.bigMenu>ul{grid-gap: 10px;}
.stellarnav.desktop li.bigMenu li{border: 0;}
.stellarnav.desktop li.bigMenu>ul>li>a{border: 1px solid #ddd;}
.stellarnav.desktop li.bigMenu ul ul{display: block !important; position: relative; top: 0; background: unset; border: 0;}
.stellarnav.desktop li.bigMenu ul ul li{border: 0;}
 主分類超過30個但次分類直接顯示-結束 */

/* 商品下拉超過30個--結束 */


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/* 展示footer demo */
.footer_logo{ display: none;}
.footer_info ul { display: none;}
.copy{ display: none;}
.box_link{ display: none;}
.footer {
    border-top: none !important;
    padding:0 0;
    height:272px;
    background-image: url(https://pic03.eapple.com.tw/imay/footer.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
.fix_ri{display: block!important;}

@media screen and (max-width:1400px) {
    .footer{ height: 305px;}
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */




/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.product_page .main_part { max-width:1500px;}
/* .product_info_page .main_part { max-width:1200px;} */

.product_page .show_content,
.product_info_page .show_content { width: 100%; display: flex; justify-content: space-between; flex-wrap: wrap; align-items: flex-start; align-content: flex-start;}
.product_page .product_menu_list { position: relative; width: 220px; letter-spacing: 1px; /*border-right: 1px solid #ccc;*/min-height: 30vw;}
.product_page .products-list,
.product-wrapper { width: calc(100% - 270px);}
ul.page { width: 100%;}

.product-layer-two li ul { position:static; margin-top:5px; /*display:block !important;*/ width:100%; margin-left:0;}
.product-layer-two li:hover ul { border: none !important; /*display:block !important;*/}
.product-layer-two li li { display: block; padding:0; transition:all ease .3s;}
.product-layer-two li li a{ padding:5px 10px;}
.product-layer-two li li:hover > a { background:#fff; color:#ad925e;}
.product-layer-two > li { width:100%; max-width:100%; padding:0; text-align:left; border-bottom:1px dotted #ccc; padding-bottom: 5px;}
.product-layer-two > li ul > li + li { margin-top:5px;}

.product_info_page .product_menu_list { display: none;} 
.product_info_page .products-list,
.product-wrapper { width: 100%;}

.product-layer-two li li:hover{ margin-left: 15px;}
.product-layer-two li li > a:before { content: ""; position: absolute; width: 12px; height: 8px; background: transparent; left: 0; margin-left: -20px; top: 50%; margin-top: -4px; clip-path: polygon(0 0, 100% 50% , 0 100%);}
.product-layer-two li li:hover > a:before { background:#ad925e;}

.product_info_page .half_box { width: 100%; float: none; padding-right: 0;}
.product_info_page .half_box li.btn_blankTop { margin-top: 50px; justify-content: space-between; display: flex;}
.product_info_page .half_box li.btn_blankTop input { width: calc(50% - 10px); background-image: none; padding: 0; text-align: center;}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 980px) {
}
@media screen and (max-width: 768px) {
.product_menu_list,
.products-list,
.product-wrapper { width: 100%;}
.product-layer-two { margin-right: 0; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); grid-gap: 5px;}
.product_page .product-layer-two,
.product_page .products-list { width: 100%; border-right: none;}
.product_page .product_menu_list>h5{display: block;}

.product_page .show_content > a { order: 1;}
.product_page ul.products-list { order: 2;}
.product_page ul.page { order: 3;}
.product_page .product_menu_list {width: 100%; order: 0; min-height: unset;}
}
@media screen and (max-width: 600px) {
}


.product_page #content,.product_info_page #content{
 background-image: url(https://pic03.eapple.com.tw/imay/in-bg.jpg); background-size: cover; background-position: top;
    background-size: cover;
    background-position: top;
}

/* 左邊選單 */
.product-layer-two > li{ border-bottom: 0px;}
.product-layer-two li a{ background: #7EABAF; color: #fff; padding: 12px 20px;}
.product-layer-two li a:hover{ background: #468486; }

.product-layer-two li li a{ color: #000; background: unset; }
.product-layer-two li i{ color: #fae5ea; } 
.product-layer-two li li:hover > a{ color: #BADDDD;}
.product-layer-two li li > a:hover:before { background: #BADDDD;}
.product-layer-two li.active a{ background: #468486; border: 0px;}
.product-layer-two li li.active a{ background: unset; color: #468486;}
.product-layer-two li.active li a{ background: unset;color: #468486; }

/* 商品 */
/* .products-list .price {display: none;} */
.products-list .name{ font-size: 16px; color: #6C9FA6; font-weight: bold; text-align: center; height: 41px;}
.products-list .more{ font-size: 13px; color: #b4b4b4; border: 0px;  width: 80px!important;}
.products-list .item{ padding: 16px; box-shadow: 0 0 8px 2px #a7d4d53b; transition: 0.5s;} 
.products-list .item:hover{border: 1px #A7D4D5 solid;   }
.products-list .item a:hover .more{ color: #fff; background:#A7D4D5;}
.products-list .pic{ overflow: hidden; }
.products-list .pic img{ width: 100%;
    height: 100%;
    object-fit: cover;
     transition: .7s ease-out;
    
}

.products-list .item a:hover img {
      transform:scale(1.05);
    opacity: 0.75;
    transition: 0.5s;
}


/* 內頁 */
.sidebarBtn h2{ color: #6C9FA6;}
.pd_tabTitle li.activeTab a{ color: #666666; font-size: 24px; font-weight: 500;}
.pd_tabTitle li.activeTab::after{ height: 0px; background: #E4E4E4;}
.sidebarBtn{ border: 1px #ddd solid;}
/* .inquiry_a1{ background: #E27182;}
.inquiry_a3{ background: #DE8897; }
.inquiry_a2{ background: #DE8897;}
.inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover{ background: #DCA1AC;} */

.rewrite_simple{ background: #DE8897;}
.send_simple{ background: #E27182; border-radius: 50px;}

.products-list .price{ justify-content: space-evenly;}
.products-list .price b{ color: #000; width: unset; font-size: 16px; text-align: center!important;}
.products-list .price b.sp_price { color: #d23c55; font-weight: bold; font-size: 16px;}
.sidebarBtn .sp_price { color: #d23c55; font-weight: bold; font-size: 24px;}
.sidebarBtn .price{ color: #000;  font-size: 18px;}
.sidebarBtn .price span { font-size: 18px;}
.sidebarBtn .price span.sp_price{ font-size: 24px; font-weight: bold;}

/* 相關推薦 */
.prod_related h6 span:before{  color: #666666; font-size: 24px; font-weight: 500;}
.prod_related{ background: transparent;}
.related_list li a{ background: unset;}
.related_list li a:hover img {
    opacity: 0.75;
    transition: 0.5s;
}
  .lastPage{ background: #7EABAF; }

/* 匯款通知 */
.remit_page #page .note::before{ display: none;}
.remit_page #page .rewrite_simple{ display: none;}

@media screen and (max-width:768px) {
    .product-layer-two{ display: block!important;}
    .product_page .product_menu_list>h5{ display: none;}
    .mobile_product_name{ display: none;}
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#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;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/*內頁BANNER 設定*/
.banner {background-size: cover; background-position: center; background-repeat: no-repeat; height: 500px;
    display: flex; justify-content: center; align-items: center; overflow: hidden; 
   background-image: url(https://pic03.eapple.com.tw/imay/ban.jpg);
}

.banner h5:before { content: ""; position: absolute; top: 1%; background-size: contain !important; background-position: center;
    background-repeat: no-repeat !important; background: url(https://pic03.eapple.com.tw/imay/ban-icon.svg);  width: 150px!important; height: 142px;
    left: 51px;  padding-bottom: calc(100% / 1* 0.8);  -webkit-animation: slide-top 0.8s 0.5s both; animation: slide-top 0.8s 0.5s both; filter: none;}
.banner.banB h5:before{ left: -41px;}
.banner.banblog h5:before{ left: 4px;}
.services_page .banner.banB h5:before { left: 41px; }

.banner.banA {}
.banner.banB {}
.services_page .banner.banB { background-image: url(https://pic03.eapple.com.tw/imay/banBB.jpg);} 
.banner.banC { background-image: url(https://pic03.eapple.com.tw/imay/banC.jpg); }
.banner.banD {}
.banner.banE {}
.banner.banF { background-image: url(https://pic03.eapple.com.tw/imay/banF.jpg);}
.banner.banblog { background-image: url(https://pic03.eapple.com.tw/imay/banblog.jpg);}
.blog_page.article_b .banner.banblog { background-image: url(https://pic03.eapple.com.tw/imay/banblogB.jpg);}


.banner h5 {font-size: 36px; color: #fff; position: relative; letter-spacing: 12px; text-indent: 12px; padding-top: 150px; margin-top: 125px;
    -webkit-animation: slide-top 0.8s 0.5s both; animation: slide-top 0.8s 0.5s both; filter: drop-shadow(0px 0px 5px #000000c4); font-family: "Playfair Display", serif;
}
/* .banner h5:after { content: ""; position: absolute; top: 17%; background-size: contain !important; background-position: center;
    background-repeat: no-repeat !important; background: url(https://pic03.eapple.com.tw/imay/ban-icon.svg);  width: 100%;
    left: 27px;  padding-bottom: calc(100% / 1* 0.8);  -webkit-animation: slide-top 0.8s 0.5s both; animation: slide-top 0.8s 0.5s both; filter: none;} */

/*動畫*/
@keyframes slide-top {
    0% {
      -webkit-transform: translateY(100%);
              transform: translateY(100%);
              opacity:0;
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
              opacity:1;
    }
  }

@media screen and (max-width:768px) {
    .banner{ height: 300px;}
    .banner h5{ margin-top: 36px;}
}
@media screen and (max-width:450px) {
    .banner h5:before{ display: none; }
    .banner{ height: 220px;}
    .banner h5{ margin-top: 0px;  padding-top: 60px;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



.blog_page #content,.blog_in_page #content{
     background-image: url(https://pic03.eapple.com.tw/imay/in-bg.jpg); background-size: cover; background-position: top;
    background-size: cover;
    background-position: top;
}

/* 首頁文章 */
.module_i_news{ margin-top: 80px;}
.module_i_news .title_i_box{ display: flex;flex-direction: column-reverse;}
.module_i_news .title_i_box h4{font-size: 88px; color: #6C9FA6; font-weight: bold;  font-family: "Playfair Display","Wix Madefor Display", serif;}
.module_i_news .title_i_box h6 {font-size: 32px; color: #6C9FA6 ; letter-spacing: 4px; font-weight: bold; }

.animated-arrow{ background: #7EABAF;width: 200px;}
.module_i_news li{ padding: 22px 22PX 40px 22px; box-shadow: 0 0 8px 2px #a7d4d53b; transition: 0.5s;}
.module_i_news li:hover{ border: 1px #A7D4D5 solid; }
.module_i_news li a{ display: flex; flex-direction: column;}
.module_i_news ul{grid-template-columns:1fr 1fr 1fr 1fr; }
.i_blog_ri h5{color: #6C9FA6;}
.i_blog_ri em{ color: #ADADB1;}
.i_blog_ri p{ color: #5d5d5d;}
.module_i_news li a:after{ background: transparent; border: 0px;}
.module_i_news li a:before{ color: #b59a80d8; bottom: -29px;    color: #fff; right: 0px;font-family:  "Playfair Display","Wix Madefor Display", serif;
    background: #A7D4D5;
    padding: 4px 12px;
    font-size: 13px; }
.module_i_news ul a .i_blog_le img{
    transition: .7s ease-out;
}
.module_i_news ul a:hover .i_blog_le img{
    transform:scale(1.05);
    opacity: 0.75;
    transition: all 0.3s;
  }

  @media screen and (max-width:1024px) {
    .module_i_news ul{grid-template-columns:1fr 1fr 1fr; }
  }
  @media screen and (max-width:768px) {
    .module_i_news ul{grid-template-columns:1fr 1fr; }
  }
  @media screen and (max-width:420px) {
    .module_i_news .title_i_box h4{ font-size: 60px;}
    .module_i_news ul{grid-template-columns:1fr; }
  }

/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/
.h5.blog_le_t{ display: none!important;}
h5.blog_le_t span{ display: none;}
h5.blog_le_t em{ font-weight: bold; font-size: 26px; color: #c2c2c2; font-family: "Playfair Display","Wix Madefor Display", serif;}
/* 側邊hover */
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category{ background: unset!important;}
.blog_le .accordion > li:hover .link a, .blog_le .accordion > li.on_this_category .link a {
    background: #468486!important;}
  .submenu {background: #fff;}
  .submenu a{padding: 12px 12px 12px 30px;}
  .submenu a:hover {background: #eee;color: #555;padding: 12px 12px 12px 35px;}
  .blog_le .accordion {border-radius: 0;border: none;}
  .accordion li+li .link{ border-top: 0px;}
  .blog_le .accordion li{border-bottom: 0px}
  .accordion li .link a{ color: #fff; background: #7EABAF; padding: 12px 20px;}
  .accordion li .link a:hover{ background: #468486;}
  .blog_le .accordion li:last-child{border-bottom: none;}
  
  /* 右邊 */
  .share_page .edit {    text-align: justify;    line-height: 180%;}
  .subbox_item a{ display: flex; flex-direction: column;}
  .subbox_item a:before , .subbox_item a:after {    transition: 0.3s;   font-family: "Playfair Display","Wix Madefor Display", serif;}
  .blog_le .accordion > li {    transition: all 0.3s; margin-bottom: 8px;}
  .blog_box_edit {    line-height: 180%;    text-align: justify;}
  h4.blog_category_title {    text-align: justify; font-size: 40px;}
  .link a {    width: 100%;    display: block;    padding: 15px 10px;}
  .accordion li .link {    padding: 0;}
  .blog_list_ri h5{ color: #6C9FA6; font-weight: bold; font-size: 18px;}
  .blog_list_ri em{ color: #ADADB1; }
  .blog_list_ri p{ height: 38px; color: #5d5d5d;}
  
  .subbox_item a:after {
    display: none;
  }
  .subbox_item a:before {
    color: #fff;
    background: #A7D4D5;
    bottom: -10px;
    right: 10px;
    padding: 4px 12px;
    font-size: 13px;
  }
  .blog_list_le {
    overflow: hidden;
  }
  .subbox_item a img{
    transition: .7s ease-out;
  }
  .subbox_item a:hover img{
    transform:scale(1.05);
    opacity: 0.75;
    transition: all 0.3s;
  }
  
  
  /*文章分享變1排3個*/
  .blog_page .main_part {    max-width: 1400px;}
  .blog_list_le , .blog_list_ri {    width: 100%;}
  .blog_subbox {   grid-template-columns:1fr 1fr 1fr ; grid-gap:20px; }
  .subbox_item {    width: 100% ;
    transition: 0.3s;
    padding: 22px;
    box-shadow: 0 0 8px 2px #a7d4d53b;
}
  .subbox_item:hover{ border: 1px #A7D4D5 solid;}
@media screen and (max-width:1024px) {
    .blog_subbox{
        grid-template-columns:1fr 1fr;
    }
}
@media screen and (max-width:480px) {
    .blog_subbox{
        grid-template-columns:1fr;
    }
}
  
  /* 內頁 */
  h4.blog_category_title{ color: #6C9FA6; font-size: 24px;}
  .blog_shareData{display: none;}
  .articel_mainPic img{ display: none;}
  .blog_back{ width: 70%; margin: auto;}
  .blog_back a.article_btn_prev,.blog_back a.article_btn_next {background: transparent; color: #7EABAF; border: 1px solid #7EABAF;}
  .blog_back a.article_btn_back {background: #7EABAF;}
  .news_related{ background: transparent;}
  .news_related h6 span:before{ color: #666666;}
  .news_related_list li a{ background: unset; }
  .lastPage{ background: #7EABAF; }
  .news_related_list li a img { transition: 0.5s;}
  .news_related_list li a:hover img { opacity: 0.75;}
  
  @media screen and (max-width:400px) {
    .blog_back{ width: 100%;}
  }


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本分類全版面 ( 限制最寬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; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

.contact_page #page{  background-image: url(https://pic03.eapple.com.tw/imay/in-bg.jpg); background-size: cover; background-position: top;}

/* 聯絡我們 */
.blank_letter{ color: #c2c2c2; font-size: 0px; display: flex; align-items: center;}
.blank_letter::before{ content: "FORM";display: block; font-size: 26px; color: #c2c2c2; font-family:  "Playfair Display","Wix Madefor Display", serif; margin-right: 12px; }
.information_left .blank_letter::before{ content: "INFORMATION";}
.list_before.info li{ padding-left: 40px; }
.list_before{ display: flex; flex-direction: column; margin-bottom: 40px; }
.info_TEL:before, .info_TEL2:before, .info_PHONE:before, .info_LINE:before, .info_FAX:before, .info_TAXID:before, .info_MAIL:before, .info_ADD:before, .info_ADD2:before{ color: #6C9FA6; }
.list_before.info li.info_LINE { display: none;}
.info_TEL:before{ content:"TEL" ;}
.info_ADD:before { content:"ADD" ;}

.contact_form li:has(input[type=checkbox]) .form__insert, .contact_form li:has(input[type=radio]) .form__insert{ display: flex; flex-wrap: wrap;}
.contact_form li input { margin-left: 10px;}

.contact_form{grid-gap:22px; }
.contact_form li.last blockquote{ color: #7EABAF;}
.contact_form li.last blockquote, .contact_form li.last cite{ border: 1px solid #7EABAF;}
.contact_form li.last cite{ color: #fff; background: #7EABAF;}
.contact_form li textarea.noborder{ margin-left: 10px;}


@media screen and (max-width:980px) {
    .contact_form li .form__label{ background: transparent;}
}
@media screen and (max-width:500px) {
  .contact_form li .form__label{ width: 160px;}
  .contact_form li{ display: flex;}
}
@media screen and (max-width:450px) {
    .contact_form li{ display: flex; flex-direction: column;}
    .contact_form li.last{ flex-direction: row;}
}




.car_page .information_left {
    display: block;
}
body.car_page .footer_info li p:before{
    position: initial;
    display: inline;
}
.contact_le_map a{background: #2a93d8; }




@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu {}
.footer.with_shopping_mode { padding:30px 0 55px; }
#to_top { bottom:60px;}
}

@media screen and (max-width: 600px) { 
}




