@charset "utf-8";


/*網站全域設定/＝＝＝＝＝*/
/*
    #E1D9D0 /*網站主要色系
    #E1CAC5 /*網站輔助色系1
    #f9f6f4; /*網站輔助色系2*/

/*反白顏色*/
::-moz-selection{  background-color: #232323;  color: #fff;}
::selection{  background-color: #232323;  color: #fff;}
:root {
    --MainColor: #f6f6f6;
    --SubColor:#0f0f12;
    --bgColor:#1f1f25;
    --logobg:#535353;
    --SFont:"Noto Sans TC", sans-serif;
    --SFontEN:"Cormorant Garamond", serif;
    --FontColor:#ffffff;
    --f54: 54px;
    --f48: 48px;
    --f42: 42px;
    --f40: 40px;
    --f36: 36px;
    --f32: 32px;
    --f28: 28px;
    --f24: 24px;
    --f22: 22px;
    --f20: 20px;
    --f18: 18px;
    --f17: 17px;
    --f16: 16px;
}

.path{display: none;}
body {
    font-family: var(--SFont);
    background: var(--bgColor);
    color: #fff;
    font-weight: 300;
    line-height: 200%;
    letter-spacing: 1px;
}
#content_main {    background: var(--bgColor);}
.main_part {    padding: 80px 50px; max-width: 1600px;}
.main_header_area .container {    max-width: 1500px;}
div#page {   
    background: url(https://pic03.eapple.com.tw/painter/pt_bg.jpg) no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: top;}
#content_main {   
    background: url(https://pic03.eapple.com.tw/painter/01about-bg) no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: top;
}
.page li a, .page li strong {    color: var(--MainColor);}
.page strong, .page a:hover {
    background: var(--MainColor);
    color: #000;
}
li.active strong {
    color: var(--bgColor);
}

/*★★★卷軸設定↓↓↓↓↓↓↓↓↓↓↓↓*/
/* 捲軸寬度及高度 */
::-webkit-scrollbar {
    width: 8px; /*右側捲軸寬度*/
    height: 0px; /*下方捲軸高度*/
}
/* 軌道背景底色 */
::-webkit-scrollbar-track {    background: #eee; }

/* 滑桿顏色 */
::-webkit-scrollbar-thumb {    background: #444; }
/* 滑桿滑鼠滑入時的顏色 */
::-webkit-scrollbar-thumb:hover {    background: #1c1f22; }

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/
.header_area, .header_area.sticky {    background: var(--bgColor);    padding: 0 10px;}

/*上方選單右邊設定 臉書/LINE/電話/信箱
.tp_links a:before {寬高大小設定}
.tp_links a.me_tp_fb {}
.tp_links a.me_tp_fb:before {背景換圖/建議.SVG}
.tp_links a.me_tp_line {}
.tp_links a.me_tp_line:before {背景換圖/建議.SVG}
.tp_links a.me_tp_call {}
.tp_links a.me_tp_call:before {背景換圖/建議.SVG}
.tp_links a.me_tp_mail {}
.tp_links a.me_tp_mail:before {背景換圖/建議.SVG}
*/
.tp_links{display: none;}

/*浮動按鈕*/
.info_fix_links {    display: flex !important;}
.linksBtn {    display: none;}
a.info_fix_default.info_fix_tel, a.info_fix_default.info_fix_mail {
    display: none;
}
.info_fix_links a {
    border-radius: 0;
    margin-bottom: 0;
    backdrop-filter: blur(10px);
    opacity: 0;
    animation: con_btn 1s ease-out forwards;
}

.info_fix_links a:nth-child(1){animation-delay: 1s;}
.info_fix_links a:nth-child(2){animation-delay: 1.5s;}
.info_fix_links a:nth-child(3){animation-delay: 2s;}

@keyframes con_btn{
    0%{transform: scale(1);opacity: 0;}
    50%{transform: scale(.9);}
    100%{transform: scale(1);opacity: 1;}
}


/*電腦LOGO
.nav-brand {}
*/
.nav-brand {    display: flex;}

/*手機LOGO
.nav-brand-m {}
*/


    
/*第一層*/
.stellarnav > ul > li > a {
    transition: all 0.3s;
    padding: 0 15px;
    color: var(--SubColor);
    font-size: 15px;
    letter-spacing: 0.05rem;
    color: #fff;
}
.stellarnav > ul > li:hover > a {    /*color: var(--logobg);*/ opacity: .7;}
.stellarnav > ul > li > a b:nth-child(2) {
    font-family: var(--SFontEN);
    font-weight: 600;
}

/*下拉線條箭頭*/
.stellarnav li.has-sub>a:after {
    position: absolute;
    top: 38%;
    right: 5px;
    height: 7px;
    width: 7px;
    display: block;
    border-style: solid;
    border-width: 0 1px 1px 0;
    border-color: transparent var(--SubColor) var(--SubColor) transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}


/*第二層*/
.stellarnav li li {    border: none;}
.stellarnav li li > a, .stellarnav li li.has-sub > a {
    padding: 10px 10px;
    transition: all 0.3s;
}
.stellarnav li li:hover > a, .stellarnav li li.has-sub:hover > a {
    background: var(--SubColor);
    padding-left: 15px;
    color: var(--FontColor);
    background: var(--bgColor);
}

/*下拉第二層箭頭*/
.stellarnav li li.has-sub > a:after {
    position: absolute;
    top: 38%;
    right: 5px;
    height: 7px;
    width: 7px;
    display: block;
    border-style: solid;
    border-width: 0 1px 1px 0;
    border-color: transparent var(--MainCOlor) var(--MainCOlor) transparent;
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
}

/* 商品下拉超過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個--結束 */



/*footer*/
.footer {    padding: 60px 0 0;    background: #ffff;}
.footer .center {   max-width: 80%;}
.footer_info {
    grid-template-columns: 1fr 300px;
    padding: 0;
    justify-items: end;
}
.footer_logo {    order: 2;}
.footer_logo {
    background: url(https://pic03.eapple.com.tw/painter/logo-2+b.png) no-repeat;
    background-size: contain;
}
.footer_logo img {    opacity: 0;}

.footer_info ul {    display: flex;    flex-direction: column-reverse;}
.footer_info li:nth-child(2) {    padding-left: 0;}
.footer_info li p, .footer_info li p a { font-weight: 400; color: var(--bgColor); }
.footer_menu a {
    background: transparent;
    border: none;
    /* border-bottom: 1px #ccc solid; */
    margin: 0 9px;
    transition: all .3s;
    position: relative;
    font-weight: 400;
    color: var(--bgColor);
}
.footer_menu a:hover {
    background: transparent;
    color: var(--SubColor);
}

.footer_menu a:before, .footer_menu a:after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 1px;
    top: auto;
    bottom: 0;
    background-color: var(--bgColor);
    transition-duration: 1.5s;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    -ms-transition-duration: 1.5s;
    -ms-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transition-duration: 1.5s;
    -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    -moz-transition-duration: 1.5s;
    -moz-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.footer_menu a:before {opacity: .3;}
.footer_menu a:after {
    width: 0;
    left: auto;
    right: 0;
}

.footer_menu a:hover:after{
        width: 100%;
        right: auto;
        left: 0;
}
.copy {
    margin-top: 34px;
    font-size: 12px;
    padding: 14px 20px;
}

.box_link {
    flex-direction: row;
    max-width: 100%;
    position: relative;
    order: 2;
    justify-content: flex-start;
    display: none;
}
.box_link a {
    border: none;
    background: transparent;
    font-size: 15px;
}


/*聯絡我們*/
.contact_form li.last cite {    background: #d3af79;}


/* = = = 大圖-分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#content_main { margin:0;}
.bannerindex { position:relative; height:auto;}
.swiper-banner { position:static; margin:0; height:auto;} 
.swiper-banner .swiper-slide img {    width: 100%;}
.swiper-wrapper{position: relative;}
/* .swiper-slide img { height:auto;} */
.swiper-pagination {margin-left: 0;transform: translateX(-50%); opacity: 0;}

@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0;}
}



.bannerindex .swiper-banner::before {
    content: " ";
    position: absolute;
    background: linear-gradient(180deg, #00000000, #0000008f, #1f1f25);
    width: 100%;
    height: 100%;
    z-index: 9;
    left: 0;
    right: 0;
    bottom: -1px;
    backdrop-filter: blur(10px);
    transition: all .5s;
    transform: translateY(100%);
}

.header_area.sticky~ .bannerindex .swiper-banner::before {
    mask: linear-gradient(180deg, transparent 230px, #000000 50vw);
    backdrop-filter: blur(10px);
    transition: all 1s;
    transform: translateY(0);
}

.pageIndex .bannerindex::before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: transparent;
    backdrop-filter: grayscale(1)  blur(7px);
    z-index: 999;
    animation: action-bg 4s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    pointer-events: none;
}


.pageIndex .swiper-banner {    
    animation: clipCircleIn 3.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards; background-color: #ffffff41;
    backdrop-filter: grayscale(1)  blur(7px);
} 

@keyframes action-bg {
    0%{        backdrop-filter: grayscale(1)  blur(7px);    }
    100%{        backdrop-filter: grayscale(0)  blur(0px);    }
}
@keyframes clipCircleIn {
    0%   { 
        -webkit-clip-path: circle(0 at 50% 50%);
        clip-path: circle(0 at 50% 50%);
        backdrop-filter: grayscale(1)  blur(7px);
    }
    100% {
        -webkit-clip-path: circle(100% at 50% 50%);
        clip-path: circle(100%  at 50% 50%);
        backdrop-filter: grayscale(0)  blur(0px);
    }    
}

.pageIndex .swiper-banner .swiper-slide img {
    height: auto;
    animation: banner-img 2s forwards;
    animation-delay: 2.6s;
}

@keyframes banner-img {
    0%{        transform: scale(1.4);    }
    100%{        transform: scale(1);    }
}


/*大圖文字*/
.pageIndex .swiper-banner .swiper-slide.swiper-slide:before, .pageIndex .swiper-banner .swiper-slide.swiper-slide:after {
    content: "";
    position: absolute;
    left: 58vw;
    color: #fff;
    z-index: 100;
    overflow: hidden;
    animation-timing-function: cubic-bezier(0.01, 0.01, 0.22, -0.89);
    width: 30vw;
    font-weight: 300;
    letter-spacing: .1rem;
}
.pageIndex .swiper-banner .swiper-slide.swiper-slide:before {
    bottom: 26vw;
    font-size: var(--f20);
    line-height: 160%;
    text-shadow: 0 0 10px rgb(0 0 0 / 60%);
}
.pageIndex .swiper-banner .swiper-slide.swiper-slide:after {
    bottom: calc(26vw - 70px);
    font-size: var(--f16);
    padding-bottom: 5px;
    line-height: 180%;
}

/*第一張大圖文字*/
.pageIndex .swiper-banner .swiper-slide.swiper-slide-active:nth-child(1):before{
	content: "像畫家「劃」過美麗弧度，劃家帶您進入舒適的「家」。";
	animation: ani_slide 2.5s both;}
.pageIndex .swiper-banner .swiper-slide.swiper-slide-active:nth-child(1):after{
	content: "劃家設計跳脫傳統制式，多元材料搭配加上系統櫃設計規劃，讓每件作品如同作畫般盡情揮灑、創意無限。";
    animation: ani_slide  2.5s both;animation-delay: 1s;}

/*第二張大圖文字*/
.pageIndex .swiper-banner .swiper-slide.swiper-slide-active:nth-child(2)::before{
    content: "System Furniture & Interior Renovation";
    left: 10vw;bottom: 14vw; white-space: pre-wrap;
    font-family: var(--SFontEN);
    font-size: var(--f28);
    font-weight: 600;
    letter-spacing: .05rem;
    width: 40.5vw;
    animation: ani_slide 2.5s both;
}


.pageIndex .swiper-banner .swiper-slide.swiper-slide-active:nth-child(2):after{
    content: "傾聽客戶需求，把關彈性預算，提供全室或部分設計的規劃與建議 \A 系統傢俱、室內空間規劃裝修。";
    left: 10vw;bottom: 10.3vw; white-space: pre-wrap; width: 40vw;
    animation: ani_slide 2.5s both; animation-delay: 1s; }


@keyframes ani_slide {
    0% {      transform:translateX(-5vw);opacity: 0;   }
    100% {      opacity:translateX(0);opacity: 1;    }
}


@media screen and (max-width: 1360px) {
.pageIndex .swiper-banner .swiper-slide.swiper-slide-active:after {   bottom: calc(24vw - 70px); }
.pageIndex .swiper-banner .swiper-slide.swiper-slide-active:nth-child(2):after{bottom: 9vw;}
}

@media screen and (max-width: 1280px) {
.pageIndex .swiper-banner .swiper-slide.swiper-slide-active:nth-child(2):after{bottom: 5vw; width: 35vw;}
}

@media screen and (max-width: 1024px) {
.pageIndex .swiper-banner .swiper-slide.swiper-slide-active:after {    bottom: calc(22vw - 70px); }
}

@media screen and (max-width: 980px) {
.pageIndex .swiper-banner .swiper-slide.swiper-slide-active:before, .pageIndex .swiper-banner .swiper-slide.swiper-slide-active:after {    font-size: 16px; width: 40vw;}
}

@media screen and (max-width: 768px) {
.swiper-slide img {
    width: 100%;
    display: block;
    max-width: 100%;
    min-width: 100%;
    height: 70vh;
    min-height: 90vw;
    max-height:100vw;
    object-position: center;
    object-fit: cover;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    margin: 0;
    transition: all 0.3s;
}
.pageIndex .swiper-banner .swiper-slide.swiper-slide-active:before, .pageIndex .swiper-banner .swiper-slide.swiper-slide-active:after {    font-size: 16px; width: 35vw;}
.pageIndex .swiper-banner .swiper-slide.swiper-slide-active:before {    bottom: 25vw;}
.pageIndex .swiper-banner .swiper-slide.swiper-slid-activee:after {        bottom: calc(26vw - 70px);        font-size: 14px;    }
.pageIndex .swiper-banner .swiper-slide.swiper-slide-active:nth-child(1)::before {   left: 55vw; }
.pageIndex .swiper-banner .swiper-slide.swiper-slide-active:nth-child(1):after {    bottom: 13vw; font-size: 14px; left: 55vw; }
.pageIndex .swiper-banner .swiper-slide.swiper-slide-active:nth-child(2)::before {    bottom: 26vw; }
.pageIndex .swiper-banner .swiper-slide.swiper-slide-active:nth-child(2):after {    bottom: 13vw;  width: 38vw;  font-size: 14px; }
}

@media screen and (max-width: 600px) {
    .header_area.sticky~ .bannerindex .swiper-banner::before {    mask: linear-gradient(180deg, transparent 189px, #000000 75vw);}
    .pageIndex .swiper-banner .swiper-slide.swiper-slide:before, .pageIndex .swiper-banner .swiper-slide.swiper-slide:after {width: 100%; text-align: center;  left: 0; }

.pageIndex .swiper-banner .swiper-slide.swiper-slide-active:nth-child(1)::before { width: 100%; text-align: center;  left: 0;padding: 0 30px; }
.pageIndex .swiper-banner .swiper-slide.swiper-slide-active:nth-child(1):after { width: 100%; text-align: center;  left: 0;padding: 0 30px; }
.pageIndex .swiper-banner .swiper-slide.swiper-slide-active:nth-child(2)::before { width: 100%; text-align: center; left: 0; padding: 0 30px;bottom: 30vw;}
.pageIndex .swiper-banner .swiper-slide.swiper-slide-active:nth-child(2):after {   width: 100%; text-align: center; left: 0; padding: 0 30px; bottom: 20vw;}
}

@media screen and (max-width: 580px) {
    .header_area.sticky~ .bannerindex .swiper-banner::before {     mask: linear-gradient(180deg, transparent 150px, #000000 88vw)}
.pageIndex .swiper-banner .swiper-slide.swiper-slide-active:nth-child(1)::before {  bottom: 40vw;}
.pageIndex .swiper-banner .swiper-slide.swiper-slide-active:nth-child(1):after {  bottom: 30vw;}
.pageIndex .swiper-banner .swiper-slide.swiper-slide-active:nth-child(2)::before { bottom: 40vw;}
.pageIndex .swiper-banner .swiper-slide.swiper-slide-active:nth-child(2):after {   bottom: 30vw;}
}


@media screen and (max-width: 530px) {
    .pageIndex .swiper-banner .swiper-slide.swiper-slide:before, .pageIndex .swiper-banner .swiper-slide.swiper-slide:after {display: none; }

}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {
    background: transparent;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    text-align: left;
    display: block;
    padding: 180px 50px 30px;
}
.banner h5 {
    font-size: var(--f18);
    font-family: var(--SFont);
    font-weight: 300;
    color: var(--FontColor);
    position: relative;
    text-indent: 2px;
    letter-spacing: 2px;
}
.banner h5:before {
    left: 0;
    position: absolute;
    bottom: 10px;
    font-weight: 300;
    font-family: var(--SFontEN);
    content: "PID";
    font-size: var(--f48);
    line-height: 2;
}
.banner.banE h5:before {content: "Portfolio";}
.banner.banblog h5:before {content: "News";}
.services_page .banner h5:before {content: "Service";}
.promotions_page .banner h5:before {content: "Q & A";}

.banner.banA {}
.banner.banB {}
.banner.banC {}
.banner.banD {}
.banner.banE {}
.banner.banblog {}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*促銷方案*/
.news_part {    padding: 60px 20px;}
.promotion_title span, .promotion_title em {
    border: none;
    color: #f6f6f6;
}
.promotion_title h2 {    font-size: var(--f24);    color: #fff;}
.other_promotion .pmtTitle h3, .other_promotion li a {    color: #fff;}
.other_promotion li a:hover {    background: transparent;}
.other_promotion li a {       border: 1px #e5e5e526 dashed;}
.other_promotion li a:hover:before, .other_promotion li a:hover::after {    border-color: var(--MainColor);}


/*
.news_part .title_i_box h4 {
    color: var(--TitleColor);
    font-weight: bold;
}
.news_part .title_i_box h4:before {
    content: "NEWS";
    display: block;
    font-family: var(--SFontEN);
}
.news_list ul li p {
    color: var(--FontColor);
}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.product_page .main_part { max-width:1500px;}
/* .product_info_page .main_part { max-width:1200px;} */

.product_page .show_content,
.product_info_page .show_content { width: 100%; display: flex; justify-content: space-between; flex-wrap: wrap; align-items: flex-start; align-content: flex-start;}
.product_page .product_menu_list { position: relative; width: 220px; letter-spacing: 1px; /*border-right: 1px solid #ccc;*/min-height: 30vw;}
.product_page .products-list,
.product-wrapper { width: calc(100% - 270px);}
ul.page { width: 100%;}

.product-layer-two li ul { position:static; margin-top:5px; /*display:block !important;*/ width:100%; margin-left:0;}
.product-layer-two li:hover ul { border: none !important; /*display:block !important;*/}
.product-layer-two li li { display: block; padding:0; transition:all ease .3s;}
.product-layer-two li li a{ padding:5px 10px;}
.product-layer-two li li:hover > a { background:#fff; color:#ad925e;}
.product-layer-two > li { width:100%; max-width:100%; padding:0; text-align:left; border-bottom:1px dotted #ccc; padding-bottom: 5px;}
.product-layer-two > li ul > li + li { margin-top:5px;}

.product_info_page .product-layer-two { display: none;}
.product_info_page .products-list,
.product-wrapper { width: 100%;}

.product-layer-two li li:hover{ margin-left: 15px;}
.product-layer-two li li > a:before { content: ""; position: absolute; width: 12px; height: 8px; background: transparent; left: 0; margin-left: -20px; top: 50%; margin-top: -4px; clip-path: polygon(0 0, 100% 50% , 0 100%);}
.product-layer-two li li:hover > a:before { background:#ad925e;}

.product_info_page .half_box { width: 100%; float: none; padding-right: 0;}
.product_info_page .half_box li.btn_blankTop { margin-top: 50px; justify-content: space-between; display: flex;}
.product_info_page .half_box li.btn_blankTop input { width: calc(50% - 10px); background-image: none; padding: 0; text-align: center;}

/*顏色*/
.products-list .more {    border: 1px solid var(--logobg);    color: var(--logobg);}
.products-list .item a:hover .more {    background: var(--logobg);}

/*購物車/內層＝＝*/
.product_info_page .main_part {    width: 90%;}
/*按鈕顏色*/
.inquiry_a1{background: #cbc0a0;}
.inquiry_a2{background: #bdab77;}
.inquiry_a3{background: var(--logobg);}
.inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover{background: #222;}
.lastaction {    color: var(--logobg);    background-color: #f2f2f2;}
.nextaction {    background-color: var(--logobg);}
.lastPage {    background: var(--logobg);}

/*商品側邊規格*/
.product_info li .txt_box {    color: #222222;    width: 100%;}
.sidebarBtn .sp_price {   color: #cbc0a0;}
.mobile_product_name{font-size: 24px;}
/*相關推薦*/
.prod_related h6 span:before{font-size: 28px;}



@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 980px) {
}
@media screen and (max-width: 768px) {
.product_menu_list,
.products-list,
.product-wrapper { width: 100%;}
.product-layer-two { margin-right: 0; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); grid-gap: 5px;}
.product_page .product-layer-two,
.product_page .products-list { width: 100%; border-right: none;}
.product_page .product_menu_list>h5{display: block;}

.product_page .show_content > a { order: 1;}
.product_page ul.products-list { order: 2;}
.product_page ul.page { order: 3;}
.product_page .product_menu_list {width: 100%; order: 0; min-height: unset;}
}
@media screen and (max-width: 600px) {
    .payment_form {    flex-direction: column;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*一排呈現.subbox_item { width:100%;}*/

/*文章版面*/
.blog_le {    width: 100%;}
h5.blog_le_t, .blog_search {
    display: none;
}
.blog_le .accordion {
    border-radius: 0px;
    border: none;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #373737;
}
.blog_le .accordion > li {
    transition: all 0.3s;
    width: auto;
}
.accordion li .link a {
    color: #fff;
    font-weight: 300;
    letter-spacing: 2px;
}
.accordion li+li .link {    border-top: none;}

.blog_ri {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    display: block;
}

.blog_subbox {    grid-template-columns: repeat(3, 1fr);} /*3個一排*/
.subbox_item a {    grid-template-columns: 1fr; overflow: hidden;;}
.subbox_item a:before, .subbox_item a:after {display: none;}
@keyframes maskFadeIn {
    0% {
        -webkit-mask-position: 200% 0;
        mask-position: 200% 0
    }

    100% {
        -webkit-mask-position: 0 0;
        mask-position: 0 0
    }
}

.blog_list_le {    aspect-ratio: 3 / 4; overflow: hidden; position: relative ;}
.blog_list_le:before {
    content: "View More";
    color: white;
    font-size: var(--f18);
    font-weight: 300;
    line-height: 140%;
    letter-spacing: 0.05em;
    text-indent: 0.05em;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 50;
    transition: 0.5s;
    opacity: 0;
    font-family: var(--SFontEN);
}
.subbox_item a:hover .blog_list_le:before {    opacity: 1;}

.subbox_item a:hover img {
    filter: grayscale(0);
    transform: scale(1.05);
}
.blog_list_le img {
    transition: .4s ease;
    filter: grayscale(0.7);
    transform: scale(1);

    -webkit-mask-image: linear-gradient(90deg, #000 0, #000 50%, transparent 100%);
    mask-image: linear-gradient(90deg, #000 0, #000 50%, transparent 100%);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 200% 100%;
    mask-size: 200% 100%;
    -webkit-mask-position: 200% 0;
    mask-position: 200% 0;
    animation: 2s cubic-bezier(0.65, 0.05, 0.36, 1) 0s 1 normal forwards maskFadeIn;
}
.blog_list_ri h5 {
    color: #fff;
    -webkit-line-clamp: 2;
    font-weight: 300;
    letter-spacing: 1px;
}
.blog_list_ri p {
    color: var(--MainColor);
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 160%;
}

/*文章內層*/
/*文章內層封面
.articel_mainPic img{display: none;}*/
.blog_box_edit * {    line-height: 180%;}
.blog_box_edit, .blog_box_edit a {
    color: #fff;
    font-weight: 300;
    letter-spacing: 1px;
}
h4.blog_category_title {
    color: var(--FontColor);
    font-weight: 300;
    font-size: var(--f28);
}
.toShareNews {    filter: grayscale(1);}

.blog_back a.article_btn_back {    background: var(--logobg);}
.blog_back a.article_btn_prev {    background: #333;}
.blog_back a.article_btn_next {    background: #333;}

/*文章標籤
.news_tags {    flex-wrap: wrap;}*/


/*文章-相關推薦*/
.news_related {
    background: var(--SubColor);
    padding: 60px 30px;
}
.news_related h6 span:before {
    font-size: var(--f24);
    color: #fff;
    font-weight: 300;
}
.lastPage {    color: #fff;    background: var(--logobg);}


/* = = = 相簿-分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*.overlay {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(0, 0, 0, .3);
    left: 0;
    top: 0;
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    transition: all .4s 100ms cubic-bezier(.42,0,.58,1);
}*/
.album_page .other_album, .album_class_page .other_album ,.album_info_page .other_album ,.album_page .overlay {display: none;}
.subalbum-menu {
    margin: 0;
    padding: 0;
}

/*相本分類全版面 ( 限制最寬2000px
.work_page .main_part { max-width:2000px;}
.work_page .show_content { padding:0; width:100%;}
.work_page .show-list .item { width:33%; display:inline-block; float:none; margin:0; padding:0;}
@media screen and (max-width: 768px) {
.work_page .show-list .item { width:49%;}
}
@media screen and (max-width: 570px) {
.work_page .show-list .item { width:100%;}
}
.work_page .show-list .item a { max-width:100%;}
.work_page .show-list .show_pic { height:auto; line-height:0;}
.work_page .show-list .show_pic img { max-width:100%; max-height:100%;}
.work_page .show-list .show_name { position:absolute; top:50%; right:10%; width:80%; height:auto; line-height:160%; font-size: 20px; color: #FFFFFF !important; border: solid 1px #fff; text-align: center; margin: -20px 0 0 -120px; padding:5px 20px; transition:all ease-in .3s; opacity:0;}
.work_page .show-list .item:hover .show_name {opacity:1;}
*/

.show-list, .pic-list {  grid-template-columns: repeat(3, 1fr); grid-gap: 10px;}
.show-list .show_pic img, .pic-list .item a img, .other_subalbum li a img {    transition: .4s ease; /*filter: grayscale(0.7);*/}
.pic-list .item a:hover img, .show-list .show_pic:hover img {
    transform: scale(1.05);
    transition: .4s ease;
    filter: grayscale(0);
}
.show-list .item , .other_subalbum li , .pic-list .item{width: 100%;margin:0;padding:5px;}
.other_subalbum li {background: transparent;}

.show-list .show_name {
    color: var(--FontColor);
    font-weight: 300;
    text-align: center;
}

.show-list .item:hover .show_name {    color: var(--MainColor);}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
.subalbum-menu h2 {
    font-size: var(--f20);
    color: #fff;
    font-weight: 300;
    letter-spacing: 2px;
}
.other_subalbum li a p {
    color: #fff;
    font-weight: 300;
    letter-spacing: 2px;
}

/*相本列表
.work_info_page .main_part { max-width:2000px;}
.work_info_page .show_content { padding:0; width:100%;}
.work_info_page .subalbum-menu { text-align:center;}
.work_info_page .subalbum-menu h2 { float:none;}
.work_info_page .pic-list .item { margin:0; padding:10px; width:49%; float:none; display:inline-block;}
@media screen and (max-width: 768px) {
.work_info_page .pic-list .item { width:100%;}
}
.work_info_page .pic-list .show_pic { height:auto; line-height:0;}
.work_info_page .pic-list .show_pic img { max-width:100%; max-height:100%;}
.work_info_page .pic-list .item a { max-width:100%; pointer-events: none; cursor: default; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



@media (max-width:1024px) {
    :root {
        --f54: 48px;
        --f48: 40px;
        --f42: 38px;
        --f40: 36px;
        --f36: 32px;
        --f32: 28px;
        --f28: 24px;
        --f24: 22px;
        --f22: 20px;
    }
    .main_part {    padding: 50px;}
    .me_tp_features {        display: none;    }

    .banner {    padding: 140px 50px 0; }
}


@media screen and (max-width: 768px) {
    :root {
        --f54: 36px;
        --f48: 32px;
        --f42: 30px;
        --f40: 28px;
        --f36: 26px;
        --f32: 24px;
        --f28: 20px;
        --f24: 20px;
        --f20: 18px;
        --f18: 17px;
        --f17: 16px;
    }

/* 開啟手機板下方按鈕所需設定
#bottom_menu {display: block; } */
.footer.with_shopping_mode { padding:50px 0 70px; }
#to_top { bottom:60px;}
#bottom_menu li:first-child:nth-last-child(2), #bottom_menu li:first-child:nth-last-child(2) ~ li {
    width: 50%;
    display: block;
    float: left;
}
#bottom_menu {    background: var(--logobg);}
#bottom_menu li a {    color: #fff;}
#bottom_menu li {    border-right: 1px solid #dddddd1a;}

.footer_info {    grid-template-columns: 1fr;    justify-items: center;}
.footer_info ul {    order: 2;}
.footer_info li:nth-child(1) {
    padding: 20px 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.footer_info li:nth-child(2) {    text-align: center;}

.main_part {    padding: 0 50px 60px;}

/*漢堡選單*/
.stellarnav .menu-toggle:after {    color: var(--MainColor);}
.stellarnav .menu-toggle span.bars span {    background: var(--MainColor);}

.stellarnav.mobile {        top: 6px;}
.stellarnav.mobile.left > ul {
    border: none;
    background: #1f1f25ed;
    backdrop-filter: blur(5px);
}
.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {
    background: var(--SubColor); color: #fff;
}
.stellarnav.mobile > ul > li {    border-bottom: 1px #dddddd00 solid;}
.stellarnav .icon-close:before, .stellarnav .icon-close:after {    border-bottom: solid 2px #ffffff;}
.stellarnav a.dd-toggle .icon-plus:before, .stellarnav a.dd-toggle .icon-plus:after {    border-bottom: solid 2px var(--MainColor);}/*下拉關掉*/
.stellarnav.mobile li.open {    background: var(--bgcolor);}/*下拉*/

/*banner*/
.banner {    padding: 120px 50px 20px;}

ul.show-list, .pic-list {    grid-template-columns: repeat(2, 1fr);}
.blog_subbox {    grid-template-columns: repeat(2, 1fr);}
}


@media (max-width:600px) {
    :root {
        --f54: 32px;
        --f48: 28px;
        --f42: 26px;
        --f40: 24px;
        --f36: 22px;
        --f32: 20px;
        --f28: 18px;
        --f24: 18px;
        --f22: 18px;
        --f20: 17px;
        --f18: 16px;
        --f17: 15px;
        --f16: 15px;
    }

    .main_part {    padding: 0 30px 50px;}
    .banner {        padding: 120px 30px 20px;    }
    .footer_info {    grid-template-columns: 1fr;    justify-items: center;}
    .footer_info li:nth-child(1) {
    order: 1;
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0;
    }

    ul.show-list, .pic-list {    grid-template-columns: 1fr;}
    .blog_subbox {        grid-template-columns: 1fr;    }

    /*聯絡我們表單*/
    .contact_form li {    grid-gap: 0;}
    .contact_form li .form__label {    background: transparent;}
}

@media (max-width:525px) {
.stellarnav.mobile {        top: 15px;}
}

@media (max-width:375px) {
    :root {
        --f54: 28px;
        --f48: 24px;
        --f42: 22px;
        --f40: 20px;
        --f36: 18px;
        --f32: 18px;
        --f28: 17px;
        --f24: 17px;
        --f22: 17px;
        --f20: 16px;
        --f18: 15px;
    }
}


