@charset "utf-8";
/* *************晟佳木地板****************** */
/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/
/* "Noto Sans TC" */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200;300;400;500;600;700;900&display=swap');
/* "Noto Serif TC" */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');


/* 英文字體 Outfit */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
/* 英文字體 Roboto */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
/* 英文字體 Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


/*網站全域設定/＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
:root {
  /* --Color: #1c3459; */
  --MainColor: #665544; /*網站主要色系*/
  --SubColor: #222222; /*網站文字色*/
  --SubColor1: #BAA99F; /*網站輔助色系1*/
  --SubColor2: #F1EDE4; /*網站輔助色系2*/
  --SubColor3: #F8F6F1; /*網站輔助色系3*/
  --SubColor4: #A59179; /*網站輔助色系4*/  
  --SubColor5: #ffffff; /*網站輔助色系5*/ 
  --SubColor6: #EDE8DE; /*網站輔助色系6*/ 
  --SubColor7: #baa99f99; /*網站輔助色系7_border*/ 
  --SubColor8: #696257; /*網站輔助色系8*/ 
  --SubColor9: #837b6f; /*網站輔助色系9*/ 
  --SFonts: "Inter", "Noto Sans TC",sans-serif;/*英文字體-無襯線*/
  --SFontE: "Roboto", "Noto Sans TC", serif;/*英文標字體*/
  --SFontN: "Outfit", "Noto Sans TC", serif;/*英文Num字體*/
  --SFont: "Noto Sans TC", 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{ }
}
@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;
} */



/*卷軸*/
&::-webkit-scrollbar {
    background: #f1f1f1;
    width: 5px;
}
&::-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;
}

.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; */
}
.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;    
    background: rgb(255 255 255 / 100%);
    backdrop-filter: blur(10px);
    transition: all .8s cubic-bezier(.165,.84,.44,1);
    transition-timing-function: cubic-bezier(.165,.84,.44,1);
}
.pageIndex .main_header_area:after{
    background: rgb(255 255 255 / 40%);
}
.pageIndex .main_header_area:after, .pageIndex .header_area.sticky .main_header_area:before { /* height: 0%; */}
.header_area.sticky .main_header_area:after {
    height: 100%;
    background: rgb(255 255 255 / 100%);
    box-shadow: 1px 5px 10px -5px rgba(0, 0, 0, 0.15);
}


.main_header_area .container {
    max-width: 100%;
    padding: 0 30px;
    transition: 0.6s;
}

.pageIndex .header_area .main_header_area {
    background: transparent;
    transition: all 0.3s;
    position: relative;
}

.pageIndex .header_area.sticky .main_header_area {
    background: transparent;
    transition: all 0.3s;
}

.navigation {
    grid-template-columns: 200px 1fr;
    align-items: center;
}




/*選單 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =*/

/*僅首頁-header */
.pageIndex .navigation {}
.pageIndex .stellarnav ul {
    align-items: flex-end;
}
.pageIndex .stellarnav > ul > li:last-child {
    padding-left: 0;
}
.pageIndex .stellarnav > ul > li:last-child > a{}

.pageIndex .stellarnav > ul > li:last-child > a:after {
    content: none;
}


/* header */
.navigation, .pageIndex .sticky .navigation {
    padding: 0;
    /* padding-top: 25px; */
}
.header_area.sticky .stellarnav {
    opacity: 1;
    transition: all 0.3s;
    pointer-events: unset;
    height: 100%;
}
.stellarnav > ul, .pageIndex .sticky .stellarnav > ul {    
    height: 100%;
    /* display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row; */
}



/* 第一層 */
.stellarnav > ul > li {
    position: relative;
    padding: 0 10px;
    font-size: 0;
    padding: 0;
}
.stellarnav > ul > li > a {
    font-family: var(--SFontE);
    color: #222222;
    letter-spacing: 1.25px;
    font-size: 14px;
    margin: 0;
    font-weight: 500;
    padding: 12px 15px;
    line-height: 1.6;
}
.stellarnav.desktop > ul > li > a {
    padding: 20px 15px;
    padding: 10px 15px;
    line-height: 32px;
    height: 100%;
}





.stellarnav > ul > li > a:hover {
    color: var(--MainColor);
    transition: .6s cubic-bezier(0.77, 0, 0.65, 0.99);
}
.stellarnav ul li:hover a {
    opacity: 1;
    transition: all 0.3s ease-in-out;
}
.stellarnav ul ul>li>a:hover, .stellarnav ul ul>li>a:focus {
    color: var(--MainColor);
    opacity: 1;
}
.stellarnav > ul > li.has-sub > a, .pageIndex .sticky > .stellarnav > ul > li:last-child {
    padding-right: 20px;
}
/* 下拉符號 */
.stellarnav li.has-sub > a:after {}
.stellarnav li.has-sub:hover > a:after {
    border-top: 6px solid var(--MainColor);
}




/* 第二層 */
.stellarnav.desktop ul ul {
    height: auto;
    background: #fff;
    width: 140px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 3px 5px rgba(0, 0, 0, .175);
}
.stellarnav li li {
    border: 0;
}
.stellarnav.desktop li.has-sub li a {
    font-size: 14px;
    text-align: center;
    padding: 10px;
    letter-spacing: 0.06em;
    font-family: var(--SFont);
    border-bottom: 1px solid #f6f6f6;
}
.stellarnav.desktop li.has-sub li a:hover {
    color: var(--SubColor4);
    background: var(--SubColor3);
}
.stellarnav li li.has-sub:hover > a:after {
    border-top: 6px solid transparent;
    border-left: 6px solid var(--MainColor);
}


/* 第三層 */
.stellarnav.desktop ul ul ul {
    transform: translateX(50%);
}



.me_tp_features {
    /* display: none; */
    position: relative;
    top: 10px;
    z-index: 100;
    padding: 0 10px 5px;
}
.me_tp_features a{
    display: none;
}
.me_tp_features a span{
    font-size: 0;
}
.tp_links {
    display: none;
}

/*電腦LOGO = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.pageIndex .nav-header{}
.nav-header {
    grid-row: 1 / 3;
}
.nav-brand {
    max-width: 200px;
    font-size: 0;
}




/*手機LOGO
.nav-brand-m {}
*/


