
@charset "utf-8";
/*反白顏色*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Noto+Serif+TC:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans+Extra+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: "Fira Sans Extra Condensed", "Noto Sans TC", sans-serif;
    font-weight: 400;
}

::-moz-selection {
    background-color: #444;
    color: #fff;
}

::selection {
    background-color: #444;
    color: #fff;
}


::-moz-selection {
    background-color: #251b1a;
    color: #fff;
}

::selection {
    background-color: #251b1a;
    color: #fff;
}

body {
    overflow: overlay;
}

&::-webkit-scrollbar {
    background: #fff;
    width: 7px;
}

&::-webkit-scrollbar-button {
    display: none;
    background: #fff;
    border-radius: 0;
}

&::-webkit-scrollbar-track-piece {
    background: #fff;
}

&::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #251b1a;
}

&::-webkit-scrollbar-track {
    box-shadow: transparent;
}






.main_part {
    width: 100%;
    max-width: 1400px;
    margin: auto;
    padding: 50px 20px;
}

/* 商品下拉超過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個--結束 */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = = = = = */
.main_part {
    padding: 10px 10px 10px;
}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = = = = = */


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = = = = = */
/*大圖特效*/
#content_main {
    margin: 0;
}

.bannerindex {
    position: relative;
    height: auto;
}

.swiper-banner {
    position: static;
    margin: 0;
    height: auto;
}

.swiper-slide {
    padding: 0px !important;
}

.swiper-slide img {
    height: auto;
}


.swiper-slide {
    position: relative;
}

/*======SLOGAN=======*/
.bannerindex .swiper-slide::before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 2;
    opacity: 1;
}


/* --- 第一張：由下往上進場 --- */
.pageIndex .swiper-wrapper .swiper-slide:nth-of-type(1)::after { 
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/0921393837/bg-01.svg);
    width: 100%;
    height: 100%;
    max-width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 5;
    opacity: 0;                   /* 初始必加 */
    transform: translateY(40px);  /* 從下方開始 */
    transition: none;
}

/* --- 第二張：由上往下進場 --- */
.pageIndex .swiper-wrapper .swiper-slide:nth-of-type(2)::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/0921393837/bg-02.svg);
    width: 100%;
    height: 100%;
    max-width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 5;
    opacity: 0;
    transform: translateY(-40px); /* 從上方開始 */
    transition: none;
}

