@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200..900&display=swap');

:root {
    --MainColor: #3F2617;
    --SubColor: #856451;
    --SubColor2: #E3D1C3;
}

body {
    font-family: 'Noto Serif TC', 'Rozha One', sans-serif;
    letter-spacing: 1px;
}

.main_part {
    max-width: 1350px;
}

#content {
    background-image: url(https://pic03.eapple.com.tw/simplespa/bg.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: auto;
}

/*錨點滾動--------------------------------------------*/
::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(214, 214, 214, 0.6);
}

::-webkit-scrollbar-thumb {
    background-color: var(--SubColor);
}

html {
    scroll-behavior: smooth;
}

/*選單最大寬度----------------------------------------*/
.main_header_area .container {
    max-width: 85%;
}

@media screen and (max-width: 768px) {
    .main_header_area .container {
        max-width: 100%;
    }
}

/*開場動畫--------------------------------------------*/
.bannerindex::before {
    content: "";
    display: block;
    background-image: url(https://pic03.eapple.com.tw/simplespa/logo.jpg);
    width: 200px;
    height: 200px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999999999999;
    pointer-events: none;
    animation: banner-logo 2.6s forwards;
}

.bannerindex::after {
    content: "";
    display: block;
    background: #F8F3EF;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 99999999;
    animation: banner-bg 3s forwards;
}

.swiper-slide img {
    height: auto;
    transform: scale(1.1);
    animation: banner-img 1s forwards;
    animation-delay: 2.6s;
}

@keyframes banner-logo {
    0% {
        opacity: 0;
        filter: blur(0);
    }

    25% {
        opacity: 1;
        filter: blur(0);
    }

    50% {
        filter: blur(0);
        opacity: 1;
    }

    80% {
        filter: blur(0);
        opacity: 1;
    }

    100% {
        filter: blur(10);
        opacity: 0;

    }
}

@keyframes banner-bg {
    0% {}

    50% {}

    80% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes banner-img {
    0% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes banner-line-white {
    0% {
        width: 420px;
        opacity: 1;
    }

    50% {
        width: 420px;
        opacity: 1;
    }

    80% {
        width: 420px;
        opacity: 1;
    }

    100% {
        width: 2180px;
        opacity: 0;
    }
}


@keyframes banner-line-brown {
    0% {
        width: 0;
        right: auto;
        left: 0;
        opacity: 1;
    }

    50% {
        width: 100%;
        right: auto;
        left: 0;
        opacity: 1;
    }

    51% {
        width: 100%;
        right: 0;
        left: auto;
        opacity: 1;
    }

    100% {
        width: 0;
        right: 0;
        left: auto;
        opacity: 0;
    }
}

@media screen and (max-width: 768px) {
    .bannerindex::after {
        display: none;
    }

    .bannerindex::before {
        display: none;
    }

    .swiper-slide img {
        transform: unset;
        animation: unset;
    }
}

/*大圖-----------------------------------------------*/
/*預設解除背景輪播*/
#content_main {
    margin: 0;
}

.bannerindex {
    position: static;
    height: auto;
}

.swiper-banner {
    position: static;
    margin: 0;
    height: auto;
}

.swiper-slide img {
    height: auto;
}

.swiper-pagination {
    left: 50%;
    margin-left: 0;
    transform: translate(-50%, 0);
}

@media screen and (max-width: 768px) {
    .bannerindex {
        padding: 0;
        margin: 0;
    }
}

/*header--------------------------------------------*/
.stellarnav ul ul li a {
    font-size: 14px;
}

.header_area {
    background: transparent;
    padding: 0;
}

.main_header_area {
    background: linear-gradient(45deg, #F8F3EF, #ffffffde);
    border-bottom: 1px solid var(--SubColor2);
    backdrop-filter: blur(10px);
    opacity: 0.8;
    padding: 5px 0;
}


.main_header_area .container {
    max-width: 100%;
    width: 90%;
}

.navigation {
    padding: 0;
    display: flex;
    align-items: center;
}

.tp_links a {
    display: none;
}

.pageIndex .header_area {
    position: absolute;
    width: 100%;
    z-index: 10000;
    top: 20px;
    transition: ease-out 0.5s;
    box-shadow: none;
}

.pageIndex .header_area .main_header_area {
    box-shadow: none;
    background: rgba(248, 243, 239, 1);
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 60px;
    transition: ease-out 0.5s;
    backdrop-filter: blur(10px);
    border: 1px solid var(--SubColor2);
}

.pageIndex .header_area.sticky {
    transition: ease-out 0.5s;
    position: fixed;
    top: 0;
    background: rgba(248, 243, 239, 1);
}

.pageIndex .header_area.sticky .main_header_area {
    background: rgba(248, 243, 239, 1);
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    transition: ease-out 0.5s;
    backdrop-filter: blur(10px);
    border: unset;
    border-bottom: 1px solid var(--SubColor2);
}

/* 首頁 Header */
.pageIndex .navigation {
    height: 68px;
}

.nav-brand img {
    max-width: 80%;
}

@media screen and (max-width: 1024px) {
    .header_area {
        position: sticky;
        background: #Fff;
    }

    .pageIndex .header_area .main_header_area {
        width: 100%;
        border: unset;
        border-radius: 0px;
    }

    .pageIndex .header_area {
        top: 0px;
        position: sticky;
    }

    .pageIndex .header_area.sticky .main_header_area {
        border-bottom: unset;
    }

    .navigation {
        height: 150px;
    }

    .pageIndex .header_area.sticky .navigation {
        height: 150px;
    }

    .nav-brand img {
        max-width: 80%;
    }
}

@media screen and (max-width: 768px) {
    .header_area {
        backdrop-filter: unset;
        background: rgba(248, 243, 239, 1);
        ;
    }

    .header_area.sticky {
        backdrop-filter: unset;
        background: rgba(248, 243, 239, 1);
        ;
    }

    .pageIndex .header_area.sticky .main_header_area {
        backdrop-filter: unset;
        background: rgba(248, 243, 239, 1);
        ;
    }

    .pageIndex .header_area .main_header_area {
        backdrop-filter: unset;
        background: #F8F3EF;
    }

    .main_header_area {
        backdrop-filter: unset;
        background: #F8F3EF;
    }

    .pageIndex .navigation {
        height: 100px;
    }

    .pageIndex .header_area.sticky .navigation {
        height: 100px;
    }

    .nav-brand img {
        max-width: 60%;
    }
}

@media screen and (max-width: 500px) {
    .pageIndex .navigation {
        height: 70px;
    }

    .pageIndex .header_area.sticky .navigation {
        height: 70px;
    }

    .nav-brand img {
        max-width: 60%;
    }
}



/*選單*/
.stellarnav li.has-sub>a:after {
    content: '+';
    border-left: 0px;
    border-right: 0px;
    border-top: 0px;
}

.stellarnav>ul>li>a {
    height: 55px;
    color: var(--MainColor);
}

.stellarnav>ul>li>a b {
    font-family: 'noto serif TC', 'Rozha One', sans-serif;
    line-height: 60px;
}

.tp_links a {
    display: none;
}

.stellarnav>ul>li.has-sub>a {
    padding-right: 15px;
}

.stellarnav li.has-sub>a:after {
    display: none;
}

.stellarnav>ul>li:hover>a {
    color: var(--SubColor);
}

.stellarnav>ul>li:hover:before {
    transform: translate(-50%, -50%) scale(1, 1);
    opacity: 1;
}

/*.stellarnav > ul > li:nth-child(4){display: none;}*/
/*課程教學(購物車)按鈕隱藏*/

/*選單購物車*/
.box_search {
    display: none;
}

.me_tp_features {
    display: none;
}

.stellarnav.desktop li.has-sub a {
    text-align: center;
    padding: 0;
}

@media screen and (max-width: 1024px) {
    .stellarnav>ul>li:before {
        display: none;
    }
}

/*第二層*/
.stellarnav li li:hover>a,
.stellarnav li li.has-sub:hover>a {
    color: var(--MainColor);
    padding-left: 15px;
    background: #fff;
    transition: 0.3s;
}

.stellarnav ul ul {
    background: #fff;
    width: 205px;
}

ul.album_classes li:first-child {
    display: none;
}

.stellarnav li li.has-sub>a:after {
    border-left: unset;
    right: 10px;
}

.stellarnav li li a {
    color: var(--MainColor);
}

/*下拉編輯頁------------------------------------------*/
.other_select_page .promotion_title {
    display: none;
}

.other_select_page .other_promotion {
    display: none;
}

.other_select_page .page {
    display: none;
}

/*LOGO-----------------------------------------------*/
.nav-header {
    max-width: 100%;
    width: 110px;
}

.nav-brand {
    top: -19px;
    position: relative;
}

@media screen and (max-width:500px) {
    .nav-header {
        width: 80px;
    }
}

/*浮動按鈕--------------------------------------------*/
.info_fix {
    z-index: 999999;
}

.info_fix_links {
    display: flex !important;
}

.linksBtn {
    display: none;
}

.info_fix_links a:hover {
    transform: scale(1.1);
    background: var(--SubColor);
}

.info_fix_links a {
    background: var(--SubColor);
    margin-bottom: 10px;
    border: 1px solid var(--SubColor2);
}

/*第二層*/
a.info_fix_default.info_fix_mail {
    display: none;
}

a.info_fix_default.info_fix_phone {
    display: none;
}

/*banner---------------------------------------------*/
.banner.banA {
    display: none;
}

.banner.banB {
    display: none;
}

.banner.banE {
    display: none;
}

.banner.banF {
    display: none;
}

.banner.banblog {
    display: none;
}

/*首頁文章----------------*/
.module_i_news ul li {
    flex: 1;
}

.module_i_news .title_i_box {
    margin-bottom: 10px;
}

.module_i_news {
    background-image: url(https://pic03.eapple.com.tw/onemoreears/bg.png);
    padding: 70px 0px;
    opacity: 1;
    background-attachment: fixed;
}

.module_i_news ul {
    display: flex;
    gap: 10px;
    justify-content: space-around;
}

.module_i_news ul {
    display: flex;
    gap: 10px;
    justify-content: space-around;
}

.module_i_news_list,
.module_i_news_list.swiper {
    padding: 30px 0;
}

.module_i_news .title_i_box h6 {
    display: none;
}

.module_i_news .title_i_box h4 {
    font-size: 25px;
    font-weight: 500;
    color: var(--SubColor);
    font-family: 'noto serif TC', sans-serif;
}

.i_blog_ri {
    width: 100%;
}

.i_blog_le {
    width: 100%;
}

.module_i_news li {
    border-bottom: none;
}

.animated-arrow {
    background: var(--SubColor2);
    color: var(--MainColor);
    border: 1px solid var(--MainColor);
}

.module_i_news li a {
    display: flex;
    flex-direction: column;
}

.i_blog_ri h5 {
    font-family: 'noto serif TC', sans-serif;
}

.module_i_news li a:before {
    color: var(--SubColor);
    font-family: 'Rozha One', sans-serif;
    font-size: 16px;
}

.module_i_news li a:after {
    background: rgb(255 255 255 / 58%);
    border: 1px var(--SubColor2) solid;
    backdrop-filter: blur(5px);
}

.module_i_news .title_i_box h4:after {
    content: 'NEWS';
    width: 100%;
    font-size: 60px;
    display: block;
    position: relative;
    text-align: center;
    color: var(--MainColor);
    font-weight: normal;
    font-family: 'Rozha One', sans-serif;
    bottom: 15px;
}

@media screen and (max-width:768px) {
    .module_i_news ul {
        gap: 10px;
        padding: 20px;
    }

    .animated-arrow {
        margin-bottom: 30px;
    }
}

@media screen and (max-width:600px) {
    .module_i_news ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5px;
    }

    .module_i_news .title_i_box {
        margin-top: 30px;
    }
}

@media screen and (max-width:320px) {
    .module_i_news ul {
        display: block;
    }
}

/*購物車---------------------------------------------*/
.prod_related h6 span:before {
    color: #212121;
    letter-spacing: 0.1em;
}

.products-list .name {
    height: auto;
    margin: 0;
    text-align: left;
    padding: 10px 0;
    color: #222;
    font-size: 16px;
}

.products-list .pic:hover img {
    object-fit: cover;
    width: 100%;
    transition: all 0.4s ease;
    transform: scale(1.2);
}

.products-list .pic img {
    transition: all 0.4s ease;
    transform: scale(1);
    object-fit: cover;
}

.products-list .more {
    border: 1px solid var(--SubColor);
    color: var(--SubColor);
}

.products-list .price {
    margin: 0;
}

.inquiry_a1 {
    background: var(--MainColor);
}

.inquiry_a2 {
    background: var(--MainColor);
}

.nextaction {
    background-color: var(--MainColor);
}

.lastaction {
    background-color: var(--MainColor);
}

ul.prod li h3.prod-thumb {
    background: #BFB9AA;
    color: #fff;
    text-align: center;
    padding: 5px;
}

ul.prod li .prod-panel {
    font-size: 14px;
    line-height: 23px;
}

.related_list li a {
    display: block;
    padding: 4px;
    background: none;
}

.products-list .item a:hover .more {
    background: var(--SubColor);
    color: #fff;
    transition: 0.3s;
    letter-spacing: 2px;
}

.products-list .price b {
    color: var(--SubColor);
    font-size: 16px;
}

.product-layer-two li.active a {
    font-weight: bold;
    border: unset;
    border-bottom: 1px dotted #ccc;
}

.product_page .main_part {
    width: 100%;
    max-width: 1500px;
}

.product_page .show_content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin: auto;
    padding: 10px 10px;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
}

.product_page .products-list {
    width: calc(100% - 280px);
}

.products-list {
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    grid-gap: 10px;
}

.product-layer-two {
    width: 250px;
    margin: 0;
}

.product_info_page .product-layer-two {
    display: none;
}

.product-layer-two li {
    margin: 0;
    width: 100%;
    padding: 0 10px;
}

/*選單*/
.product-layer-two li i {
    width: 50px;
    height: 45px;
}

.product-layer-two li a {
    color: #222;
    border: none;
    background: transparent;
    transition: all 0.3s;
    line-height: 200%;
    transition: all 0.3s;
}

.product-layer-two>li>a {
    border-bottom: 1px dotted #ccc;
    padding-left: 25px;
}

.product-layer-two li:hover>a,
.product-layer-two li.active>a {
    color: #ffffff;
    background: var(--SubColor);
}

.product-layer-two li:hover>a:before,
.product-layer-two li.active>a:before {
    background: var(--SubColor);
    color: #fff;
}

.product-layer-two>li>a:before {
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    height: 18px;
    content: "";
    color: var(--MainColor);
    background: #dddddd;
    width: 18px;
    text-align: center;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
    padding-left: 2px;
    font-size: 13px;
    display: none;
}

.product-layer-two li ul {
    position: relative;
    padding-top: 1px;
}

.product-layer-two li li {
    border: none;
    background: transparent;
}

.product-layer-two li li a {
    background: transparent;
}

.product-layer-two li li:hover a {
    color: #BFB9AA;
    background: transparent;
}

/*第二層*/
.send_simple {
    background: #5b5b5b;
}

.rewrite_simple {
    background: #5b5b5b;
}

.separate_title {
    font-size: 16px;
    color: #fff;
    padding: 10px 0 10px 40px;
    background: #4d4d4d;
}

.inquiry_a1:hover,
.inquiry_a2:hover,
.inquiry_a3:hover {
    background: #BFB9AA;
}

.sidebarBtn {
    border: 1px #BFB9AA solid;
}

.inquiry_a3 {
    background: var(--SubColor2);
    color: var(--MainColor);
}

/*商品推薦*/
.prod_related {
    display: none;
}

@media screen and (max-width: 768px) {
    .product_page .products-list {
        display: grid;
        grid-gap: 5px;
        grid-template-columns: 1fr 1fr;
    }

    .product-layer-two>li>a {
        display: none;
    }

    .product_page .products-list,
    .product-layer-two {
        width: 100%;
    }

    .prod_related h6 span:before {
        font-size: 24px;
    }

    .mobile_product_name {
        display: none;
    }

    .sidebarBtn {
        order: -1;
        margin: 0px auto 20px;
    }

    .product_pic {
        padding-top: 0px;
    }

    body.pageIndex .products-list {
        padding: 40px 0 20px;
    }

    .products-list .item {
        width: 100%;
    }

    .product-layer-two {
        display: none;
    }

    #prod_thumbSwiper {
        margin: 20px 0;
    }
}

@media screen and (max-width: 500px) {
    .product_page .products-list {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 425px) {
    .product-layer-two {
        display: none;
    }

    .product_page .show_content {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: space-around;
        margin: auto;
        padding: 10px 10px;
        flex-direction: column;
        align-content: center;
    }

    .product_page .products-list {
        width: 100%;
    }
}

@media screen and (max-width: 1024px) {

    .clearfix:before,
    .clearfix:after {
        display: none;
    }

    .products-list .item {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .product_page .products-list {
        width: 100%;
        display: grid;
        grid-gap: 10px;
    }
}

/*相簿-----------------------------------------------*/
.show-list {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 15px;
}

.show-list .item:hover .show_name {
    color: var(--MainColor);
}

.other_album_choice li {
    background-color: var(--MainColor);
}

.show-list .item:hover a figure img {
    transform: scale(1.1);
    transition: 0.5s;
    top: 0;
    left: 0;
}

.show-list .item a figure img {
    transition: 0.5s;
    /* transform: scale(1.08) !important; */
}

.show-list .show_name {
    text-align: center;
}

.album_info_page .pic-list {
    -moz-column-count: 3;
    -moz-column-gap: 10px;
    -webkit-column-count: 3;
    -webkit-column-gap: 10px;
    column-count: 3;
    column-gap: 10px;
    width: 100%;
    margin: 0 auto;
}

.album_info_page .pic-list .item {
    width: 100%;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
    padding: 0;
    margin: 0;
}

.album_info_page .pic-list .show_pic {
    height: auto;
    padding: 0;
}

.other_subalbum li p {
    margin-top: 10px;
}

.other_subalbum li a img {
    object-fit: cover;
    min-height: 250px;
}


.subalbum-menu h2 {
    font-size: var(--f22);
    color: #40372e;
    font-weight: 600;
    text-align: center;
    width: 100%;
}

.subalbum-menu h2:before {
    content: "PRICING";
    display: block;
    color: var(--TitleColor);
    font-size: var(--f50);
    font-weight: 600;
}


@media (max-width: 1440px) {
    .album_info_page .pic-list {
        -moz-column-count: 3;
        -webkit-column-count: 3;
        column-count: 3;
    }
}

@media (max-width: 768px) {
    .album_info_page .main_part {
        padding: 50px 0;
    }

    .other_album {
        padding: 0 16px;
    }

    .other_album:before {
        width: 0;
    }

    .album_info_page .pic-list {
        -moz-column-count: 2;
        -webkit-column-count: 2;
        column-count: 2;
    }
}

@media (max-width: 480px) {
    .album_info_page .pic-list {
        -moz-column-count: 1;
        -webkit-column-count: 1;
        column-count: 1;
    }
}

/*第二層*/
.subalbum-menu {
    padding: 0px 0px;
}

.subalbum-menu h2 {
    color: #444;
}

.other_album_choice li {
    border-radius: 0;
}

.album_fixed_title {
    display: none;
}


/* 解除外層容器的固定高度與比例限制 */
.other_subalbum li,
.other_subalbum li a,
.show-list .item a figure,
.album_info_page .pic-list img,
.album_info_page .main_part img {
    height: auto !important;
    min-height: unset !important;
    max-height: none !important;
    padding-bottom: 0 !important;
    overflow: visible !important;
    /* 確保內容不會被裁切 */
    display: block !important;
}

.other_subalbum li a img,
.show-list .item a figure img {
    position: static !important;
    /* 覆蓋 absolute，讓外框能感應到圖片高度 */
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
}

.other_subalbum li a img,
.show-list .item a figure img {
    width: 100% !important;
    height: 350px !important;
    object-fit: contain !important;
    background-color: #fff;
    /* 上下留白處補白色背景 */
}

/* 確保卡片本身高度固定 */
.other_subalbum li,
.show-list .item {
    height: auto !important;
}

/* 點進相簿後 → 圖片固定高度、放大填滿 */
.album_info_page .pic-list .item {
    height: 350px !important;
    overflow: hidden !important;
}

.album_info_page .pic-list .show_pic {
    height: 350px !important;
    padding: 0 !important;
    overflow: hidden !important;
}

.album_info_page .pic-list img {
    width: 100% !important;
    height: 350px !important;
    min-height: 0 !important;
    max-height: none !important;
    object-fit: cover !important;
    position: static !important;
    display: block !important;
}

/*文章管理--------------------------------------------*/
.blog_le {
    width: 230px;
}

h5.blog_le_t,
h4.blog_category_title {
    font-size: 25px;
    margin-bottom: 10px;
}

.blog_le .accordion>li:hover .link {
    background: #a5a5a5;
}

.blog_le .accordion>li.on_this_category .link {
    background: #BFB9AA;
}

.subbox_item a:before {
    display: none;
}

.blog_list_ri:after {
    content: 'READ MORE >';
    display: block;
    background: transparent;
    color: #000;
    letter-spacing: 1px;
    opacity: 1;
    left: 0;
    position: relative;
    padding: 0 22px 0 0;
    font-size: 12px;
    line-height: 12px;
}

.blog_list_ri p {
    padding-top: 8px;
}

.blog_back a.article_btn_back {
    background: var(--SubColor2);
    color: var(--MainColor);
}

.blog_back a.article_btn_prev,
.blog_back a.article_btn_next {
    background: var(--SubColor);
    color: #fff;
}

.blog_back a.article_btn_prev:hover,
.blog_back a.article_btn_next:hover {
    background: var(--MainColor);
    transition: 0.3s;
}

.blog_search input[type=search] {
    border-radius: 2px;
}

.blog_le .accordion {
    border-radius: 2px;
}

.blog_subbox.clearfix {
    margin: 0 auto;
    display: grid;
    grid-gap: 20px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

body.blog_page .clearfix:before,
body.blog_page .clearfix:after {
    display: none;
}

.subbox_item {
    background-color: transparent;
    overflow: hidden;
    position: relative;
    width: 100%;
    border-bottom: none;
}

.subbox_item a {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.subbox_item:hover img {
    transform: translate(-50%, -50%) scale(1.2);
    object-fit: cover;
    width: 100%;
    transition: all 0.4s ease;

}

.blog_list_le img {
    display: block;
    max-width: 100%;
    min-width: 100%;
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transition: all 5000ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    transform: translate(-50%, -50%) scale(1);
}

.blog_list_le {
    display: block;
    position: relative;
    text-align: center;
    height: auto;
    aspect-ratio: 9 / 9;
    overflow: hidden;
    padding-bottom: 0;
    width: 100%;
}

.subbox_item a:after {
    display: none;
}

.blog_list_ri {
    width: 100%;
    padding: 15px 0;
}

.blog_list_ri em {
    width: 100%;
}

.blog_list_ri h5 {
    position: relative;
    margin: 0px 0 0;
    font-size: 18px;
    letter-spacing: 0.035em;
}

.blog_list_ri p {
    color: #595959;
    margin: 15px 0 0;
    font-size: 14px;
    line-height: 1.9;
    letter-spacing: 0.035em;
    width: 100%;
    padding: 0;
    margin: 10px 0;
}

.main_part {
    max-width: 1350px;
}

.blog_le .accordion>li:hover .link,
.blog_le .accordion>li.on_this_category .link {
    color: #fff !important;
    background: var(--SubColor) !important;
    transition: 0.3s;
}

.blog_le .accordion>li:hover,
.blog_le .accordion>li.on_this_category {
    background: var(--MainColor) !important;
    transition: 0.3s;
}

.blog_subbox {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.subbox_item a {
    grid-gap: 0px;
}

h5.blog_le_t em {
    font-size: 16px;
    color: #5F5449;
}

h5.blog_le_t span {
    display: none;
}

/*選單第二層*/
.submenu li.on_this_category a,
.submenu a:hover {
    background: var(--MainColor);
}

.submenu li+li {
    border-top: 1px solid var(--SubColor);
    background: #fdfbf8 !important;
}

.submenu li {
    background: #fdfbf8 !important;
}

/*文章第二層*/
.articel_mainPic img {
    display: none;
}

.news_related {
    display: none;
}

.blog_shareData {
    justify-content: flex-end;
    display: none;
}

.path p,
.path p a {
    display: none;
}

.blog_ri {
    padding: 0 0 0 46px;
}

@media screen and (max-width: 1024px) {
    .blog_subbox.clearfix {
        margin: 0 auto;
        display: grid;
        grid-gap: 30px;
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media screen and (max-width: 768px) {
    .blog_subbox.clearfix {
        margin: 0 auto;
        display: grid;
        grid-gap: 10px;
        grid-template-columns: 1fr 1fr;
    }

    .blog_le {
        width: 100%;
    }
}

@media screen and (max-width: 375px) {
    .blog_subbox.clearfix {
        grid-template-columns: 1fr;
    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*●●●●●●●●●●●●●●●●●●●●●●●●   購物車(商品展示)   ●●●●●●●●●●●●●●●●●●●●●●●●*/
/*※※※※※【【  固定區塊不動↓↓↓  】】※※※※※*/

/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 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% - 277px);
}

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: none;
    padding-bottom: 13px;
}

.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: #115082;
}

.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 .item a+button.pd_btn {
    border: 1px solid #5F5449;
    color: #5F5449;
}

.products-list .item a+button.pd_btn:hover {
    background: #DA9D91;
}

@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;
        grid-template-columns: 1fr 1fr !important;
    }

    .pageIndex .products-list {
        grid-template-columns: 1fr 1fr !important;
    }

    .product_page ul.page {
        order: 3;
    }

    .product_page .product_menu_list {
        width: 100%;
        order: 0;
        min-height: unset;
    }
}

.product-layer-two li a {
    position: relative;
    border: 1px solid #e2e2e2;
    background: #f4f4f4;
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.product-layer-two li li a {
    background: #fff;
    font-size: 14px;
    color: #333;
    font-weight: 600;
    letter-spacing: 0;
    border-bottom: 1px solid #eeeeee !important;
    border-radius: 0;
    padding: 10px;
}

.product-layer-two li i {
    display: none;
}

.products-list .name {
    font-size: 15px;
    font-weight: 600;
    height: 55px;
}

.products-list .more {
    border: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    line-height: 32px;
    text-align: center;
    transition: all .5s;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    bottom: 0;
    background: #5F5449;
}

.products-list .item a:hover .more {
    background: #DA9D91;
    color: #fff;
    letter-spacing: 2px;
}

.product-layer-two li.active a {
    font-weight: 600;
    border: 0;
    background: #DA9D91;
    color: #fff;
}

.products-list .price b {
    color: #C00;
    font-size: 15px;
    width: auto;
    padding-right: 6px;
    letter-spacing: unset;
}

.product_info {
    margin: 20px 0;
    width: 95%;
}

.product_info li .txt_box {
    display: inline-block;
    vertical-align: top;
    color: #444;
    font-size: 16px;
    text-align: justify;
}

.sidebarBtn h2 {
    color: #111;
}

div#number_area {
    color: #868686;
}

.product_info li span {
    display: block;
    font-size: 14px;
    color: #777;
    margin-bottom: 3px;
    letter-spacing: 1px;
    font-weight: 600;
    padding-bottom: 5px;
}

.radio-inline__input:checked+.radio-inline__label {
    background: #1a2738;
    border: 0;
    color: #ffffff;
}

.pd_tabTitle li.activeTab::after {
    height: 1px;
    background: #999999;
}

.pd_tabTitle li a {
    display: block;
    padding: 10px 10px;
    color: #666666;
    line-height: 1.4;
    background: transparent;
    font-size: 20px;
    font-weight: 700;
}

.prod_related h6 span:before {
    content: '相關推薦';
    font-size: 24px;
    color: #333333;
    letter-spacing: 1px;
}

.sidebarBtn {
    padding: 15px;
    display: inline-block;
    vertical-align: top;
    border: 0px #ddd solid;
    background: #fff;
    box-shadow: 0px 0px 0px 2px #f5f5f5;
}

.sidebarBtn .price {
    color: #333;
    font-size: 22px;
    font-weight: bold;
    padding: 10px 0;
    border-bottom: 1px solid #e6e6e6;
    letter-spacing: 1px;
}

.products-list .price {
    letter-spacing: 1px;
}

.inquiry_a1 {
    background: #5F5449;
    ;
    font-size: 14px;
}

.inquiry_a2 {
    background: #5F5449;
    font-size: 14px;
}

.inquiry_a3 {
    background: #DA9D91;
    font-size: 14px;
}

.product-layer-two li.active li a {
    font-weight: normal;
    color: #333;
    background: #fff;
}

.pd_tabTitle li.activeTab a {
    background: #5F5449;
    color: #fff;
}

.pd_tabTitle li {
    border-bottom: none;
}

b.ori_price {
    font-size: 13px !important;
    color: #a7a7a7 !important;
    letter-spacing: 1px;
}

.products-list .price {
    margin: 10px 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}


.prod_part {
    padding: 43px 20px;
}

.i_prod_tit span,
.i_video_tit span {
    font-size: 20px;
    /* letter-spacing: 6px; */
    color: #5F5449;
    /*font-weight: bold;*/
    font-weight: 600;
    font-family: Zen Kaku Gothic New;
}

.i_prod_tit span:after {
    content: 'PRODUCTS';
    display: none;
    font-size: 14px;
    font-family: 'Zen Kaku Gothic New';
    font-weight: bold;
}

.i_prod_tit h2,
.i_video_tit h2 {
    font-family: Audiowide Regular;
    margin-bottom: 5px;
    font-size: 49px;
}

.animated-arrow {
    background: #222;
}

.pageIndex .productsListBox,
.productsListBox.swiper {
    padding: 46px 0;
}

.module_i_news .title_i_box h6 {
    font-family: Audiowide Regular;
    margin-bottom: -40px;
    text-align: left;
    font-size: 49px;
}

.module_i_news .title_i_box h4 {
    color: #5F5449;
    font-weight: bold;
    font-family: Zen Kaku Gothic New;
    text-align: left;
    margin-left: 181px;
    font-size: 20px;

}

.module_i_news {
    padding: 39px 20px;
    margin-bottom: 20px;
}

.module_i_news ul {
    grid-gap: 67px;
}

.i_blog_b {
    margin-top: 10px;
}

.module_i_news_list,
.module_i_news_list.swiper {
    padding: 48px 0;
    border-bottom: 1.5px solid #000;
    border-top: 1.5px solid #000;
}

.module_i_news li a {
    border: 2px solid transparent;
    border-radius: 12px;
    /* ⭐圓角 */
    padding: 20px;
    transition: 0.3s;
}

.module_i_news li a:hover {
    border: 2px solid #5F5449;
    /* hover 出現框 */
}

.module_i_news li a h5 {
    color: #333;
    transition: 0.3s;
}

.module_i_news li a:hover h5 {
    color: #5F5449;
}


a.pdinfo_tel {
    background-color: #468eab;
}

/*FOOTER---------------------------------------------*/
.box_link a {
    display: none;
}

.footer {
    background: #F8F3EF;
    padding: 30px 0 0;
    box-shadow: 0 0 6px rgba(68, 45, 25, 0.6);
}

.footer .center {
    position: relative;
    max-width: 1000px;
}

.footer_info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 0px;
    flex-direction: column;
    margin-bottom: 15px;
    grid-gap: 10px;
}

.footer_menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: -1px 5px;
}

.footer_menu a {
    margin: 0;
    text-align: left;
    padding: 0;
    transition: all 0.3s;
    border: none;
    background: transparent;
    color: var(--MainColor);
    display: block;
    width: fit-content;
}

.footer_menu a:before {
    content: "·";
}

.footer_menu a:nth-child(1) {
    display: none;
}

.footer_menu a:hover {
    background: transparent;
    color: var(--SubColor);
}

.copy {
    background: #E5A89C;
    color: var(--MainColor);
    border: none;
    margin-top: 0px;
    position: relative;
    padding: 15px 0;
}

.copy a {
    color: var(--MainColor);
    transition: all 0.3s;
}

.footer_info li {
    padding: 20px 15px;
}

.footer_info ul>li:before {
    font-size: 115%;
    color: var(--MainColor);
    display: block;
    margin: 0 0 20px;
    border-bottom: 1px solid var(--SubColor);
    padding-bottom: 10px;
    letter-spacing: 0.2em;
    font-weight: bold;
}

.footer_info ul>li:nth-child(1):before {
    content: "CONTACT";
    font-family: 'Rozha One';
    font-weight: 500;
}

.footer_info ul>li:nth-child(2):before {
    content: "MAIN MENU";
    font-family: 'Rozha One';
    font-weight: 500;
}

.footer_info li:nth-child(1) a,
.footer_info li:nth-child(1) p {
    color: #3f2617;
    letter-spacing: 0.15em;
}

.footer_info ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 0 20px;
    letter-spacing: 0.15em;
    margin-bottom: 29px;
}

.footer_logo img {
    width: 80%;
}

.footer_logo {
    display: inline-block;
    vertical-align: top;
    width: 170px;
    margin: 0px;
}

#to_top i.top {
    width: 20px;
    height: 15px;
}

