@charset "utf-8";


/*網站全域設定/＝＝＝＝＝*/
/*
    #F2E2E6 /*網站主要色系
    #E1CAC5 /*網站輔助色系1
    #f9f6f4; /*網站輔助色系2*/

/*反白顏色*/
::-moz-selection{  background-color: #BC6E62;  color: #fff;}
::selection{  background-color: #BC6E62;  color: #fff;}
:root {
    --MainColor: #b87363;
    --SubColor:#C0838C;
    --SubColor02:#CF989F;
    --SubColor03:#D8ABB1;
    --SubColor04:#E0BCBF;
    --logocolor:#bd7665;
    --logocolor02:#e8afa8;
    --titlecolor:#5F3134;
    --bgwhite:#FAF8F6;
    --SFont:'Noto Serif TC', serif;
    --SFontEN:'Cormorant Garamond', serif;
    --FontColor:#333333;
    --f75: 75px;
    --f54: 54px;
    --f48: 48px;
    --f42: 42px;
    --f40: 40px;
    --f36: 36px;
    --f32: 32px;
    --f28: 28px;
    --f24: 24px;
    --f22: 22px;
    --f20: 20px;
    --f18: 18px;
    --f17: 17px;
    --f16: 16px;
    --pd100: 100px;
    --pd80:80px;
    
}

.path{display: none;}
body {    font-family: var(--SFont); font-size: var(--f16); letter-spacing: .02rem;}
#content_main, #content, .sb_marquee {
    background-color: var(--bgwhite);
    background-image: url(https://pic03.eapple.com.tw/herbzayn/hb_bg.jpg);
}

.sb_marquee {    display: none;} /*跑馬燈*/

.main_part {    max-width: 1440px;    padding: var(--pd80) 30px;}

#to_top {
    border-radius: 0;
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid;
    border-image-source: linear-gradient(135deg, #b87363 0%, #ffd1d1 50%, #b87363 100%);
    border-image-slice: 1;
    border-radius: 0;
    width: 50px;
    height: 50px;
    color: #b87363;
    transition: all 0.3s ease;
    animation: jumpPause 4s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    bottom: 20px;
    left: 20px;
}
#to_top:hover {
    background: linear-gradient(to right, #b87363 0%, #e5b2a4 50%, #b87363 100%) !important;
    color: #fff;
    transform: scale(1.1);
    animation-play-state: paused; 
}

#to_top i.top {    height: 15px;}
#to_top i:before, #to_top i:after {    background: #c89387;}
#to_top:hover i:before, #to_top:hover i:after {    background: #fff;}

@keyframes jumpPause {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); } 
    60% { transform: translateY(-5px); } 
}


/*按鈕*/
.i_prod_b a, .animated-arrow {
    background: var(--SubColor02);
    border-radius: 30px;
}

/*頁碼
.page strong, .page a:hover {    background: var(--SubColor);}
.page li.activeN {    color: var(--SubColor);}
*/

/*★★★卷軸設定↓↓↓↓↓↓↓↓↓↓↓↓*/
/* 捲軸寬度及高度 */
::-webkit-scrollbar {
    background: #F2E2E6;
    width: 7px;
}
::-webkit-scrollbar-button {
    display: none;
    background: #F2E2E6;
    border-radius: 0;
}
/* 滑桿顏色 */
::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background: linear-gradient(135deg, #e5b2a4 0%, #d59687 50%, #b87363 100%);
}

/* 滑桿滑鼠滑入時的顏色 */
::-webkit-scrollbar-thumb:hover {    background: var(--MainColor); }

/* 軌道背景底色 */
::-webkit-scrollbar-track {    box-shadow: transparent;}


/*
關於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 {
    background: var(--MainColor);
    transition: all 0.3s;
    padding: 15px 20px;
    /* background: transparent; */
}
.header_area.sticky {
    -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);
    background: #b87363c4;
    backdrop-filter: blur(10px);
}

.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: 2s;
    position: fixed;
}
.header_area::after {
    content: "";
    display: block;
    background: linear-gradient(135deg, #e5b2a4 0%, #d59687 50%, #b87363 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(0%, 0%);
    transition: all 1s;
}
.header_area.sticky::after {
    width: 0%;
    transition: all 0.5s;
}
.main_header_area .container {    max-width: 95%;}


/*上方選單右邊設定 臉書/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_links {    display: flex !important;}
.linksBtn {    display: none;}
a.info_fix_default.info_fix_mail {    display: none;}

.info_fix_links a {
    /* background: linear-gradient(45deg, #ffd1d1 0%, #f1b1b1 25%, #ffd1d1 50%, #f1b1b1 75%, #b76e79 100%); */
    overflow: visible;
    border-radius: 50px;
    transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #b76e79;
    margin-bottom: 15px;
    font-size: 1.4em;
    position: relative;
    border: 1.5px solid transparent;
    background-image: linear-gradient(#b76e79, #b76e79), linear-gradient(45deg, #ffd1d1, #b76e79, #ffd1d1);
    background-origin: border-box;
    background-clip: content-box, border-box;
    box-shadow: 0 0 0 0 rgba(183, 110, 121, 0.4);
    animation: fb-pulse 2s infinite;
}
@keyframes fb-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(183, 110, 121, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(183, 110, 121, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(183, 110, 121, 0);
    }
}

.info_fix_links a:hover {
    transform: scale(1.1) rotate(5deg); 
    color: #fff;
    background-image: linear-gradient(#d59687, #d59687), 
                        linear-gradient(45deg, #fff, #ffd1d1, #fff);
    box-shadow: 0 5px 15px rgba(183, 110, 121, 0.5);
}
.info_fix_links a i {    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.1));}
.fa-tiktok:before {    content: "\e07b";}

/*浮動順序*/
a.info_fix_default.info_fix_fb {    order: 1;}
a.info_fix_default.info_fix_line {    order: 4;}
a.info_fix_default.info_fix_ig {    order: 2;}
a.info_fix_default.info_fix_TIKTOK{    order: 3;}
a.info_fix_default.info_fix_tel {    order: 5;}

/*電腦LOGO
.nav-brand {}
*/
.nav-brand {    display: flex;}
.nav-brand {
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
    -webkit-filter: contrast(0) brightness(150%);
    filter: contrast(0) brightness(200%);
}
.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: 2s;
}