/*footer = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.box_link{display: none;}
.footer {
    position: relative;
    margin: auto;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-top: 0;
    background: #ffffff;
    z-index: 1;
}
.footer .center {
    position: relative;
    max-width: 90%;
    padding: 80px 0;
    font-size: 13px;
}
.footer_info {
    /* display: flex; */
    width: 100%;
    max-width: 100%;
    margin: auto;
    padding: 0;
    position: relative;
    flex-direction: column;
    gap: 20px;
    font-family: var(--SFontE);
}

.footer_info ul {
    position: relative;
    /* border-top: 1px solid #0000001a; */
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
}
/* 聯絡資訊 */
.footer_info li:nth-child(1) {
    min-width: 220px;
}
.footer_info li{
    padding: 0;
}
.footer_info li p, .footer_info li p a{
    font-size: 13px;
    line-height: 1.8;
    color: #333;
    letter-spacing: 1.5px;
}

.footer_info li p.phone{
    display: none;
}
/* .footer_info li p.line:before {
    content: 'Line ID. ';
}
.footer_info li p.phone:before {
    content: 'Tel. ';
}
.footer_info li p.mail:before {
    content: 'Mail. ';
}
.footer_info li p.add:before {
    content: 'Add. ';
} */

/* 網頁連結 */
.footer_info li:nth-child(2) {
    /* position: absolute; */
    right: 0;
    top: 0;
    max-width: 500px;
}
.footer_menu {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    flex-wrap: wrap;
}
.footer_menu a:first-child{
    display: none;
}
.footer_menu a {
    background: transparent;
    border: 0;
    font-weight: 700;
    color: #333;
    letter-spacing: 1px;
    margin: 0 0 10px;
    transition: all .3s cubic-bezier(.165,.84,.44,1);
    padding: 0;
    line-height: 2.4;
    margin: 0;
    margin-left: 20px;
    margin-right: 20px;
}
.footer_menu a:hover {
    background: transparent;
    color: var(--SubColor8);
}






/* ------------------------------------------------------------------------------------------------------------ */

.copy {
    color: #999;
    border: none;
    margin: 0;
    font-size: 11px;
    letter-spacing: 1px;
    font-family: var(--SFontE);
    font-weight: 400;
    /* border-top: 1px solid #d2d2d2; */
    text-align: center;
    padding: 10px 0 12px;
    position: relative;
    background: transparent;
}
.copy a {color: #999;} 

/* 浮動按鈕 */
.info_fix{ }

/* 置頂按鈕 */
#to_top {
    bottom: 20px;
    left: 20px;
    right: unset;
    padding-top: 10px;
    font-size: 0;
    border-radius: 50px;
    background: #fff;
    box-shadow: none;
    -webkit-transition: 1.6s;
    -o-transition: 1.6s;
    transition: 1.6s;
    box-shadow: 0px -2px 6px 0px rgba(0, 0, 0, 0.1);
}
#to_top i.top:before, #to_top i.top:after {
    height: 15px;
    width: 1px;
    top: 7px;
    left: 50%;
    background: #535D60;
}
#to_top:hover {
    opacity: 0.6;
    transition: opacity 0.2s;
   }





/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = =*/
/* 商品下拉超過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個--結束 */





/* = = = 大圖-分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = *
/*預設解除背景輪播*/
.bannerindex {
    position: relative;
    height: auto;
    max-height: 100vh;
}
/* 大圖尺寸 */
.bannerindex .swiper-banner {
    position: static;
    height: auto;
    max-height: 100vh;
    margin: auto;
    width: 100%;
    overflow: hidden;
}
.bannerindex .swiper-wrapper {
    height: 100%;
    max-height: 100vh;
}
.bannerindex .swiper-slide {
    height: 100%;
}









/* 大圖點點按鈕 */
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 12px;
    display: none;
}
/* 大圖點點按鈕END */





/* = = = 大圖內-分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/* 大圖文字+圖 */
.bannerindex .swiper-banner .swiper-slide img, .bannerindex .swiper-banner .swiper-slide-active img{
    /* 大圖切換閃爍-opacity */
    opacity: unset !important;
    width: auto;
    object-fit: contain;
    object-fit: cover;
    object-position: 50% 100%;
    width: 100%;
    max-width: 100%;
    height: 100%;
}
.bannerindex .swiper-banner .swiper-slide img {}
.bannerindex:hover .swiper-banner .swiper-slide img { }
.bannerindex .swiper-banner .swiper-slide:nth-child(2) img, .bannerindex .swiper-banner .swiper-slide-active:nth-child(2) img{}
/* .swiper-slide img { height:auto;} */