#to_top {
    animation: topJump 1.8s ease-in-out infinite;
}

.footer_menu {
    width: 76%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    padding-top: 1px;
}

.footer_menu a {
    display: inline-block;
    padding: 0px 7px 5px 16px;
    border: unset;
    margin: 0 0px 0 0;
    font-size: 14px;
    position: relative;
    line-height: 147%;
    color: #3f2617;
    background: transparent;
    width: 46%;
    letter-spacing: 2px;
    transition: letter-spacing 0.5s ease;
}

/* Hover 時文字間距拉開 */
.footer_menu a:hover {
    background: transparent;
    color: #3f2617;
    letter-spacing: 4px;
}

/* --- 動態圓點設計 (::before 為預設顯示點, ::after 為 hover 進場點) --- */
.footer_menu a:before,
.footer_menu a:after {
    content: "";
    background: #3f2617;
    width: 3px;
    height: 3px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
}

/* 預設狀態下的離場點 (::after) */
.footer_menu a:after {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate3d(0, -20px, 0) scale(.75, 1.75);
    transform: translate3d(0, -20px, 0) scale(.75, 1.75);
}

/* Hover 時原圓點 (::before) 往下滑動並淡出 */
.footer_menu a:hover:before {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate3d(0, 15px, 0) scale(.75, 1.75);
    transform: translate3d(0, 15px, 0) scale(.75, 1.75);
    transition: transform .65s cubic-bezier(.645, .045, .355, 1) 0s,
        opacity .65s cubic-bezier(.645, .045, .355, 1) 0s,
        visibility .65s cubic-bezier(.645, .045, .355, 1) 0s;
}