/* --- active 狀態套入動畫 --- */
.pageIndex .swiper-wrapper .swiper-slide:nth-of-type(1).swiper-slide-active::after {
    animation: slide-up 1.5s both cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.pageIndex .swiper-wrapper .swiper-slide:nth-of-type(2).swiper-slide-active::after {
    animation: slide-down 1.5s both cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

/* --- 下 → 上 --- */
@keyframes slide-up {
    0% {
        transform: translateY(40px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* --- 上 → 下 --- */
@keyframes slide-down {
    0% {
        transform: translateY(-40px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}


@media screen and (max-width: 768px) {
    .bannerindex {
        padding: 0;
        margin: 0;
    }
}


@media screen and (max-width: 600px) { 

}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = = = = = */



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = = = = = */
/*======Header區塊======*/

/*首頁Header*/
.pageIndex .header_area {
    position: fixed;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.2);
}



/*Header*/
.header_area {
    position: sticky;
    z-index: 9999;
    padding: 0px;
    background: #ffffff;
    border-bottom: 1px solid #7777774f;
    box-shadow: none;
    width: 100%;
    transition: all .5s;
}

.header_area.sticky {
    width: 100%;
    z-index: 9999;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    animation: glassEffect 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes glassEffect {
    0% {
        background: rgba(255, 255, 255, 0);
        backdrop-filter: blur(0px);
        -webkit-backdrop-filter: blur(0px);
        transform: translateY(-10px);
    }
    50% {
        background: rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }
    100% {
        background: rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transform: translateY(0);
    }
}
.main_header_area .container {
    max-width: 88%;
    margin: auto;
}

.navigation {
    width: 100%;
    position: relative;
    padding: 5px 0;
    display: grid;
    grid-template-columns: 1fr;

    grid-gap: 0;
    margin-top: 0;
    transition: .5s;
}
.header_area.sticky .navigation {
    padding: 15px 0;
}
.nav-header {
    position: absolute;
    z-index: 10000;
    top: 14px;
    left: 20px;
    width: 100%;
    grid-row: 1 / span 2;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    transition: .5s;
}
.header_area.sticky .nav-header {
    bottom: 18px;
    max-width: 170px;
}

.nav-brand {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    width: 360px;
}
.stellarnav ul {
    margin: 0;
    padding: 0;
    padding-right: 5px;
    text-align: right;
}
.stellarnav>ul>li>a {
    padding: 8px 10px;
    color: #000;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 48px;
    height: 55px;
    margin: 0px 5px;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    font-family: sans-serif;
    font-weight: 400;
    letter-spacing: 3px;
    transition: .3s;
}

.stellarnav>ul>li>a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 0%;
    height: 1px;
    background: #888;
    transition: width .3s ease;
}

.stellarnav>ul>li>a:hover::after {
    width: 100%;
}
/*選單icon隱藏*/
.me_tp_features a i {
    margin: 0 3px;
    display: none;
}

.me_tp_features {
    width: 100%;
    text-align: right;
    display: none;
}

.stellarnav li.has-sub>a:after {
    content: '';
    margin-left: 10px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #444;
    display: inline-block;
    position: absolute;
    top: 57%;
    right: 3px;
    transform: translateY(-50%);
}
.stellarnav li.has-sub>:hover:after {
    background: unset;
    border-left: unset;
    border-right: unset;
    border-top: unset;
}

.me_tp_features a {
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px;
    font-size: 14px;
    color: #fff;
}

.stellarnav ul ul {
    top: auto;
    left: 0px;
    width: 140px;
    position: absolute;
    z-index: 9900;
    text-align: left;
    display: none;
    background: #fff;
    padding: 0;
}
.stellarnav ul ul li a {
    font-size: 15px;
    transition: .5s;
}
.stellarnav ul ul li a:hover {
    background: #e9e9e9;
}
.stellarnav ul ul ul {
    top: 0;
    left: 100%;
    width: 215px;
}

.stellarnav li.drop-left ul ul {
    left: auto;
    right: 253px;
}

@media screen and (max-width: 1400px) {
    .stellarnav>ul>li>a {
        padding: 8px 3px;
    }
}
@media screen and (max-width: 1300px) {

    .stellarnav>ul>li>a {
        font-size: 14px;
    }
}
@media screen and (max-width: 1200px) {

}

@media screen and (max-width: 1024px) {
    .pageIndex .header_area {
        position: sticky;
        width: 100%;
        background: transparent;
    }
    
    .navigation {
        max-width: 100%;
        position: relative;
        padding: 15px 0 0;
        display: flex;
        flex-direction: column;
    }
    .nav-header {
        position: absolute;
        z-index: 123;
        bottom: 0px;
        left: 20px;
       
    }
    .me_tp_features {
        display: none;
    }
}

@media only screen and (max-width: 768px) {
    .pageIndex .header_area {
        position: sticky;
        width: 100%;
        background: #ffffff;
        box-shadow: unset;
    }
    .pageIndex .header_area.sticky  .header_area {
        position: sticky;
        width: 100%;
        background: #ffffff;
        box-shadow: unset;
    }
    .navigation {
        width: 100%;
        position: relative;
        padding: 40px 0;
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 0;
        margin-top: 0;
        transition: .5s;
    }
    .header_area.sticky .navigation {
        padding: 40px 0;
    }
    .nav-header {
        position: absolute;
        z-index: 123;
        bottom: 30px;
        left: unset;
        right: 10px;
          }
    .header_area.sticky .nav-header {
        bottom: 30px;
        max-width: 150px;
    }

    /*漢堡鈕*/

    .stellarnav.mobile {
        position: absolute;
        left: 0;
        top: 12px;
        width: 45px;
        height: 45px;
        border-radius: 50px;
        display: inline-block;
        background: #ffffff;
    }
    .stellarnav .menu-toggle span.bars span {
        display: block;
        width: 30px;
        height: 2px;
        background: #000000;
        margin: 0 auto 4px;
    }
    .stellarnav .menu-toggle:after {
        content: 'MENU';
        font-size: 10px;
        color: #ffffff;
        display: none;
        transform: scale(0.9);
        display: none;
    }

    /* 導覽列展開 */
    .stellarnav.mobile.left > ul {
        left: unset;
        right: 0;
        font-size: 0;
        max-width: 100%;
        padding: 0 15px;        
        /*左滑出現*/
        left: -100vw;
        overflow: hidden;
        transition: all .5s ease;
    }
    .stellarnav.mobile.left.active > ul{
        display: block !important;
        left: 0;
        max-width: 75%;
        background: #ffffff;
    }
    .stellarnav.mobile.left .close-menu {
        display: inline-block;
        text-align: right;
        font-size: 0;
        background: unset;
        padding: 30px 15px;
    }
    .stellarnav .icon-close:before {
        content: '';
        display: block;
        width: 25px;
        height: 0px;
        border-bottom: solid 2px #777;
        position: absolute;
        top: 50%;
        transform: rotate(45deg);
    }
    .stellarnav .icon-close:after {
        content: '';
        display: block;
        width: 25px;
        height: 0px;
        top: 50%;
        border-bottom: solid 2px #777;
        position: absolute;
        transform: rotate(-45deg);
    }

    /*導覽列第二層*/
    .stellarnav.mobile > ul > li > a {
        text-align: left;
        overflow: auto;
        height: auto;
        line-height: 150%;
        display: block;
        font-size: 15px;
    }
    .stellarnav>ul>li>a:hover::after {
        content: "";
        position: absolute;
        left: 35%;
        bottom: 18px;
        width: 8px;
        height: 8px;
        background-color: #d4c5b1;
        border-radius: 50%;
        transform: translateX(-50%);
    }
    .stellarnav.mobile > ul > li > a.dd-toggle {
        padding: 11px;
        position: absolute;
        text-align: center;
        z-index: 999;
    }
    .stellarnav a.dd-toggle .icon-plus:before {
        content: '';
        display: block;
        width: 15px;
        height: 0px;
        border-bottom: solid 2px #777;
        position: absolute;
        top: 50%;
        transform: rotate(90deg);
        transition: width 0.5s;
    }
    .stellarnav a.dd-toggle .icon-plus:after {
        content: '';
        display: block;
        width: 15px;
        height: 0px;
        top: 50%;
        border-bottom: solid 2px #777;
        position: absolute;
    }
    /*點擊後旋轉*/
    .stellarnav li.open > a.dd-toggle .icon-plus {
        transform: rotate(180deg);
    }
    /*次分類*/
    .stellarnav.mobile li.open {
        background: #ffffff;
        padding: 3px;
    }
    .stellarnav li li {
        display: block;
        border: 1px #eee solid;
        border-bottom-width: 0;
        font-size: 14px;
    }


}

@media only screen and (max-width: 570px) {

    .stellarnav .menu-toggle span.bars {
        display: inline-block;
        text-align: center;
        position: relative;
        top: 12px;
        left: 9px;
    }
}
/* 初始：模糊＋透明 */
.swiper-banner .swiper-slide img {
    width: 100%;
    height: auto;
    filter: blur(12px);
    opacity: 0;
    transform: scale(1.03);  /* 微縮放讓模糊更自然 */
    transition: 
        filter 1.2s ease,
        opacity 1.2s ease,
        transform 1.2s ease;
}

/* 進場的 active 圖片：清晰＋淡入 */
.swiper-banner .swiper-slide.swiper-slide-active img {
    filter: blur(0px);
    opacity: 1;
    transform: scale(1);
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = = = = = */






.other_promotion li {
    background-color: transparent;
}

.other_promotion li a {
    display: block;
    border: 0;
    padding: 30px 10px;
    margin: 0;
    position: relative;
    height: 100%;
    background-color: #dddddd;
    transition: all 0.5s;
}

.other_promotion li a:hover {
    background: #747474;
    color: #fff;
    transition: all 0.5s;
}

.other_promotion li a .pmtTitle h3 {
    transition: all 0.5s;
}

.other_promotion li a:hover .pmtTitle h3 {
    color: #fff;
    transition: all 0.5s;
}




.other_promotion .pmtTime cite {
    float: left;
    font-size: 12px;
    font-style: normal;
}

.other_promotion li a:before,
.other_promotion li a::after {
    display: none;
}




/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 底下圈圈 */


.swiper-pagination-clickable .swiper-pagination-bullet {
	position: relative;
	border-radius: 2.5px;
	height: 5px;
	width: 50px;
	z-index: 0;
	
}

.swiper-pagination-bullet {
    background: #ffffff73;
}

.swiper-pagination-clickable .swiper-pagination-bullet::after {
    content: "";
    display: block;
    width: 0%;
    height: 5px;
    border-radius: 2.5px;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: all 0.3s;
}

.swiper-pagination-clickable .swiper-pagination-bullet-active.swiper-pagination-bullet::after {
    width: 100%;
    transition: all 0.3s;
}



.swiper-pagination-clickable .swiper-pagination-bullet:nth-child(1):after {
    left: auto;
    right: 0;
}




/* 浮動 */

.info_fix {
    width: auto;
    box-sizing: border-box;
    position: fixed;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: flex-end;
    justify-content: flex-end;
    transition: all 0.7s;
    z-index: 1;
    transform: translate(50px, 0);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.headerSticky .info_fix {
    opacity: 1;
    transform: translate(0px, 0);
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);

}

.info_fix:hover {
    width: auto;
    right: 0;
    transition: all 0.7s;
}

.info_fix_links {
    display: flex !important;
    background: #565656bf;
    width: 50px;
    padding-bottom: 0;
   /* border: 1px #A29080 solid;
     border-radius: 0px 0 0 10px; */
    overflow: hidden;
    justify-content: flex-end;
    flex-direction: column;
}

.info_fix>span {
    display: none;
}

.info_fix_links a {
    background: transparent;
}

.info_fix_links a {
    display: block;
    width: 100%;
    height: 50px;
    overflow: visible;
    border-radius: 0;
    transition: .3s;
    background: transparent;
    margin-bottom: 0;
}

.info_fix_links a span {
    width: 20px;
    height: 100%;
    display: block;
    margin: 0 auto;
}

.info_fix_links a span::before {
    background-size: contain;
}



.info_fix_links p {
    text-align: center;
    font-weight: 900;
    writing-mode: vertical-rl;
}




#to_top {
    color: #454442;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding-top: 0;
    transition: all 0.7s;
}

#to_top:hover i {
    transform: translate(0, -5px);
    transition: all 0.7s;
}

#to_top i:before,
#to_top i:after {
    background: #454442;
}

.info_fix_tel span::before,

@keyframes footer-text {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {
    display: flex;
    background: transparent;
    flex-direction: column;
}

.banner::after {
    content: "";
    display: block;
    width: fit-content;
    color: #454442;
    font-size: 16px;
    margin: 0 auto;
    font-weight: 400;
}

.banner h5 {
    color: #454442;
    font-size: 50px;
    font-family: "Montserrat", serif;
    text-align: center;
    font-weight: 200;
    letter-spacing: 12px;
    text-indent: 12px;
    margin-bottom: 6px;
}

.banner.banA::after {
    content: "";

}

.banner.banB {
    display: none;
}

.banner.banC {
    display: none;
}

.banner.banC::after {
    content: "";
}

.banner.banD {}

.banner.banE::after {
    content: "";
}

.banner.banblog::after {
    content: "";
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*購物車設定*/
/* 產品的看更多按鈕設定 */
.products-list .more {
    border: 1px solid #ADA17E !important;
    color: #ADA17E;
}

.products-list a:hover .more {
    background: #ADA17E;
    border-color: #ADA17E;
    color: #ffffff;
}


/*外層*/
.product-layer-two li a {
    color: #ADA17E;
    border: 1px solid #ADA17E;
    transition: all 0.3s;
}

.product-layer-two li:hover>a {
    background: #ADA17E;
    color: #fff;
}

.product-layer-two li.active>a {
    background: #ADA17E;
    color: #fff;
    font-weight: normal;
}

/*內層*/
.lastPage {
    background: #454442;
}

.nextaction {
    background-color: #ADA17E;
}

.lastaction {
    color: #fff;
    background-color: #ADA17E;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/


.blog_page .show_content {
    margin: auto;
    padding: 0;
    max-width: 1440px;
    display: flex;
    flex-direction: column;
}



.blog_back a.article_btn_back {
    background: #454442;
}

.blog_le .accordion>li:hover,
.blog_le .accordion>li.on_this_category {
    background: transparent !important;
}

.share_page .edit {
    text-align: justify;
    line-height: 180%;
    padding: 60px 0;
}

.subbox_item a:before,
.subbox_item a:after {
    display: none;
    transition: 0.3s;
}

.blog_le .accordion>li {
    transition: all 0.3s;
}

.accordion li .link a {}

.blog_box_edit {
    line-height: 180%;
    text-align: justify;
}

h4.blog_category_title {
    text-align: justify;
}

.link a {
    width: 100%;
    display: block;
    padding: 15px 10px;
}

.accordion li .link {
    padding: 0;
}



/*文章分享變1排3個*/
.blog_page .main_part {
    max-width: 100%;
}

.blog_subbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.subbox_item {
    width: calc(100% / 2 - 20px);
    padding: 0px;
}

@media screen and (max-width: 1024px) {
    .subbox_item {
        width: 50%;
    }
}

@media screen and (max-width: 600px) {
    .subbox_item {
        width: 100%;
    }
}

/**/



/* 左邊欄位 */
h5.blog_le_t {
    display: none;
}



.blog_le {
    width: 100%;
}

.blog_search {
    width: 200px;
    position: relative;
    margin-bottom: 10px;
    margin-left: auto;
    display: none;
}





.blog_search input[type=search] {
    outline: none;
    box-sizing: border-box;
    width: 100%;
    font-size: 14px;
    color: #999;
    border: 0;
    border-radius: 0;
    border-bottom: 1px #565656 solid;
    padding: 10px 35px 10px 10px;
    background: transparent;
}

.blog_search input[type=submit] {
    outline: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 999;
    width: 38px;
    height: 38px;
    background: url(../images/search-icon.png) no-repeat 9px center transparent;
    border: none;
    transform: scaleX(-1);
}

.blog_search input[type="submit"]:hover {
    background: url(../images/search-icon.png) no-repeat 9px center transparent;
    border: none;
    color: #fff;
    transition: all 0.3s;
}

.blog_le .accordion {
    border: none;
    border-radius: 0;
    display: flex;
}

.blog_le .accordion>li:hover .link a,
.blog_le .accordion>li.on_this_category .link a {
    color: #181818 !important;
    transition: all 0.3s;
}

.blog_ri {
    width: 100%;
    min-height: 75vh;
    padding: 0;
}

.blog_le .accordion>li:hover .link i,
.blog_le .accordion>li.on_this_category .link i {
    color: #181818 !important;
    transition: all 0.3s;
}

.submenu {
    display: none;
    background: transparent;
    font-size: 14px;
}

.submenu a {
    display: block;
    position: relative;
    background: transparent;
    color: #565656;
    padding: 12px 12px 12px 25px;
    letter-spacing: 2px;
    transition: all 0.6s ease;
    word-break: break-all;
    line-height: 1.25;
    font-family: 'Klee One';
}

.submenu a:hover {
    background: #0000000d;
    color: #565656;
}

.submenu a:before {
    display: none;
}

.blog_le .accordion li i {
    position: absolute;
    top: 27px;
    right: 20px;
    font-size: 16px;
    color: #444;
    transition: all 0.4s ease;
}

.blog_le .accordion>li:hover.open {
    background-color: transparent !important;
}



/* 右邊欄位 */

.subbox_item a:after {
    display: none;
}

.subbox_item a {
    display: inline-block;
    position: relative;
    display: flex;
    flex-direction: column;
}

.blog_list_le {
    width: 100%;
    height: 0;
    padding-bottom: calc(100% / 16 * 9);
    overflow: hidden;
    position: relative;
}

.blog_list_le::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #00000050;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.5s;
}

.subbox_item a:hover .blog_list_le::after {
    opacity: 1;
    transition: all 0.5s;
}

.blog_list_le img {
    display: block;
    max-width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.blog_list_ri {
    display: flex;
    vertical-align: top;
    padding: 15px 0;
    width: 100%;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    position: relative;
    opacity: 0;
    text-align: center;
    transition: all 0.5s;
    align-items: center;
}

.subbox_item .blog_list_ri::before {
    content: "";
    display: block;
    position: relative;
    width: 0%;
    height: 1px;
    background-color: #3f3f3f33;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.5s;
}



.subbox_item:hover .blog_list_ri {
    opacity: 1;
    transition: all 0.5s;
}

.subbox_item:hover .blog_list_ri::before {
    width: 100%;
    opacity: 1;
    transition: all 0.5s;
}




.blog_list_ri h5 {
    color: #454442;
    font-size: 24px;
    font-weight: 500;
}

.subbox_item a img {
    transition: all 1s cubic-bezier(0.68, 0.55, 0.38, 0.99);
}

.subbox_item a:hover img {
    transform: translate(-50%, -50%) scale(1.1);
    transition: all 1s cubic-bezier(0.68, 0.55, 0.38, 0.99);
}

h4.blog_category_title {
    text-align: justify;
    color: #454442;
}

.blog_box_edit {
    line-height: 150%;
    color: #3f3f3f;
}

.blog_in_page .main_part {
    max-width: 1200px;
}

.blog_list_ri em {
    position: absolute;
    right: 0;
    display: none;
}

.blog_list_ri p {
    -webkit-line-clamp: initial;
    -webkit-box-orient: initial;
    line-height: 150%;
}

.news_related {
    background: transparent;
    padding: 25px 15px;
}



.news_related h6 {
    max-width: 1200px;
    margin: 90px auto 60px;
    text-align: center;
}

.news_related h6 span {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.news_related h6 span::before {
    content: 'Related Articles';
    font-size: 40px;
    color: #454442;
    font-family: "Montserrat", serif;
    letter-spacing: 12px;
    text-indent: 12px;
    text-transform: uppercase;
    font-weight: 200;
}

.news_related h6 span::after {
    content: '相關文章';
    font-size: 16px;
    color: #454442;
    font-weight: 200;
    margin-top: 10px;
}

.news_related_list li a {
    display: block;
    padding: 0;
    background: transparent;
    height: 100%;
}

.news_related_list li a p {
    font-size: 16px;
    color: #454442;
}








@media screen and (max-width: 1024px) {
    .blog_page .main_part {
        max-width: 90%;
    }

    .subbox_item {
        width: 100%;
    }
}


@media screen and (max-width: 768px) {
    .subbox_item a {
        flex-direction: column;
    }

    .blog_page .main_part {
        max-width: 75%;
    }

    .blog_list_ri {
        display: flex;
        vertical-align: top;
        padding: 20px;
        width: 100%;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: center;
        opacity: 1;
    }

    .subbox_item a:before {
        display: none;
    }

    .blog_list_le {
        padding-bottom: 70%;
    }

    .blog_in_page .main_part {
        max-width: 85%;
    }

    .blog_page .show_content {
        max-width: 100%;
    }

    .subbox_item {
        border-bottom: 0;
    }

    .blog_page .main_part {
        max-width: 100%;
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*主分類頁面*/
.album_page .main_part,
.album_class_page .main_part,
.album_info_page .main_part {
    max-width: 100%;
    padding: 50px 0;
}

.show-list .item:hover .show_name {
    color: #ADA17E;
}

.show-list .show_pic {
    height: 0;
    padding-bottom: 60%;
    bottom: 0;
}

.show-list .show_pic img {
    display: inline-block;
    max-width: 100%;
    min-width: 100%;
    object-fit: cover;
    height: auto;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    transition: all 0.3s;
}

.show-list .item:hover .show_pic img {
    transform: scale(1.3);
    transition: all 2s;
}

.show-list {
    display: flex;
}

.clearfix:before,
.clearfix:after {
    display: none;
}

.show-list .show_name {
    font-size: 20px;
    color: #fff;
    letter-spacing: 0.15em;
    margin-top: 0;
    overflow: hidden;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    font-weight: 400;
    z-index: 3;
    transform: translate(-50%, 0);
    transition: all 0.3s;
}

.show-list .item:hover .show_name {
    color: #fff;
    opacity: 1;
    transition: all 2s;
}


.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(1);
    transform: scale(1);
    z-index: 2;
    transition: all .4s 100ms cubic-bezier(.42, 0, .58, 1);
}











/*次分類頁面*/
.other_album_choice li {
    background: transparent;
    border-radius: 0;
}

.other_album_choice li a {
    color: #454442;
}

.other_subalbum li p {
    line-height: 220%;
    text-align: center;
}

.other_subalbum li a div {
    height: 0;
    max-height: 100%;
    padding-bottom: 58%;
    overflow: hidden;
    position: relative;
}

.other_subalbum li a img {
    max-width: 100%;
    min-width: 100%;
    object-fit: cover;
    height: auto;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    transition: all .4s;
}

.other_subalbum li a:hover img {
    transform: scale(1.3);
    transition: all 2s;
}

.other_subalbum li a div:after {
    content: "";
    position: absolute;
    background: rgb(0 0 0 / 30%);
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%) scale(1);
    top: 50%;
    left: 50%;
    transition: all 0.3s ease-in-out;
    opacity: 0;
}

.other_subalbum li a:hover div:after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    transition: all .4s;
}

.album_fixed_title {
    display: none;
}

/*照片頁*/
.pic-list .show_pic {
    height: 0;
    max-height: 100%;
    padding-bottom: 66%;
}

.pic-list .show_pic img {
    max-width: 100%;
    min-width: 100%;
    object-fit: cover;
    height: auto;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
}

.show-list .item {
    width: 50%;
    display: inline-block;
    vertical-align: top;
    padding: 0;
    margin: 20px 0;
}


.subalbum-menu {
    margin: 30px 0;
    padding: 0;
}

.subalbum-menu h2 {
    display: flex;
    position: relative;
    color: #454442;
    left: 0;
    flex-direction: row-reverse;
    align-items: center;
    width: fit-content;
    font-weight: 500;
    margin-left: 1%;
}

.block {
    background: #454442;
}

.other_subalbum {
    display: flex;
    overflow: hidden;
    flex-direction: row;
    flex-wrap: wrap;
}

.other_subalbum li {
    display: inline-block;
    background: #fff;
    width: calc(100% / 2 - 2%);
    margin: 10px 1%;
    border: none !important;
}

.page strong,
.page a {
    display: inline-block;
    min-width: 29px;
    height: 29px;
    text-align: center;
    line-height: 29px;
    border: 0;
    border-radius: 0;
    padding: 0 10px;
    margin: 0 10px;
}

.album_fixed_title {
    display: none;
}

.other_subalbum li p {
    line-height: 220%;
    text-align: center;
    color: #1a1a1a;
}

@media screen and (max-width: 768px) {

    /*照片頁*/
    .pic-list .item {
        width: 96%;
        margin: 10px 2%;
    }

    .album_page .show_content,
    .album_class_page .show_content {
        margin: auto;
        padding: 0;
        max-width: 90%;
    }
}




/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*其他分頁*/
.promotion_title h2 {
    border-bottom: 0;
    color: #454442;
}

.promotion_title {
    border-bottom: 1px #00000052 solid;
    display: flex;
    padding-bottom: 20px;
    flex-direction: column-reverse;
}

.promotion_title em {
    border: 0;
}

.promotion_title span {
    border: 0px #ccc dashed;
}





@media screen and (max-width: 768px) {

    /* 開啟手機板下方按鈕所需設定 */
    #bottom_menu {
        display: none;
    }

    #to_top {
        bottom: 60px;
    }

    .nav-menu {
        margin: 0;
    }

    .nav-menu>li:not(.tp_links) {
        padding-right: 0;
    }

    .nav-dropdown>li {
        text-align: left;
    }

    .nav-dropdown>li>a {
        width: calc(100% - 45px);
    }

 

}

@media screen and (max-width: 600px) {}


/* = = = footer = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.footer {background: #000;padding: 100px 0;}
.footer .center { max-width: 1600px;width: 90%;}
.footer_logo {max-width: 300px;}
.footer_logo img {width: 100%;height: 100%;opacity: 1;  filter: brightness(0) invert(1);}
.footer_info {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: left;
    flex-wrap: wrap;
}
.footer_info ul {width: 100%;padding: 0;margin: 0;text-align: left;}

/*footer_info*/
.footer_info li:nth-child(1) {display: inline-block;width: 100%;}
.footer_info li p {color:#6a6a6a;}
.footer_info li p a { color: inherit;}
/*footer_menu*/
.footer_menu a {padding:0;background: transparent;border: none;color:#2f2d2d;transition: .3s ease-in-out;}
.footer_menu a:last-child {border-right: none;}
.footer_menu a:hover { color: #ddd; background: transparent; transition: .3s ease-in-out;}
.footer_menu a:nth-child(1){display:none;}
.footer_menu {    display: none;}
/*聯絡icon*/
.box_link {
    display: none;
    position: relative;
    max-width: 100%;
    margin: 20px 0 0;
}
.box_link a {
    display: inline-block;
    max-width: 50px;
    transition:all 0.3s;
    padding: 8px;
    width: 50px;
    border-radius: 100px;
}
.fa-whatsapp:before, .fa-envelope::before { color: #ccc;}
.box_link a:hover { background: #ddd; border-color: #ddd;}
.box_link a:hover {    color: #fff;}
.box_link a:nth-child(3),.box_link a:nth-child(4) {display: none;}
.box_link a:hover .fa-whatsapp:before, .box_link a:hover .fa-envelope::before { color: #212121;}


/*版權*/
.copy {
    max-width: 1600px;
    display: flex;
    background: transparent;
    color: #cbcbcb;
    border: none;
    margin-top: 0;
    border-top: 0;
    padding: 10px 0;
    text-align: left;
    justify-content: flex-start;
    margin: 0 auto;
    font-size: 12px; color: #4d4d4d;width: 90%;
}
.copy a { color: #4d4d4d; transition:all 0.3s;}
.privacyLinks a+a { border-left: #4d4d4d;}
/*--RWD---------------------------------------*/

@media screen and (max-width: 768px) {

    /*footer*/
    .footer_info { justify-content: center;}
    .footer_logo { text-align: center;}
    .footer_info ul { flex-direction: column;}
    .footer_info li:nth-child(1) { width: 100%;}
    .footer_info li:nth-child(2) { width: 100%; border-left: none;}

    .footer_menu a:first-of-type { border-left: 1px #ccc solid;}
    .footer_menu { grid-template-columns: repeat(3, 1fr);}

    /*底部按鈕*/
    #to_top { bottom:60px;}
    #bottom_menu {display: none; }
    .footer.with_shopping_mode { padding:30px 0 0; }
}

@media screen and (max-width: 600px) { 
    /*footer*/
    .footer_info ul { width: 100%;}
    .footer_info li:nth-child(2) {width: 100%;border-left: none;}
    /*聯絡icon*/
    .box_link { text-align: center;}
}

/* = = = 聯絡表單 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.contact_page .main_part {
    max-width: 1400px;
}
.contact_page .banner {
    display: none;
}

.contact_page .contact_editbox {
    margin: 0;
    padding: 0;
}

.contact_content .information_left {
        width: 100%;
        padding: 0;
        margin: 20px 0 80px;
}
.contact_content .information_left .blank_letter.i, ul.list_before.info {
    display: none;
}


h4.blank_letter.f {padding-bottom: 15px;position: relative;font-family: 'Noto Serif TC';align-items: flex-start;}
h4.blank_letter.f:before {
        content: "FORM";
        font-size: 50px;
        margin-left: -4px;
        margin-right: 10px;
        font-family: 'Julius Sans One';
        font-weight: 500;
        letter-spacing: 5px;
        padding-right: 10px;
        border-right: 1px #ccc solid;
        }
.contact_form{gap:20px;}
.blank_letter {font-size: 23px; color: #2F2F2F; font-weight: 500; letter-spacing: 2px; text-indent: 2px; background-repeat: no-repeat;}
/*表單最大寬度設定*/
.contact_content .information_right {width: 100%;padding: 40px 6%;background: #fff;box-shadow: 0 0 10px #0000000f;}

/*標題*/
.blank_letter { color: #212121;}

/*側邊資訊*/
.list_before {margin-top: 10px;display: flex;flex-direction: row;gap: 40px;}
.list_before.info li{border-left:3px #ccc solid;padding-left: 42px;}
.list_before.info li:before{padding-left:10px;width: fit-content;}
/*表格樣式*/
.contact_form li{grid-template-columns: 1fr;}
.contact_form li .form__label {
    max-width: 100%;
    text-align: left;
}
.contact_form li:has(input[type=radio]) .form__insert{    grid-template-columns: repeat(auto-fill, minmax(13px, 13px) minmax(100px, 1fr));}
.contact_form li input.noborder { border: none; border-bottom: 1px #ddd solid; background: transparent;}/*文字欄*/
.contact_form li textarea.noborder { background: transparent; border: 1px #ddd solid;}/*文字區塊*/
.form select { background: transparent;}/*下拉式*/

/*驗證碼對齊*/
.contact_form li:nth-last-of-type(2) .form__insert { display: inline-flex; align-items: center; justify-content: flex-start; flex-wrap: nowrap;}
.contact_form li:nth-last-of-type(2) input.noborder { border: 1px #ddd solid;}
.captcha { margin-right: 20px;}

/*按鈕*/
.contact_le_map a { background: #212121;}
.contact_form li.last cite {background: #212121;}

@media screen and (max-width: 425px){
    /*聯絡表單*/
    h4.blank_letter.f{
        display: flex;
        flex-direction: column;
        padding: 0;
    }
    h4.blank_letter.f:before{border:0;}
    .contact_form li { padding-left: 0;}
    .contact_form li .form__label { margin-left: 0;}
    .contact_form li .form__insert { width: 100%;}
}

/* = = = RWD = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
@media screen and (max-width: 425px) { 

    .contact_content {
        margin: auto;
        max-width: 90%;
    }
}


