@charset "utf-8";


/*網站全域設定/＝＝＝＝＝*/
/*
    #E1D9D0 /*網站主要色系
    #E1CAC5 /*網站輔助色系1
    #f9f6f4; /*網站輔助色系2*/

/*反白顏色*/
::-moz-selection{  background-color: #232323;  color: #fff;}
::selection{  background-color: #232323;  color: #fff;}
:root {
    --MainColor: #7AF3FC;
    --SubColor:#47E0F2;
    --logo01:#96dcd2;
    --logo02:#a0dcb4;
    --Title: #107A7F;
    --SFont:"Noto Sans TC", sans-serif;
    --SFontT:"Noto Serif TC", serif;;
    --SFontEN: "Cormorant Garamond", "Times New Roman", "Georgia", serif;
    --FontColor:#3f3f3f;
    --f70: 70px;
    --f54: 54px;
    --f48: 48px;
    --f42: 42px;
    --f40: 40px;
    --f36: 36px;
    --f32: 32px;
    --f28: 28px;
    --f26: 26px;
    --f24: 24px;
    --f22: 22px;
    --f20: 20px;
    --f18: 18px;
    --f17: 17px;
    --f16: 16px;
}

.path{display: none;}
body {    font-family: "Noto Sans TC";}
.main_part {    max-width: 1400px;    padding: 80px 30px;}
.animated-arrow {
    color:var(--FontColor);
    border-radius: 42px;
    box-shadow: 10px 10px 25px #7af3fc3b, -10px -10px 25px #fff;
    background-color: transparent;
    position: relative;
    -webkit-transition: opacity .5s;
    transition: opacity .5s;
    overflow: inherit;
}
.animated-arrow:hover {
    -webkit-box-shadow: .4rem .4rem 2.6rem 0 rgba(172, 172, 172, .48);
    box-shadow: inset .4rem .4rem 2.6rem #acacac7a;
}

.animated-arrow:before, .animated-arrow:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: inherit;
    -webkit-transition: inherit;
    transition: inherit;
}
.animated-arrow:before {
    -webkit-box-shadow: -2.1rem -2.1rem 2.7rem 0 white;
    box-shadow: -2.1rem -2.1rem 2.7rem #fff;
    z-index: 1;
}
.animated-arrow:after {
    -webkit-box-shadow: .4rem .4rem 2.6rem 0 #7af3fc3b;
    box-shadow: .4rem .4rem 2.6rem #7af3fc3b;
    z-index: 1;
}

.animated-arrow:hover:before, .animated-arrow:hover:after {
    opacity: 0;
}

/*★★★卷軸設定↓↓↓↓↓↓↓↓↓↓↓↓*/
/* 捲軸寬度及高度 */
::-webkit-scrollbar {
    width: 10px; /*右側捲軸寬度*/
    height: 0px; /*下方捲軸高度*/
}
  /* 軌道背景底色 */
::-webkit-scrollbar-track {    background: #e3ffed; }

  /* 滑桿顏色 */
::-webkit-scrollbar-thumb {    background: #a0dcb4; }
  /* 滑桿滑鼠滑入時的顏色 */
::-webkit-scrollbar-thumb:hover {    background: #47E0F2;
}

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/

/*.header_area, .header_area.sticky {
    transition: all 0.5s;
    opacity: 1;
}*/

.header_area {
    background: var(--logo01);
    transition: all 0.3s;
    padding: 15px 20px;
    /* background: transparent; */
}
.header_area.sticky {
    background: transparent;
    -webkit-box-shadow: 0px 1px 20px 10px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 1px 20px 10px rgba(0, 0, 0, 0.05);
}
.pageIndex .header_area {
    opacity: 0;
    transition: all 0.5s ease-in-out;
    animation: down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 3s;
    position: fixed;
}

.header_area::before{
    content: "";
    display: block;
    width: 0%;
    height: 3px;
    background-color: var(--logo02);
    box-shadow: 1px 1px 1px #0000001f;
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s;
    z-index: 1;
}
.header_area::after {
    content: "";
    display: block;
    background-color: #fff;
    width: 0%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0%);
    transition: all 1s;
}

.header_area.sticky::before, .header_area.sticky::after {
    width: 100%;
    transition: all 0.5s;
}

/*上方選單右邊設定 臉書/LINE/電話/信箱
.tp_links a:before {寬高大小設定}
.tp_links a.me_tp_fb {}
.tp_links a.me_tp_fb:before {背景換圖/建議.SVG}
.tp_links a.me_tp_line {}
.tp_links a.me_tp_line:before {背景換圖/建議.SVG}
.tp_links a.me_tp_call {}
.tp_links a.me_tp_call:before {背景換圖/建議.SVG}
.tp_links a.me_tp_mail {}
.tp_links a.me_tp_mail:before {背景換圖/建議.SVG}
*/
.tp_links{display: none;}

/*浮動按鈕*/
.info_fix {
    right: 25px;
    width: 80px;
}

.info_fix:hover>.linksBtn {
    background: linear-gradient(60deg, #7AF3FC, #bef7fb 30%, #47E0F2 55%, #7AF3FC); 
    transition: scale .4s, background-position 1.8s cubic-bezier(0.230,1.000,0.320,1.000);
    background-position: 0 0;
    scale: .95;
}
.info_fix_links a {    background: #96dcd2c9;}
.info_fix_links a:hover {    background: #96dcd2;}

a.info_fix_default.info_fix_ig, a.info_fix_default.info_fix_mail{display: none;}

.linksBtn {
    width: 80px;
    height: 80px;
    /* background: var(--SubColor); */
    background-image: linear-gradient(60deg, #7AF3FC, #bef7fb 30%, #47E0F2 55%, #7AF3FC);
    background-position: 100% 0;
    background-size: 500% 100%;
    position: relative;
}
.linksBtn:after {
    content: " ";
    position: absolute;
    left: -23px;
    top: -23px;
    width: 127px;
    height: 127px;
    background: url(https://pic03.eapple.com.tw/meijing/con_icon.png) no-repeat;
    background-size: 100%;
    -webkit-animation: rotate 20s infinite linear;
    animation: rotate 20s infinite linear;
}
.info_fix:hover>.linksBtn:after {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
.fa-lightbulb::before {    content: "\f075";}

@keyframes rotate {
100% {    -webkit-transform: rotate(360deg);    transform: rotate(360deg);}
}

/*電腦LOGO
.nav-brand {}
*/
.nav-brand {    display: flex;}
.nav-header {    max-width: 165px;}
.nav-brand {    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);}
.pageIndex .nav-brand {
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
    animation: logo_down 1s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 3.2s;
}
@keyframes logo_down{
    0%{        opacity: 0;    }
    100%{        opacity: 1;   }
}


    
/*第一層*/
.pageIndex .stellarnav > ul > li{
    opacity: 0;
    animation: down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 3.5s;
}
.stellarnav > ul > li > a {
    transition: all 0.3s;
    font-weight: 300;
    font-size: 15px;
    letter-spacing: 1px;
    padding: 0 10px;
    color: #fff;
}
.sticky .stellarnav > ul > li > a {color: var(--FontColor);}
.stellarnav > ul > li:hover > a{color: var(--Title);}

.pageIndex .stellarnav > ul > li:nth-of-type(1){    animation: down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;    animation-delay: 3.5s;}
.pageIndex .stellarnav > ul > li:nth-of-type(2){    animation: down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;    animation-delay: 3.7s;}
.pageIndex .stellarnav > ul > li:nth-of-type(3){    animation: down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;    animation-delay: 3.9s;}
.pageIndex .stellarnav > ul > li:nth-of-type(4){    animation: down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;    animation-delay: 4s;}
.pageIndex .stellarnav > ul > li:nth-of-type(5){    animation: down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;    animation-delay: 4.2s;}
.pageIndex .stellarnav > ul > li:nth-of-type(6){    animation: down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;    animation-delay: 4.3s;}

.stellarnav > ul > li > a:before, .stellarnav li li > a:before {
    transition: all .5s ease-in-out;
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 2px;
    left: 0;
    right: 0;
    background-image: linear-gradient(to left, var(--MainColor), var(--SubColor));
    background-size: 500%;
}
.stellarnav > ul > li:hover > a:before {
    opacity: 1;
    width: 100%;
    animation: animate 20s linear infinite;
}
@keyframes animate {
    0% {    background-position: 0 0;  }
    0% {    background-position: 500% 0;  }
}

@keyframes down {
    0%{        opacity: 0;        transform: translate(0,-20px);    }
    100%{        opacity: 1;        transform: translate(0,0);    }
}

/*下拉線條箭頭*/
.stellarnav li.has-sub>a:after {
    position: absolute;
    top: 38%;
    right: 5px;
    height: 7px;
    width: 7px;
    display: block;
    border-style: solid;
    border-width: 0 1px 1px 0;
    border-color: transparent #fff #fff transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.sticky .stellarnav li.has-sub>a:after {    border-color: transparent var(--FontColor) var(--FontColor) transparent;}

/*第二層*/
.pageIndex .stellarnav ul ul {    background: #96dcd2c9;}
.stellarnav ul ul {
    background: #96dcd2c9;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.stellarnav li li {    border: none;}

.stellarnav li li:hover > a, .stellarnav li li.has-sub:hover > a {
    color: #fff;
    padding-left: 10px;
    background: var(--SubColor);
}
.stellarnav li li > a, .stellarnav li li.has-sub > a {
    padding: 7px 10px;
    transition: all 0.3s;
    color: var(--Title);
    color: #fff;
}


/*下拉第二層箭頭*/
.stellarnav li li.has-sub > a:after {
    position: absolute;
    top: 38%;
    right: 5px;
    height: 7px;
    width: 7px;
    display: block;
    border-style: solid;
    border-width: 0 1px 1px 0;
    border-color: transparent var(--MainCOlor) var(--MainCOlor) transparent;
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
}

/* 商品下拉超過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*/
.footer {
    padding: 70px 0 0;
    background: #E9F5F0;
    background: url(https://pic03.eapple.com.tw/meijing/footer.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.footer_info {
    grid-template-columns: 1fr 1fr 210px;
    grid-gap: 35px;
    padding-right: 0;
}
.footer_logo {    order: 3;}

.footer_info ul {    display: flex;}
.footer_info li:nth-child(1) {    padding-right: 50px;}
.footer_info li p, .footer_info li p a {
    color: var(--FontColor);
    line-height: 210%;
    transition: all .3s;
}
.footer_info li p:hover, .footer_info li p:hover a {    color: var(--Title);}

.footer_info li {    padding-top: 0;}
.footer_info li:nth-child(1):before,
.footer_info li:nth-child(2):before,
.box_link:before {
    color: var(--Title);
    font-size: 16px;
}
.footer_info li:nth-child(1):before {    content: "Contat Us";}
.footer_info li:nth-child(2):before {    content: "Menu";}
.box_link:before {    content: "Social Media";}
p.line, a.me_tp_fb, .footer_menu {    padding-top: 10px;}


.footer_menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    row-gap: 6px;
}
.footer_menu a {
    border: none;
    background: transparent;
    color: var(--FontColor);
    padding-left: 0;
    margin: 0;
}
.footer_menu a:hover {    background: transparent;    color: var(--Title);}

.box_link {
    /* max-width: 210px; */
    /* flex-wrap: nowrap; */
    /* flex-direction: row; */
    /* align-items: center; */
    /* bottom: 0; */
    /* right: 6px; */
    /* justify-content: space-between; */
    /* top: 60px; */
    order: 2;
    position: relative;
    align-items: flex-start;
}
.box_link a {
    border: none;
    font-size: 15px;
    color: var(--FontColor);
    /* background: #96dcd2; */
    border-radius: 100%;
    width: 200px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.box_link a:after {
    font-size: 14px;
    padding-left: 15px;
    text-align: left;
    font-family: var(--SFont);
    transition: all .3s;
}

.box_link a:hover:after, .box_link a:hover i {    color: var(--Title);}

a.me_tp_fb:after {    content: "Facebook";    padding-left: 19px;}
a.me_tp_line:after {    content: "Line";}
a.me_tp_call:after {    content: "Contact";}
a.me_tp_mail:after {    content: "Mail";}
a.me_tp_ig:after {    content: "Instagram";}


.copy {
    backdrop-filter: blur(15px);
    margin-top: 60px;
    padding: 17px 30px;
    font-size: 12px;
    border-top: 1px #ffffff7a solid;
}

#to_top {
    -webkit-transition: background-color .5s cubic-bezier(.33,1,.68,1) 0s, -webkit-box-shadow .5s cubic-bezier(.33,1,.68,1) 0s;
    transition: background-color .5s cubic-bezier(.33,1,.68,1) 0s, -webkit-box-shadow .5s cubic-bezier(.33,1,.68,1) 0s;
    transition: background-color .5s cubic-bezier(.33,1,.68,1) 0s, box-shadow .5s cubic-bezier(.33,1,.68,1) 0s;
    transition: background-color .5s cubic-bezier(.33,1,.68,1) 0s, box-shadow .5s cubic-bezier(.33,1,.68,1) 0s, -webkit-box-shadow .5s cubic-bezier(.33,1,.68,1) 0s;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(249, 249, 249, .6)), to(rgba(255, 255, 255, 0))), rgba(255, 255, 255, .7);
    background: -webkit-linear-gradient(bottom, rgba(249, 249, 249, .6) 0, rgba(255, 255, 255, 0) 100%), rgba(255, 255, 255, .7);
    background: linear-gradient(360deg, rgba(249, 249, 249, .6) 0, rgba(255, 255, 255, 0) 100%), rgba(255, 255, 255, .7);
    -webkit-box-shadow: 0 1.71429rem 2.85714rem rgba(0, 0, 0, .16);
    box-shadow: 0 1.71429rem 2.85714rem rgba(0, 0, 0, .16);
    left: 20px;
    bottom: 30px;
}
#to_top:hover {
    background: var(--logo02);
    -webkit-box-shadow: 0 1.71429rem 2.85714rem transparent;
    box-shadow: 0 1.71429rem 2.85714rem transparent;
}

/*聯絡我們*/
.contact_form li.last cite {    background: #d3af79;}


/* = = = 大圖-分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#content_main { margin:0;}
.bannerindex { position:relative; height:auto;}
.swiper-banner { position:static; margin:0; height:auto;} 
.swiper-banner .swiper-slide img {
    width: 100%;
}

/* .swiper-slide img { height:auto;} */
@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0;}
}


/*大圖載入*/
.pageIndex #page::before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: url(https://pic03.eapple.com.tw/meijing/ban-logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    animation: slide-out 4s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    pointer-events: none;
}
.pageIndex #page::after{
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
    background-image: linear-gradient(135deg, #7af3fc, #e9fdff, #47E0F2);
    background-size: contain, 200% 200%;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    -webkit-animation: chanel2112_bg_grade 3.5s cubic-bezier(0.37, 0, 0.63, 1) both;
    animation: chanel2112_bg_grade 4s cubic-bezier(0.37, 0, 0.63, 1) both;
}
.pageIndex .bannerindex::before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: transparent;
    backdrop-filter: grayscale(1)  blur(7px);
    z-index: 999;
    animation: action-bg 4.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    pointer-events: none;
    mix-blend-mode: saturation;
}
@keyframes slide-out {
    0% {       opacity: 1;  backdrop-filter:  blur(0);   }
    100% {     opacity: 0;   backdrop-filter:  blur(5px);     }
    
}

@keyframes chanel2112_bg_grade  {
0% {
    background-position: 0% 50%; opacity:1 ;    -webkit-transition: opacity 1s;
    transition: opacity 1s;
}
50% {    background-position: 100% 50% ; backdrop-filter:  blur(10px);  }
100% {    background-position: 0% 50%; opacity:0 ;}
}


/*.pageIndex .bannerindex::before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: transparent;
    backdrop-filter: grayscale(1)  blur(7px);
    z-index: 999;
    animation: action-bg 4s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    pointer-events: none;
}*/
@keyframes action-bg {
    0%{        backdrop-filter:  blur(10px);    }
    100%{        backdrop-filter:  blur(0px);    }
}


/*大圖效果*/
.pageIndex .bannerindex .swiper-slide.swiper-slide:before, 
.pageIndex .bannerindex .swiper-slide.swiper-slide:after {
    content: ""; position: absolute;  z-index: 999; pointer-events: none;
}

/*大圖1*/
.pageIndex .bannerindex .swiper-slide:nth-child(1).swiper-slide:before{
    background: url(https://pic03.eapple.com.tw/meijing/ban01.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    background-position: center;
    /* padding-bottom: calc(100% / 1 * 0.055); */
    filter: drop-shadow(0px 0px 28px rgba(245, 186, 24, 0.45)) drop-shadow(0px 0px 20px rgba(255, 81, 0, 0.7)) drop-shadow(0px 0px 4px rgba(255, 255, 255, 0.7));
}

.pageIndex .bannerindex .swiper-slide:nth-child(1).swiper-slide-active:after { 
    left: 0;
    height: 100%;
    bottom: 0;
    width: 100%;
    content: "";
    inset: 0;
    content: "";
    background: radial-gradient(hsla(54deg, 100%, 87%, 0) 0%, hsla(54deg, 70%, 90%, 0.35) 55%, hsla(8deg, 79%, 90%, 0.35) 70%, hsla(8deg, 79%, 90%, 0) 80%, hsla(8deg, 79%, 90%, 0) 100%);
    transition: 200ms;
    transform: translate3d(0%, 0%, 0) scale(5);
}
.pageIndex .bannerindex .swiper-slide:nth-child(1).swiper-slide-active:before {     animation: slide-top 2s 0.3s both; }    
.pageIndex .bannerindex .swiper-slide:nth-child(1).swiper-slide-active::after {    animation: move-light 3000ms forwards, move-light-opacity 3000ms forwards;}    
@keyframes move-light {
    0% {        transform: translate3d(-250%, -250%, 0) scale(4.5)    }
    100% {        transform: translate3d(0%, 0%, 0) scale(5)    }
}
@keyframes move-light-opacity {
    60% {        opacity: 1    }
    100% {        opacity: 0    }
}

/*大圖2*/
.pageIndex .bannerindex .swiper-slide:nth-child(2).swiper-slide::before {
    background: url(https://pic03.eapple.com.tw/meijing/ban02-1.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    background-position: center;
    /* padding-bottom: calc(100% / 1 * 0.055); */
}
.pageIndex .bannerindex .swiper-slide:nth-child(2).swiper-slide:after {
    background: url(https://pic03.eapple.com.tw/meijing/ban02-2.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    background-position: center;
    backdrop-filter:blur(7px);
}

.pageIndex .bannerindex .swiper-slide:nth-child(2).swiper-slide-active::before {  animation: slide-top 2s 0.3s both;  }
.pageIndex .bannerindex .swiper-slide:nth-child(2).swiper-slide-active:after {  animation: slide-in  3s 0.3s both;   animation-delay: .6s;} 


@keyframes slide-top {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;}
    
}
@keyframes slide-in {
    0% {        opacity: 0;   backdrop-filter:  blur(7px);    }
    100% {        opacity: 1;  backdrop-filter:  blur(0);   }
    
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {
    background-position: center;
    background-size: cover;
    padding: 253px 0;
    background-repeat: no-repeat;
    overflow: hidden;
    background-image: none;
    position: relative;
    z-index: 1;
    background: repeat center center var(--logo01);
    padding: 401px 0 25px 0;
    position: relative;
}
.banner::before {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(https://pic03.eapple.com.tw/meijing/ban.jpg);
    position: absolute;
    top: 0;
    left: 0;
    animation-name: oxxo;
    animation-duration: 5s;
    background-size: cover;
    background-position: center;
}
body.blog_page.article_a.bodyDesktop .banner:before {    background-image: url(https://pic03.eapple.com.tw/meijing/ban-bloga.jpg);}
body.blog_page.article_b.bodyDesktop .banner:before {    background-image: url(https://pic03.eapple.com.tw/meijing/ban-blogb.jpg);}
body.blog_in_page.article_a.bodyDesktop .banner.banblog::before {    background-image: url(https://pic03.eapple.com.tw/meijing/ban-bloga.jpg) ;}
body.blog_in_page.article_b.bodyDesktop .banner.banblog::before {    background-image: url(https://pic03.eapple.com.tw/meijing/ban-blogb.jpg);}

.banner:after {
    position: absolute;
    bottom: 16%;
    height: 100%;
    content: "";
    left: 50%;
    width: 100%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 1px;
    background-color: #fff;
    opacity: 0.2;
}
@keyframes oxxo {
    0% { transform: scale(1.1); }
    100% { transform: scale(1);}
}
.banner h5 {
    font-size: var(--f24);
    font-weight: 300;
    color: #fff;
    letter-spacing: 5px;
    position: relative;
    animation: slide-top 1.5s 0.3s both;
    text-indent: 5px;
    /* filter: drop-shadow(1px 2px 3px black); */
    width: 100%;
    max-width: 1366px;
    margin: 0 auto;
    text-align: left;
    padding: 0 40px;
    padding-top: 2%;
}
.banner h5:before {
    font-family: var(--SFontEN);
    position: absolute;
    bottom: 100%;
    letter-spacing: 2px;
    text-indent: 2px;
    font-size: var(--f70);
    animation: slide-top 1.5s 0.5s both;
    font-weight: 300;
    content: "Dr. MEI-JING";
    left: 40px;
    text-transform: uppercase;
}
.services_page .banner h5:before { content: "SERVICE";}
.banner.banblog .banner h5:before {    content: "NEWS";}
body.blog_page.article_b .banner h5:before {    content: "Case sharing";}
body.promotions_page .banner h5:after {    content: "媄婧美學診所";}

.banner.banA {}
.banner.banB {}
.banner.banC {}
.banner.banD {}
.banner.banE {}
.banner.banblog {}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*促銷方案*/
.news_part {    padding: 60px 30px;}
body.promotions_page .show_content {    padding: 0 30px;}
body.promotions_page .edit {
    line-height: 200%;
    letter-spacing: .05rem;
    font-weight: 300;
    font-size: var(--f16);
}
body.promotions_page .edit img {    padding-bottom: 20px;}
.promotion_title span, .promotion_title em {
    border: none;
    display: none;
}
.promotion_title h2 {
    font-size: var(--f32);
    color: var(--Title);
    font-family: var(--SFontT);
    margin-bottom: 15px;
    border-bottom: 1px solid var(--MainColor);
    padding-bottom: 25px;
    width: 100%;
}
/*
.news_part .title_i_box h4 {
    color: var(--TitleColor);
    font-weight: bold;
}
.news_part .title_i_box h4:before {
    content: "NEWS";
    display: block;
    font-family: var(--SFontEN);
}
.news_list ul li p {
    color: var(--FontColor);
}
*/



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 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-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:#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;}

/*顏色*/
.products-list .more {    border: 1px solid #ADA17E;    color: #ADA17E;}
.products-list .item a:hover .more {    background: #ADA17E;}

/*購物車/內層＝＝*/
.product_info_page .main_part {    width: 90%;}
/*按鈕顏色*/
.inquiry_a1{background: #cbc0a0;}
.inquiry_a2{background: #bdab77;}
.inquiry_a3{background: #ADA17E;}
.inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover{background: #222;}
.lastaction {    color: #ADA17E;    background-color: #f2f2f2;}
.nextaction {    background-color: #ADA17E;}
.lastPage {    background: #ADA17E;}

/*商品側邊規格*/
.product_info li .txt_box {    color: #222222;    width: 100%;}
.sidebarBtn .sp_price {   color: #cbc0a0;}
.mobile_product_name{font-size: 24px;}
/*相關推薦*/
.prod_related h6 span:before{font-size: 28px;}



@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) {
    .payment_form {    flex-direction: column;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
.blog_subbox {    grid-template-columns: 1fr;}
.subbox_item a:before, .subbox_item a:after {display: none;}
.subbox_item a {
    grid-template-columns: 30% 1fr;
    grid-gap: 8%;
    align-items: center;
}
.blog_list_ri h5, .i_blog_ri h5 {
    color: var(--FontColor);
    font-size: var(--f24);
}
.blog_list_ri em {
    position: absolute;
    right: 10px;
    bottom: 10px;
    font-weight: 300;
}
.blog_list_ri p, .i_blog_ri p {
    font-weight: 300;
    color: var(--FontColor);
    line-height: 180%;
    margin-top: 30px;
}
.blog_list_le {    overflow: hidden;}


/*文章-首頁*/
.module_i_news {    padding: 80px 30px;}
.module_i_news .title_i_box h4 {
    color: var(--FontColor);
    font-size: var(--f24);
    line-height: 1;
}
.module_i_news.module_i_news02 .title_i_box h4:before {content: "Case Sharing";}
.module_i_news .title_i_box h4:before {
    content: "NEWS";
    display: block;
    font-size: var(--f70);
    color: var(--SubColor);
    font-family: var(--SFontEN);
    text-transform: uppercase;
}
.module_i_news ul {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1366px;
}
.module_i_news li a {
    grid-template-columns: 1fr;
}
.module_i_news li a:before, .module_i_news li a:after {display: none;}
.i_blog_le img, .blog_list_le img {    transition: 0.8s;}
.module_i_news li:hover a img, .subbox_item a:hover img {    transform: scale(1.05);}
.i_blog_ri p { margin-top: 0;}

h5.blog_le_t {
    color: var(--FontColor);
    font-size: var(--f24);
    font-weight: 400;
}
.blog_le .accordion {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--logo01);
}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {    background: var(--logo01) !important;}
.subbox_item a:hover h5 {    color: var(--Title);}

/*文章內層*/
/*文章內層封面
.articel_mainPic img{display: none;}*/
h4.blog_category_title {
    color: var(--FontColor);
    font-weight: 400;
    color: var(--Title);
}
.blog_back a.article_btn_back {    background: var(--logo02);}
.blog_back a.article_btn_prev {    background: var(--logo01);}
.blog_back a.article_btn_next {    background: var(--logo01);}

/*文章標籤*/
.news_tags {    flex-wrap: wrap;}
.news_tags a {    color: var(--FontColor);    opacity: .5;}

/*文章-相關推薦*/
.news_related {
    background: #ffffff;
    padding: 60px 30px;
}
.news_related h6 span:before {
    font-size: var(--f24);
    color: var(--FontColor);
    font-weight: 400;
}

.lastPage {
    color: #fff;
    background: var(--SubColor);
    border-radius: 30px;
}


/* = = = 相簿-分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*.overlay {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(0, 0, 0, .3);
    left: 0;
    top: 0;
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    transition: all .4s 100ms cubic-bezier(.42,0,.58,1);
}*/

/*相本分類全版面 ( 限制最寬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;}
*/

.pic-list .item a img {    transition: .4s ease;}
.pic-list .item a:hover img {
    transform: scale(1.05);
    transition: .4s ease;
    filter: grayscale(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; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
@media (max-width:1200px) {
.footer_info {
    grid-template-columns: 2fr 1fr 210px;
}
}

@media (max-width:1024px) {
    :root {
        --f70: 58px;
        --f54: 48px;
        --f48: 40px;
        --f42: 38px;
        --f40: 36px;
        --f36: 32px;
        --f32: 28px;
        --f28: 24px;
        --f26: 22px;
        --f24: 22px;
        --f22: 20px;
    }
    /*banner*/
    .banner {    padding: 323px 0 16px 0;}
}


@media screen and (max-width: 768px) {
    :root {
        --f70: 45px;
        --f54: 36px;
        --f48: 32px;
        --f42: 30px;
        --f40: 28px;
        --f36: 26px;
        --f32: 24px;
        --f28: 20px;
        --f26: 20px;
        --f24: 20px;
        --f20: 18px;
        --f18: 17px;
        --f17: 16px;
    }

/* 開啟手機板下方按鈕所需設定
#bottom_menu {display: block; } */
.footer.with_shopping_mode { padding:30px 0 70px; }
#to_top { bottom:60px;}
#bottom_menu li:first-child:nth-last-child(2), #bottom_menu li:first-child:nth-last-child(2) ~ li {
    width: 50%;
    display: block;
    float: left;
}

/*漢堡選單*/
.stellarnav.mobile.left > ul {    border: none;}
.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {
    background: var(--SubColor); color: #fff;
}
.stellarnav .icon-close:before, .stellarnav .icon-close:after {    border-bottom: solid 2px #ffffff;}
.stellarnav a.dd-toggle .icon-plus:before, .stellarnav a.dd-toggle .icon-plus:after {    border-bottom: solid 2px var(--MainColor);}/*下拉關掉*/
.stellarnav.mobile li.open {    background: var(--bgcolor);}/*下拉*/

ul.show-list, .pic-list {    grid-template-columns: repeat(2, 1fr);}
.blog_subbox {    grid-template-columns: repeat(2, 1fr);}

/*banner*/
.banner {    padding: 281px 0 16px 0;}
.footer_info {        grid-template-columns: 1fr;    }
}


@media (max-width:600px) {
    :root {
        --f70: 40px;
        --f54: 32px;
        --f48: 28px;
        --f42: 26px;
        --f40: 24px;
        --f36: 22px;
        --f32: 20px;
        --f28: 18px;
        --f26: 18px;
        --f24: 18px;
        --f22: 18px;
        --f20: 17px;
        --f18: 16px;
        --f17: 15px;
        --f16: 15px;
    }
    ul.show-list, .pic-list {    grid-template-columns: 1fr;}

        /*聯絡我們表單*/
    .contact_form li {    grid-gap: 0;}
    .contact_form li .form__label {    background: transparent;}

    /*banner*/
    .banner {    padding:171px 0 10px 0;}
    .banner:after {   bottom: 20%;}
}

@media (max-width:375px) {
    :root {
        --f70: 36px;
        --f54: 28px;
        --f48: 24px;
        --f42: 22px;
        --f40: 20px;
        --f36: 18px;
        --f32: 18px;
        --f28: 17px;
        --f24: 17px;
        --f22: 17px;
        --f20: 16px;
        --f18: 15px;
    }
}