/* Hover 時新圓點 (::after) 從上方滑入並恢復正常大小 */
.footer_menu a:hover:after {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateZ(0) scale(1);
    transform: translateZ(0) scale(1);
    transition: transform .55s cubic-bezier(.645, .045, .355, 1) .1s,
        opacity .55s cubic-bezier(.645, .045, .355, 1) .1s,
        visibility .55s cubic-bezier(.645, .045, .355, 1) .1s;
}

.double_key {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
    align-items: center !important;
    width: 100% !important;
    height: auto !important;
    overflow: visible !important;
    /* 確保不被剪裁 */
    position: relative;
    z-index: 99;
    /* 提高圖層順序 */
    padding: 0 14px;
}

.double_key a {
    display: inline-block !important;
    visibility: visible !important;
    /* 強制視覺可見 */
    opacity: 1 !important;
    /* 防止透明度變 0 */
    font-size: 12px;
    color: #a73737 !important;
    /* 先改用明確的 Hex 色碼測試 */
    text-decoration: none;
    white-space: nowrap;
}

@keyframes topJump {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@media screen and (max-width: 768px) {
    .footer_info li {
        flex-direction: column;
    }

    .footer_info li+li {
        margin-top: 0px;
    }

    .footer {
        padding: 30px 0 55px;
    }
}

@media screen and (max-width: 1200px) {
    .double_key {
        margin: 0 auto -10px;
    }
}

/*手機版選單*/
.stellarnav .menu-toggle,
.stellarnav .call-btn-mobile,
.stellarnav .location-btn-mobile {
    padding: 17px 25px;
}

.stellarnav .menu-toggle:after {
    display: none;
}

.stellarnav .menu-toggle span.bars span {
    width: 30px;
    height: 1px;
    margin: 0 auto 6px;
    background: var(--MainColor);
}

@media screen and (max-width: 500px) {

    .stellarnav .menu-toggle,
    .stellarnav .call-btn-mobile,
    .stellarnav .location-btn-mobile {
        padding: 0;
    }
}

/*第二層*/
.stellarnav a.dd-toggle .icon-plus:after {
    border-bottom: solid 1px var(--SubColor);
}

.stellarnav a.dd-toggle .icon-plus:before {
    border-bottom: solid 1px var(--SubColor);
}

.stellarnav.mobile.right>ul,
.stellarnav.mobile.left>ul {
    max-width: 300px;
}

.stellarnav.mobile.right .close-menu,
.stellarnav.mobile.left .close-menu {
    background: var(--SubColor);
    color: #fff;
}

.stellarnav .icon-close:after {
    border-bottom: solid 3px #fff;
}

.stellarnav .icon-close:before {
    border-bottom: solid 3px #fff;
}

/* 外層相簿 */
.other_subalbum li {
    height: 350px !important;
    overflow: hidden !important;
}

.other_subalbum li a {
    height: 350px !important;
    display: block !important;
    overflow: hidden !important;
}

.other_subalbum li a img {
    width: 100% !important;
    height: 350px !important;
    min-height: 0 !important;
    object-fit: cover !important;
    transform: scale(1.60) !important;
    display: block !important;
}

/* ==========================================
   右上角獨立功能區 (搜尋列 + 購物車 + 匯款通知)
   ========================================== */
.me_header {
    position: relative !important;
}

/* 3. 將【搜尋框】與【購物車/匯款通知】強制黏在頁首右上角並排 */
.box_search,
.me_tp_features {
    position: absolute !important;
    top: -21px !important;
    /* 距離頁首最頂部的距離 */
    margin: 0 !important;
    z-index: 100 !important;
    display: flex !important;
    align-items: center !important;
    gap: 50px;
}

/* 搜尋框靠右定位 */
.box_search {
    right: 190px !important;
}

/* 購物車與匯款通知靠最右邊定位 */
.me_tp_features {
    right: 2px !important;
    /* 距離容器最右邊的距離 */
    gap: 10px !important;
    /* 購物車與匯款通知的間距 */
    white-space: nowrap !important;
}

/* 4. 微調購物車文字大小與顏色 */
.me_tp_features a,
.me_tp_features span {
    font-size: 14px !important;
    color: #333333 !important;
    text-decoration: none !important;
    align-items: center !important;
    gap: 4px !important;
}

/* 5. 下方主選單向下推開，避免被右上角的功能遮住 */
.navigation {
    position: relative !important;
    margin-top: 45px !important;
    /* 留出上方搜尋與購物車的高度 */
    display: flex !important;
    justify-content: flex-end !important;
    /* 選單項目靠右對齊 */
    align-items: center !important;
}

/* 購物功能全部靠近 */
.me_tp_features {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* 搜尋框 */
.me_tp_features .box_search {
    position: static !important;
    width: auto !important;
    margin: 0;
    padding: 0;
}

/* 搜尋表單 */
.me_tp_features #hs_search {
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* 搜尋輸入框、搜尋按鈕 */
.me_tp_features .shop_search_txt,
.me_tp_features .shop_search_btn {
    margin: 0 !important;
}

/* 購物車、匯款通知 */
.me_tp_features .tp_btn_cart,
.me_tp_features .tp_btn_notice {
    margin: 0 !important;
    padding: 0 !important;
}

/* 隱藏社群 */
.me_tp_features .tp_links {
    display: none !important;
}

.shop_search_btn {
    right: 180px;
}

@media screen and (max-width: 1200px) {
    .stellarnav {
        flex-wrap: nowrap !important;
        white-space: nowrap !important;
    }

}

@media screen and (max-width: 1024px) {

    /* 1. Header 容器與導覽區改為 Flex 欄位方向，水平垂直皆置中 */
    .header_area,
    .main_header_area,
    .navigation {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        height: auto !important;
        padding: 0 !important;
        width: 100%;
    }

    /* 2. 第一層：Logo 獨立置中 */
    .nav-header {
        position: relative !important;
        top: 0 !important;
        float: none !important;
        margin: 0 auto -20px auto !important;
        text-align: center !important;
    }

    .nav-brand {
        top: -30px !important;
        display: inline-block !important;
    }

    /* 3. 第二層：搜尋列與購物車功能列（同排置中） */
    .box_search,
    .me_tp_features {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        float: none !important;
        position: relative !important;
        top: 0 !important;
        right: auto !important;
        left: auto !important;
        margin: 10px 8px !important;
    }

    /* 包裹搜尋與購物車的父容器（若 HTML 中有包在一起）或強制作為同一列展示 */
    .navigation {
        flex-wrap: wrap !important;
    }

    /* 4. 第三層：主選單置中並滿版 */
    .stellarnav {
        width: 100% !important;
        margin-top: -29px;
    }

    .stellarnav>ul {
        display: flex;
        justify-content: center !important;
        flex-flow: row wrap;
        padding: 0 !important;
        margin: 0 !important;
    }

    .stellarnav>ul>li>a {
        font-size: 13px !important;
    }

    .stellarnav.mobile>ul>li {
        width: 100%;
    }

    .shop_search_btn {
        border-radius: 38px;
        height: 60%;
        top: 10px;
        right: 190px;
    }
}

@media screen and (max-width: 768px) {

    .stellarnav.mobile.right>ul,
    .stellarnav.mobile.left>ul {
        align-content: flex-start;
    }

    .stellarnav .menu-toggle span.bars {
        display: block;
        position: relative;
        margin: 0 !important;
    }

    .stellarnav .menu-toggle,
    .stellarnav .call-btn-mobile,
    .stellarnav .location-btn-mobile {
        padding: 17px 25px;
    }

    .stellarnav.mobile>ul>li>a {
        line-height: 80%;
    }

    .stellarnav.mobile>ul>li>a.dd-toggle {
        padding: 14px;
    }
}

@media screen and (max-width: 560px) {

    .shop_search_btn {
        border-radius: 34px;
        height: 58%;
        top: 10px;
        right: 2px;
    }

    .box_search,
    .me_tp_features {
        position: relative !important;
        top: -10px !important;
        right: auto !important;
        left: auto !important;
    }
}

ul.other_subalbum li.item a {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    text-decoration: none !important;
}

ul.other_subalbum li.item a figure.show_pic {
    height: 350px !important;
    width: 100% !important;
    overflow: hidden !important;
    margin: 0 !important;
}

ul.other_subalbum li.item a figure.show_pic img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* 2. 強制拉出 <p>使用產品</p> 並精準設定文字樣式 */
ul.other_subalbum li.item a p,
.other_subalbum li a p {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: var(--MainColor, #3F2617) !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-align: center !important;
    padding: 12px 5px !important;
    margin: 0 !important;
    line-height: 1.4 !important;
    background: transparent !important;
    position: relative !important;
    z-index: 10 !important;
}