@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 
dbd0c7 b4a596 7d6e5f
*/

/*校稿用*/
.stellarnav ul ul {
    display: none !important;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/

/*開場*/
body.pageIndex:before {
    content: ' ';
    position: fixed;
    z-index: 999999991;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #ede7e3;
    animation: fadein 6s forwards;
}

@keyframes fadein {
    50% {
        opacity: 1;
    }

    60% {
        pointer-events: auto;
    }

    100% {
        opacity: 0;
        pointer-events: none;
    }
}

body.pageIndex:after {
    content: ' ';
    position: fixed;
    z-index: 999999999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: auto;
    aspect-ratio: 5/1;
    background: url(https://pic03.eapple.com.tw/jingchiau/open_logo.svg) center / cover no-repeat;
    animation: fadeease 6s forwards;
}

@keyframes fadeease {
    0% {
        opacity: 0;
    }

    45% {
        opacity: 1;
    }

    60% {
        opacity: 0;
        pointer-events: auto;
    }

    100% {
        opacity: 0;
        pointer-events: none;
    }
}

/*主選單*/
.navigation {
    display: flex;
    align-items: center;
    padding: 0;
    gap: 0;
}

.nav-header {
    padding: 32px 0;
    filter: brightness(10);
    transition: all ease 0.5s;
}

.sticky .nav-header {
    padding: 16px 0;
    filter: none;
}

.nav-brand,
.nav-brand img {
    display: block;
}

.header_area {
    position: fixed;
    top: 0;
    left: 0;
    background: transparent;
    padding: 0;
    border-bottom: 1px solid transparent;
    transition: all ease 0.5s;
}

.header_area.sticky {
    position: fixed;
    background: RGBA(232, 224, 217, .5);
    backdrop-filter: blur(8px);
    padding: 0;
    border-color: #ddd;
}

.main_header_area .container {
    max-width: 2000px;
    padding: 0 5%;
}

.stellarnav>ul {
    font-family: "Cormorant Infant", "Noto Sans TC", sans-serif;
}

.stellarnav>ul>li {
    text-align: center;
}

.stellarnav li.has-sub>a:after {
    content: none;
}

.stellarnav>ul>li>a,
.stellarnav>ul>li.has-sub>a {
    padding: 0 10px;
    margin: 0;
}

.stellarnav>ul>li.has-sub>a {
    padding: 0;
}

.stellarnav>ul>li>a b {
    font-weight: 400;
    color: #fff;
    font-size: 15px;
    letter-spacing: 1px;
    transition: all ease 0.5s;
}

.sticky .stellarnav>ul>li>a b {
    color: #7d6e5f;
}

.me_tp_features {
    display: none;
}

/*大圖*/
.pageIndex .bannerindex .swiper-slide:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 43.9%;
    height: 100%;
    background: url(https://pic03.eapple.com.tw/jingchiau/slogan_01.png) center / cover no-repeat;
}

.bannerindex .swiper-slide.swiper-slide-active:after {
    animation: swipein 2.5s ease-in-out both;
}

.pageIndex .bannerindex .swiper-slide:last-of-type:after {
    content: "";
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    width: 43.9%;
    height: 100%;
    background: url(https://pic03.eapple.com.tw/jingchiau/slogan_02.png) center / cover no-repeat;
}

.bannerindex .swiper-slide.swiper-slide-active:last-of-type:after {
    animation: swipein2 2.5s ease-in-out both;
}

@keyframes swipein {
    0% {
        opacity: 0;
        left: -6%;
    }

    50% {
        opacity: 1;
    }

    100% {
        left: 0%;
    }
}

@keyframes swipein2 {
    0% {
        opacity: 0;
        right: -6%;
    }

    50% {
        opacity: 1;
    }

    100% {
        right: 0%;
    }
}

#content_main {
    margin: 0;
    min-height: 80vh;
}

.bannerindex {
    position: relative;
    height: auto;
}

.bannerindex .swiper-banner {
    height: auto;
    overflow: hidden;
    position: static;
    margin-left: 0;
}


/* 商品下拉超過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個--結束 */


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2025.12.18  */
.product_page .main_part {
    max-width: 1500px;
}

.product_page .show_content,
.product_info_page .show_content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    width: 100%;
}

ul.page {
    width: 100%;
}

.ProdFilter_Item_Show {
    width: 100%;
}

.Prods_Menulists {
    width: 100%;
    padding: 0;
}

.Prods_Wrap {
    width: calc(100% - 270px);
}

/* 篩選器-左手邊 / 產品分類-上面
.ProdFilter_ { order: 2;}
.Prods_Menulists { order: 1;}
.Prods_Wrap { order: 3;}
.ProdFilter_ { width: 250px; letter-spacing: 1px;}
.ProdFilter_ li { width: 100%;}
.ProdFilter_ li > a { background: #f3f3f3; border: none; border-bottom: 3px #ddd solid;}
.ProdFilter_ dl { position: static; width: 100%; display: block;}
*/

/* 產品分類-左手邊 / 篩選器-上面 */

.ProdFilter_ {
    order: 1;
    margin-bottom: 25px;
}

.Prods_Menulists {
    order: 2;
}

.Prods_Wrap {
    order: 3;
}

.Prods_Menulists {
    width: 250px;
    letter-spacing: 1px;
}

.Prods_Menulists ul {}

.Prods_Menulists>ul>li {
    width: 100%;
    flex-wrap: wrap;
}

.Prods_Menulists ul ul {
    position: static;
    border: none;
}

.Prods_Menulists ul li ul li {}

.Prods_Menulists li.has-sub.open>a {
    background: #f0f0f0;
}

.product_info_page .half_box {
    width: 100%;
    float: none;
    padding-right: 0;
}

.product_info_page .half_box li.btn_blankTop {
    margin-top: 50px;
    justify-content: space-between;
    display: flex;
}

.product_info_page .half_box li.btn_blankTop input {
    width: calc(50% - 10px);
    background-image: none;
    padding: 0;
    text-align: center;
}

@media screen and (max-width: 1200px) {}

@media screen and (max-width: 1024px) {
    .product_main {
        display: block;
        width: 100%;
    }

    .sidebarBtn {
        display: block;
        width: 100%;
    }
}

@media screen and (max-width: 980px) {}

@media screen and (max-width: 768px) {
    /* 篩選器-左手邊 / 產品分類-上面
.Prods_Wrap { width: 100%;}
.ProdFilter_ { width: 100%;}
.ProdFilter_Item_Show { width: calc(100% - 110px);}
.ProdFilter_ { order: 1;}
.Prods_Menulists { order: 2;}
.ProdFilter_ li > a span { color: #333;}
*/

    .Prods_Wrap {
        width: 100%;
        margin-top: 20px;
    }

    .ProdFilter_ {
        width: 100%;
    }

    .Prods_Menulists {
        opacity: 0;
        display: none;
    }

}

@media screen and (max-width: 600px) {}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 2025.12.26 中間放大*/
.BannerHome02 .swiper-slide-active img {
    transform: scale(1);
}

.BannerHome02 .swiperBan02 .swiper-slide img {
    transition: transform 5s ease-out;
    will-change: transform;
    transform: scale(1);
}

.BannerHome02 .swiperBan02 .swiper-slide-active img {
    transform: scale(1.06);
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */




/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {}

.banner h5 {}

.banner.banA {}

.banner.banB {}

.banner.banC {}

.banner.banD {}

.banner.banE {}

.banner.banblog {}

.banner.banDesign {
    background-color: #333;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本分類全版面 ( 限制最寬2000px
.work_page .main_part { max-width:2000px;}
.work_page .show_content { padding:0; width:100%;}
.work_page .show-list .item { width:33%; display:inline-block; float:none; margin:0; padding:0;}
@media screen and (max-width: 768px) {
.work_page .show-list .item { width:49%;}
}
@media screen and (max-width: 570px) {
.work_page .show-list .item { width:100%;}
}
.work_page .show-list .item a { max-width:100%;}
.work_page .show-list .show_pic { height:auto; line-height:0;}
.work_page .show-list .show_pic img { max-width:100%; max-height:100%;}
.work_page .show-list .show_name { position:absolute; top:50%; right:10%; width:80%; height:auto; line-height:160%; font-size: 20px; color: #FFFFFF !important; border: solid 1px #fff; text-align: center; margin: -20px 0 0 -120px; padding:5px 20px; transition:all ease-in .3s; opacity:0;}
.work_page .show-list .item:hover .show_name {opacity:1;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本列表
.work_info_page .main_part { max-width:2000px;}
.work_info_page .show_content { padding:0; width:100%;}
.work_info_page .subalbum-menu { text-align:center;}
.work_info_page .subalbum-menu h2 { float:none;}
.work_info_page .pic-list .item { margin:0; padding:10px; width:49%; float:none; display:inline-block;}
@media screen and (max-width: 768px) {
.work_info_page .pic-list .item { width:100%;}
}
.work_info_page .pic-list .show_pic { height:auto; line-height:0;}
.work_info_page .pic-list .show_pic img { max-width:100%; max-height:100%;}
.work_info_page .pic-list .item a { max-width:100%; pointer-events: none; cursor: default; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*footer*/
.footer_info li p.taxid {
    display: none;
}

.footer_info li p.line:before {
    content: 'LINE ID：';
}

.footer {
    background: #b4a596;
    padding: 60px 0 0;
}

.footer_logo {
    margin: 0;
    max-width: 200px;
    filter: brightness(10);
}

.footer_logo img {
    max-width: 100%;
    display: block;
}

.footer .center {
    max-width: 2000px;
    padding: 0 5%;
}

.footer_menu a:first-child {
    display: none;
}

.footer_info {
    font-family: "Poppins", "Noto Sans TC", sans-serif;
    font-weight: 400;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    grid-gap: 0;
    letter-spacing: 1px;
}

.footer_info,
.footer_info li {
    padding: 0;
}

.footer_info ul {
    display: flex;
    width: calc(100% - 17vw);
    padding: 0 0 36px;
    letter-spacing: 2px;
}

.footer_info li:nth-child(1) {
    width: 100%;
}

.footer_info li p,
.footer_info li p a {
    color: #fff;
    letter-spacing: 2px;
}

.footer_info li p {
    display: inline-block;
    width: 100%;
    line-height: 185%;
}

.footer_info li:nth-child(2) {
    width: 100%;
    position: relative;
}

.footer_menu {
    width: max-content;
    position: absolute;
    right: 0;
}

.footer_menu a {
    padding: 8px 12px 6px;
    border: none;
    color: #fff;
    background: transparent;
    margin: 0;
    margin-left: 4px;
    border-top-left-radius: 12px;
    transition: all 0.5s;
}

.footer_menu a:hover {
    color: #7d6e5f;
    background: #e3d3c7;
}

.copy,
.copy a,
.copy a:hover {
    color: #fff;
    font-family: "Poppins", "Noto Sans TC", sans-serif;
    font-weight: 400;
}

.copy {
    text-align: right;
    justify-content: flex-end;
    padding: 5px 5% 60px;
    border-top: none;
    max-width: 2000px;
    margin: 0 auto;
    letter-spacing: 1px;
    filter: opacity(0.5);
}

.box_link {
    display: none;
}


@media screen and (max-width: 768px) {

    /* 開啟手機板下方按鈕所需設定 */
    #bottom_menu {}

    .footer.with_shopping_mode {
        padding: 30px 0 70px;
    }

    #to_top {
        bottom: 60px;
    }
}

@media screen and (max-width: 600px) {}