@charset "utf-8";
/* *************思默制作室內裝修****************** */
/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/

body {
    font-family: 'Poppins', 'sans-serif', 'Noto Sans TC', 'sans-serif';
}


/*網站全域設定/＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
:root {
  /* --Color: #1c3459; */
  --MainColor: #D4C9AA; /*網站主要色系*/
  --SubColor: #202020; /*網站文字色*/
  --SubColor1: #A1A1A1; /*網站輔助色系1*/
  --SubColor2: #616A72; /*網站輔助色系2*/
  --SubColor3: #24272E; /*網站輔助色系3*/
  --SubColor4: #F5F2E8; /*網站輔助色系4*/  
  --SubColor5: #fff; /*網站輔助色系5*/ 
  --SFontE: "Inter", "Noto Sans TC",sans-serif;/*英文字體-無襯線*/
  --SFontEN: "Arimo", "Noto Sans TC",sans-serif, system-ui;/*英文字體*/
  --SFontEN2:"Alegreya Sans SC", "Arimo", "Noto Sans TC",sans-serif, system-ui;/*英文主標字體*/
  --SFont: "Noto Sans TC", sans-serif;/*內文黑體字*/
  --pd100:100px 0;
  --m100:100px;
  --m50:50px;
  --m30:30px;
  --f80:80px;
  --f60:60px;
  --f52:52px;
  --f48:48px;
  --f44:44px;
  --f40:40px;
  --f36:36px;
  --f32:32px;
  --f28:28px;
  --f24:24px;
  --f22:22px;
  --f20:20px;
  --f18:18px;
  --f17:17px;
  --f16:16px;
}
@media (min-width:1520px) {
  :root{
    /* --f52:60px;
    --f28:32px; */
  }
}
@media (max-width:1024px) {
:root{
  --f80:70px;
  --m50:40px;
  --m30:25px;
  --f52:48px;
  --f48:40px;
  --f44:38px;
  --f40:36px;
  --f36:32px;
  --f32:28px;
  --f28:24px;
  --f24:22px;
  --f22:20px;
  --f20:18px;
}
}
@media (max-width:768px) {
:root{
  --pd100:70px 0;
  --m100:70px;
  --f80:60px;
  --m50:30px;
  --m30:20px;
  --f52:44px;
  --f48:32px;
  --f44:30px;
  --f40:28px;
  --f36:26px;
  --f32:24px;
  --f28:22px;
  --f24:20px;
  --f20:17px;
  --f18:16px;
  --f17:16px;   
  --f16:15px;
}
}
@media (max-width:600px) {
:root{
  --pd100:50px 0;
  --m100:50px;
  --m50:25px;
  --f80:52px;
  --f52:36px;
  --f48:28px;
  --f44:26px;
  --f40:24px;
  --f36:22px;
  --f32:20px;
  --f28:20px;
  --f24:18px;
  --f18:16px;
  --f17:15px;  
}
}
@media (max-width:375px) {
:root{
  --f80:48px;
  --f52:32px;
  --f48:24px;
  --f44:22px;
  --f40:20px;
  --f36:18px;
  --f32:18px;
  --f28:18px;
  --f24:17px;
  --f22:17px;
  --f20:16px;
  --f18:15px;  
  --f16:14px;
}
}
/*網站全域設定/＝＝＝＝＝*/


/*反白顏色*/
/* ::-moz-selection { background-color: #060303; color: #fff; }
::selection { background-color: #060303; color: #fff; } */


.linksBtn {
    display: none;
}