/* 外層 */
.bannerindex .swiper-wrapper:after {
    content: "";
    position: absolute;
    z-index: 1;
    background: url(https://pic03.eapple.com.tw/chengjia/bn_BG.svg);
    width: 101%;
    height: auto;
    aspect-ratio: 25 / 1;
    background-size: cover;
    bottom: -1px;
}

/* 內層 */
.bannerindex .swiper-slide:before, .bannerindex .swiper-slide:after {
    content: "";
    position: absolute;
    z-index: 100;
    pointer-events: none;
}
/* banner01 */
.bannerindex .swiper-slide:before {
    background: url(https://pic03.eapple.com.tw/chengjia/bnA_txt01v2.svg);
    content: "";
    display: block;
    position: absolute;
    top: 40%;
    left: 10%;
    width: 34%;
    height: auto;
    aspect-ratio: 134 / 55;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0;
}
.bannerindex .swiper-slide:after {
    top: 50%;
    transform: translateY(-40%);
    left: 0;
    width: 55%;
    height: 55%;
    /* aspect-ratio: 120 / 42; */
    background-size: contain;
    background: linear-gradient(90deg, #c5b6a3, #ffffff00);
    opacity: .3;
    mix-blend-mode: multiply;
    z-index: 0;
}

/* banner02 */
.bannerindex .swiper-slide:nth-child(2):before {
    background: url(https://pic03.eapple.com.tw/chengjia/bnA_txt02v2.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    left: unset;
    right: 8%;
}
.bannerindex .swiper-slide:nth-child(2):after {
    background: linear-gradient(90deg, #c5b6a3, #ffffff00);
    opacity: 0.3;
    content: none;
}




.bannerindex .swiper-slide.swiper-slide-active:nth-child(1):before, .bannerindex .swiper-slide.swiper-slide-active:nth-child(2):before{
    animation-delay: 0s;
    -webkit-animation: NslideLeft 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation: NslideLeft 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
/* .bannerindex .swiper-slide.swiper-slide-active:nth-child(1)::after { animation-delay: 1s; } */
@keyframes NslideLeft {
0% {
    -webkit-transform: translateX(-60px);
    transform: translateX(-60px);
    opacity: 0;
}
100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    opacity: 1;
}
}
  













/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =*/

/* 麵包屑 */
.path{
    display: none;
}


/* main */
div#page {
    position: relative;
    overflow: clip;
    padding: 0;
    position: relative;
    width: 100%;
    min-height: 100vh;
}
#content_main, #content {
    margin: 0;
    background: #f8f6f1;
    padding: 80px 0;
    background-repeat: repeat;
    padding: 0;
    z-index: 1;
}

.edit_part{
    padding: 0;
}
.main_part {
    width: 100%;
    max-width: 1400px;
    margin: auto;
    padding: 120px 20px;
    padding-left: 40px;
    padding-right: 40px;
}
.show_content {
    margin: auto;
    padding: 0;
    font-family: var(--SFont);
}
.subalbum-menu {margin: 0;padding: 0;}


/*內頁BANNER 設定 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.banner {
    position: relative;
    background: #f2f2f2;
    width: 100%;
    object-fit: cover;
    background-size: cover;
    /* display: none; */
    background: url(https://pic03.eapple.com.tw/chengjia/banA.jpg);
    min-height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: 50% 100%;
    overflow: hidden;
    clip-path: ellipse(100% 80% at 50% 19.5%);    
}
.banner:before {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    /* background: #BAA99F; */
    background: rgb(61 58 57 / 55%);
    mix-blend-mode: multiply;
    opacity: .4;
}
.banner:after {
    content: "";
    position: absolute;
    z-index: 1;
    background: url(https://pic03.eapple.com.tw/chengjia/bn_BG.svg);
    width: 100%;
    height: auto;
    aspect-ratio: 25/1;
    background-size: cover;
    bottom: -1px;
    background: transparent;
}
.banner h5 {
    width: 100%;
    position: relative;
    font-family: var(--SFont);
    color: #fff;
    font-weight: 500;
    letter-spacing: 4px;
    padding-top: 60px;
    font-size: 40px;
    display: flex;
    text-shadow: 0 5px 20px #7d523866;
    flex-direction: column;
    /* gap: 5px; */
}
.banner h5:after {
    content: 'PRODUCTS';
    width: fit-content;
    color: #fff;
    position: relative;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    letter-spacing: 1.5px;
    font-size: 16px;
    font-family: var(--SFontE);
    line-height: 1.4;
}
.banner.banblog h5:after{
    content: 'NEWS';
}
.banner.banE h5:after{
    content: 'WORKS';
}




.banner.banA {}
.banner.banB {}
.banner.banC {}
.banner.banD {}
.banner.banE {}
.banner.banblog {}




@media screen and (min-width: 1400px) {}

/* @1200上方區域_手機版面1200 */
@media screen and (max-width: 1200px) {
/* 內頁bn */
.banner {background-position: 50% 100%;}
.banner h5 {font-size: 36px;}
}



/* @1024上方區域_平板版面1024 */
@media screen and (max-width: 1024px) {
/* = = header = = */
.header_area { position: sticky; }
.header_area.sticky {}
.navigation {display: grid;grid-template-columns: 1fr;align-items: center;}

/* logo*/
.nav-header {position: static;text-align: center;margin: auto;}
.nav-brand {max-width: 180px;padding-top: 10px;}

/* 導覽列 */
.pageIndex .stellarnav {opacity: 1;pointer-events: unset;}
.stellarnav > ul, .pageIndex .sticky .stellarnav > ul{text-align: center;justify-content: center;}
.stellarnav > ul > li {/* padding: 10px 0; */}    
.stellarnav > ul > li > a {letter-spacing: 0;padding: 15px;margin: 0;font-size: 15px;height: 100%;}
.stellarnav>ul>li:after {height: 3px;top: 100%;bottom: 0;transform: translate(-50%, 0);}

/* 內頁bn */
.banner {min-height: 320px;}
.banner h5 {font-size: 32px;text-shadow: 0 5px 20px rgb(125 82 56 / 60%);padding-top: 0;}
.banner h5:after {font-size: 14px;}

}


/* @768上方區域_手機版面768 */
@media screen and (max-width: 768px) {
/* = = 大圖 = = */
.bannerindex {
    height: 80vh;
    max-height: 680px;
    padding: 0;
    margin: 0;
    overflow: hidden;
}
.bannerindex .swiper-banner {
    width: 100%;
    height: 100%;
}
/* 大圖位置 */
.bannerindex .swiper-banner .swiper-slide img {
    object-position: 30% 100%;
}
.bannerindex .swiper-banner .swiper-slide:nth-child(1) img {
    object-position: 85% 100%;
}
.bannerindex .swiper-slide:before {
    top: clamp(50px, 15%, 100px);
    width: 80%;
    max-width: 480px;
}
.bannerindex .swiper-slide:after, .bannerindex .swiper-slide:nth-child(1):after {
    z-index: 0;
    width: 100%;
    height: 100%;
    transform: unset;
    top: 0;
    opacity: 1;
}
.bannerindex .swiper-slide:nth-child(1):after {
    mix-blend-mode: hard-light;
}


/* logo*/    
.nav-header {
    padding: 0;
    max-width: 160px;
    margin-left: 0;
}
.nav-brand {
    padding: 5px 0;
    font-size: 0;
}
.nav-brand img { }


.me_tp_features{display: none;}
/* = = header = = */
.header_area {}
.main_header_area .container {
    padding: 0 5%;
}
.navigation {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}
.stellarnav.mobile {
    right: 0;
    left: unset;
}

/* 導覽列漢堡選單 */
.stellarnav.mobile.active > ul{display: block !important;}
.stellarnav.mobile .menu-toggle {
    display: flex;
    margin: 23px 0;
    padding: 0;
}
/* 漢堡選單樣式 */
.stellarnav .menu-toggle:after {
    text-transform: capitalize;
    content: 'Menu';
    font-size: 0;
    color: #000;
    transform: scale(1);
    font-family: var(--SFontE);
    letter-spacing: 1px;
}
.stellarnav .menu-toggle span.bars {
    display: block;
    margin: 0;
}
.stellarnav .menu-toggle span.bars span {
    width: 32px;
    height: 2px;
    border-radius: 0;
    background: #999;
    margin: 0 auto 6px;
}
.stellarnav .menu-toggle span.bars span:nth-child(3) {
    width: 24px;
    margin-right: 0;
}

/* 導覽列展開 */
.stellarnav.mobile.left > ul {
    left: unset;
    right: 0;
    font-size: 0;
    max-width: 100%;
    padding: 0 30px;        
    /*右滑出現*/
    right: -100vw;
    overflow-y: auto;
    transition: all .6s ease;
}
.stellarnav.mobile.left.active > ul{        
    right: 0;
    max-width: 100%;
}

.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {
    background: transparent;
    font-weight: 500;
    padding: 0;
    margin: 26px 0 28px;
    text-transform: uppercase;
    content: 'Menu';
    font-size: 14px;
    color: #333;
    transform: scale(1);
    font-family: var(--SFontE);
    letter-spacing: 1px;
    height: fit-content;
    width: 100%;
    text-align: right;
    display: flex;
    flex-direction: row-reverse;
}
.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: 18px;
    height: 0px;
    border-bottom: solid 1px #000;
}
/* 導覽列選取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;
    display: block;
    border-bottom: 1px solid #f0f0f0;
}
.stellarnav.mobile li.open {
color: #fff;
padding: 0;
background: transparent;
}
.stellarnav.mobile > ul > li > a {
    text-align: left;
    overflow: auto;
    height: auto;
    line-height: 1.6;
    display: block;
    color: #333;
    font-size: 16px;
    letter-spacing: 1px;
}
.stellarnav.mobile li.open > a {
    /* color: #fff; */
    /* padding-bottom: 15px; */
    border: 0;
    padding: 20px 10px;
    color: var(--MainColor);
    font-weight: 600;
}    
.stellarnav > ul > li > a:before{
    content: none;
}

/* +符號修改 = = */
.stellarnav li.open > a.dd-toggle .icon-plus {
    transform: unset;
}
.stellarnav.mobile > ul > li > a.dd-toggle {
    padding: 10px 0;
    /* top: 5px; */
    line-height: 3;
}
.stellarnav a.dd-toggle .icon-plus:before, .stellarnav a.dd-toggle .icon-plus:after {
    content: "";
    width: 12px;
    height: 1px;
    border: 0;
    background-color: var(--MainColor);
    position: absolute;
    top: 50%;
    right: 5px;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    z-index: 1;
    transition: all 0.6s;
}
.stellarnav a.dd-toggle .icon-plus:after {
    -webkit-transform: translate(-50%, 0) rotate(90deg);
    transform: translate(-50%, 0) rotate(90deg);
}
.stellarnav li.open > a.dd-toggle .icon-plus:after {
    -webkit-transform: translate(-50%, 0) rotate(0);
    transform: translate(-50%, 0) rotate(0);
}/* +符號修改END = = */


/* 第二層 */
.stellarnav.mobile ul ul {
    left: unset;
    margin: 0 auto;
    box-shadow: none;
    width: calc(100% - 10px);
    margin: auto;
    left: unset;
    width: 100%;
    box-shadow: none;
    background: var(--SubColor2);
    padding-left: 15px;
}
.stellarnav li li {
    font-size: 14px;
    font-family: var(--SFont);
    font-size: 15px;
    color: #333333;
    letter-spacing: 1px;
}
.stellarnav.mobile li li a {
    border-bottom: 1px solid rgb(165 145 121 / 60%);
    color: #333;
}
.stellarnav li li a, .stellarnav.mobile li li.has-sub a{
    padding: 12px 0;
}
.stellarnav.mobile li li:last-child > a{
    border: 0;
}
.stellarnav.mobile li li:last-child.open > a:not(.dd-toggle) {
    border-bottom: 1px solid rgb(165 145 121 / 60%);
}

/* 第三層 */
.stellarnav.mobile li.open li.open {
    background: transparent;
    padding: 0;
}
.stellarnav.mobile ul ul ul {
    padding-left: 15px;
}
.stellarnav.mobile li li li a{
    color: var(--SubColor4);
}
.stellarnav.mobile li li.has-sub li a{
    padding: 8px 0;
    font-size: 14px;
}




/* 內頁bn */
.banner {clip-path: ellipse(100% 60% at 50% 40%);}
.banner h5 {font-size: 30px;}
.banner:before {opacity: .6;}
}








/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = =*/
/* 購物車 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.product_page .main_part {
    max-width: 1400px;
}

.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;
    position: relative;
    align-items: stretch;
}

/* 左商品分類 = = */
.product_menu_list {
    position: relative;
    width: 220px;
    letter-spacing: 1px;
    border-right: 1px solid var(--SubColor7);
    min-height: 30vw;
}
/* 分類第一層 */
.product-layer-two > li {
    width: 100%;
    max-width: 100%;
    padding: 0;
    text-align: left;
    border-bottom: 1px solid var(--SubColor7);
    padding-bottom: 5px;
}
.product-layer-two li a {
    position: relative;
    border: 0;
    background: var(--SubColor6);
    padding: 7px 16px;
    display: block;
    font-size: 16px;
    color: #222;
}
.product-layer-two li.active > a {
    font-weight: 700;
    border: 0;
    background: var(--SubColor7);
    color: var(--MainColor);
}
.product-layer-two li li.active a {
    background: transparent;
    color: var(--MainColor);
    font-weight: 700;
}
.product-layer-two li i{display: none;}
/* 分類第二層 */
.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;
}
.product-layer-two li li {
    display: block;
    padding: 0;
    transition: all ease .3s;
    background: transparent;
}
.product-layer-two>li ul > li+li {margin-top: 5px;}
.product-layer-two li li a {
    padding: 5px 10px;
    background: transparent;
    font-weight: 400;
}
.product-layer-two li li:hover {
    margin-left: 15px;
}
.product-layer-two li li:hover > a {
    background: transparent;
    color: #665544;
}
/* 箭頭 */
.product-layer-two li li>a:before {
    content: "";
    position: absolute;
    width: 12px;
    height: 8px;
    background: transparent;
    left: 0;
    margin-left: -10px;
    top: 50%;
    margin-top: -4px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.product-layer-two li li:hover>a:before {
    background: #665544;
}


/* 右商品區 = = */
.product_page .products-list, .product-wrapper {
    width: calc(100% - 270px);
}
.products-list {
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    grid-gap: 40px 20px;
}
.products-list .item {
    position: relative;
}
.products-list .item:hover{}
/* 商品 */
.products-list .item a {
    padding-bottom: 34px;
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
    padding: 0;
}
.products-list .name {
    overflow: hidden;
    height: auto;
    margin: 0;
    padding: 20px 20px;
    font-size: var(--f16);
    text-align: left;
    color: #333;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: all .3s ease-in-out;
}
.products-list .item:hover .name{
    color: #665544;
}
.products-list .price{display: none;}
.products-list .more {display: none;}
/* 圖 */
.products-list .pic::before{
    content: "查看商品";
    /* position: absolute; */
    /* top: -50px; */
    /* left: 0; */
    /* right: 0; */
    /* z-index: 1; */
    /* display: block; */
    /* font-size: 16px; */
    text-align: center;
    color: #fff;
    min-width: 140px;
    background: #333;
    margin: 0 auto;
    padding: 13px 0;
    border-radius: 50px;
    /* -webkit-transform: translateY(-50%); */
    /* transform: translateY(-50%); */
    opacity: 0;
    transition: all .6s ease-in-out;
    /* content: "MORE +"; */
    position: absolute;
    line-height: 1.3;
    font-family: var(--SFontN);
    left: 50%;
    /* top: 50%; */
    z-index: 99;
    transform: translateX(-50%);
    margin-top: -80px;
    display: block;
    /* padding: 10px 20px 7px; */
    font-size: 14px;
    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;
}
.products-list .item:hover .pic::before {
    top: 50%;
    opacity: 1;
    transition: 0.5s;
    margin-top: -20px;
}
.products-list .pic img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;    
    transition: all .6s ease-in-out;
}
.products-list .item:hover .pic img {
    opacity: 0.5;
}





/* 底頁碼 = = */
ul.page {
    width: 100%;
    margin: 30px auto 0;
    padding: 20px 0;
    gap: 1px;
}
.page li a, .page li {
display: inline-block;
    margin: 5px;
    border: 0;
    color: var(--SubColor8);
    border-radius: 5px;
    width: 38px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    padding: 0;
    transition: all 0.3s ease-in-out;
    font-family: var(--SFontN);
    font-size: 14px;
    font-weight: 700;
    margin: 0;
}
.page strong, .page a:hover {
    background: #b1aba1;
    color: #ffffff;
    transition: all 0.3s ease-in-out;
}
.page li.next a:hover {
    background: #b1aba1 url(../right_btn.png) center center no-repeat;
}
.page li a{
    margin: 0;
}
.page strong, li.activeN {
    background: var(--SubColor8);
    color: #ffffff;
    /* border-color: #403b28; */
}











/*購物車/內層＝＝*/
.product_info_page .product-layer-two {
    /* display: none; */
}
.product_info_page .product-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    padding-left: 20px;
}
/* 商品輪播區 */
.product_main {
    padding: 0 10px;
    display: inline-block;
    width: 66%;
    vertical-align: top;
    /* width: 100%; */
    /* padding-left: 40px; */
}
#prod_thumbSwiper .swiper-slide::before{
    background: #fff;
}
/* 商品資訊-側邊規格 */
.sidebarBtn {
    padding: 15px;
    display: inline-block;
    width: 32%;
    vertical-align: top;
    border: 0;
    background: transparent;
}
.prod_tabs {
    width: 100%;
    margin-top: 60px;
}
/* 資訊Tab */
.pd_tabTitle {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    align-content: flex-end;
    text-align: center;
    color: #666666;
    position: relative;
}
.pd_tabTitle li {
    border-bottom: 1px solid #999999;
    color: #fff;
    background-color: #665544;
    display: block;
    line-height: 1;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 20px 10px;
    letter-spacing: 1px;
    position: relative;
    font-size: 16px;
    z-index: 2;
    text-align: center;
    padding: 0;
}
.pd_tabTitle li.activeTab a {
    color: #ECE7D9;
}
.pd_tabTitle li+li:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1px;
    height: 30px;
    background-color: #eee;
    opacity: .4;
}
.pd_tabTitle li::after {
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
}
.pd_tabTitle li.activeTab::after {
    height: 5px;
    background: #ECE7D9;
    width: 60px;
}
.pd_tabTitle li a {
    display: block;
    padding: 0;
    color: #A59179;
    line-height: 1.4;
    background: transparent;
    padding: 15px 10px;
    font-size: 16px;
    transition: all .3s ease-in-out;
}
.pd_tabTitle li a:hover{
    color: #ECE7D9;
}