@keyframes logo_down{
    0%{        opacity: 0;    }
    100%{        opacity: 1;   }
}
@keyframes down {
    0%{        opacity: 0;        transform: translate(0,-20px);    }
    100%{        opacity: 1;        transform: translate(0,0);    }
}

/*手機LOGO
.nav-brand-m {}
*/


/*第一層*/
.pageIndex .stellarnav > ul > li{
    opacity: 0;
    animation: down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 2s;
}

.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: 2s;}
.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: 2.3s;}
.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: 2.5s;}
.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: 2.7s;}
.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: 2.9s;}
.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: 3.1s;}
.pageIndex .stellarnav > ul > li:nth-of-type(7){    animation: down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;    animation-delay: 3.3s;}
.pageIndex .stellarnav > ul > li:nth-of-type(8){    animation: down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;    animation-delay: 3.5s;}

.stellarnav > ul > li > a { 
    color: #fff; 
    transition: all 0.5s ease;
    letter-spacing: 1px;
    font-weight: 500;
    padding: 5px 10px; 
    position: relative; 
    /*background: linear-gradient(to right, #b76e79, #f1b1b1, #ffd1d1, #f1b1b1, #b76e79);*/
    background: linear-gradient(    45deg,     #ffd1d1 0%,      #f1b1b1 25%,      #ffd1d1 50%,     #f1b1b1 75%,      #b76e79 100% );
    background-size: 0% 100%;
    background-repeat: no-repeat;
    background-position: left;
    -webkit-background-clip: text;
    background-clip: text;
}

.stellarnav > ul > li > a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px; 
    background: linear-gradient(to bottom, #b76e79, #f1b1b1, #b76e79); 
    transition: width 0.5s ease; 
}

.stellarnav > ul > li:hover > a {
    background-size: 100% 100%;
    -webkit-text-fill-color: transparent;
}
.stellarnav > ul > li:hover > a::before {    width: 100%;}

/*下拉線條箭頭*/
.stellarnav li.has-sub>a:after {
    position: absolute;
    top: 48%;
    right: 5px;
    height: 7px;
    width: 7px;
    display: block;
    border-style: solid;
    border-width: 0 1px 1px 0;
    border-color: transparent var(--SubColor04) var(--SubColor04) transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}


/*第二層*/
.stellarnav li li {    border: none;}
.stellarnav li li > a, .stellarnav li li.has-sub > a {
    padding: 15px 10px;
    transition: all 0.3s;
    color: var(--FontColor);
}
.stellarnav li li:hover > a, .stellarnav li li.has-sub:hover > a {
    color: var(--MainColor);
    padding-left: 20px;
}
.stellarnav ul ul {    box-shadow: 0 0 17px 0px rgb(0 0 0 / 5%);}
.stellarnav li li > a:before {
    transition: all .5s ease-in-out;
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 10px;
    background: linear-gradient(to right, #b76e79, #f1b1b1, #b76e79); 
    opacity: 0;
}
.stellarnav li li:hover > a:before {
    opacity: 1;
    width: calc(100% - 20px);
}

/*下拉第二層箭頭*/
.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 {
    border-top: 1px solid #b76e79;
    /* background: linear-gradient(180deg, #e5b2a4 0%, #d59687 50%, #b87363 100%); */
    padding: 80px 0 0;
    background: linear-gradient(135deg, #2a1818 0%, #120f0f 100%);
    position: relative;
    box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.5);
}
.footer .center {    max-width: 1400px;}
.box_link {
    width: 100%;
    display: flex;
    max-width: max-content;
    left: 0;
    top: 80px;
    gap: 10px;
    flex-direction: row;
}
.box_link a {
    display: flex;
    height: 35px;
    width: 45px;
    font-size: 14px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background-color: #261717;
    box-shadow: 4px 4px 8px #120a0a, -2px -2px 6px rgba(200, 147, 135, 0.15);
    position: relative;
    border-radius: 30px;
    border: 1px solid rgba(200, 147, 135, 0.1);
    color: #c89387;
    transition: all 0.2s ease-in-out;
    top: 0;
}
.box_link a:hover {
    color: #e5b2a4;
    top: 2px;
    transform: scale(0.98);
    background: linear-gradient(135deg, #b87363 0%, #f1b1b1 50%, #b87363 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    box-shadow: 2px 2px 4px #120a0a, -1px -1px 3px rgba(229, 178, 164, 0.2);
    filter: drop-shadow(0 0 2px rgba(229, 178, 164, 0.3));
}


.footer_info ul {
    display: flex;
    gap: 3vw;
    justify-content: flex-end;
    /* flex-direction: row-reverse; */
}
.footer_info li {
    padding: 0;
    position: relative;
}

.footer_info li:before {
    display: block;
    margin-bottom: 15px;
    width: 100%;
    text-align: left;
    font-weight: 500;
    font-style: normal;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 1px;
    color: var(--SubColor);
    color: transparent;
    background: linear-gradient(45deg, #ffd1d1 0%, #f1b1b1 25%, #ffd1d1 50%, #f1b1b1 75%, #b76e79 100%);
    background-size: 1000% 100%;
    background-repeat: no-repeat;
    background-position: left;
    -webkit-background-clip: text;
    background-clip: text;
}

.footer_info li:nth-child(1):before {    content: "INFORMATION";}
.footer_info li:nth-child(2):before {    content: "RELATED LINK";}

.footer_info li:nth-child(1) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 50%;
}

.footer_info li p.line {    order: 6;}
.footer_info li p.tel {
    order: 3;
    padding-top: 10px;
}
.footer_info li p.fax {
    order: 4;
    padding-top: 10px;
}
.footer_info li p.taxid {    order: 5;}
.footer_info li p.mail {
    grid-column: span 2;
    order: 7;
}
.footer_info li p.add {
    grid-column: span 2;
    order: 1;
    /* border-bottom: 1px solid #b76e79; */
    padding-bottom: 10px;
    position: relative;
}
.footer_info li p.add:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, #b87363 0%, #f1b1b1 25%, #ffd1d1 50%, #f1b1b1 75%, #b87363 100%);
    background-size: 200% 100%;
    animation: roseGoldRun 4s linear infinite;
}

.footer_info li p, .footer_info li p a {
    color: rgba(255, 255, 255, 0.7);
    transition: 0.3s;
}
.footer_info li p:hover, .footer_info li p:hover  a {
    color: #e5b2a4;
    text-decoration: none;
}

.footer_menu a:first-child { display: none; }
.footer_menu {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    box-sizing: border-box;
    padding-top: 10px;
}
.footer_menu a {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    align-items: center;
    background: transparent;
    border: 1px solid rgba(200, 147, 135, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 25px;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
    white-space: nowrap;
}
.footer_menu a:hover {
    color: #261717; 
    padding-left: 25px; 
    border-color: transparent; 
}

.footer_menu a:hover::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #261717;
    font-weight: bold;
}
.footer_menu a::after {
    content: "";
    position: absolute;
    top: 0; 
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(to right, #b87363, #e5b2a4);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1; 
}
.footer_menu a:hover::after {    width: 100%;}

.copy {
    position: relative;
    background: linear-gradient(to right, #b87363 0%, #e5b2a4 50%, #b87363 100%);
    border-top: none;
    color: #4a3434;
    padding: 15px 0;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-align: center;
}
.copy::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px; 
    
    background: linear-gradient(to right, 
        #b87363 0%, 
        #f1b1b1 25%, 
        #ffd1d1 50%, 
        #f1b1b1 75%, 
        #b87363 100%
    );
    background-size: 200% 100%;
    animation: roseGoldRun 4s linear infinite;
}

@keyframes roseGoldRun {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: 0% 0;
    }
}


/* = = = 聯絡我們-分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

.contact_content {    max-width: 1440px;}
.contact_content .information_left, .contact_content .information_right {    width: 100%;}
.blank_letter {
    color: var(--titlecolor);
    text-align: center;
    font-family: var(--SFont);
    font-size: var(--f36);
    font-weight: 600;
}
h4.blank_letter.i {
    grid-column: span 2;
    margin-bottom: 50px;
}

.contact_content .information_left {
    display: grid;
    grid-template-columns: 40% 55%;
    align-items: center;
    justify-content: space-between;
}
.list_before:before {
    content: "宏寶家賀美容國際";
    color: var(--FontColor);
    display: block;
    font-size: var(--f28);
    font-weight: 600;
    margin-bottom: 1.5vw;
}
.list_before.info li {
    letter-spacing: 0.08rem;
    font-size: 16px;
    line-height: 1.5;
    border-bottom: 1px solid var(--SubColor04);
    padding: 15px;
    padding-left: 46px;
}
.contact_le_nomap {    aspect-ratio: 16 / 9;}


.contact_content .information_right {
    margin-top: 4vw;
    padding: 40px;
    background: var(--bgwhite);
    border-radius: 40px;
    box-shadow: #ffd1d1d6 0px 10px 50px;
}
.contact_form {
    grid-gap: 1.5vw;
    font-size: var(--f16);
    font-weight: 600;
    letter-spacing: 0.1rem;
}
.contact_form li {
    grid-template-columns: 155px 1fr;
    grid-gap: 15px;
}
.contact_form li .form__label {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    max-width: 130px;
}

/*圖形驗證按鈕*/
.tncode {
    width: max-content;
    padding: 0 19px;
}
.tncode:hover {
    background: var(--SubColor);
    color: #ffffff;
    box-shadow: 0 4px 12px #b8736382;
    border-color: var(--MainColor);
}

.contact_form li.last blockquote, .contact_form li.last cite {
    border-radius: 50px;
    border: 1px solid var(--SubColor);
}
.contact_form li.last cite {    background: var(--SubColor);}

.contact_page.contact_page #content{position: relative;}
.contact_page #content:before {
    content: "";
    position: absolute;
    top: 19vw;
    left: -6%;
    background: url(https://pic03.eapple.com.tw/herbzayn/ball_01.png) no-repeat;
    width: 300px;
    height: 300px;
    max-width: 16vw;
    aspect-ratio: 300 / 300;
    z-index: 3;
    background-size: contain;
    pointer-events: none;
    animation: breathing-float 4s ease-in-out infinite;
}
.contact_page #content:after {
    content: "";
    position: absolute;
    top: 12vw;
    background: url(https://pic03.eapple.com.tw/herbzayn/ball_02.png) no-repeat;
    background-size: contain;
    right: 9%;
    width: 100%;
    width: 220px;
    animation-duration: 7s;
    max-width: 14vw;
    aspect-ratio: 220 / 220;
    animation: breathing-float2 6s ease-in-out infinite;
    pointer-events: none;
}

.contact_page .main_part {
    position: relative;
    overflow: hidden;
    max-width: 2000px;
}
.contact_page .main_part:before {
    content: "";
    position: absolute;
    top: 2vw;
    background: url(https://pic03.eapple.com.tw/herbzayn/ball_04.png) no-repeat;
    background-size: contain;
    right: -9%;
    width: 100%;
    animation: breathing-float2 6s ease-in-out infinite;
    pointer-events: none;
    animation-delay: -2s;
    width: 500px;
    max-width: 25vw;
    aspect-ratio: 500 / 500;
}

@keyframes breathing-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(3deg);
    }
}

@keyframes breathing-float2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}



