
::-webkit-scrollbar {    width: 3px;}
::-webkit-scrollbar-track {    box-shadow: inset 0 0 8px #494949;}
::-webkit-scrollbar-thumb {    background-color: #dadada;border-radius: 4px;}




/*top*/
#to_top {
    left: 20px;
    background: #030303b5;
    box-shadow: unset;
    color: #ffffff;
    bottom: 30px;
    width: 50px;
    height: 50px;
    border: 1px solid #ffffff;
    font-size: 11px;
    padding-top: 5px;
    box-shadow: 0 0 12px rgb(81 81 81 / 70%),
                0 0 24px rgb(183 183 183 / 40%);
    animation: topmoveTop 1.5s ease-in-out infinite alternate;
}

#to_top i:before, #to_top i:after {    background: #ffffff;}
#to_top i.top:before, #to_top i.top:after {    height: 10px;    top: 6px;}
 @keyframes topmoveTop {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(20px);
  }
}


.tp_links {
    display: inline-block;
    display: none;
}


.pageIndex .header_area {
    background: linear-gradient(180deg, #000000, transparent);
    position: fixed;
    padding: 0 20px;
}


.main_header_area .container {
    max-width: 1500px;
}


.main_header_area:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0px;
    background-color: #12121296;
    backdrop-filter
    opacity: 1;
    transition: all 1s;
}

.header_area.sticky .main_header_area:before {
    height: 90px;
    transition: all 1s;
}



.main_header_area:after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 40%;
    height: 90px;
    background: linear-gradient(
        120deg,
        transparent,
        rgb(255 255 255 / 16%),
        transparent
    );
    transform: skewX(-20deg);
}


.header_area.sticky .main_header_area:after {
    animation: headerShine 2s ease-in-out infinite;
}

@keyframes headerShine {
    to {
        left: 150%;
    }
}





.nav-header {
    z-index: 123;
    top: 0;
    left: 0;
    max-width: 120px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    align-content: center;
}




.stellarnav ul {
    margin: 0;
    padding: 0;
    text-align: right;
    margin-top: -25px;
}





.stellarnav>ul>li>a {
    margin: 0 10px;
    color: #fff;
    padding: 0px 5px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 40px;
    height: 40px;
    /* margin: 0 15px; */
    cursor: pointer;
    text-align: center;
    font-weight: 400;
    transition: all 0.5s;
    font-family: noto sans-serif;
}



.stellarnav li.has-sub > a:hover:after ,.stellarnav>ul>li>a:hover {
    
    color: #55a4ff;
    
}




.stellarnav>ul>li>a b {
    letter-spacing: 0.5px;
    font-size: 14px;
}

.stellarnav li.has-sub>a:after {
    content: '﹀';
    border: none;
    font-size: 10px;
    font-weight: bolder;
    top: 57%;
    color: #fff;
}

.stellarnav li li.has-sub>a:after {
    display: none;
}

/*.header_area.sticky .stellarnav li.has-sub>a:after {
    color: #1f1f1f;
}*/



.stellarnav.desktop ul ul {
    opacity: 0;
    display: block !important;
    pointer-events: none;
    transition: .5s;
    left: 50%;
    transform: translate(-50%, -30px);
    padding-top: 18px;
    background: transparent;
}

/*hover*/

.stellarnav.desktop ul li.has-sub:hover>ul {
    opacity: 1;
    pointer-events: all;
    transform: translate(-50%, 0px);
}



.stellarnav.desktop ul ul ul {
    position: absolute;
    left: 100%;
    top: 0;
    padding-top: 0px;
    transform: translate(-20px, 0);
    opacity: 0 !important;
    pointer-events: none;
    transition: .5s;
}

/*hover*/

.stellarnav.desktop ul ul li.has-sub:hover>ul {
    opacity: 1 !important;
    pointer-events: all;
    transition: .5s;
    transform: translate(0, 0);
}



.stellarnav.desktop li li {
    border: none;
    border-bottom: 1px solid #9e9aa1;
    background: #ffffff;
}

.stellarnav.desktop li li:nth-last-of-type(1) {
    border-bottom: none;
}



.stellarnav.desktop li li>a,
.stellarnav.desktop li li.has-sub>a {
    padding: 8px 9px;
    transition: all 0.3s;
    color: #1f1f1f;
    font-size: 13px;
    letter-spacing: 1px;
    text-align: center;
}