.sidebarBtn h2 {
    color: #333;
    font-size: var(--f24);
    letter-spacing: 1px;
}
.product_info li .txt_box {
    color: #111;
    width: 100%;
    letter-spacing: .5px;
    padding-top: 5px;
}
.product_info li {
    margin: 10px 0;
    border-top: 1px dashed #d6d6d6;
    padding-top: 20px;
}
.toShare {
    border-top: 1px dashed #d6d6d6;
}
.toShare b{
    font-size: 12px;
    font-weight: 500;
    color: #999;
}




.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;
}




/*購物車按鈕顏色*/
/* .inquiry_a1 , .inquiry_a2 {display: none;} */
.inquiry_a1 {
    background: #c7c3b8;
}
.inquiry_a2 {
    background: var(--SubColor9);
}
.inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover {
    background: #333;
}



/*商品側邊規格*/


/*相關推薦*/
.prod_related h6 span:before {}
.prod_related {font-family: var(--SFontE);background: #ede8df;padding: 60px 25px 20px;}
.prod_related h6{margin: 30px auto;}
.prod_related h6 span:before {color: #555;font-weight: 600;letter-spacing: 2px;}
.related_list li a {border-radius: 5px;}
.lastPage {background: var(--SubColor4);border-radius: 25px;width: 150px;}


@media screen and (max-width: 1200px) {
.product_info_page .product-wrapper {flex-direction: column;padding: 0 20px;}
.product_main, .sidebarBtn{max-width: 680px;width: 100%;}
}

@media screen and (max-width: 980px) {}
@media screen and (max-width: 768px) {

.product_menu_list, .products-list, .product-wrapper {width: 100%;}
.product_menu_list {display: none;}
.product-layer-two {margin-right: 0;grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));grid-gap: 5px;}
.product_page .product-layer-two, .product_page .products-list {width: 100%;border-right: none;}
.product_page .product_menu_list>h5 {display: block;}
.product_page .show_content>a {order: 1;}
.product_page ul.products-list {order: 2;}
.product_page ul.page {order: 3;}
.product_page .product_menu_list {width: 100%;order: 0;min-height: unset;}

.mobile_product_name{}
.prod_related h6 {margin: 20px auto;}
}
@media screen and (max-width: 600px) {
.product_info_page .product-wrapper{padding: 0;}
}