/* = = = 大圖-分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*預設解除背景輪播*/
#content_main { margin:0;}
.bannerindex { position:relative; height:auto;}
.swiper-banner { position:static; margin:0; height:auto;} 
.swiper-banner .swiper-slide img {    width: 100%;}

/*例如大圖第一張的after:
.bannerindex .swiper-slide[data-swiper-slide-index="0"]:after

*大圖的指定名稱是從0開始，5張大圖的畫最後一張是4
[data-swiper-slide-index="0"]
[data-swiper-slide-index="1"]
[data-swiper-slide-index="2"]
[data-swiper-slide-index="3"]
[data-swiper-slide-index="4"]*/

/* .swiper-slide img { height:auto;} */
@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0;}
}


/*大圖*/
/*
輪播第二次時，偽元素都只有顯示相同的
再請將個別大圖的指定名稱[data-swiper-slide-index="每一張的數字"]寫進去
例如大圖第一張的after:
.bannerindex .swiper-slide[data-swiper-slide-index="0"]:after
大圖的指定名稱是從0開始，5張大圖的話最後一張是4
[data-swiper-slide-index="0"]
[data-swiper-slide-index="1"]
[data-swiper-slide-index="2"]
[data-swiper-slide-index="3"]
[data-swiper-slide-index="4"]
.pageIndex .bannerindex .swiper-slide[data-swiper-slide-index="2"].swiper-slide-active:before{  }
.pageIndex .bannerindex .swiper-slide[data-swiper-slide-index="0"].swiper-slide-active:after {  }
}*/

