@charset "utf-8";


/*網站全域設定/＝＝＝＝＝*/
/*
    #E1D9D0 /*網站主要色系
    #E1CAC5 /*網站輔助色系1
    #f9f6f4; /*網站輔助色系2*/

/*反白顏色*/
::-moz-selection{  background-color: #997354;  color: #fff;}
::selection{  background-color: #997354;  color: #fff;}
:root {
    --MainColor: #A98551;
    --SubColor:#997354;
    --SubColor02:#8d7a6c;
    --SubColor03:#8d7a6c;
    --SubColor04:#8d7a6c;
    --SubColor05:#e4d5c5;
    --SubColor06:#e4dfd3;
    --SubColor07:#5d1008;
    --logocolor:#63B5CB;
    --SFont:"Noto Sans TC", sans-serif;
    --TitleFont: "Noto Serif TC", serif;
    --SFontEN: 'Cormorant Garamond', serif;
    --SFontEN02:  "Ephesis", cursive;
    --TitleColor:#2D120A;
    --FontColor:#676767;
    --f60: 60px;
    --f55: 55px;
    --f48: 48px;
    --f42: 42px;
    --f40: 40px;
    --f36: 36px;
    --f32: 32px;
    --f28: 28px;
    --f24: 24px;
    --f22: 22px;
    --f20: 20px;
    --f18: 18px;
    --f17: 17px;
    --f16: 16px;
    --pd120:120px;
}

.path{display: none;}
body {
    font-family: var(--SFont);
    font-size: var(--f18);
    letter-spacing: 0.08rem;
    color: var(--FontColor);
}

/*頁碼
.page strong, .page a:hover {    background: var(--SubColor);}
.page li.activeN {    color: var(--SubColor);}
*/

/*★★★卷軸設定↓↓↓↓↓↓↓↓↓↓↓↓*/
/* 捲軸寬度及高度 */
::-webkit-scrollbar {    background: #e4dfd3;    width: 7px;}

::-webkit-scrollbar-track-piece {    background: #e4dfd3;}

/* 滑桿顏色 */
::-webkit-scrollbar-thumb {    border-radius: 4px;    background-color: #997354c5;}

/* 滑桿滑鼠滑入時的顏色 */
::-webkit-scrollbar-thumb:hover {    background: #997354; }

/* 軌道背景底色 */
::-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 {
    position: fixed;
    background: #ffffff00;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid #67b8ca4a;
    padding: 0;
}
.main_header_area {
    position: relative;
    padding: 5px;
}
.main_header_area:after {
    content: "";
    position: absolute;
    bottom: -1px;
    border-bottom: 1px solid #67b8ca;
    width: 0;
    left: 0;
    transition: all 1s cubic-bezier(.645, .005, .355, 1);
}
.sticky .main_header_area:after {    width: 100%;}

/*上方選單右邊設定 臉書/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;}

/*浮動按鈕*/
.linksBtn {    display: none;}
.info_fix_links {    display: flex !important;}
.info_fix_links a {
    /* backdrop-filter: blur(13px); */
    position: relative;
    background: transparent;
    width: 55px;
    height: 55px;
}

.info_fix_links a:hover {    background: transparent;}
.info_fix_links a.info_fix_default.info_fix_mail {    display: none;}
.info_fix_links a:before {
    content: "";
    width: 45px;
    height: 45px;
    position: absolute;
    border-radius: 50px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #a95e2285;
    backdrop-filter: blur(13px);
    z-index: -2;
}
.info_fix_links a:hover:before {background: var(--MainColor);}

.info_fix_links a:after {
    content: "";
    border: 2px solid var(--MainColor);
    width: 0;
    height: 0;
    position: absolute;
    border-radius: 50px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
}
.info_fix_links a:hover:after {
    opacity: 1;
    transition: all .45s;
    width: 55px;
    height: 55px;
}

/*電腦LOGO
.nav-brand {}
*/

/*手機LOGO
.nav-brand-m {}
*/


/*第一層*/
.stellarnav > ul > li > a {
    transition: all 0.3s;
    padding: 0 15px;
    color: var(--FontColor);
}
.stellarnav > ul > li:hover > a{color: var(--logocolor);}

.stellarnav > ul > li > a:before {
    content: " ";
    display: block;
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    width: 0%;
    height: 2px;
    margin: auto;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    background: linear-gradient(90deg, #ffffff, var(--SubColor06), var(--SubColor05), var(--SubColor), var(--SubColor), var(--SubColor07), var(--SubColor04), var(--SubColor02), var(--SubColor06));
    background-image: linear-gradient(45deg, rgb(145, 199, 235) 0%, rgb(32 103 131) 50%, rgb(50, 163, 187) 100%);
    background: linear-gradient(90deg, #ffffff, rgb(145, 199, 235) 0%, rgb(192, 229, 253) 0%, rgb(50, 163, 187) 100%, rgb(50, 163, 187) 100%, rgb(32 103 131) 50%, rgb(145, 199, 235) 0%, rgb(50, 163, 187) 100%, rgb(192, 229, 253) 0%);
    background-size: 500%;
}
.stellarnav > ul > li:hover > a:before{    width: 100%;    animation: animate 20s linear infinite;}

@keyframes animate {
    0% {    background-position: 0 0;  }
    0% {    background-position: 500% 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 var(--FontColor) var(--FontColor) transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*第二層*/
.stellarnav li li:hover > a, .stellarnav li li.has-sub:hover > a {
    color: #fff;
    padding-left: 10px;
    background: var(--logocolor);
}
.stellarnav li li > a, .stellarnav li li.has-sub > a {
    padding: 7px 5px;
    transition: all 0.3s;
}
/*下拉第二層箭頭*/
.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: 80px 0 0;
    background: var(--TitleColor);
    background-image: linear-gradient(0deg, #27170de0 40%, #311a07b5 65%), url(https://pic03.eapple.com.tw/ellaspastudio/ft_bg.jpg);
    /* background-attachment: fixed; */
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}
.box_link{display: none;}
.footer_info ul {
    justify-content: space-between;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 0 20px;
}
.footer_info li p:nth-child(1), .footer_menu {    padding-top: 10px;}
.footer_info li:nth-child(1):before, .footer_info li:nth-child(2):before {
    display: block;
    font-size: var(--f18);
    color: #fff;
    padding-bottom: 10px;
    border-bottom: 1px solid #63b5cb36;
    padding-left: 7px;
}
.footer_info li p, .footer_info li p a {
    color: #fff;
    padding-left: 7px;
    line-height: 220%;
    transition: all .5s;
}
.footer_info li p:hover, .footer_info li p a:hover {color: var(--logocolor);}
.footer_info li:nth-child(1):before {    content: "CONTACT";}
.footer_info li:nth-child(2):before {    content: "RELATED LINK";}

.footer_menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: space-around;
    justify-items: start;
}
.footer_menu a {
    background: transparent;
    border: none;
    color: #fff;
    line-height: 220%;
    margin: 0;
    padding: 0 5px;
    position: relative;
}
.footer_menu a:hover {
    background: transparent;
    color: var(--logocolor);
}
.footer_menu a:after {
    content: "";
    position: absolute;
    bottom: 0;
    border-bottom: 1px solid var(--logocolor);
    width: 0;
    transition: all 1s;
    left: 0;
}
.footer_menu a:hover:after {    width: 100%;}

.copy {
    padding: 30px 10px;
    backdrop-filter: blur(20px);
    border-top: 1px #ffffff57 solid;
    margin-top: 25px;
    background: var(--TitleColor);
}
.copy, .copy a {
    color: #fff;
    opacity: .5;
}

/*聯絡我們*/
.i_contact_box {
    padding: var(--pd120) 40px;
    background: url(https://pic03.eapple.com.tw/ellaspastudio/contact_bg.jpg) no-repeat;
    background-position: bottom;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
}
.i_contact_box:after {
    content: "Get in touch Get in touch Get in touch Get in touch Get in touch Get in touch ";
    font-family: var(--SFontEN);
    font-weight: 500;
    font-size: 15rem;
    letter-spacing: -.01em;
    white-space: nowrap;
    position: absolute;
    top: 40%;
    color: var(--SubColor05);
    z-index: 0;
    transform: translateY(-50%);
    -webkit-animation: 50s loop 0s linear infinite;
    animation: 50s loop 0s linear infinite;
    opacity: .8;
}
@keyframes loop {
    to {
        -webkit-transform: translateX(-100%);
        transform: translate(-100%)
    }
}

.blank_letter {
    font-family: var(--TitleFont);
    color: var(--TitleColor);
    font-size: var(--f32);
    font-weight: 600;
}

.i_contact_box section {
    background: #ffffff4f;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}
.contact_content .information_left {
    width: 350px;
    background: #e4d5c59c;
    padding: 20px 30px 60px;
}
.contact_content .information_right {
    width: calc(100% - 35%);
    padding-left: 60px;
}
.list_before.info li {    padding-left: 45px;}

.list_before {
    color: var(--FontColor);
    letter-spacing: 2px;
    width: fit-content;
    font-weight: 500;
}
.list_before.info li a {    letter-spacing: 1px;    font-weight: 400;}

.contact_form li {    align-items: center;}
.contact_form li .form__label {
    text-align: left;
    color: var(--FontColor);
    font-weight: 500;
}
.contact_form li input.noborder, .contact_form li textarea.noborder {
    border: none;
    border-bottom: 1px solid var(--SubColor06);
    background: #ffffff00;
    /* backdrop-filter: blur(15px); */
    padding: 10px 15px;
}

.contact_form li.last {    gap: 15px;}
.contact_form li.last blockquote, .contact_form li.last cite {
    border-radius: 50px;
    border: 1px solid var(--SubColor05);
    position: relative;
    overflow: hidden;
}
.contact_form li.last cite {
    background: var(--SubColor05);
    color: var(--FontColor);
}
.contact_form li.last blockquote:after, .contact_form li.last cite:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
    width: 0;
    height: 100%;
    background-color: var(--SubColor);
    transition: 0.5s ease-in-out;
}

.contact_form li.last blockquote:hover, .contact_form li.last cite:hover {
    background: transparent;
    color: #fff;
}
.contact_form li.last blockquote:hover:after, .contact_form li.last cite:hover:after {
    width: 100%;
    left: 0;
    right: auto;
}

/* = = = 大圖-分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#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;}
}


/*大圖*/
.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.swiper-slide:before {
    content: "TAILORED WELLNESS \A NATURALLY YOURS";
    color: #26170C;
    font-size: var(--f60);
    font-family: var(--SFontEN);
    white-space: pre-wrap;
    line-height: 1.2;
    opacity: 1;
    text-transform: uppercase;
    background: #26170C;
    background: linear-gradient(215deg, rgb(57, 51, 39) 24%, rgb(169 133 81) 31%, rgb(255, 228, 189) 59%, rgb(169 133 81) 81%, rgb(57, 51, 39) 100%);
    -webkit-background-clip: text;
    background-size: 100%;
    width: 100%;
    transform: translate(0%, -9%);
    left: 48%;
    bottom: 25vw;
}

.pageIndex .bannerindex .swiper-slide.swiper-slide::after {
    background-image: url(https://pic03.eapple.com.tw/ellaspastudio/01cover_af2.png);
    background-repeat: no-repeat;
    background-position: top center;
    width: 45vw;
    max-width: 721px;
    left: 48%;
    height: 107px;
    top: 25vw;
    background-size: contain;
    aspect-ratio: 721 / 107;
}

.pageIndex .bannerindex .swiper-slide.swiper-slide-active:before{    animation: bg-animation 5s alternate infinite;}
.pageIndex .bannerindex .swiper-slide.swiper-slide-active:after {    animation: slideDownBlurAnimation 5s alternate infinite; }


@keyframes bg-animation {
    0% {    background-position: left;    color: #A98551;  }
    30% {    color: #A98551;  }
    40% {    color: transparent;  }
    100% {    background-position: right;  }
}
@keyframes show_a {
    0% {     opacity: .5;}
    100% {    opacity: 1;}
}

@keyframes slideDownBlurAnimation {
    0% {
    opacity: 0;
    -webkit-filter: blur(5px);
            filter: blur(5px);
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    }
    100% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translateY(0);
            transform: translateY(0);
    }
}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {
    padding: 260px 20px 135px;
    background: url(https://pic03.eapple.com.tw/ellaspastudio/ban.jpg) no-repeat;
    background-position: center;
    background-size: cover;
}
.banner h5 {
    color: #fff;
    font-weight: 600;
    letter-spacing: 9px;
    font-family: var(--TitleFont);
    text-shadow: 0px 0px 9px #997354, 0px 0px 19px #997354;
}
.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 #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;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/
.blog_subbox {    grid-template-columns: repeat(3, 1fr);}
.subbox_item a {    grid-template-columns: 1fr;}
.subbox_item a:before, .subbox_item a::after{display: none;}
.blog_list_le {
    overflow: hidden;
    border-radius: 5px;
    position: relative;
}
.blog_list_le:after {
    position: absolute;
    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);
}
.blog_list_le:hover:after  {
    opacity: 1;
    animation: move-light 1850ms forwards, move-light-opacity 1850ms 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
    }
}
.module_i_news li a .i_blog_le img, .subbox_item a .blog_list_le img {
    transition: opacity .2s, transform 1s cubic-bezier(0.14, 0, 0, 1);
}
.module_i_news li a:hover .i_blog_le img, .subbox_item a:hover .blog_list_le img {
    transform: scale(1.1);
    transition: opacity .2s, transform 1s cubic-bezier(0.14, 0, 0, 1);
}

.blog_list_ri h5 {
    color: var(--SubColor07);
    font-size: var(--f22);
}

/*文章-側邊選單*/
h5.blog_le_t {
    color: var(--FontColor);
    font-size: var(--f24);
}
.blog_le .accordion {    border-radius: 0;    border: none;}
.accordion li+li .link {    border-top: none;}
.accordion li .link a {
    color: var(--FontColor);
    font-weight: 500;
    border-bottom: 1px solid #63b5cb63;
}

.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {
    background: transparent !important;
}
.blog_le .accordion > li:hover .link a, .blog_le .accordion > li.on_this_category .link a {
    color: var(--logocolor) !important;
}
.accordion li {    position: relative;}

.accordion li:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #63b5cb4a;
    transition: 0.5s ease-in-out;
    pointer-events: none;
    z-index: -1;
}
.blog_le .accordion > li:hover:after {
    width: 100%;
    left: 0;
    right: auto;
}


/*文章內層*/
/*文章內層封面
.articel_mainPic img{display: none;}*/
.articel_mainPic img{max-width: 60%;}
.blog_box_edit * {    line-height: 200%;}
h4.blog_category_title {
    color: var(--TitleColor);
    font-size: var(--f32);
    font-weight: 600;
    font-family: var(--TitleFont);
}

.blog_back a.article_btn_back {    background: var(--SubColor);}
.blog_back a.article_btn_prev {    background: #997354bf;}
.blog_back a.article_btn_next {    background: #997354bf;}

/*文章標籤
.news_tags {    flex-wrap: wrap;}*/


/*文章-相關推薦*/
.news_related {
    background: var(--SubColor06);
    padding: 80px 25px;
}
.news_related h6 span:before {
    font-size: var(--f28);
    color: var(--TitleColor);
    font-family: var(--TitleFont);
}
.lastPage {
    color: #fff;
    background: var(--SubColor);
    border-radius: 28px;
}

/* = = = 相簿-分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*.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:1024px) {
    :root {
        --f60: 50px;
        --f55: 48px;
        --f48: 40px;
        --f42: 38px;
        --f40: 36px;
        --f36: 32px;
        --f32: 28px;
        --f28: 24px;
        --f24: 22px;
        --f22: 20px;
    }
    
    .pageIndex .bannerindex .swiper-slide.swiper-slide:before,
    .pageIndex .bannerindex .swiper-slide.swiper-slide::after { 
        left: 45%;
    }

    .header_area {    position: sticky;}
    .banner {    padding: 15vw 20px;}
    .footer_info {    padding-left: 60px;}

    /*聯絡我們*/
    .contact_content .information_left {    width: 100%;}
    .contact_content .information_right {    width: 100%;    padding: 50px 30px;}
    .list_before {    display: flex;    justify-content: space-around;    width: 100%;}

}


@media screen and (max-width: 768px) {
    :root {
        --f60: 38px;
        --f55: 36px;
        --f48: 32px;
        --f42: 30px;
        --f40: 28px;
        --f36: 26px;
        --f32: 24px;
        --f28: 20px;
        --f24: 20px;
        --f20: 18px;
        --f18: 17px;
        --f17: 16px;
        --pd120: 60px;
    }

.bannerindex { padding:0; margin:0;}
.pageIndex .bannerindex .swiper-slide.swiper-slide:before {    font-size: 4.5vw;}

/* 開啟手機板下方按鈕所需設定
#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;
}
#bottom_menu  { background: var(--logocolor); }
#bottom_menu li a {    color: #fff;}
.footer_info {    padding: 60px 30px 30px;}

.header_area {        backdrop-filter: none;    }
.header_area.sticky {    background: rgb(255 255 255 / 82%);}
.nav-header {        max-width: 145px;    }
.me_tp_features {        display: none;    }

/*漢堡選單*/
.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);}/*下拉*/
.stellarnav.mobile > ul > li > a.dd-toggle:before {    display: none;}

/*聯絡我們*/
.list_before {    flex-direction: column;}

/*文章*/
.blog_subbox {    grid-template-columns: repeat(2, 1fr);}
.articel_mainPic img {    max-width: 100%;}

ul.show-list, .pic-list {    grid-template-columns: repeat(2, 1fr);}

}


@media (max-width:600px) {
    :root {
        --f60: 34px;
        --f55: 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;
    }

.footer_info {    padding: 30px;    padding-bottom: 0;}
.footer_logo {    max-width: 210px;}

ul.show-list, .pic-list {    grid-template-columns: 1fr;}

/*聯絡我們表單*/
.i_contact_box {    padding: var(--pd120) 20px;}
.contact_form li {    grid-gap: 0;}
.contact_form li .form__label {    background: transparent;}
}

@media (max-width:480px) {
    .stellarnav.mobile {        left: 6px;        top: 13px;    }
}

@media (max-width:375px) {
    :root {
        --f60: 30px;
        --f55: 28px;
        --f48: 24px;
        --f42: 22px;
        --f40: 20px;
        --f36: 18px;
        --f32: 18px;
        --f28: 17px;
        --f24: 17px;
        --f22: 17px;
        --f20: 16px;
        --f18: 15px;
    }
}