/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/*文章設定 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */


/*文章功能頁/ = = = = */
.show_content.blog_box{font-size: 0;}

/* 左側分類欄位 = = */
.blog_le {
    width: 200px;
    padding: 0;
}
/* 標 */
h5.blog_le_t {
    margin-bottom: 15px;
    text-align: left;
    padding-bottom: 10px;
    border-bottom: 1px solid #baa99f99;
}
h5.blog_le_t em {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #665544;
    font-family: var(--SFont);
}
/* .blog_search {display: none;} */
.blog_search input[type=search] {
    width: 100%;
    font-size: 14px;
    color: #999;
    border: 0;
    background: #fff;
    border-radius: 0;
    padding: 10px 40px 10px 10px;
}
/* 分類列 */
.blog_le .accordion {
    border-radius: 0;
    border: 0;
    overflow: hidden;
    font-size: 0;
}
.blog_le .accordion li {
    transition: all .3s ease-in-out;
}
.blog_le .accordion li:not(:first-child) {
    border-top: 1px solid #baa99f99;
}
.accordion li+li .link {
    border: 0;
}
.accordion li .link a {
    padding: 12px;
    font-weight: 700;
    text-align: left;
    line-height: 1.7;
    letter-spacing: 0.12em;
    font-size: 15px;
    color: #333;
    font-weight: 500;
    margin: 0;
    transition: all .3s ease-in-out;
}
.blog_le .accordion > li.on_this_category{
    background: #F1EDE4 !important;
}
 .blog_le .accordion > li.on_this_category .link a {
    color: #333 !important;
}
.blog_le .accordion > li:hover {
    background: #A59179 !important;
}
.blog_le .accordion > li:hover .link a{
    color: #fff !important;
}