/*大圖載入*/
.pageIndex .bannerindex {    position: relative; }
.pageIndex .bannerindex::before {
    left: 0;
    content: "";
    position: absolute;
    z-index: 999;
    pointer-events: none;
    height: 100%;
    bottom: 0;
    width: 100%;
    inset: 0;
    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);
    animation: 
        move-light 8000ms ease-in-out infinite, 
        move-light-opacity 8000ms ease-in-out infinite;
}

@keyframes move-light {
    0% { transform: translate3d(-100%, -100%, 0) scale(4); }
    100% { transform: translate3d(50%, 50%, 0) scale(6); }
}

@keyframes move-light-opacity {
    0% { opacity: 0; }
    20% { opacity: 1; } 
    80% { opacity: 1; } 
    100% { opacity: 0; } 
}
.pageIndex .bannerindex::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 20; 
    background: rgba(229, 178, 164, 0.3); 
    backdrop-filter: blur(25px) brightness(105%);
    -webkit-backdrop-filter: blur(25px) brightness(105%);
    -webkit-mask-image: linear-gradient(135deg, transparent 40%, black 60%);
    mask-image: linear-gradient(135deg, transparent 40%, black 60%);
        -webkit-mask-size: 300% 300%;
    mask-size: 300% 300%;
        -webkit-mask-position: 100% 0%;
    mask-position: 100% 0%;

    pointer-events: none; 
    animation: slide-reveal 6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes slide-reveal {
    0% {
        -webkit-mask-position: 100% 0%;
        mask-position: 100% 0%;
        opacity: 1;
    }
    70% {        opacity: 1;    }
    100% {
        -webkit-mask-position: 0% 100%;
        mask-position: 0% 100%;
        opacity: 0;
    }
}