.stellarnav.desktop li li:hover>a,
.stellarnav.desktop li li.has-sub:hover>a {
    background: #1f1f1f;
    color: #fff;
}

@media screen and (max-width: 1200px) {
    .pageIndex .header_area {
    position: sticky;
}
}
@media screen and (max-width: 1024px) {
.header_area.sticky .main_header_area:before {
    height: 137px;
}
}

@media screen and (max-width: 768px) {
.header_area.sticky .main_header_area:before {
    height: 100%;
}
}



 
/* 大圖進場-外層 */
.bannerindex .swiper-wrapper:before, .bannerindex .swiper-wrapper:after {content: "";position: absolute;z-index: 100;pointer-events: none;opacity: 0;} 
.bannerindex .swiper-wrapper:after{
content: '';
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
border-color: #fff;
border-style: solid;
border-width: 3vw 3vw;
-webkit-box-sizing: border-box;
box-sizing: border-box;
will-change: border-width;
z-index: 1;
pointer-events: none;
animation: scalIn 1.5s both;    
animation-delay: 0.5s;

}
@keyframes scalIn {0% {border-width: 15vw 25vw;opacity: 0;}100% {border-width: 0 0 0;opacity: 1;}}



/* 大圖進場-內層 */
.bannerindex .swiper-banner .swiper-slide:before, .bannerindex .swiper-banner .swiper-slide:after {content: '';position: absolute;z-index: 100;opacity: 0;display: block;z-index: 2;}
/* 大圖文字共用 */
.swiper-banner .swiper-slide.swiper-slide-active:before,.swiper-banner .swiper-slide.swiper-slide-active:after{white-space: pre;color: #fff;overflow: hidden;animation-timing-function: cubic-bezier(0.01, 0.01, 0.22, -0.89);font-family: var(--SFontE);font-weight: 300;}

::before {}


/* banner01 */
.bannerindex .swiper-banner .swiper-slide:before, .bannerindex .swiper-banner .swiper-slide:after {width: 40%;min-width: 420px;}
.bannerindex .swiper-banner .swiper-slide:nth-child(1):before {color: #fff;top: calc(50% + 20px);left: 30%;transform: translateY(-50%);opacity: 1;content: "";position: absolute;background-image: url(https://pic03.eapple.com.tw/lightrealmdesign/bnA3_border.svg);/* width: 33%;
min-width: 420px; *//* aspect-ratio: 1/2; */background-size: contain;background-repeat: no-repeat;z-index: 999;}


.bannerindex .swiper-banner .swiper-slide:nth-child(1) {
  position: relative;
  overflow: visible !important;
}





.bannerindex .swiper-banner .swiper-slide:nth-child(1)::after {
    content: "";
    opacity: 1;
    position: absolute;
    top: calc(50% + 20px);
    left: 25%;
    transform: translateY(-50%) translateZ(0);
    width: 50%;
    height: 30%;
    background: rgb(0 0 0 / 65%);
    background-image: url(https://pic03.eapple.com.tw/weichuangkitchen/text02.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    box-shadow:
    backdrop-filter: blur(6px);
    z-index: 998;
    will-change: box-shadow;
    box-shadow:  0 0 20px rgb(82 171 255 / 40%);
    border: clamp(20px, 1.9vw, 10vw) solid transparent;
    opacity:0;
    
}


.bannerindex .swiper-banner .swiper-slide:nth-child(2)::after {
    content: "";
    opacity: 1;
    position: absolute;
    top: calc(50% + 20px);
    left: 25%;
    transform: translateY(-50%) translateZ(0);
    width: 50%;
    height: 30%;
    background: rgb(0 0 0 / 65%);
    background-image: url(https://pic03.eapple.com.tw/weichuangkitchen/text03.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    box-shadow:
    backdrop-filter: blur(6px);
    z-index: 998;
    will-change: box-shadow;
    box-shadow:  0 0 20px rgb(82 171 255 / 40%);
   
    opacity:0;
}





/* 動畫 */
.bannerindex .swiper-slide.swiper-slide-active:nth-child(1):after, .bannerindex .swiper-slide.swiper-slide-active:nth-child(2):after  {
transform-origin: 10% 80%;
animation: downUp 1s cubic-bezier(0.73, 0.08, 0.47, 0.98) forwards;
animation-delay: 0.5s;
}

/* BN02 */
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2):after, .bannerindex .swiper-slide.swiper-slide-active:nth-child(2):after  {
transform-origin: 10% 80%;
animation: downUp 1s cubic-bezier(0.73, 0.08, 0.47, 0.98) forwards;
animation-delay: 0.5s;
}



@keyframes downUp {
0% {opacity: 0;transform: translateY(-50%) scale(1, 0);}
15% {opacity: 0;;}
100% {opacity: 1;transform:translateY(-50%) scale(1, 1);}}





/*footer*/

.footer_info li p:nth-child(1){display: none;}
.footer_info li p:nth-child(2){display: none;}


.footer_menu a:first-child {display: none;}
.footer {
    background: #dbdbdb;
    padding: 20px 0;
}
.footer_info ul {
    width: 100%;
    display: flex;
    flex-direction: row;
}
.footer_info {
    display: flex;
    flex-direction: column;
    padding-right: 0px;
    padding: 0px 25px;
    grid-gap: 5px;
}
.footer_logo img {
    width: 150px;
    animation: logoSwing 3s ease-in-out infinite;
}

@keyframes logoSwing {
   0%,100% { transform: rotate(0deg); }
    50%     { transform: rotate(10deg); }
}
.footer_menu {
    display: flex;
    justify-content: flex-end;
}
.box_link {
   display:none;
}
.box_link a {
    font-size: 23px;
    border: none;
}
.footer_info li:nth-child(1) {
    width: 100%;
}
.footer_info li:nth-child(2) {
    width: 100%;
}
.footer_info li p {
    color: #585858;
}
.footer_menu a {
    border: none;
    margin: 0 7px;
    background: transparent;
    letter-spacing: 1pt;
    transition: .4s;
}
.footer_menu a:hover {
    background: #ffffff4d;
    color: #000000;
    transition: .4s;
    padding: 5px 10px;
    background: linear-gradient(
  90deg,
  rgba(255,255,255,0.8),
  rgba(255,255,255,0.2)
);
}
.box_link a:hover {
    color: #956561;
    transition: .4s;
}

.copy {
    margin-top: 0px;
}

.copy a:hover {
    color: #bd9692;
}

@media screen and (max-width: 1200px){

    .footer_info li:nth-child(1) {
        width: 50%;
    }
    .copy {
        display: flex;
        justify-content: center;
    }
    }
    
    @media screen and (max-width: 980px){
    
    .footer_info ul {
    flex-wrap: wrap;
    }
    
    .footer_menu {
        justify-content: flex-start;
    }
    
    .footer_info li:nth-child(2) {
        padding: 10px 0px;
    }
    
    .box_link {
        top: -10px;
    }
    
    .copy {
        border: none;
    }
    
    .footer_menu {
        flex-wrap: wrap;
    }
    
    .footer_info li:nth-child(1) {
        width: 100%;
        padding: 0px 15px;
    }
    
    .footer_logo {
        padding: 0px 18px;
    }
    
    .footer_menu a {
        margin: 7px 7px;
        padding: 7px 10px;
    }
    
    .copy {
        margin-top: -10px;
    }    
    
    .footer {
        padding: 80px 0 0px;
    }
    
    }
    
    @media screen and (max-width: 768px) {
    
    .box_link {
        justify-content: center;
        top: 2px;
        left: 2px;
        padding: 0px 0px;
    }

    .footer_menu {
        justify-content: center;
    }
    
    .footer_info li+li {
        margin-top: 8px;
    }

    .footer_info li p {
        text-align: center;
    }
    
    .footer_menu a {
        margin: 7px 7px;
    }
    .copy {
        margin-top: 0px;
    }
    
    .footer.with_shopping_mode {
        padding: 80px 0 50px;
    }

    #bottom_menu{
        box-shadow: none;
    }

    #bottom_menu li {
        background: #b5b5b5;
    }
    
    #bottom_menu li a i {
        color: #ffffff;
    }
    
    #bottom_menu li a em {
        color: #FFF;
    }

    .footer_info {
        align-items: center;
    }
    
    }


   