/* 右側圖文區 = = */
.blog_ri {
    width: calc(100% - 200px);
    padding: 0 0 0 50px;
}
h4.blog_category_title {
    width: fit-content;
    font-weight: 600;
    letter-spacing: 1px;
    display: none;
}
/* 圖文區塊 */
 .blog_subbox {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 35px;
}
.subbox_item {
position: relative;
    width: 100%;
    border-radius: 0;
    transition: .6s ease-out;
    border: 0;
    height: fit-content;
    width: 100%;
    margin: 0;
    overflow: unset;
    background: transparent;
}
.subbox_item:hover {
    transition: .6s ease-out;
}
.subbox_item li:hover {
    transition: .6s ease-out;
}
.subbox_item a {
    flex-direction: column;
    height: 100%;
    padding: 0;
    display: flex;
    gap: 0px;
    overflow: unset;
}
.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: 100%;
    overflow: unset;
    position: relative;
    aspect-ratio: 52 / 35;
    margin: 20px 0;
}
.blog_list_le img {
    width: 100%;
    transition: .6s ease;
    aspect-ratio: 52 / 35;
    border-radius: 15px;
    z-index: 1;
}
.subbox_item a:hover img {
    z-index: 1;
    transition: 0.6s;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
}
.blog_list_le:after {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    content: "";
    background-color: #66554499;
    border-radius: 18px;
    pointer-events: none;
    transition: all 0.6s;
}
.subbox_item a:hover .blog_list_le::after {
    -webkit-transform: rotate(-6deg);
    transform: rotate(-6deg);
}

/* 文字 */
.blog_list_ri {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 15px 35px;
    width: 100%;
    padding: 0;
    overflow: hidden;
    transition: all .6s ease;
}
.subbox_item a:hover .blog_list_ri {
    opacity: 0.6;
}
.blog_list_ri h5 {
    font-size: var(--f20);
    text-align: left;
    color: #665544;
    font-weight: 600;
    letter-spacing: 1.5px;
}
.blog_list_ri em {
    position: relative;
    font-size: 14px;
    color: #BAA99F;
    margin: 10px 0 0;
    padding: 5px 0;
    letter-spacing: 1px;
    margin: 5px 0 10px;
    order: -1;
    font-weight: 500;
    left: -44px;
    font-family: var(--SFontN);
}
.blog_list_ri p {
    font-size: 14px;
    letter-spacing: 1.5px;
    line-height: 1.8;
    font-weight: 400;
    color: #333;
}






/*文章內層/ = = = = */
.blog_in_page h5.blog_le_t em {
    color: #BAA99F;
}

.blog_in_page .blog_ri {min-height: 50vh;}
.blog_in_page h4.blog_category_title {
    width: 100%;
    letter-spacing: 2px;
    margin-bottom: 0;
    text-align: left;
    padding: 0;
    padding-bottom: 10px;
    font-size: var(--f28);
    display: block;
    color: #665544;
}