/*卷軸*/
&::-webkit-scrollbar { background: #f1f1f1; width: 7px;}
&::-webkit-scrollbar-button { display: none; background: #f1f1f1; border-radius: 0;}
&::-webkit-scrollbar-track-piece { background: #f1f1f1;}
&::-webkit-scrollbar-thumb { /* border-radius: 4px; */ background-color: #c1c1c1;}
&::-webkit-scrollbar-track { box-shadow: transparent;}



/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/

.header_area {
    position: fixed;
    z-index: 9999;
    width: 100%;
    background: transparent;
    padding: 0;
    transition: opactity .6s;
    position: relative;
}
.header_area.sticky {
    -webkit-box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
    background: transparent;
}
.pageIndex .header_area {    
    position: fixed;
    opacity: 0;
    pointer-events: none;
}
.pageIndex .header_area.sticky {
    opacity: 1;
    pointer-events: auto;
}

.main_header_area:after {
    content: "";
    width: 100%;
    height: 0%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition-timing-function: ease-in;
    transition: .4s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: #ffffff;
    box-shadow: 1px 5px 8px 5px rgba(0, 71, 55, .03);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.pageIndex .main_header_area:after {
    height: 0%;
}
.pageIndex .header_area.sticky .main_header_area:after {
    height: 100%;
}
.main_header_area .container {
    max-width: 100%;
    max-height: 120px;
    padding: 0 200px;
    transition: 0.5s;
}
.pageIndex .header_area .main_header_area {
    background: transparent;
    /* opacity: 0; */
    transition: all 0.3s;
    position: relative;
}
.pageIndex .header_area.sticky .main_header_area {
    background: transparent;
    /* opacity: 1; */
    transition: all 0.3s;
}
.navigation {
    align-items: center;
    padding: 0;
    padding-left: 25px;
}


/*選單 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =*/
.pageIndex .stellarnav {

}
.header_area.sticky .stellarnav {
    opacity: 1;
    transition: all 0.3s;
    pointer-events: unset;
}

/* 第一層 */
.stellarnav > ul > li {
    position: relative;
    padding: 15px 10px;
    font-size: 0;
}
.stellarnav > ul > li:after {
    content: "";
    width: 1px;
    height: 0px;
    display: block;
    background: #D8CDC7;
    position: absolute;
    top: 0;
    left: 50%;
    transform-origin: left bottom;
    transition: 0.6s;
}
.stellarnav > ul > li:hover::after {
    height: 22px;
    transform-origin: right bottom;
}
.stellarnav > ul > li > a {
    color: #535353;
    font-size: 14px;
    margin: 0;
    padding: 0 5px;
    margin: 15px 0;
}

.stellarnav > ul > li > a:hover {
    color: #535353;
    transition: color 0.2s;
}
.stellarnav > ul > li > a:hover:before {
    color: #000;
    transition: .5s cubic-bezier(0.77, 0, 0.65, 0.99);
    transition: width .3s cubic-bezier(.19,1,.22,1);
    left: 0;
    width: 100%;
}

.stellarnav ul li:hover a {
    opacity: 1;
    transition: all 0.3s ease-in-out ;    
    transition: color 0.2s;
}
.stellarnav ul ul>li>a:hover, .stellarnav ul ul>li>a:focus {
    color: #131413;
    opacity: 1;
}

/* 下拉符號移除 */
.stellarnav li.has-sub > a:after{
    content: none;
}

.stellarnav > ul > li > a b {
    font-weight: 600;
    letter-spacing: 1px;
}

/* 第二層 */
.stellarnav.desktop ul ul {
    background: transparent;
    width: 185px;
    left: 50%;
    transform: translateX(-50%);
}
.stellarnav li li {
    border: 0;
}
.stellarnav li a {
    padding: 10px;
}
.stellarnav.desktop li.has-sub li a {
    font-size: 14px;
    text-align: center;
    padding: 10px;
    letter-spacing: 0.08em;
    border-bottom: 1px solid #f6f6f6;
    display: block;
    padding: 10px;
    border-bottom: 1px solid rgba(51, 51, 51, 0.5);
    line-height: 1.5;
    color: #fff;
    background-color: #24272e;
    white-space: nowrap;
    font-weight: 300;
}
.stellarnav.desktop li.has-sub li a.dd-toggle {
    display: none;
}
.stellarnav.desktop li.has-sub li a:hover {
    color: #24272e;
    background: #d6d0c8;
    font-weight: 400;
}

/* 第三層 */
.stellarnav.desktop ul ul ul {
    top: 0;
    left: 0;
}

.me_tp_features {
    display: none;
}

/*電腦LOGO = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.nav-header {
    width: fit-content;
    margin-top: 0px;
    max-width: 175px;
}
.nav-brand {
    width: 100%;
}

/*手機LOGO
.nav-brand-m {}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*======Footer區塊======*/
/*LOGO隱藏*/

/* .footer {
    padding: 3% 0 0;
    height: 42vh;
    font-size: 14px;
    background: #97908600;
    position: relative;
    z-index: 99;
}
.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(https://pic03.eapple.com.tw/letmedesign108/footer.png) center/cover no-repeat;
    z-index: -1;
}
.footer_info { display: none; }
.copy { display: none; } */

.other_page .footer {
    display: none;
}

/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = =*/
/* 商品下拉超過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個--結束 */





/* = = = 大圖-分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = *
/*預設解除背景輪播*/
#content_main, #content {
    margin: 0;
    background: #fff;
    padding: 80px 0 ;
    background-repeat: repeat;
    padding: 0;
    position: relative;
}
.bannerindex {
    position: relative;
    height: auto;
}
/* 大圖尺寸 */
.bannerindex .swiper-banner {
    position: static;
    margin: 0;
    height: auto;
    height: calc(100vh - 50px);
    margin: auto;
    margin-right: 0;
    width: calc(100% - 200px);
    width: 100%;
    overflow: hidden;
}

.bannerindex .swiper-banner .swiper-slide img, .bannerindex .swiper-banner .swiper-slide-active img{
    /* 大圖切換閃爍-opacity */
    opacity: unset !important;
    width: auto;
    object-fit: contain;
    height: 100%;
    object-fit: cover;
    width: 100%;
    height: 100%;
    max-width: 100%;
}


/* 大圖點點按鈕 */
.swiper-pagination{display: none;}
.swiper-pagination-clickable .swiper-pagination-bullet{ margin: 0 5px; border-radius: 0; height: 4px; width: 20px; }
.swiper-pagination-bullet { opacity: .5; background: #fff; }
.swiper-pagination-bullet-active { opacity: 1; background: #fff;}
/* 大圖點點按鈕END */




/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =*/
/* 麵包屑 */
.path {
    /* display: none; */
    margin-bottom: 10px;
    padding: 0 0 20px;
}
.path p, .path p a {
    font-size: 12px;
    color: #a1a1a1;
    font-family: var(--SFontEN);
    letter-spacing: 0.06em;
    font-weight: 300;
    /* font-size: 0;*/
}
.path p a:hover {
    color: var(--MainColor);
}


/* main */
.edit_part{
    padding: 0;
}
.main_part {
    font-family: var(--SFontEN);
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
}
.show_content {
    margin: auto;
    padding: 0;
    font-family: var(--SFontEN);
}
.subalbum-menu {
    margin: 0;
    padding: 0;
}


/*內頁BANNER 設定 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

.banner {
    position: relative;
    background: var(--SubColor4);
    width: 100%;
    object-fit: cover;
    background-size: cover;
    background-image: url(https://pic03.eapple.com.tw/letmedesign108/bn_01.jpg);
    aspect-ratio: 8 / 2;
    margin-bottom: 10px;
}

.banner h5 {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 100%);
    display: flex;
    flex-direction: column;
    color: #ffffff;
    text-shadow: 0px 0px 5px #2a2a2a;
    top: 32%;
}
.banner h5:after {
    content: 'PHOTO';
    width: fit-content;
    color: #d2c8ab;
    position: relative;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    letter-spacing: 0.1em;
    font-size: 15px;
    font-family: var(--SFontEN2);
    line-height: 1.4;
}
.contact_page .banner h5:after{
    content: 'CONTACT';
}
.blog_page .banner h5:after, .blog_in_page .banner h5:after{
    content: 'NEWS';
}
.product_page .banner h5:after{
    content: 'PRODUCTS';
}

.banner.banA {}
.banner.banB {}
.banner.banC {}
.banner.banD {}
.banner.banE {}
.banner.banblog {}



/* @1400px 上方區域_捉雞版面1400 */
@media screen and (max-width: 1400px) {
    /* 共用區域 */    
    .main_part {
        width: 90%;
    }
}

/* @1200px 上方區域_捉雞版面1200 */
@media screen and (max-width: 1200px) {
    /* = = header = = */
    /* 導覽列 */
    .stellarnav > ul > li {
        padding: 0 5px;
    }
}


/* @1024px 上方區域_平板版面1024 */
@media screen and (max-width: 1024px) {
    /* = = header = = */
    .header_area { position: relative; }
    
    .pageIndex .header_area {
        position: relative;
        opacity: 1;
        pointer-events: auto;
    }    
    .pageIndex .header_area.sticky, .header_area.sticky {
        position: fixed;    
    }
    .pageIndex .main_header_area:after {
        height: 100%;
    }


    /* 大圖 */
    .bannerindex .swiper-banner {
        height: auto;
    }
    .bannerindex:before, .bannerindex:after{
        content: none;
    }
    .bannerindex .swiper-banner:before, .bannerindex .swiper-banner:after {
        content: none;
    }
    /* banner01 */
    .swiper-slide:nth-child(1):before, .swiper-slide:nth-child(2):before {
        left: 0;
    }
    
    /* 導覽列 */
    .main_header_area .container {
        padding: 0 20px;
    }
    .navigation {
        display: grid;
        grid-template-columns: 160px 1fr;
        align-items: center;
        padding: 0;
    }
    .stellarnav ul {
        text-align: right;
    }
}

@media screen and (max-width: 920px) {
/* 導覽列 */
.main_header_area .container {
    max-height: unset;
    padding: 0;
}
.navigation {
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
}
.nav-header {
    margin-bottom: 6px;
}
.stellarnav {}
.stellarnav ul {
    text-align: center;
}
.stellarnav > ul > li > a{
    margin: 10px 0;
}
}


/* @768px上方區域_手機版面768 */
@media screen and (max-width: 768px) {
    /* = = 大圖 = = */
    .bannerindex {
        padding: 0;
        margin: 0;
        overflow: hidden;
    }
    .bannerindex .swiper-banner {
        width: 100%;
    }
    /* 大圖 */
    .swiper-slide:nth-child(1):before, .swiper-slide:nth-child(2):before{
        bottom: 4.6vw;
    }


    /* logo*/    
    .nav-header { }
    .nav-brand img { }


    /* = = header = = */
    .header_area {
        height: 80px;
    }
    .main_header_area .container {
        padding: 0 20px;
    }
    .navigation {
        display: flex;
        justify-content: space-between;
        flex-direction: row;
        min-height: 80px;
    }
    .stellarnav.mobile {
        right: 0;
        left: unset;
    }



    /* 導覽列漢堡選單 */
    .stellarnav.mobile .menu-toggle {
        display: flex;
        margin: 29px 0;
        padding: 0;
    }
    /* 漢堡選單樣式 */
    .stellarnav .menu-toggle:after {
        text-transform: capitalize;
        content: 'Menu';
        font-size: 0;
        color: #000;
        transform: scale(1);
        font-family: var(--SFontEN);
        letter-spacing: 0.04em;
    }
    .stellarnav .menu-toggle span.bars {
        display: block;
        margin: 0;
    }
    .stellarnav .menu-toggle span.bars span {
        width: 30px;
        height: 2px;
        border-radius: 0;
        background: #717171;
        margin: 0 auto 6px;
        transition: all 0.3s;
    }
    .stellarnav .menu-toggle span.bars span:nth-child(2) {
        width: 24px;
        /* margin-right: 0; */
    }
    .stellarnav.mobile .menu-toggle:hover span.bars span:nth-child(2){
        width: 30px;

    }
    
    /* 導覽列展開 */
    .stellarnav.mobile.left > ul {
        left: unset;
        right: 0;
        font-size: 0;
        max-width: 100%;
        padding: 0 20px;        
        /*右滑出現*/
        right: -100vw;
        /* overflow: hidden; */
        transition: all .5s ease;
    }
    .stellarnav.mobile.left.active > ul{        
        right: 0;
        max-width: 100%;
        background: #f0eeee;
        /* background: black;*/
    }


    .stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {
        display: inline-block;
        font-size: 12px;
        background: transparent;
        position: relative;
        width: fit-content;
        padding: 0;
        margin: 26px 0 28px;
        text-transform: capitalize;
        content: 'Menu';
        font-size: 0;
        color: #000;
        transform: scale(1);
        font-family: var(--SFontEN);
        letter-spacing: 0.04em;
        height: 0;
        /* left: 100%; */
        /* transform: translateX(-100%); */
        text-align: right;
        display: flex;
        flex-direction: row-reverse;
        transition: background .6s ease , height .6s ease;
    }
    .stellarnav.mobile.active .close-menu{
        position: fixed;
        width: 100vw;
        height: 80px;
        background: #fff;
        margin: 0;
        left: 0;
        padding: 30px;
        /* z-index: 1; */
    }
    .stellarnav .icon-close {
        box-sizing: border-box;
        width: 18px;
        height: 12px;
        position: relative;
        display: inline-block;
        margin: 2px 9px 0 3px;
    }
    .stellarnav .icon-close:before , .stellarnav .icon-close:after {
        width: 25px;
        height: 0px;
        border-bottom: solid 2px #717171;
    }
    /* 導覽列選取Hover效果 */
    .stellarnav ul:hover li a {
        opacity: 1;
        transition: all 0.3s ease-in-out;
    }


    /* 第一層 */
    .stellarnav.mobile > ul > li {
        border-bottom: 1px #eee solid;
        padding: 10px 0 0;
        display: block;
        border-bottom: 1px solid #d1c6af61;
        margin-top: 80px;
    }
    .stellarnav.mobile > ul > li+li {
        padding: 0;
        margin: 0;
    }
    .stellarnav.mobile li.open {
        background: var(--MainColor);
        color: #fff;
        padding: 0 0 5px;
        margin-top: 5px;
    }
    .stellarnav.mobile > ul > li > a {
        text-align: left;
        overflow: auto;
        height: auto;
        line-height: 150%;
        color: #333;
        font-size: 16px;
        letter-spacing: 0.04em;
        display: flex;
        align-items: center;
        border: 0;
        padding-left: 5px;
    }
    .stellarnav.mobile li.open > a {
        border: 0;
        padding: 10px;
        margin-bottom: 0;
    }    
    .stellarnav > ul > li > a:before{
        content: none;
    }
    .stellarnav.mobile > ul > li > a b:nth-child(2) {
        font-size: 14px;
        margin-left: 10px;
        color: var(--MainColor);
    }
    .stellarnav.mobile li.open > a b:nth-child(2) {
        color: #fff;
    }
    .stellarnav > ul > li:after{
        content: none;
    }

    /* +符號修改 = = */
    .stellarnav.mobile > ul > li > a.dd-toggle {
        /* top: 5px; */
        margin: 0;
    }
    .stellarnav.mobile > ul > li.open > a.dd-toggle {
        top: 0;
    }
    .stellarnav a.dd-toggle .icon-plus:before {
        width: 8px;
        height: 8px;
        border-bottom: solid 1px #666;
        top: 50%;
        left: 0;
        transform: rotate(-45deg);
    }
    .stellarnav a.dd-toggle .icon-plus:after {
        width: 8px;
        height: 8PX;
        top: 50%;
        border-bottom: solid 1px #666;
        transform: rotate(45deg);
    }
    .stellarnav li.open > a.dd-toggle .icon-plus {
        -moz-transform: translateY(10px) scaleY(-1);
        -webkit-transform: translateY(10px) scaleY(-1);
        -o-transform: translateY(10px) scaleY(-1);
        transform: translateY(10px) scaleY(-1);
    }
    /* +符號修改END = = */

    /* 第二層 */
    .stellarnav.mobile ul ul {
        margin: 0 auto;
        margin: auto;
        left: unset;
        transform: unset;
        box-shadow: none;
        margin: 0 5px;
    }
    .stellarnav li li {
        font-size: 14px;
        color: #333;
        font-family: var(--SFont);
        letter-spacing: 1px;
        font-size: 15px;
    }
    .stellarnav.mobile li a {
        border-bottom: 0;
        font-size: 14px;
    }
    .stellarnav.mobile ul ul > li > a:not(.dd-toggle):hover{
        background: var(--SubColor4);
    }
    .stellarnav.mobile li.open li.open {
    background: transparent;
    padding: 0;
}

}

/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = =*/


/*購物車部分基本設定(固定)--------/
/*+++清單頁-----------------------*/
.products-list .pic{overflow: hidden;}
.sidebarBtn {border: none;box-shadow: 0 0 8px rgb(0 0 0 / 10%);padding: 30px 20px;}
.show_content .product-layer-two li:hover ul {border: none;border-top: none;}
/*上方選單*/
.product-layer-two li {
    display: block;
    margin: 5px 10px 0px 0;
    padding: 5px 0;
    position: relative;
    width: 100%;
    text-align: center;
}
.product-layer-two li a {background: #f7f7f7;border: none;color: #777;}
.product-layer-two li a:hover {
    background: #c4b7a8;
    color: #ffffff;
}
.product-layer-two > li.active > a {color: #545454;}
.product-layer-two {
    margin: 10px 0 60px;
    display: flex;}


.product-layer-two li.active li a {
    font-weight: normal;
    color: #545454;
}

.product-layer-two li li {
    display: none;
    background: #fff;
    border: none;
    margin: 0;
}

.products-list .item a:hover .more {
    background: #523F33;
    color: #fff;
    letter-spacing: 2px;
}

.fa-circle-plus::before {
    color: #ffffff00;
}

.product-layer-two li i.close::before {
    color: #ffffff00;
}

.product-layer-two li i {
    top: 3px;
}


/*清單頁_購物車按鈕顏色*/
.products-list .more {border: 1px solid #ccc;color: #ccc;}
.products-list a:hover .more {background: #c4b7a8;border-color: #c4b7a8;color: #fff;}

.product-layer-two ul {
    grid-template-columns: 1fr;
    grid-gap: 0px;
}


/*內頁*/

.sidebarBtn h2 {
    color: #523F33;
    font-size: 24px;
}
.inquiry_a1 {
    background: #ffffff;
    color: #545454;
}

.inquiry_a2 {
    background: #c4b7a8;
}

.inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover {
    letter-spacing: 2px;
    background: #c4b7a8;
    color: #ffffff;
}

.product_info li .txt_box {
    display: inline-block;
    vertical-align: top;
    color: #777777;
}

button, html input[type="button"], input[type="reset"], input[type="submit"] {
    -webkit-appearance: none;
    cursor: pointer;
    border: 1px solid #ededed;
}
/*+++詳細頁-----------------------*/

.lastPage {background: #888;}/*上一頁*/
/*詳細頁_側邊資訊欄*/
.product_info li span {width: auto;padding: 5px;color: #777;margin-right: 8px;}
/*詳細頁_商品資訊*/
.prod-thumb{font-weight: normal;font-size: 20px;padding-bottom: 10px;margin:20px 0;color: #444;}
.prod-thumb:before{content: "▎";padding-right: 5px;}
/*詳細頁_QA表單*/
.prod > li{margin: 10px 0;padding: 25px;}
.prod > li:nth-child(2){background: #f7f7f7;}
.product_info_page input[type="text"], .product_info_page textarea{background: #fff;}
.breakF {padding: 5px;min-height: 40px;}
.half_box{width: 100%;}
.half_box ul{display: flex;flex-wrap: wrap;justify-content: space-between;}
.half_box:nth-child(1) li:last-child{width: 100%;}
.half_box li {margin: 5px 0;display: inline-block;width: 49%;}
.half_box li.btn_blankTop {margin-top: 24px;}
.half_box li.btn_blankTop input{background-color: #888;background-image: none;width: auto;text-align: center;padding-left: 0;padding: 15px 25px;
	line-height: initial;border-radius: 3px;vertical-align: middle;color: #fff;transition: all .3s;}
.half_box li.btn_blankTop input:hover{background-color: #666;}
.productBtn{margin-top: 0;}

@media screen and (max-width: 768px){
	.product_info li {padding-left: 110px;}
	.prod > li:first-child{padding: 25px 0;}
	.half_box:nth-child(2) li:last-child{width: 100%;}
    .show_content {
        width: 100%;
        padding: 15px;
    }
    .product-layer-two {
        margin: 10px 0 40px;
        display: block;
    }

    .product-layer-two li {
        display: inline-block;
        margin: 2px;
        padding: 3px 0;
        position: relative;
        width: 46%;
        text-align: center;
    }
    .product-layer-two li:hover li {
        display: block;
        width: auto;
    }
}

/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/*文章設定 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

/* .blog_page .main_part, .blog_in_page .main_part{  background: #f6f4f0;} */

/*文章功能頁/ = = = = */
/* 左側分類欄位 */
.blog_le {
    /* width: 100%; */
    padding: 12px;
}
h5.blog_le_t {
    margin-bottom: 10px;
    text-align: center;
    padding-bottom: 20px;
}
h5.blog_le_t em {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--SubColor);
}
h5.blog_le_t span {
    display: inline-block;
    font-size: 18px;
    padding-left: 6px;
    font-family: var(--SFontEN);
}
.blog_search {
    position: relative;
    margin-bottom: 10px;
    opacity: .8;
    /* display: none; */
}
.blog_search input[type=search] {
    width: 100%;
    font-size: 14px;
    color: #999;
    border: 0;
    background: #eee;
    border-radius: 0;
    padding: 10px 40px 10px 10px;
}
/* 分類列 */
.blog_le .accordion {
    border-radius: 0;
    border: 0;
    overflow: hidden;
    display: grid;
    font-size: 0;
}
.blog_le .accordion li {
    transition: .2s ease-out;
    border-bottom: 1px solid #dadbdb;
}
.accordion li+li .link {
    border: 0;
    border-left: 1px solid #dadbdb;
}
.accordion li .link {
    padding: 10px;
}
.accordion li .link a {
    padding: 5px 10px;
    font-weight: 700;
    text-align: center;
    line-height: 1.7;
    letter-spacing: 0.12em;
    font-size: 14px;
    color: var(--SubColor) ;
    font-weight: 500;
    margin: 10px 0;
}
.blog_le .accordion > li.on_this_category{
    background: #eee !important;
}
.blog_le .accordion > li.on_this_category:hover .link a, .link a ,.blog_le .accordion > li:hover .link a{
    color:var(--SubColor)  !important;
}
.blog_le .accordion > li:hover {
    background: #eee !important;
}
.blog_le .accordion > li.on_this_category .link a {
    color: var(--SubColor)  !important;  
}
/* 右側圖文區 */
.blog_ri {
    /* width: 100%; */
    /* padding: 0 0 0 20px; */
    /* padding: 0; */
    width: calc(100% - 240px);
    padding: 0 0 0 40px;
}
h4.blog_category_title {
    width: fit-content;
    font-weight: 600;
    letter-spacing: 0.04em;
    display: none;
}
/* 圖文區塊 */
 .blog_subbox {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    display: flex;
    flex-wrap: wrap;
}
.subbox_item:first-child{    
    border-top: 1px solid #eee;
}
.subbox_item {
    position: relative;
    width: 100%;
    background: rgb(255 255 255);
    /* background: #f3efe8; */
    border-radius: 0;
    overflow: hidden;
    transition: .5s ease-out;
    border-bottom: 1px solid #eee;
    height: fit-content;
    width: 100%;
    margin: 0.5%;
    background: transparent;
    margin: 0;
    padding: 10px 0;
}
.subbox_item:hover {
    transition: .5s ease-out;
    box-shadow: 9px 12px 20px 0px rgb(181 177 172 / 35%);
}
.subbox_item li:hover {
    transition: .5s ease-out;
    box-shadow: 9px 12px 20px 0px rgb(181 177 172 / 35%);
}
.subbox_item a {
    grid-template-columns: 1fr;
    gap: unset;
    /* flex-direction: column; */
    height: 100%;
    padding: 0;
    display: flex;
}
.module_i_news li a:before, .module_i_news li a:after, .subbox_item a:after, .subbox_item a:before {
    content: none;
}
/* 圖 */
.blog_list_le {
    max-width: 50%;
}
.i_blog_le, .blog_list_le {
    overflow: hidden;
    position: relative;
    width: 30%;
    aspect-ratio: 1/1;
    background-color: transparent;
}
.i_blog_le img, .blog_list_le img {
    width: 100%;
    transition: .4s ease;
}
.module_i_news li a:hover img, .subbox_item a:hover img {
    z-index: 1;
    transition: 0.4s;
    /* filter: grayscale(1); */
    opacity: 0.3;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}
.module_i_news li a:hover .i_blog_le::before,  .subbox_item a:hover .blog_list_le::before{
    opacity: 1;
    transition: 0.5s;
    margin-top: -20px;
}
.module_i_news li a .i_blog_le:before, .blog_list_le::before{
    /* content: "MORE +"; */
    position: absolute;
    line-height: 1.462;
    font-family: var(--SFontEN);
    left: 50%;
    top: 50%;
    z-index: 99;
    transform: translateX(-50%);
    margin-top: -80px;
    display: block;
    padding: 10px 20px 7px;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: #fff;
    border: 2px solid #fff;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
/* 文字 */
.blog_list_ri {
    /* width: 50%; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 15px 35px;
}
.i_blog_ri, .blog_list_ri {
    padding: 25px;
    width: 100%;
    width: 70%;
    padding: 0 6%;
    position: relative;
}
.i_blog_ri h5, .blog_list_ri h5 {
    font-size: var(--f24);
    text-align: left;
    color: #333;
    letter-spacing: 0.08em;
    font-weight: 400;
    order: 2;
}
.i_blog_ri em, .blog_list_ri em {
    margin: 0 0 5px 0;
    padding-right: 15px;
    left: 0;
    padding: 0;
    transform: none;
    font-weight: 300;
    font-size: 12px;
    order: 1;
    letter-spacing: 0.04em;
    color: var(--SubColor1);
}
.i_blog_ri p, .blog_list_ri p {
    font-size: 15px;
    letter-spacing: 0.08em;
    line-height: 1.5;
    font-weight: 400;
    color: #454545;
    font-weight: 300;
    color: #555;
    line-height: 180%;
    margin-top: 20px;
    order: 3;
}



/*文章內層/ = = = = */
.blog_in_page h5.blog_le_t em {
    /* color: transparent; */
}

.blog_in_page h4.blog_category_title {
    width: 100%;
    font-size: 24px;
    letter-spacing: 0.08em;
    margin-bottom: 0;
    padding: 10px 0 0;
    font-size: 24px;
    color:#666;
    border-bottom: 1px solid #e3e3e3;
    font-weight: 500;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* 上下篇按鈕 */
.blog_back {
    z-index: 1;
}
.blog_back a {
    font-size: 13px;
    letter-spacing: 0.08em;
}
.blog_back a.article_btn_back {
    background: #d6d0c9;
    transition: .4s ease;
}
.blog_back a.article_btn_back:hover {
    opacity: .6;
}
.blog_back a.article_btn_prev, .blog_back a.article_btn_next {
    background: #d6d0c95c;
    color: #666;
    transition: .4s ease;
}
.blog_back a.article_btn_prev:hover, .blog_back a.article_btn_next:hover {
    opacity: .6;
}


/* 分享按鈕 = = */
.blog_shareData {
    border: 1px solid #ccc;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    margin-bottom: 20px;
    width: fit-content;
    padding: 10px;
    border-radius: 5px;
    margin: 0;
    display: none;
}
.toShareNews b, .toShareNews a, .toShareNews a object, .toShareNews a i {
    font-weight: 400;
    font-size: 14px;
    color: #333;
}
.toShareNews a object {
    filter: grayscale(1) brightness(1) contrast(1);
}
.toShareNews > a:hover > object {
    filter: none;
}
/* 文章編輯器 */
.blog_box_edit {
    background: transparent;
    padding: 0;
    margin: 10px 0;
    font-size: var(--f16);
    color: #2F2F2F;
    line-height: 1.8;
    padding: 0;
    letter-spacing: 0.04em
}
.articel_mainPic {
    display: none;
}

/*文章-相關推薦*/
.news_related, .prod_related {
    font-family: var(--SFont);
    background: #fff;
    padding: 80px 5%;
    margin: auto;
    display: none;
}
.news_related h6 span:before, .prod_related h6 span:before {
    font-size: 24px;
    color: #333;
    font-weight: 500;
    letter-spacing: 0.04em;
}
.news_related_list, .related_list {
    margin: 40px auto;
}
.news_related_list li, .related_list li {
    display: block;
    padding: 0px;
}
.news_related_list li a, .related_list li a {
    padding: 10px;
    background: #fff;
    height: 100%;
    border: 1px solid #eee;
    border-radius: 5px;
    transition: .35s ease;
}
.news_related_list li a:hover, .related_list li a:hover {
    box-shadow: 9px 12px 20px 0px rgb(181 177 172 / 35%);
    transition: .35s ease;
}
.news_related_list li a p, .related_list li a p{
    font-size: 16px;
    letter-spacing: 0.04em;
    color: #333;
    padding: 10px 0 5px;
    line-height: 1.5;
}
/* 按鈕 */
.news_related_b_box, .prod_related_b_box {
    margin: auto;
    background: transparent;
    color: #fff;
    position: relative;
    z-index: 1;
    min-width: 165px;
    width: 200px;
    height: 50px;
    border: 1px solid #0F0F0F;
    font-size: 14px;
    letter-spacing: 0.1em;
    color: #0F0F0F;
    overflow: hidden;
    transition: color 0s ease;
    border: 1px solid #bcbfbf;
}
.lastPage {
    color: #fff;
    background: transparent;
    transition: all .5s;
    font-family: var(--SFont);
    font-weight: 500;
    letter-spacing: 0.12em;
    font-size: 16px;
    margin: 0 auto;
    color: #293943;
    line-height: 1.8;
}
a.lastPage:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 0;
    height: 100%;
    background-color: var(--SubColor2);
    transition: all 0.5s;
}
a.lastPage:hover {
    color: #fff;
}
a.lastPage:hover:after {
    width: 100%;
}




@media screen and (max-width: 1024px) {
    .blog_subbox {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    .i_blog_ri p, .blog_list_ri p {
        letter-spacing: 0.08em;
    }
    .i_blog_ri h5, .blog_list_ri h5 {
        -webkit-box-orient: unset;
        letter-spacing: 0.04em;
    }
}

@media screen and (max-width: 768px) {
    .blog_ri {
        padding: 0px;
        width: 100%;
    }
}

@media screen and (max-width: 620px) {
    .subbox_item a {
        flex-direction: row;
    }
    .i_blog_le, .blog_list_le {
        max-width: 100%;
    }
    .blog_list_ri em {
        margin: 10px 0 20px 0;
    }
}

@media screen and (max-width: 480px) {
    .i_blog_ri h5, .blog_list_ri h5 {
        order: 2;
    }
    .blog_list_ri em {
        order: 1;
        font-size: 13px;
        margin: 0;
    }
    .i_blog_ri p, .blog_list_ri p {
        order: 3;
    }

}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = = = = = */
/*促銷活動設定 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/* 促銷首頁 */
.news_part {
    width: 100%;
    max-width: 100%;
    margin: auto;
    padding: 120px 0;
    background: #fff;
    background-image: linear-gradient(180deg, #fff, #f5f2e882);
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    justify-items: start;
}
/* 標 */
.news_part .title_i_box {
    text-align: left;
    max-width: 1200px;
    margin: auto;
    padding: 0 60px 0 40px;
    width: fit-content;
    margin-left: 200px;
    margin-top: 0;
}
.news_part .title_i_box h6 {
    font-family: var(--SFontEN2);
    font-size: var(--f48);
    font-weight: 700;
    color: #AA8C5A;
    font-size: 0;
}
.news_part .title_i_box h6:before {
    content: 'News';
    font-size: var(--f48);
}
.news_part .title_i_box h4 {
    font-size: 18px;
    color: #24272E;
    font-weight: 600;
    letter-spacing: 1px;
}
/* 文 */
.news_list {
    max-width: 1200px;
    margin: auto;
    width: 90%;
    margin-left: 0;
    text-align: left;
    font-family: var(--SFont);
}
.news_list ul li a {
    display: block;
    width: 100%;
    text-align: left;
}
.news_list ul li span {
    display: inline-block;
    vertical-align: top;
    padding: 15px 0;
    /* font-size: 14px; */
    color: #333;
    letter-spacing: 0.5px;
    font-weight: 600;
    text-align: left;
    width: fit-content;
}
.news_list ul li p {
    display: inline-block;
    vertical-align: top;
    padding: 15px 70px 15px 0;
    padding: 15px 0;
    /* font-size: 14px; */
    color: #283037;
    width: calc(100% - 160px);
    letter-spacing: 1px;
    text-align: left;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-left: 30px;
    font-weight: 400;
}
.news_list ul li a:hover {
    background: transparent;
    opacity: .6;
}
.news_list ul li a:hover p {
    color: #283037;
}
.news_list ul li p:after{
    content: none;
}
/* BTN */
.i_news_b {
    max-width: 1000px;
    margin: auto;
    width: 100%;
    text-align: left;
    grid-column: 2 / 3;
    margin-left: 0;
}
.animated-arrow {
    background: transparent;
    color: #fff;
    display: inline-block;
    margin-top: 50px;
    height: 50px;
    line-height: 1.6;
    overflow: hidden;
    text-align: center;
    align-items: center;
    border-radius: 30px;
    display: inline-flex
;
    font-size: .9375em;
    height: 35px;
    justify-content: center;
    position: relative;
    width: 110px;
    z-index: 1;
}
.animated-arrow:before {
    background-color: #efebe1;
    border-radius: 30px;
    content: "";
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: translate3d(-75px, 0, 0);
    width: 100%;
    transition: transform .4s cubic-bezier(0.455,0.030,0.515,0.955);
    z-index: 0;
}
.animated-arrow:hover:before{
    transform: translateZ(0);
}
.i_news_b * {
    transition: all .5s;
    color: #24272E;
    font-family: var(--SFont);
    font-size: 14px;
    font-weight: 500;
    z-index: 1;
}
.i_news_b a i.fa-solid.fa-arrow-right {
    margin: 0 10px;
    display: none;
}



/* 促銷內頁 */
/* 標 */
.promotion_title {
    border-bottom: 1px solid #e3e3e3;
    padding-bottom: 20px;
    letter-spacing: 1px;
    display: flex;
    flex-direction: column;
}
.promotion_title span {
    border: 1px #ccc dashed;
    padding: 0;
    margin: 0 2px 2px 0;
    margin: 0;
    font-family: var(--SFontEN);
    font-weight: 400;
    border: 0;
    text-transform: uppercase;
    color: #3a3a3a;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 0;
}
.promotion_title em {
    display: none;
}
.promotion_title h2 {
    font-size: 24px;
    color: #222;
}

/* 編輯器 */
.edit {
    margin: auto;
    padding: 20px 0;
    font-size: 15px;
    color: #2f2f2f;
    line-height: 1.8;
}

/* 其他相關訊息 */
.other_promotion:before {
    content: "其他相關訊息";
    display: block;
    font-family: var(--SFontE);
    color: var(--SubColor3);
    padding: 0 15px;
    font-weight: bold;
    margin-bottom: 15px;
    border-left: 3px solid var(--MainColor);
    padding-left: 15px;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: .05em;
    color: #000;
}
.other_promotion {
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 100%;
    width: 100%;
    margin-top: 70px;
}
.other_promotion li:first-child {
    border-top: 1px solid var(--MainColor);
    padding-top: 10px;
}
.other_promotion li {
    font-size: 13px;
    line-height: 20px;
    color: #666;
    display: inline-block;
    vertical-align: top;
    width: 25%;
    margin-left: -3px;
    width: 100%;
    margin: 0;
    padding-bottom: 15px;
    /* margin-top: 60px; */
}
.other_promotion li a {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;    
    transition: all 0.4s ease;    
}
.other_promotion li a:before, .other_promotion li a:after{
    content: none;
}
.other_promotion li a:hover {
    background: transparent;    
    opacity: .8;
}
.other_promotion .pmtTime {
    position: relative;
    right: 0;
    order: 2;
}
.other_promotion .pmtTime span {
    letter-spacing: 0.08em;
    font-family: var(--SFontEN);
    padding-top: 20px;
    display: inline-block;
    color: var(--SubColor1);
    font-size: 13px;
    padding-left: 15px;
    margin: 0;
}
.pmtTitle {
    padding-top: 15px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.pmtTitle span {
    margin-right: 13px;
    background-color: #beb08a;
    padding: 5px 10px 3px;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.12em;
    color: #fff;
}
.other_promotion .pmtTitle h3 {
    font-size: 15px;
    color: var(--SubColor);
    margin: 0;
    padding-top: 5px;
    padding-bottom: 5px;
    letter-spacing: 0.04em;
    transition: all 0.4s ease;
}
.other_promotion li a:hover .pmtTitle h3 {
    color: var(--SubColor2);
}

/* = = = 分隔線 相本主分類= = = = = = = = = == = = = = = = = = = = = = = = = = = = */
/*相本分類全版面 ( 限制最寬2000px  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.show-list .item:hover .show_name{
    color: #CA987D;
}

/*相簿*/
.other_album_choice li {
    background: #ccc;
}
.show-list .show_name {
    font-size: 17px;
    color: #545454;
    letter-spacing: 0.15em;
    line-height: 1.5;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 26px;
}
/*相簿下方隱藏*/
.other_album_choice{display:none;}
.album_fixed_title{display:none;}


.show-list .item a .show_pic {filter: grayscale(1);transition: all .8s;}
.show-list .item a:hover .show_pic {filter: grayscale(0);}


/* = = = 分隔線 相本分類= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

/*相本列表*/
.album_page #page, .album_class_page #page, .album_info_page #page{ }
.album_page #content, .album_class_page #content, .album_info_page #content{
    background: transparent;
}

.album_page .show_content, .album_info_page .show_content{ 
    width: 100%;    
    text-align: center;
}

/* 主分類相簿名 */
.subalbum-menu h2 {
    text-align: center;
    padding-bottom: 20px;
    width: 100%;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--SubColor);
}
/*大分類頁*/
.album_class_page .show_content,.album_info_page .show_content {width: 90%;}
.show-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: clamp(20px, 4%, 50px);
    gap: 30px;
}
.album_class_page .show-list {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}
.show-list .item {
    text-align: center;
    width: 100%;
    background: transparent;
}
/* 次分類相簿名 */
.other_subalbum li a p {
    line-height: 2;
    margin: -22px 0 0 11px;
    margin: 0;
    /* margin-top: -20px; */
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 20px;
    /* background-color: #fff; */
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .1em;
    color: #333;
}


/*相本內頁-.album_info_page*/
.album_info_page{}
.album_descrip p {
    font-weight: 700;
    text-align: center;
    padding-bottom: 20px;
    width: 100%;
    color: #333;
    font-size: 20px;
    letter-spacing: 0.12em;
}
/*相簿瀑布流*/
.album_info_page .pic-list {
    -webkit-column-count: 3;
    -webkit-column-gap: 10px;
    column-count: 3;
    column-gap: 10px;
    width: 100%;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    /* row-gap: clamp(20px, 4%, 50px);
    column-gap: clamp(20px, 4%, 50px); */
    grid-gap: 10px;
}
.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;
    aspect-ratio: 4 / 4;
}
.pic-list .item h6 {
    padding: 0;
}



@media (max-width: 1440px){
.album_info_page .pic-list{ 
    -moz-column-count:3; 
    -webkit-column-count:3;  
    column-count:3;
}
}
@media screen and (max-width: 1280px){
    .show-list {
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (max-width: 980px){
    .main_part {
        width: 100%;
    }
}

@media screen and (max-width: 768px){
    .show-list {
        grid-template-columns: 1fr ;
    }
}

@media screen and (max-width: 600px){
    .album_page .show-list .item{width: 100%;}	
    .album_page .show-list .item{margin:auto;}
    .show-list .item{margin:auto;}
    .show-list .item a .show_pic img{min-height: 340px;}
    
}


/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */


/* 下方區域 */
/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
@media screen and (min-width: 1700px) {
    /* footer */
    .footer_info {
        margin: auto;
    }
}

/* @768下方區域_手機版面768 */
@media screen and (max-width: 1024px) {

    .footer.with_shopping_mode { 
        padding: 0; 
        margin-bottom: 50px;
    }    
    #to_top {
        bottom: 80px;
    }
    
}

/* @768下方區域_手機版面768 */
@media screen and (max-width: 768px) {

    /* 開啟手機板下方按鈕所需設定 */
    #bottom_menu { display: none    }
    .footer.with_shopping_mode {         
        margin-bottom: 0px;
    }

    .copy {
        padding: 20px 0;
    }

    .bannerindex .swiper-banner .swiper-slide img, .bannerindex .swiper-banner .swiper-slide-active img {
        height: auto;
    }

    .banner h5 {
        top: 5%;
    }

}

@media screen and (max-width: 600px) {
    .copy {
        font-size: 10px; 
    }
}
@media screen and (max-width: 480px) {
    
}