/*大圖*/
.pageIndex .bannerindex .swiper-slide.swiper-slide:before, 
.pageIndex .bannerindex .swiper-slide.swiper-slide:after {
    content: ""; 
    position: absolute; 
    z-index: 999; 
    pointer-events: none;
}

.pageIndex .bannerindex .swiper-slide:nth-child(1).swiper-slide:before {
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        url(https://pic03.eapple.com.tw/herbzayn/01cover-1text.png),
        url(https://pic03.eapple.com.tw/herbzayn/01cover-1_logo.png);
    background-position: center center;
    background-size: contain; 
    background-repeat: no-repeat;
    z-index: 2;
}
.pageIndex .bannerindex .swiper-slide:nth-child(1).swiper-slide:after {
    display: block;
    top: -5%; left: -5%; width: 110%; height: 110%;
    background-image: 
        url(https://pic03.eapple.com.tw/herbzayn/01cover-1_ball01.png), 
        url(https://pic03.eapple.com.tw/herbzayn/01cover-1_ball02.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: 1; 
}

.pageIndex .bannerindex .swiper-slide:nth-child(2).swiper-slide:before {
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url(https://pic03.eapple.com.tw/herbzayn/01cover-2text.png);
    background-position: center center;
    background-size: contain; 
    background-repeat: no-repeat;
    z-index: 2;
}

.pageIndex .bannerindex .swiper-slide:nth-child(2).swiper-slide::after {
    content: "";
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background-image: url(https://pic03.eapple.com.tw/herbzayn/01cover-2bf.png);
    background-position: center center;
    background-size: contain; 
    background-repeat: no-repeat;
    z-index: 2;
    pointer-events: none;
        opacity: 0;
    transition: opacity 0.6s ease; 
    animation: butterflyFloat 6s ease-in-out infinite;
    will-change: transform;
}

.pageIndex .bannerindex .swiper-slide:nth-child(1).swiper-slide-active:before {     animation: textFadeIn 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards; }    
.pageIndex .bannerindex .swiper-slide:nth-child(1).swiper-slide-active:after {     animation: ballBreathe 10s ease-in-out infinite;  }
.pageIndex .bannerindex .swiper-slide:nth-child(2).swiper-slide-active:before {     animation: textFadeIn 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards; }    
.pageIndex .bannerindex .swiper-slide:nth-child(2).swiper-slide-active:after {    opacity: 1;}


@keyframes textFadeIn {
    0% { opacity: 0; transform: translateY(20px); filter: blur(5px); }
    100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes ballBreathe {
    0%, 100% { 
        transform: scale(1) translate(0, 0); 
        opacity: 0.6; 
        filter: blur(0px); 
    }
    50% { 
        transform: scale(1.1) translate(-2%, 1%); 
        opacity: 1; 
        filter: blur(4px); 
    }
}

@keyframes butterflyFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    }
    33% {
        transform: translate3d(0, -12px, 0) rotate(2deg) scale(1.02);
    }
    66% {
        transform: translate3d(0, 5px, 0) rotate(-1deg) scale(0.98);
    }
}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {
    background: url(https://pic03.eapple.com.tw/herbzayn/ban-01.jpg);
    background-size: cover;
    clip-path: ellipse(82% 87% at 50% 12%);
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: calc(100% / 1 * 0.2);
    height: 0;
}
.banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(222, 165, 151, 0.2), transparent 70%);
    pointer-events: none;
    clip-path: ellipse(82% 87% at 50% 12%);
}
.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1); 
    backdrop-filter: blur(2px); 
    clip-path: ellipse(82% 87% at 50% 12%);
    pointer-events: none;
}
.banner h5 {
    font-size: var(--f32);
    color: #ffffff;
    letter-spacing: 10px;
    text-indent: 10px;
    padding: 15px 20px;
    z-index: 10;
    position: relative;
    margin: 0 auto;
    top: clamp(40px, 12vw, 15vw);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    animation: slide-top 1.5s 0.5s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-weight: 600;
}
/*動畫*/
@keyframes slide-top {
    0% { -webkit-transform: translateY(100%);transform: translateY(100%); opacity:0; }
    100% {-webkit-transform: translateY(0); transform: translateY(0); opacity:1;}
}

.banner.banA {}
.banner.banB {}
.banner.banC {}
.banner.banD {}
.banner.banE {}
.banner.banblog {}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*促銷方案*/
.news_part {    padding: 60px 20px;}

/*
.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 var(--SubColor02);    color: var(--SubColor02);}
.products-list .item a:hover .more {    background: var(--SubColor02);}


/*購物車調整*/
.products-list .item a:hover img {
    transform: scale(1.2);
}
.products-list .pic img {
    transition: transform 1500ms cubic-bezier(0.19, 1, 0.22, 1);
    transform: scale(1);
}
.products-list .pic:before {
    position: absolute;
    mix-blend-mode: hard-light;
    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%);
    opacity: 0;
    transition: 200ms;
    transform: translate3d(0%, 0%, 0) scale(5);
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
}
.products-list .item a:hover .pic:before {
    opacity: 1;
    animation: move-light 1850ms forwards, move-light-opacity 1850ms forwards;
}

/*購物車側邊選單*/
.product-layer-two > li {
    border: none;
    padding-bottom: 0;
}
.product-layer-two li a {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--SubColor04);
    padding: 15px;
    color: var(--FontColor);
}
.product-layer-two li.active a {
    border: none;
    background: linear-gradient(to right, #b87363, #e5b2a4);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--bgwhite);
}

/*購物車/內層＝＝*/
.product_info_page .main_part {    width: 90%; max-width:1500px; }

/*按鈕顏色*/
.inquiry_a1{background: #cbc0a0;}
.inquiry_a2{background: #bdab77;}
.inquiry_a3{background: var(--SubColor02);}
.inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover{background: #222;}
.lastaction {    color: var(--SubColor02);    background-color: #f2f2f2;}
.nextaction {    background-color: var(--SubColor02);}
.lastPage {    background: var(--SubColor02);}

/*商品側邊規格*/
.product_main {    width: 60%;}
.sidebarBtn {
    background: transparent;
    border: none;
    width: 34%;
    margin-left: 4%;
}
.sidebarBtn .sp_price {   color: #cbc0a0;}
.mobile_product_name{font-size: 24px;}

.sidebarBtn h2 {
    color: var(--FontColor);
    font-size: var(--f28);
    font-weight: 500;
}
.product_info li .txt_box {
    color: var(--FontColor);
    line-height: 160%;
    font-size: var(--f16);
    letter-spacing: 1px;
}
.product_info li span{display: none;} /*商品規格*/


.product_info_page a.pdinfo_link.pdinfo_line, .product_info_page a.pdinfo_link.pdinfo_tel {    display: none;}

/*相關推薦*/
.prod_related {
    padding: 60px 20px;
    background-color: var(--bgwhite);
    background-image: url(https://pic03.eapple.com.tw/herbzayn/hb_bg.jpg);
}
.prod_related h6 {    margin-bottom: 30px;}
.prod_related h6 span:before {
    font-size: var(--f24);
    color: var(--titlecolor);
}
.related_list li a {
    padding: 11px;
    background: var(--bgwhite);
    box-shadow: #f1b1b130 0px 10px 50px;
}


/*購物車-首頁*/
.pageIndex .products-list {    gap: 2vw;}
.pageIndex .productsListBox, .productsListBox.swiper {    padding: var(--pd80) 0;}
.prod_part {
    background: url(https://pic03.eapple.com.tw/herbzayn/pr_bg.jpg) no-repeat;
    background-attachment: fixed;
    background-position: bottom center;
}

.prod_part section {    max-width: 1600px;}
.i_prod_tit span {
    font-size: var(--f36);
    color: var(--titlecolor);
    display: none;
}
.products-list .name {
    font-size: var(--f20);
    text-align: center;
    color: var(--FontColor);
    font-weight: 500;
}


@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;}

.product_main {    width: 100%;}
.sidebarBtn {    width: 100%;    margin-left: 0;}
.mobile_product_name {
    font-size: var(--f36);
    color: #5F3134;
    font-family: 'Noto Serif TC', serif;
    font-weight: 600;
}
}

@media screen and (max-width: 600px) {
    .payment_form {    flex-direction: column;}
.product_info_page .main_part {    width: 100%;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/
.blog_subbox {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5vw;
}

.subbox_item a, .module_i_news li a {
    grid-template-columns: 1fr;
    gap: 10px;
}
.subbox_item a:before, .subbox_item a::after, .module_i_news li a:before, .module_i_news li a:after {display: none;}
.blog_list_le, .i_blog_le {
    overflow: hidden;
    position: relative;
}

.blog_list_le:before, .i_blog_le::before {
    position: absolute;
    inset: 0;
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    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%);
    opacity: 0;
    transition: 200ms;
    transform: translate3d(0%, 0%, 0) scale(5);
    left: 0;
    top: 0;
    mix-blend-mode: hard-light;
}
.subbox_item a:hover .blog_list_le:before, .module_i_news li a:hover .i_blog_le::before {
    opacity: 1;
    animation: move-light 1850ms forwards, move-light-opacity 1850ms forwards;
}

.subbox_item a .blog_list_ri h5, .module_i_news li a .i_blog_ri h5 {
    position: relative;
    background: linear-gradient(45deg, #b87363 0%, #f1b1b1 25%, #d59687 50%, #f1b1b1 75%, #b76e79 100%);
    background-size: 0% 100%;
    background-repeat: no-repeat;
    background-position: left;
    -webkit-background-clip: text;
    background-clip: text;
    color: var(--FontColor);
    -webkit-line-clamp: 2;
}
.subbox_item a:hover .blog_list_ri h5, .module_i_news li a:hover .i_blog_ri h5  {
    background-size: 100% 100%;
    -webkit-text-fill-color: transparent;
}

/*文章-首頁*/
.module_i_news {
    padding: var(--pd100) 20px;
    background: url(https://pic03.eapple.com.tw/herbzayn/05distributor_03bg.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: bottom;
}
.module_i_news ul {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5vw;
}
.module_i_news li a {
    border-radius: 5px;
    background: #fff;
    overflow: hidden;
    box-shadow: 1px 1px 20px 0px #e8afa857;
}
.i_blog_ri {
    padding: 3px 21px 19px;
}
.module_i_news section {    max-width: 1440px;}
.module_i_news .title_i_box h4:before {
    content: "最新消息";
    display: block;
    color: #5F3134;
    font-family: 'Noto Serif TC', serif;
    /* padding-bottom: 3%; */
    font-size: var(--f36);
    line-height: 1;
}
.module_i_news .title_i_box h4 {
    font-size: 1px;
    color: transparent;
}
.module_i_news .title_i_box h6 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1px;
    color: transparent;
    font-weight: 500;
}
.module_i_news .title_i_box {    position: relative;}
.module_i_news .title_i_box h6:after {
    content: "News";
    display: block;
    font-size: var(--f75);
    background: linear-gradient(298deg, #C57C6D 0%, #DEA597 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 500;
    line-height: 1;
}

@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    }
}

/*文章內層*/
.articel_mainPic img{display: none;}/*文章內層封面*/

/*文章側邊選單*/
.blog_search input[type=search] {    border-radius: 0;}
h5.blog_le_t em {
    font-family: var(--SFont);
    color: var(--titlecolor);
    font-size: var(--f24);
    font-weight: 600;
}
.blog_le .accordion {    border: none;    border-radius: 0;    border-bottom: 1px solid #ffd1d1;}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {    background: transparent !important;}

.blog_le .accordion > li {    position: relative;}
.accordion li:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(45deg, #b87363 0%, #d59687 25%, #e5b2a4 50%, #d59687 75%, #b87363 100%) ;
    transition: 0.5s ease-in-out;
    pointer-events: none;
    z-index: -1;
}
.blog_le .accordion > li:hover:after {
    width: 100%;
    left: 0;
    right: auto;
}

.accordion li .link a {    color: var(--FontColor);    letter-spacing: 0.05rem;}
.accordion li+li .link {    border-top: 1px solid #ffd1d1;}
.blog_le .accordion > li.on_this_category .link a {    color: #b87363 !important;}

.blog_back a.article_btn_back {    background: var(--SubColor);}
.blog_back a.article_btn_prev {    background: var(--SubColor03);}
.blog_back a.article_btn_next {    background: var(--SubColor03);}

/*最新消息.blog_page.article_a */
.blog_page.article_a  .blog_le .accordion, .blog_in_page.article_a .blog_le .accordion {    display: none;}
.blog_page.article_a .blog_ri, .blog_in_page.article_a .blog_ri {    width: 100%;}
.blog_page.article_a .blog_le, .blog_in_page.article_a .blog_le {    width: 100%;}
.blog_page.article_a .blog_subbox {    grid-template-columns: repeat(4, 1fr);}
.blog_page.article_a h5.blog_le_t, .blog_in_page.article_a h5.blog_le_t  {    display: none;}
.blog_page.article_a .blog_le .accordion > li:nth-child(2), .blog_page.article_a .blog_le .accordion > li:nth-child(3) {    display: none;} /*文章分類隱藏*/
.blog_page.article_a .blog_search, .blog_in_page.article_a .blog_search  {
    max-width: 220px;
    display: block;
    margin: 20px 0 0 auto;
}


/*文章標籤
.news_tags {    flex-wrap: wrap;}*/


/*文章-相關推薦*/
.news_related {
    padding: var(--pd80) 20px;
    background-color: var(--bgwhite);
    background-image: url(https://pic03.eapple.com.tw/herbzayn/hb_bg.jpg);
    background: url(https://pic03.eapple.com.tw/herbzayn/05distributor_03bg.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: bottom;
}
.news_related h6{margin-bottom: 30px;}
.news_related h6 span:before {
    font-size: var(--f24);
    color: var(--titlecolor);
}
.lastPage {    color: #fff;    background: var(--SubColor02);}


/* = = = 相簿-分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*.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:1366px) {
    .footer_info {    padding-left: 30px;}
    .box_link {    left: 30px;}
    
}

@media (max-width:1024px) {
    :root {
        --f75: 60px;
        --f54: 48px;
        --f48: 40px;
        --f42: 38px;
        --f40: 36px;
        --f36: 32px;
        --f32: 28px;
        --f28: 24px;
        --f24: 22px;
        --f22: 20px;
    }

    .footer_info {    grid-template-columns: 1fr;}
    .footer_info ul {    justify-content: space-between;}
    .box_link {
        top: 0;
        justify-content: flex-end;
        right: 110px;
        margin: 0 0 0 auto;
    }

    /*header*/
    .pageIndex .header_area {
        position: sticky;
        padding: 0;
        padding-top: 8px;
    }
    .header_area{        padding: 0;        padding-top: 8px;    }
    .main_header_area .container {    max-width: 100%;}
    .pageIndex .header_area, .pageIndex .nav-brand {    animation: none;    opacity: 1;}
    .stellarnav > ul > li > a{    padding: 0 10px;}
    .stellarnav li.has-sub>a:after {    top: 37%;}

    /*聯絡我們*/
    .blank_letter {    padding-top: 0;}
    .contact_le_nomap {    aspect-ratio: 1 / 1;}

}


@media screen and (max-width: 768px) {
    :root {
        --f75: 52px;
        --f54: 36px;
        --f48: 32px;
        --f42: 30px;
        --f40: 28px;
        --f36: 26px;
        --f32: 24px;
        --f28: 20px;
        --f24: 20px;
        --f20: 18px;
        --f18: 17px;
        --f17: 16px;
        --pd100: 80px;
        --pd80:60px;
    }

/* 開啟手機板下方按鈕所需設定
#bottom_menu {display: block; } */
.footer.with_shopping_mode { padding:30px 0 50px; }
#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;
}
.footer_info {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 50px 60px 0 20px;
}
.box_link {
    right: 0;
    margin: auto;
    left: 0;
}
.footer_info li+li {     margin-top: 0;            }

/*header*/
.header_area.sticky {
    backdrop-filter: none;
    background: #b87363f5;
}
.pageIndex .stellarnav > ul > li{    opacity: 1;    animation: none; }
.pageIndex .stellarnav > ul > li:nth-of-type(1){    animation: none;}
.pageIndex .stellarnav > ul > li:nth-of-type(2){     animation: none; }
.pageIndex .stellarnav > ul > li:nth-of-type(3){     animation: none;  }
.pageIndex .stellarnav > ul > li:nth-of-type(4){     animation: none;  }
.pageIndex .stellarnav > ul > li:nth-of-type(5){     animation: none; }
.pageIndex .stellarnav > ul > li:nth-of-type(6){     animation: none; }
.pageIndex .stellarnav > ul > li:nth-of-type(7){     animation: none; }
.pageIndex .stellarnav > ul > li:nth-of-type(8){     animation: none; }

/*漢堡選單*/
.stellarnav .menu-toggle span.bars span {    background: var(--bgwhite);}
.stellarnav .menu-toggle:after {    color: var(--bgwhite);}
.stellarnav.mobile.left > ul {
        border: none;
        background: var(--SubColor02);
        background: linear-gradient(300deg, #e5b2a4 0%, #d59687 50%, #b87363 100%);
}
.stellarnav.mobile > ul > li {    display: block;    border-bottom: none;}
.stellarnav.mobile > ul > li > a.dd-toggle {        top: 0;    }

.stellarnav.mobile > ul > li > a.dd-toggle:before {    display: none;}

.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {
    background: var(--MainColor); 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);}/*下拉*/

/*購物車*/
.product_page .product_menu_list>h5 {
    font-size: var(--f36);
    color: #5F3134;
    font-family: 'Noto Serif TC', serif;
    font-weight: 500;
}
a.pd_menu_toggle i, a.news_menu_toggle i {    color: var(--MainColor);} /*下拉三角形*/

/*聯絡我們*/
h4.blank_letter.i {    margin-bottom: 15px;}

ul.show-list, .pic-list {    grid-template-columns: repeat(2, 1fr);}

/*文章*/
.blog_subbox, .blog_page.article_a .blog_subbox {    grid-template-columns: repeat(2, 1fr);}
.module_i_news ul {    grid-template-columns: repeat(2, 1fr);}
.blog_page.article_a .blog_search, .blog_in_page.article_a .blog_search {    max-width: 100%;}
}


@media (max-width:600px) {
    :root {
        --f75: 45px;
        --f54: 32px;
        --f48: 28px;
        --f42: 26px;
        --f40: 24px;
        --f36: 22px;
        --f32: 20px;
        --f28: 18px;
        --f24: 18px;
        --f22: 18px;
        --f20: 17px;
        --f18: 16px;
        --f17: 15px;
        --f16: 15px;
        --pd100: 60px;
        --pd80:50px;
    }

    .footer_info ul {    flex-direction: column;}
    .footer_info li:nth-child(1) {    grid-template-columns: 1fr;    width: 100%;}
    .footer_info li p.mail, .footer_info li p.add {    grid-column: inherit;}
    .footer_info li p.add:after {display: none;}
    .footer_info li p.add {    padding-bottom: 0;}
    .footer_info li p.tel, .footer_info li p.fax {    padding-top: 0;}

    /*漢堡選單*/
    .stellarnav.mobile {        left: 15px;        top: 10px;    }

    ul.show-list, .pic-list {    grid-template-columns: 1fr;}

    .blog_page.article_a .blog_subbox {    grid-template-columns: 1fr;}
    .module_i_news ul {    grid-template-columns: 1fr;}

    /*聯絡我們表單*/
    .contact_form li {
        grid-gap: 0;
        grid-template-columns: 1fr;
    }
    .contact_form li .form__label {    background: transparent;}
    .contact_content .information_left {    grid-template-columns: 1fr;}
    h4.blank_letter.i {    margin-bottom: 0;}
    h4.blank_letter.i {    grid-column: initial;}
    .contact_content .information_right {    padding: 25px;    border-radius: 15px;}

}

@media (max-width:375px) {
    :root {
        --f54: 28px;
        --f48: 24px;
        --f42: 22px;
        --f40: 20px;
        --f36: 18px;
        --f32: 18px;
        --f28: 17px;
        --f24: 17px;
        --f22: 17px;
        --f20: 16px;
        --f18: 15px;
    }
}