/* 分享按鈕 = = */
.blog_shareData {display: none;}

/* 文章編輯器 */
.blog_box_edit {
    background: #fff;
    padding: 0;
    margin: 10px 0;
    font-size: var(--f16);
    color: #2F2F2F;
    line-height: 1.8;
    padding: 20px 40px;
    letter-spacing: 1px;
    border-radius: 15px;
}
.blog_box_edit * {
    line-height: 1.8;
    letter-spacing: 1px;
}
.edit {
    margin: auto;
    padding: 20px 0;
}
.articel_mainPic {
    display: none;
}

/* 上下篇按鈕 */
.blog_back {
    position: relative;
    z-index: 1;
    margin-top: 20px;
    border-top: 1px solid rgb(186 169 159 / 60%);
    padding-top: 30px;
}
.blog_back a {
    font-size: 0;
    letter-spacing: 1px;
    background: transparent;
    transition: .3s ease;
    color: #BAA99F;
    padding: 0;
}
.blog_back a.article_btn_prev, .blog_back a.article_btn_next {
    background: transparent;
}
.blog_back a.article_btn_prev {
    text-align: left;
}
.blog_back a.article_btn_back {
    background: transparent;
}
.blog_back a.article_btn_next {
    text-align: right;
}
/* 英文 */
a.article_btn_back:before, .blog_back a.article_btn_prev:before, .blog_back a.article_btn_next:before {
    content: 'BACK';
    color: #BAA99F;
    text-decoration: underline;
    font-size: 14px;
    letter-spacing: 1px;
    font-family: var(--SFontE);
}
.blog_back a.article_btn_prev:before {
    content: 'PREV';
}
.blog_back a.article_btn_next:before {
    content: 'NEXT';
}



.blog_back a.article_btn_back:hover, .blog_back a.article_btn_prev:hover, .blog_back a.article_btn_next:hover {
    opacity: .6;
}

/*文章-相關推薦*/
.news_related {display: none;}





@media screen and (max-width: 1200px) {
/* 外層 */
.blog_subbox {gap: 25px;}
}

@media screen and (max-width: 1024px) {
/* 外層 */
.blog_ri {padding-left: 40px;}
h5.blog_le_t {margin: 0;}
.accordion li .link a {padding: 10px;}

.blog_subbox {gap: 25px;}
.blog_list_ri h5 {-webkit-box-orient: unset;}
.blog_list_ri em {margin-bottom: 5px;}
/* .blog_list_ri p {letter-spacing: 1px;} */
.blog_list_le {margin: 10px 0;}
.blog_list_le:after{content: none;}
.subbox_item a:hover img{box-shadow: none; opacity: 0.6;}
}

@media screen and (max-width: 768px) {
/* 外層 */
.blog_le {width: 100%;display: none;}
.blog_ri {padding: 0;width: 100%;}
.blog_subbox {grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));gap: 30px;}
.blog_list_ri h5 {font-size: var(--f24);}
}



@media screen and (max-width: 640px) {
.subbox_item a {flex-direction: column;}
.blog_subbox {grid-template-columns: 1fr;}
.blog_list_le {max-width: 100%;aspect-ratio: 52 / 29;}
.blog_list_ri em {margin: 0;}
}


@media screen and (max-width: 480px) {
.blog_list_ri h5 {order: 2;}
.blog_list_ri em {order: 1;font-size: 13px;margin: 0;}
.blog_list_ri p {order: 3;}
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = = = = = */
/*促銷活動設定 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/* 促銷首頁 */
.news_part {
    width: 100%;
    padding: 50px 20px;
    background: #fff;
}






/* = = = 分隔線 相本主分類= = = = = = = = = == = = = = = = = = = = = = = = = = = = */
/*相本分類全版面 ( 限制最寬2000px  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.show-list .item:hover .show_name{
    color: #665544;
}

/*相簿*/
.other_album_choice li {
    background: #ccc;
}
/*相簿下方隱藏*/
.other_album_choice{display:none;}
.album_fixed_title{display:none;}

/* 圖 */
 .show-list .show_pic {
    aspect-ratio: 4 / 3;
    border-radius: 15px;
    overflow: hidden;
    background: #665544;
}
.show-list .item:hover .overlay {
    opacity: 0;
}
.show-list .item a .show_pic img {
    transform: scale(1);
    transition: all .8s;
}
.show-list .item a:hover .show_pic img {
    transform: scale(1.08);
    opacity: .8;
}










/* = = = 分隔線 相本分類= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

/*相本列表*/

.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: 40px;
}
.album_class_page .show-list {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    grid-template-columns: 1fr 1fr 1fr;
}
.show-list .item {
    text-align: center;
    width: 100%;
    background: transparent;
}
.show-list .show_name {
    font-size: 17px;
    color: #333;
    letter-spacing: 1.5px;
    margin-top: 20px;
    height: fit-content;
}


/* 次分類相簿名 */
.other_subalbum li a p {
    line-height: 2;
    margin: -22px 0 0 11px;
    margin: 0;
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 20px;
    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 screen and (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, .album_class_page .show-list {grid-template-columns: 1fr 1fr;}
}

@media screen and (max-width: 980px){}

@media screen and (max-width: 768px){
.show-list, .album_class_page .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;}    
}





/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
/*聯絡我們 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.contact_page .banner h5:after{content: 'CONTACT';}
.contact_page .banner {background: url(https://pic03.eapple.com.tw/chengjia/banD.jpg);background-size: cover;background-position: 50% 90%;}


.contact_content {
    width: 96%;
    padding: 0;
    margin: 0 auto;
}
.contact_content form {
    display: flex;
    justify-content: space-between;
}
/* 左聯絡資訊 = = */
.contact_content .information_left {
    padding: 0;
    width: 380px;
    display: flex;
    flex-direction: column;
}
.blank_letter {
    padding-bottom: 0px;
    color: #665544;
    background-position: left bottom;
    background-repeat: no-repeat;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 2px;
    font-family: var(--SFont);
    padding-top: 0;
    order: -1;
}
.list_before {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 15px;
    color: #444;
    display: block;
    width: 100%;
    position: relative;
    font-family: var(--SFont);
}
.list_before.info li {
padding-left: 45px;
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 1.5;
    margin: 10px 0;
    color: #333;
    font-weight: 400;
}
.contact_le_nomap {
    height: 500px;
    filter: grayscale(1);
    border-radius: 10px;
    overflow: hidden;
    transition: all .6s ease-in-out;
}
.contact_le_nomap:hover {
    filter: unset;
}


