@charset "utf-8";


/*網站全域設定/＝＝＝＝＝*/
/*
    #E1D9D0 /*網站主要色系
    #E1CAC5 /*網站輔助色系1
    #f9f6f4; /*網站輔助色系2*/

/*反白顏色*/
::-moz-selection{  background-color: #D8A47F;  color: #fff;}
::selection{  background-color: #D8A47F;  color: #fff;}
:root {
    --MainColor: #D8A47F;
    --SubColor:#CB9F85;
    --SFont:"Noto Sans TC", sans-serif;
    --SFontEN:"Philosopher", sans-serif;
    --FontColor:#464646;
    --bgcolor:#F5EFE6;
    --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); color: #4A4A4A;}
.main_part {    padding: 80px 20px;}

/*★★★卷軸設定↓↓↓↓↓↓↓↓↓↓↓↓*/
/* 捲軸寬度及高度 */
::-webkit-scrollbar-thumb:hover {    background: #FFF5E4; }
::-webkit-scrollbar {
    width: 10px; /*右側捲軸寬度*/
    height: 0px; /*下方捲軸高度*/
}
/* 軌道背景底色 */
::-webkit-scrollbar-track {    background: #FFF5E4; }
/* 滑桿顏色 */
::-webkit-scrollbar-thumb {    background: #E76F51;   }
/* 滑桿滑鼠滑入時的顏色 */
::-webkit-scrollbar-thumb:hover {    background: #A2674A; }

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/


/*上方選單右邊設定 臉書/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 {    right: 0;}
.linksBtn {    display: none;}
a.info_fix_default.info_fix_mail,
a.info_fix_default.info_fix_tel {    display: none;}
.info_fix_links {
    display: flex !important;
    align-items: flex-end;
    position: relative;
}

.info_fix_links a {
    background: #ca9570ba;
    border-radius: 0;
    margin-bottom: 0;
    backdrop-filter: blur(10px);
    opacity: 0;
    animation: con_btn 1s ease-out forwards;
}

.info_fix_links a:hover {    background: #ca9570;}

.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;}
.info_fix_links a:nth-child(4){animation-delay: 2.5s;}

@keyframes con_btn{
    0%{transform: scale(1);opacity: 0;}
    50%{transform: scale(.9);}
    100%{transform: scale(1);opacity: 1;}
}

.nav-header {    max-width: 160px;}
.nav-brand {    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);}
.pageIndex .nav-brand {
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
    animation: logo_down 1s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 3s;
}
@keyframes logo_down{
    0%{
        opacity: 0;
        left: -100px;
    }
    100%{
        opacity: 1;
        left: 0;
    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/
.navigation {    grid-template-columns: 160px 1fr;}
.main_header_area .container {    max-width: 1800px;transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);}
.header_area{position: fixed; background: transparent;}
.header_area.sticky {
    background: #ffffff;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    -webkit-box-shadow: 0.1rem 0.1rem 5px rgba(0, 0, 0, 0.03);
    box-shadow: 0.1rem 0.1rem 5px rgb(255 255 255 / 3%);
    background: rgb(255 255 255 / 17%);
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
    background: rgb(255 255 255 / 57%);
}

/*第一層*/
.stellarnav > ul > li{
    padding: 0;
    opacity: 1;
    transition: all 0.3s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}
.pageIndex .stellarnav > ul > li{
    padding: 10px 0;
    opacity: 0;
}
.sticky .stellarnav > ul > li{
    padding: 0;
    transition: all 0.3s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.stellarnav > ul > li > a {
    transition: all 0.3s;
    color: #a04403;
    /* text-shadow: 0 0 3px #0000005c; */
    letter-spacing: 1px;
    font-size: 14px;
    padding: 0 20px;
}
.sticky .stellarnav > ul > li > a {
    /*color: #D8A47F;*/
    text-shadow: none;
}

.stellarnav > ul > li > a b:nth-child(2) {    font-family: var(--SFontEN);}
.stellarnav > ul > li:hover > a {    color: #E76F51;}

/*下拉線條箭頭*/
.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(--MainColor) var(--MainColor) transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}


.pageIndex .stellarnav > ul > li:nth-of-type(1){
    animation: down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 1.8s;
}
.pageIndex .stellarnav > ul > li:nth-of-type(2){
    animation: down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 2s;
}
.pageIndex .stellarnav > ul > li:nth-of-type(3){
    animation: down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 2.2s;
}
.pageIndex .stellarnav > ul > li:nth-of-type(4){
    animation: down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 2.4s;
}
.pageIndex .stellarnav > ul > li:nth-of-type(5){
    animation: down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 2.6s;
}
.pageIndex .stellarnav > ul > li:nth-of-type(6){
    animation: down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 2.8s;
}
.pageIndex .stellarnav > ul > li:nth-of-type(7){
    animation: down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 2.9s;
}
.pageIndex .stellarnav > ul > li:nth-of-type(8){
    animation: down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 3s;
}

@keyframes down {
    0%{
        opacity: 0;
        transform: translate(0,-20px);
    }
    100%{
        opacity: 1;
        transform: translate(0,0);
    }
}


/*第二層*/
.stellarnav li li {    border: none;}
.stellarnav li li > a, .stellarnav li li.has-sub > a {    padding: 10px 12px;    transition: all 0.3s;}
.stellarnav li li:hover > a, .stellarnav li li.has-sub:hover > a {
    color: #fff;
    padding-left: 15px;
    background: var(--MainColor);
}

/*下拉第二層箭頭*/
.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*/
.box_link{    display: none;}
.footer_logo {    display: none;}

.footer {
    padding: 60px 0 0;
    background: #CBB7A9;
    background-image: linear-gradient(72deg, #cc8d5b4d 40%, #c24f2e42 65%), url(https://pic03.eapple.com.tw/yanbaizhujian/yb_footer.jpg);
    background-position: center;
    background-size: cover;
}

.footer .center {    max-width: 90%;}
.footer_info {    grid-template-columns: 1fr;}
.footer_info ul {
    display: flex;
    flex-direction: column-reverse;
}
.footer_info li:nth-child(1) {
    mix-blend-mode: color-dodge;
}
.footer_info li p, .footer_info li p a {    color: white;}
.footer_menu a {
    background: transparent;
    color: white;
    border: none;
    transition: all .3s;
}
.footer_menu a:hover {
    background: transparent;
    color: #814537;
    transition: all .3s;
}
.footer_menu a:nth-child(1) {
    padding-left: 0;
}
.copy {
    padding: 25px 20px;
    border-top: 1px #ffffff80 solid;
    color: #fff;
    backdrop-filter: saturate(93%) blur(7px);
    margin-top: 35px;
}
.copy a{ color: #fff;}

/*聯絡我們*/
.contact_content {
    padding: 60px 10px;
    text-align: center;
    background: var(--bgcolor);
}
.contact_editbox {    padding: 0;}
.contact_content .information_left {    display: none;}
.contact_content .information_right {
    width: 100%;
    max-width: 1200px;
    padding: 0;
}
.blank_letter {
    color: var(--MainColor);
    font-family: var(--SFont);
    font-weight: 400;
}


.contact_form {    grid-gap: 20px;}
.contact_form li {
    grid-template-columns: 109px 1fr;
    grid-gap: 20px;
    justify-items: end;
}
.contact_form li .form__label {
    color: var(--FontColor);
    max-width: max-content;
}
.contact_form li:has(input[type=checkbox]) .form__insert, .contact_form li:has(input[type=radio]) .form__insert {
    grid-gap: 6px;
    grid-template-columns: repeat(6, 15px 1fr);
    justify-items: start;
}

.contact_form li input.noborder, .contact_form li textarea.noborder {
    border: none;
    background: transparent;
    border-bottom: 1px #d8a47f57 solid;
}
.contact_form li .form__label {    color: var(--FontColor);}

.contact_form li.last cite {    background: transparent;}
.contact_form li.last input {    z-index: 1;    position: relative;}
.contact_form li.last cite, .contact_form li.last blockquote {
    border: 1px solid var(--MainColor);
    position: relative;
    color: var(--FontColor);
    overflow: hidden;
}
.contact_form li.last cite:hover, .contact_form li.last blockquote:hover {    color: #fff;}
.contact_form li.last cite:before, .contact_form li.last cite:after, .contact_form li.last blockquote:before, .contact_form li.last blockquote:after {
    content: '';
    position: absolute;
    top: -1px;
    bottom: -1px;
    z-index: 0;
    width: 0;
    margin: auto;
    background-color: var(--MainColor);
    pointer-events: none;
    transition: all .5s ease-out;
}
.contact_form li.last cite::before, .contact_form li.last blockquote:before {    left: -1px;}
.contact_form li.last cite::after, .contact_form li.last blockquote:after {    right: -1px;}

.contact_form li.last cite:hover:before, .contact_form li.last cite:hover:after, .contact_form li.last blockquote:hover:before, .contact_form li.last blockquote:hover:after {
    width: 51%;
}


/* = = = 大圖-分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*預設解除背景輪播*/
#content_main, #content {
    margin: 0;    background: #F5EFE6;}
.bannerindex { position:relative; height:auto;}
.swiper-banner { position:static; margin:0; height:auto;} 

.swiper-banner .swiper-slide img {    width: 100%;}

/* .swiper-slide img { height:auto;} */
@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0;}
}


/*大圖*/
.swiper-banner .swiper-slide img{transform: rotate(0) scale(1);
    opacity: 1;
    animation: slide-active_end 1.5s ease 0s 1 alternate;
}

@keyframes slide-active_end {
    0% {
        transform: rotate(-15deg) scale(1.8);
        opacity: 0;
    }
    100% {
        transform: rotate(0) scale(1);
        opacity: 1;
    }
}

.swiper-slide{position: relative;}
.pageIndex .swiper-slide.swiper-slide-active:nth-child(2)::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/yanbaizhujian/01cover-2ban1.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation-fill-mode: both;
    animation: slide-top 3s ease forwards;
    z-index: 100;
}

.pageIndex .swiper-slide.swiper-slide-active:nth-child(2)::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/yanbaizhujian/01cover-2ban2.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation-fill-mode: both;
    animation: slide-top 3s ease forwards;
    animation-delay: .5s;
    z-index: 100;
}

/*上升*/
@keyframes slide-top {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        opacity:0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity:1;
    }
}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {
    width: 100%;
    height: 75vh;
    background: #2d2d2d;
    position: relative;
    overflow: hidden;
}
.banner:before {
    content: '';
    animation: bgScroll 30s linear infinite;
    width: 110%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-image: url(https://pic03.eapple.com.tw/yanbaizhujian/ban02.jpg);
    background-repeat: no-repeat;
    background-position: center;
}
.banner h5 {
    width: auto;
    position: absolute;
    bottom: 20%;
    left: 15%;
    color: #fff;
    letter-spacing: 0.5em;
    font-size: 16px;
    font-family: var(--SFont);
    text-align: left;
    font-weight: 300;
    display: none;
    mix-blend-mode: soft-light;
}
.banner h5::before {
    content: "ysdain";
    color: #fff;
    display: block;
    margin-bottom: 20px;
    font-size: var(--f42);
    font-family: var(--SFontEN);
    letter-spacing: 3px;
    font-weight: normal;
    text-transform: uppercase;
    line-height: .5;
}

@keyframes bgScroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    50% {
        -webkit-transform: translateX(-5%);
        transform: translateX(-5%);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.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;}


/*
.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(--MainColor);    color: var(--MainColor);}
.products-list .item a:hover .more {    background: var(--MainColor);}

/*購物車/內層＝＝*/
.product_info_page .main_part {    width: 90%;}
/*按鈕顏色*/
.inquiry_a1{background: #cbc0a0;}
.inquiry_a2{background: #bdab77;}
.inquiry_a3{background: var(--MainColor);}
.inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover{background: #222;}
.lastaction {    color: var(--MainColor);    background-color: #f2f2f2;}
.nextaction {    background-color: var(--MainColor);}
.lastPage {    background: var(--MainColor);}

/*商品側邊規格*/
.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) {
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/
/*3個一排
.blog_subbox {    grid-template-columns: repeat(3, 1fr);} 
*/
h5.blog_le_t {    color: var(--FontColor);}
.blog_subbox {    grid-template-columns: repeat(3, 1fr);}
.subbox_item a {    grid-template-columns: 1fr;}
.subbox_item a:before, .subbox_item a:after{display: none;}
.blog_list_ri h5 {
    color: var(--SubColor);
    font-weight: 500;
    -webkit-line-clamp:2;
}

/*文章內層*/
/* .articel_mainPic img{display: none;} 文章內層封面*/
.blog_le .accordion {    border: none;}
.blog_search input[type=search] {    color: var(--FontColor);    border: solid 1px #d8a47f38;    border-radius: 0;}
.accordion li+li .link {    border-top: 1px solid #d8a47f38;}
.accordion li .link a {    color: var(--FontColor);    font-weight: 400;}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {    background: var(--MainColor) !important;}
h4.blog_category_title {
    font-size: var(--f32);
    font-weight: 500;
}
.blog_back a.article_btn_back {    background: var(--MainColor);}
.blog_back a.article_btn_prev {    background: #d67d57;}
.blog_back a.article_btn_next {    background: #d67d57;}

/*文章標籤
.news_tags {    flex-wrap: wrap;}*/
.news_tags a {    color: var(--MainColor);}

/*文章-相關推薦*/
.news_related {
    background: #f5ead9;
    padding: 60px 15px;
}
.news_related h6 span:before {
    font-size: 24px;
    color: var(--SubColor);
    font-weight: 400;
}
.lastPage {    color: #fff;    background: var(--MainColor);}


/* = = = 相簿-分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
.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.album_a .main_part, .album_class_page.album_a .main_part, .album_info_page.album_a .main_part {
    max-width: 1500px;
}
ul.show-list, .pic-list {    grid-template-columns: repeat(3, 1fr);}
.show-list .show_name {
    font-size: 16px;
    color: #fff;
    letter-spacing: 0.15em;
    margin-top: 0;
    overflow: hidden;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 1;
    font-weight: 500;
    z-index: 3;
    transform: translate(-50%, 0);
    text-align: center;
    margin-top: 10px;
    transition: all 0.3s;
}
.show-list .item:hover .show_name {
    color: #fff;
    opacity: 0;
    transition: 0.3s;
}
.show-list .show_pic img, .pic-list .item a img {
    filter: saturate(29%);
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.show-list .item:hover .show_pic img, .pic-list .item a:hover img {
    filter: saturate(100%);
    transform: scale(1.05);
    transition: all 1s;
}
.page strong, .page a {
    display: block;
    width: inherit;
    height: inherit;
    line-height: inherit;
    padding: 0;
    transition: all 0.3s;
}

.page strong, .page a:hover {
    background: var(--MainColor);
    border: 1px solid var(--MainColor);
}

/*相本分類全版面 ( 限制最寬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;}
*/
.other_subalbum li {    background: transparent;}
.subalbum-menu h2 {
    color: var(--MainColor);
    font-family: var(--SFont);
    font-weight: 500;
}
.other_subalbum li a p {    color: var(--FontColor);}
.album_fixed_title {    display: none;}
.other_album_choice li {    background: transparent;}
.other_album_choice li a {    color: var(--FontColor);}
.fa-right-from-bracket::before {    content: "\f054";    color: var(--MainColor);}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本列表
.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;
    }
    .header_area {    position: sticky;}
    .header_area.sticky {    background: rgb(255 255 255 / 80%); border-bottom-left-radius: 0;    border-bottom-right-radius: 0;}
    .me_tp_features {        display: none;    }
    .banner {    height: 60vh;}
}


@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:30px 0 56px; }
#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: #c155368f;  backdrop-filter: blur(12px);  }
#bottom_menu li {    border-right: 1px solid #dddddd42;}
#bottom_menu li a {    color: #fff;}
.copy {    padding: 10px 20px;}
.footer_menu a{    padding-left: 0;}
.header_area.sticky {        backdrop-filter: unset;    }
.pageIndex .nav-brand {    opacity: 1;    animation: none;}

.pageIndex .stellarnav > ul > li:nth-of-type(1),
.pageIndex .stellarnav > ul > li:nth-of-type(2),
.pageIndex .stellarnav > ul > li:nth-of-type(3),
.pageIndex .stellarnav > ul > li:nth-of-type(4),
.pageIndex .stellarnav > ul > li:nth-of-type(5),
.pageIndex .stellarnav > ul > li:nth-of-type(6),
.pageIndex .stellarnav > ul > li:nth-of-type(7),
.pageIndex .stellarnav > ul > li:nth-of-type(8){
    animation: none;
    opacity: 1;
}
.stellarnav > ul > li > a {    text-shadow: none;}
.stellarnav.mobile {        top: -7px;}

/*漢堡選單*/
.stellarnav.mobile.left > ul {    border: none;}
.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {    background: var(--SubColor); color: #fff;}
.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);}/*下拉*/

ul.show-list, .pic-list {    grid-template-columns: repeat(2, 1fr);}
.blog_subbox {    grid-template-columns: repeat(2, 1fr);}

.contact_form li:has(input[type=checkbox]) .form__insert, .contact_form li:has(input[type=radio]) .form__insert {
    grid-template-columns: repeat(4, 15px 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;
    }
    .stellarnav.mobile {        top: 0;}
    .banner {    height: 35vh;}
    ul.show-list, .pic-list {    grid-template-columns: 1fr;}
    .blog_subbox {        grid-template-columns:  1fr;    }

    /*聯絡我們表單*/
    .contact_form li .form__label {    background: transparent;}
    .contact_form li {
        grid-gap: 0;
        grid-template-columns: 1fr;
        justify-items: left;
    }
    .contact_form li:has(input[type=checkbox]) .form__insert, .contact_form li:has(input[type=radio]) .form__insert {
    grid-template-columns: 15px 1fr;
    padding-left: 19px;
}
}

@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;
    }
}