/* 右線上表單 = = */
.red {color: #cf4b40;letter-spacing: 2px;}
span.note.red {display: none;}
.contact_content .information_right {
    width: calc(96% - 400px);
    padding: 0;
    display: flex;
    flex-direction: column;
}
.contact_content .information_right:before {
    content: '請提供您的完整聯絡方式與洽詢內容或意見回饋，幫助我們能盡快為您服務！';
    font-family: var(--SFont);
    color: #665544;
    padding: 5px 0 10px;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    font-size: 15px;
}
/* 表單欄 */
.contact_form {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 15px;
    color: #444;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 25px;
}
.contact_form li {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 0;
}
.contact_form li .form__label {
    text-align: left;
    color: #333;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1.5px;
    line-height: 1.5;
    font-family: var(--SFont);
    background: transparent;
    width: fit-content;
    max-width: fit-content;
}
.contact_form li input.noborder, .contact_form li textarea.noborder {
    border: 0;
    border-bottom: 1px solid #baa99fc2;
    background: transparent;
}
.contact_form li:has(input[type=checkbox]) .form__insert, .contact_form li:has(input[type=radio]) .form__insert {
    align-items: center;
    grid-template-columns: 13px 1fr;
    letter-spacing: 1px;
    gap: 0px 10px;
    line-height: 1.6;
    padding: 10px 5px;
    font-family: var(--SFont);
}

/* BTN */
.contact_form li.last {
    margin-top: 50px;
    gap: 15px;
}
.contact_form li.last blockquote, .contact_form li.last cite {
    max-width: calc(50% - 10px);
    align-items: center;
    background: transparent;
    z-index: 1;
    color: #333;
    width: 260px;
    background-color: transparent;
    border: 1px solid #333;
    border-radius: 24px;
    padding: 0 30px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    font-size: 0;
}
.contact_form li.last input {
    text-align: left;
    font-family: var(--SFont);
    transition: color .4s cubic-bezier(0.250,0.460,0.450,0.940);
    position: relative;
    padding: 0;
    display: block;
    width: 100%;
    z-index: 10;
    color: #333;
    font-size: 13px;
    line-height: 44px;
}
.contact_form li.last blockquote:before, .contact_form li.last cite:before {
    overflow: hidden;
    transform: scaleY(1);
    transform-origin: bottom center;
    transition: transform .3s cubic-bezier(0.860,0.000,0.070,1.000);
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    width: 16px;
    height: 15px;
    top: 16px;
    right: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(https://pic03.eapple.com.tw/chengjia/all_arrow.svg);
}
.contact_form li.last blockquote:after, .contact_form li.last cite:after {
    content: '';
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #333;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: bottom right;
    transform-origin: bottom right;
    -webkit-transition: -webkit-transform .6s cubic-bezier(0, 0.55, 0.45, 1);
    transition: -webkit-transform .6s cubic-bezier(0, 0.55, 0.45, 1);
    transition: transform .6s cubic-bezier(0, 0.55, 0.45, 1);
    transition: transform .6s cubic-bezier(0, 0.55, 0.45, 1), -webkit-transform .6s cubic-bezier(0, 0.55, 0.45, 1);
    z-index: -1;
}
.contact_form li.last blockquote:hover:before, .contact_form li.last cite:hover:before {
    filter: brightness(100);
}
.contact_form li.last blockquote:hover:after, .contact_form li.last cite:hover:after {
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}
.contact_form li.last blockquote:hover input, .contact_form li.last cite:hover input {
    letter-spacing: 2px;
    color: #fff;
}



@media screen and (max-width: 1024px) {
.contact_content > form {display: flex    ;flex-wrap: wrap;gap: 40px;}
.contact_content .information_left {padding: 0;width: 100%;order: 2;}
.contact_content .information_right {width: 100%;padding: 0;}
}

@media screen and (max-width: 768px) {
.blank_letter {padding-bottom: 10px;}
.blank_letter.f:before {top: -100px;font-size: 100px;}
.contact_form li .form__label {padding: 0;}
}

@media screen and (max-width: 600px) {
.contact_content {padding: 0 30px;width: 100%;}
}








/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
@media screen and (min-width: 1700px) {
/* footer */
.footer_info {margin: auto;}
}


/* @1200上方區域_手機版面1200 */
@media screen and (max-width: 1200px) {
/* main */
.main_part {padding: 100px 40px;}
}

@media screen and (max-width: 1024px) {
/* main */
.main_part {padding: 80px 40px;}

/* footer */
.footer_info {grid-template-columns: 1fr;text-align: center;position: relative;gap: unset;}
.footer_logo {position: relative;left: unset;width: 100%;max-width: 200px;FONT-WEIGHT: 200;margin: auto;transform: unset;}
.footer_logo a {position: relative;display: block;width: 100%;}
.footer_info ul {grid-template-columns: 1fr;gap: 20px;flex-direction: column;}
.footer_info li+li{margin-top: 0;}
.footer_info li:nth-child(2) {padding: 15px 0;width: 90%;margin: auto;max-width: unset;}
.footer_menu {display: flex;justify-content: center;margin-left: auto;}
.footer_menu a {margin: 0;border: none;background: transparent;width: fit-content;transition: all 0.3s;font-size: 12px;padding: 0;padding: 0 10px;}



}

@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu { display: none;}
.footer.with_shopping_mode { padding: 0; }
#to_top {width: 40px;height: 40px;padding-top: 5px;}
}


@media screen and (max-width: 640px) {
/* main */
.main_part {padding-left: 20px;padding-right: 20px;}

/* footer */
.copy {font-size: 10px;}
}


@media screen and (max-width: 480px) {
/* main */
.main_part {padding-top: 60px;}
}