@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Noto+Serif+TC:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mrs+Saint+Delafield&family=Parisienne&family=Waterfall&display=swap');

/*網站全域設定/＝＝＝＝＝*/
/*
    #c49744 /*網站主要色系
    #ffd2bf /*網站輔助色系1
    #f9f6f4; /*網站輔助色系2*/

/*反白顏色*/
::-moz-selection{  background-color: var(--FontColor);  color: #fff;}
::selection{  background-color: var(--FontColor);  color: #fff;}
:root {
    --MainColor: #E9D2B3;
    --SubColor:#D6B9B5;
    --SubColor02:#CCBBA9;
    --SubColor03:#ffd2bf;
    --SubColor04:#B9B9B9;
    --SubColor05:#FEDBD7;
    --SubColor06:#F7E4C3;
    --LogoColor:#c49744;
    --SFont:'Noto Serif TC', serif;
    --SFontEN:"Cormorant Garamond", serif;
    --FontColor:#555555;
    --FontColor02:#1D1D1D;
    --f70:70px;
    --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;
}

@media (max-width:1024px) {
    :root {
        --f70: 55px;
        --f54: 48px;
        --f48: 40px;
        --f42: 38px;
        --f40: 36px;
        --f36: 32px;
        --f32: 28px;
        --f28: 24px;
        --f24: 22px;
        --f22: 20px;
    }
}

@media (max-width:768px) {
    :root {
        --f70: 45px;
        --f54: 36px;
        --f48: 32px;
        --f42: 30px;
        --f40: 28px;
        --f36: 26px;
        --f32: 24px;
        --f28: 20px;
        --f24: 20px;
        --f20: 18px;
        --f18: 16px;
        --f17: 16px;
        --f16: 15px;
    }
}

@media (max-width:600px) {
    :root {
        --f70: 38px;
        --f54: 32px;
        --f48: 28px;
        --f42: 26px;
        --f40: 24px;
        --f36: 22px;
        --f32: 20px;
        --f28: 18px;
        --f24: 18px;
        --f22: 18px;
        --f20: 17px;
        --f18: 16px;
        --f17: 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;
    }
}


&::-webkit-scrollbar {
    background: #F1ECE6;
    width: 7px;
}
&::-webkit-scrollbar-button {
    display: none;
    background: #F1ECE6;
    border-radius: 0;
}
&::-webkit-scrollbar-track-piece {
    background: #F1ECE6;
}

&::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: var(--MainColor);
}

&::-webkit-scrollbar-track {
    box-shadow: transparent;
}

body {
    font-family: var(--SFontEN), var(--SFont), sans-serif;
    letter-spacing: 2px;
    color: var(--FontColor);
}
.path{display: none;}

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*Header/＝＝＝＝＝*/

/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/
.navigation {
    grid-template-columns: 110px 1fr 180px;
    align-items: center;
    padding: 0;
}

.header_area {
    position: fixed;
    /* background: #ffffff4d; */
    transition: all 0.3s ease-in-out;
    background: linear-gradient(to bottom, rgb(255 255 255 / 78%) 0%, rgb(255 255 255 / 0%) 65%);
}

.header_area.sticky, .pageIndex .header_area.sticky  {
    backdrop-filter: blur(7px);
    box-shadow: 0 -15px 16px 0px rgb(0 0 0 / 12%);
    -webkit-backdrop-filter: saturate(180%) blur(5px);
    backdrop-filter: saturate(180%) blur(5px);
    background: rgb(255 255 255 / 67%);
}

.main_header_area .container {    max-width: 90%;}

.pageIndex .header_area {background: transparent;}
.stellarnav ul {    text-align: center;    padding-top: 10px;}
.stellarnav>ul>li {    position: relative;}
.stellarnav > ul > li > a {
    padding: 0 15px;
    color: var(--FontColor);
    transition: all .5s;
    font-size: 15px;
}
.stellarnav > ul > li:hover > a {
    color: var(--LogoColor);
    font-weight: 500;
}
.stellarnav li.has-sub > a:after {
    top: 35%;
    right: 1px;
    height: 9px;
    width: 8px;
    border-style: solid;
    border-width: 0 1px 1px 0;
    border-color: transparent var(--Fontcolor) var(--Fontcolor) transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.stellarnav ul ul {    padding: 0;}
.stellarnav li li.has-sub > a:after {
    right: 8px;
    border: 1.5px solid #898989;
    border-left-width: 0;
    border-bottom-width: 0;
    transform: rotate(45deg);
    top: 15px;
}
.stellarnav > ul > li.drop-left > ul {
    box-shadow: rgb(50 50 93 / 7%) 0px 13px 27px -5px, rgb(0 0 0 / 11%) 0px 8px 16px -8px;
    border-radius: 4px;
}
.stellarnav li li {    border: none;}
.stellarnav li li > a, .stellarnav li li.has-sub > a {
    transition: all 0.3s;
    font-size: 15px;
}
.stellarnav li li:hover > a , .stellarnav li li.has-sub:hover > a {    color: #fff; background: var(--MainColor);}
.stellarnav > ul > li:nth-of-type(2) > ul li:last-child {
    display: none;
}


/*上方選單右邊設定 臉書/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}
*/
.me_tp_features {    order: 3;}
.tp_links a {    color: var(--LogoColor); font-size: 18px;}
.pageIndex .tp_links {    padding-top: 6px;}
.pageIndex .sticky .tp_links {padding-top:0;}
.tp_links{display: none;}

.box_search input[type=text] {
    border-radius: 0;
    background: transparent;
    padding: 7px 55px 3px 32px;
    color: var(--FontColor02);
}

input#keyword {
    color: var(--FontColor02);
    /* background: #ffffffc2; */
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter:  blur(5px);
}

.shop_search_btn {
    border-radius: 0;
    color: #1d1d1d00;
    border: solid 1px #ccc !important;
    background: url(https://pic03.eapple.com.tw/firstflowersight/fashion_cli_img010.png) no-repeat 9px center #ffffff8a;
    width: 35px;
    background-size: 15px;
}
/*電腦LOGO
.nav-brand {}
*/
.nav-header { max-width: 100px;transition: all .5s; grid-row: 1; }
.sticky .nav-header {
    max-width: 65px;
    transition: all .5s;
}

/*手機LOGO
.nav-brand-m {}
*/

/*下拉線條箭頭
.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(--FontColor) var(--FontColor) transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
*/

/* 商品下拉超過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 {
    background-image: url(https://pic03.eapple.com.tw/firstflowersight/footer.jpg);
    padding: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.footer_logo {
    width: 100%;
    margin: 0 auto;
    padding-right: 20px;
}

.footer_info {
    display: grid;
    grid-template-columns: 200px 1fr 370px;
    gap: 20px 35px;
    padding: 0;
    max-width: 1400px;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 70px;
}
.footer_info ul {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 30px;
    align-items: baseline;
    width: 100%;
    max-width: 900px;
    margin: 0 0 0 auto;
    padding-top: 20px;
}

.footer_info li {
    padding: 0;
}
.footer_info li:nth-child(1) {
    border-left: solid 1px var(--SubColor);
    padding-left: 45px;
}
.footer_info li:nth-child(2) {
    order: -1;
}

.footer_menu a, .footer_info li:nth-child(1)>p, .footer_info li:nth-child(1) a {
    transition: all 0.3s;
    font-weight: 400;
    font-style: normal;
    text-transform: none;
    font-size: 13px;
    line-height: 26px;
    letter-spacing: 0;
    color: var(--FontColor02);
    padding: 0;
    letter-spacing: 0.1em;
    font-family: var(--SFont);

}

.footer_menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.footer_menu a {
    margin: 0;
    text-align: left;
    padding: 5px;
    border: none;
    background: transparent;
    width: fit-content;
    transition: all 0.3s;
    font-family: var(--SFont);
}

.footer_menu a:hover {
    background: transparent;
    color:var(--FontColor);
}

.footer_info li:before, .box_link:before {
    display: block;
    margin-bottom: 10px;
    width: 100%;
    text-align: left;
    font-weight: 500;
    font-style: normal;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 1px;
    color: var(--LogoColor);
}

.box_link:before {    content: "CONTACT";}
.footer_info li:nth-child(1):before {    content: "INFORMATION";}
.footer_info li:nth-child(2):before {    content: "RELATED LINK";}

.box_link {
    display: flex;
    flex-direction: row;
    max-width: 280px;
    width: 100%;
    justify-content: flex-start;
    padding: 0;
    margin: 0 auto;
    position: relative;
    order: 3;
    padding-top: 20px;
    align-items: flex-start;
    align-content: flex-start;
}

.box_link a {
    border: none;
    width: 45px;
    height: 45px;
    color: #8b6b52;
    padding: 11px;
    font-size: 18px;
    position: relative;
    background: transparent;
    transition: 0.3s box-shadow;
    overflow: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px 10px 5px 0;
    border-radius: 50%;
}
.box_link a:hover {    color: var(--FontColor02);}

.box_link a:before {
    box-shadow: 7px 7px 14px rgb(217 198 184), -7px -7px 14px #fbeded;
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 30px;
    transition: 0.3s opacity;
    opacity: 1;
}
.box_link a:after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
    transition: opacity 0.3s, box-shadow 0.3s;
    opacity: 0;
    mix-blend-mode: multiply;
    box-shadow: inset 4px 4px 8px #ccbba9, inset -4px -4px 8px white;
}

.box_link a:hover:after {    opacity: 1;}
.box_link a:hover:before {    opacity: 0;}

/*順序調整*/
a.me_tp_mail {    order: 4;}
a.me_tp_fb {    order: 3;}
a.me_tp_line {    order: 1;}
a.me_tp_ig {    order: 2;}

.copy {
    padding: 15px 0;
    background-color: var(--LogoColor);
    color: var(--SubColor03);
    margin: 0;
    border: none;
}
.copy a {    color: var(--SubColor03);}


/*聯絡我們*/
.contact_form li.last cite {    background: #d3af79;}
.contact_content .information_left {
    /* width: 100%; */
    /* display: grid
; */
    /* grid-template-columns: 1fr 2fr; */
    /* gap: 0 17px; */
    /* justify-items: center; */
}
.blank_letter {
    grid-column: span 2;
    font-family: var(--SFont);
    padding-bottom: 25px;
    color: var(--FontColor);
    font-weight: 600;
    font-size: var(--f24);
}
.contact_le_nomap {    width: 100%;}

h4.blank_letter.f {    text-align: center;}
.contact_content {
    width: 100%;
    padding: 0;
    padding-top: 100px;
    background: #ffd2bf1a;
}

/*聯絡我們MAP區改滿版編輯區*/
.contact_content {    width: 100%;    padding: 0;    padding-top: 100px;}
.contact_page .main_part {    max-width: 100%;    padding: 0;}
.contact_page .path {    display: none;}

.contact_content .information_left {    width: 100%;    padding: 0;}
.contact_content .information_right {    margin: 0 auto;    padding: 80px 0;    display: block;    width: 100%;background:#fff;}
.contact_content .information_left > h4.blank_letter {    display: none;}
.contact_content .list_before {    width: 100%;     max-width: 100%;    padding: 0;    margin: 0 auto;}
.contact_content .list_before > li:not(.contact_le_nomap) {    display: none;}
.contact_content .list_before.info > li:last-of-type {    padding: 0;    margin: 0;}
.red {    padding: 0;}
.contact_content .information_right > * {    width: 90%;    max-width: 1200px;    margin: 0 auto;}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.product_page .main_part {
    max-width: 1500px;
    padding: 80px 20px;
}
.product_info_page .main_part{    padding: 80px 20px;}
/* .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; */
    width: 100%;
    min-height: unset;
}
.product_page .products-list {
    width: 100%;
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 0px 0;
}

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;}

/*購物車選單修改*/
.product-layer-two li a {    background: transparent;    padding: 10px 15px;}
.product-layer-two li.active a {    font-weight: bold;    border: none;    color: var(--LogoColor);}
.product-layer-two li a {    background: transparent;    padding: 10px 15px;    color: var(--FontColor);}
.product-layer-two li ul {    margin-top: 0;}

.product-layer-two > li {
    padding-bottom: 0;
    text-align: center;
    border: 1px solid var(--MainColor);
}

ul.product-layer-two {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(110px, 100%), 1fr));
    gap: 5px;
    justify-content: center;
}
.product-layer-two li i {    color: var(--FontColor);}
.product-layer-two li li > a:before{display: none;}
.product-layer-two li li.active a {    background: #e9d2b33d;}

.products-list .name {    text-align: center;}

/*顏色*/
.products-list .more {    border: 1px solid var(--MainColor);    color: var(--LogoColor);}
.products-list .item a:hover .more {    background: var(--LogoColor);    border-color: var(--LogoColor);}

/*購物車/內層＝＝*/
.product_info_page .main_part {    width: 90%;}

/*按鈕顏色*/
.inquiry_a1{background: #cbc0a0;}
.inquiry_a2{background: #bdab77;}
.inquiry_a3{background: #ADA17E;}
.inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover{background: #222;}
.lastaction {    color: #ADA17E;    background-color: #f2f2f2;}
.nextaction {    background-color: #ADA17E;}
.lastPage {    background: #ADA17E;}
.inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover, .pd_line_link:hover {
    letter-spacing: 2px;
    background: var(--FontColor);
}

/*商品側邊規格*/
.sidebarBtn {    border: none;}
.product_info li .txt_box {    color: #222222;    width: 100%;}
.sidebarBtn .sp_price {   color: #cbc0a0;}
.mobile_product_name{font-size: 24px;}

.pd_tabTitle li.activeTab::after {
    height: 1px;
    background: #999999;
}
.pd_tabInner_contain {    line-height: 180%;}
/*相關推薦*/
.prod_related {
    padding: 80px 20px;
    background: #eed8cc2e;
}
.prod_related h6 span:before {
    font-size: var(--f24);
    color: var(--LogoColor);
    font-weight: 500;
}


@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;
    color: var(--LogoColor);
    font-size: var(--f24);
}
.fa-caret-down::before {    color: var(--LogoColor);}
.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) {
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#content_main { margin:0;}
.bannerindex { position:relative; height:auto;}
.swiper-banner { position:static; margin:0; height:auto;} 
/* .swiper-slide img { height:auto;} */
@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {
    background: var(--SubColor06);
    background: url(https://pic03.eapple.com.tw/firstflowersight/ban.png);
    /* width: 100%; */
    /* height: 700px; */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    font-size: var(--f36);
    min-height: 220px;
    padding: 15vw 20px 13vw;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

.banner:before {
    content: "";
    background-image: url(https://pic03.eapple.com.tw/firstflowersight/ban_bg.jpg);
    position: absolute;
    animation-duration: 5s;
    background-size: cover;
    background-position: center;
    width: 110%;
    height: 100%;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    animation: bgScroll 30s linear infinite;
    z-index: -1;
}
.banner.banF, .banner.banE {
    background: none;
}

.banner.banA {}
.banner.banB {}
.banner.banC {
    background: url(https://pic03.eapple.com.tw/firstflowersight/ban-c.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

}
.banner.banD {}
.banner.banblog {}


@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);
    }
}
@keyframes scroll_right {
    from { background-position: -4327px; }    to { background-position: 0px; }
}


.banner h5 {
    font-size: var(--f28);
    padding-left: 26%;
    text-align: left;
    font-weight: 500;
    font-family: var(--SFont);
    letter-spacing: 11px;
    line-height: 0;
    color: #fff;
    text-shadow: 9px -2px 9px #877760a6;
}
.banner h5:before {
    content: "Firstflowersight";
    display: block;
    letter-spacing: 0;
    font-size: 8vw;
    font-family: "Mrs Saint Delafield", serif;
    color: #ffffff36;
    line-height: .4;
    text-shadow: none;
    margin-left: -30px;
}
.banner.banF h5:before { content: "Floral Design"; }
.banner.banF h5, .banner.banE h5 {
    /* opacity: 0; */
    text-align: center;
    padding-left: 0;
    margin: auto;
}

.banner[data-banner=product_list_647] h5:before {    content: "Greenery";}
.banner.banE h5:before { content: "Collection";}
.banner[data-banner=product_list_648] h5:before {    content: "Selection";}
.banner.banC h5:before { content: "Contact Us";}

/*.banner.banE {
    background: linear-gradient(178deg, #ffffff1f 50%, rgb(255 255 255) 95%), url(https://pic03.eapple.com.tw/firstflowersight/ban-e.jpg);
    padding: 13vw 20px 11vw;
    background-repeat: no-repeat;
    background-position: right;
    background-size: cover;
}
.banner.banE:before{opacity: 0;}
.banner.banE h5 {
    font-weight: 500;
    padding: 10px 0 45px;
    color: var(--LogoColor);
    line-height: 120%;
    text-align: center;
    margin: auto;
    text-shadow: none;
}

.banner.banE h5:before {
    display: block;
    letter-spacing: 0;
    font-size: 8vw;
    font-family: "Mrs Saint Delafield", serif;
    color: #e9d2b370;
    line-height: .2;
    text-shadow: none;
}*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/

/*文章內層*/
.blog_back a.article_btn_back {    background: #958377;}
.blog_back a.article_btn_prev {    background: #333;}
.blog_back a.article_btn_next {    background: #333;}

/*文章-相關推薦*/
.news_related {
    background: #f3f3f3;
    padding: 25px 15px;
}
.news_related h6 span:before {
    font-size:var(--f24);
    color: var(--FontColor02);
}
.lastPage:hover {
    background: var(--LogoColor);
    color: #fff;
}
.lastPage {
    background: transparent;
    color: var(--FontColor02);
    border: 2px solid var(--LogoColor);
    transition: all .5s;
}

/* = = = 相簿-分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

.album_page .main_part, .album_class_page .main_part, .album_info_page .main_part {
    max-width: 100%;
    padding: 80px 0 100px;
}
.album_page .main_part .show_content, .album_class_page .main_part .show_content, .album_info_page .main_part .show_content {
    padding: 0;
    text-align: center;
}
.show-list {    grid-template-columns: repeat(3, 1fr);}
.show-list .item, .pic-list .item, .subalbum-menu {
    margin: 0;
    padding: 0;
    width: 100%;
    transition: all .4s 100ms cubic-bezier(.42,0,.58,1);
}
.overlay {
    opacity: 0;
    background: #f4eadf3b;
    -webkit-transform: unset;
    transform: unset;
    z-index: 1;
}

.show-list .item img {    transition: all .4s 100ms cubic-bezier(.42,0,.58,1);}
.show-list .item:hover img {    transform: scale(1.05);}

.show-list .show_name {
    position: absolute;
    bottom: 50%;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    height: auto;
    margin-top: 0;
    z-index: 9;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
    opacity: 0;
    background: #c497443b;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.show-list .item:hover .show_name {
    color: #fff;
    opacity: 1;
    height: 100%;
}
/*相本分類全版面 ( 限制最寬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;}
*/
.album_class_page .overlay {    display: none;}
.show-list .show_pic img, .pic-list .show_pic img {    transition: all .4s 100ms cubic-bezier(.42,0,.58,1);}
.show-list .show_pic:hover img, .pic-list .item:hover .show_pic img {    transform: scale(1.05);}
.other_subalbum li a p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    font-size: var(--f18);
    font-weight: 500;
    color: var(--FontColor);
    background: #ebd9cbbd;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
.subalbum-menu h2 {
    font-weight: 500;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    max-width: 1500px;
    padding-bottom: 30px;
    font-size: var(--f24);
    color: var(--LogoColor);
    display: none;
}
.album_fixed_title i {    display: none;}
.album_fixed_title {    margin-bottom: 5px;}
.other_album_choice li {
    background: transparent;
    border: 1px solid var(--SubColor04);
    border-radius: 0;
}

.other_album_choice li a {    color: var(--FontColor);}
.other_album_choice li a i.fa-solid.fa-right-from-bracket{display: none;}

/*相本列表
.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; } 取消連結被點擊效果
*/
.pic-list {    grid-template-columns: repeat(4, 1fr);}
.pic-list .item {    position: relative;}
.pic-list .item h6 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    font-size: var(--f18);
    font-weight: 500;
    color: #fff;
    background: #ebd9cb00;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
}

.other_album {
    /* position: relative; */
    /* max-width: 1500px; */
    width: 100%;
    margin: auto;
    text-align: left;
    padding: 0 20px;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


@media screen and (max-width: 1250px) {
    .main_header_area .container {        max-width: 100%;    }
}

@media screen and (max-width: 1100px) {
.stellarnav > ul > li > a {    padding: 0 10px;}
.navigation {    grid-gap: 0 10px;}
}

@media screen and (max-width: 1024px) {
    .footer_info {        grid-template-columns: 1fr;    }
    .box_link {
        margin: 0 0 0 auto;
        padding-top: 20px;
        max-width: 900px;
    }
    .footer_logo {    text-align: center;    padding-right: 0;}

    .header_area {
        position: relative;
        padding: 0;
    }
    .header_area.sticky {
        position: fixed;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .main_header_area {
        background: #fff;
        padding-top: 10px;
    }
    .sticky .main_header_area {
        background: rgb(255 255 255 / 67%);
    }
    .me_tp_features {
        text-align: right;
        position: absolute;
        right: 10px;
    }
    .nav-header {
        max-width: 65px;
        transition: all .5s;
    }

    /*banner*/
    /*.banner.banE {        padding: 13vw 20px 7vw;    }
    .banner.banE h5 {
        padding-left: 6%;
        text-align: left;
        margin: unset;
    }*/

    /*相簿*/
    .show-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .pic-list {
        grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    }

    /*購物車*/
    .product_page .products-list, .product-wrapper {        grid-template-columns: 1fr 1fr 1fr;    }

}

@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu {display: block; }
.footer.with_shopping_mode { padding:30px 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;
}

.footer_info {    padding: 30px 0;}
.footer_info ul, .box_link {
    padding: 30px;
    padding-top: 0;
    grid-template-columns: 1fr 1fr;
}
.footer_info li:nth-child(2) {        order: 2;    }
.footer_info li:nth-child(1) {    border-left: none;}
.box_link {display: none;}
.footer_menu {    grid-template-columns: 1fr 1fr 1fr;}

.main_header_area {    padding-bottom: 5px;}


.header_area.sticky, .pageIndex .header_area.sticky {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {
    background: var(--LogoColor);
    color: #fff;
}
.stellarnav .icon-close:before, .stellarnav .icon-close:after {    border-bottom: solid 1px #fff;}
.stellarnav.mobile > ul {    border-top: none;}
.stellarnav.mobile li.open {    background: #e9d2b373;}
.stellarnav.mobile > ul > li {    border-bottom:1px solid var(--MainColor);}
.stellarnav.mobile {    left: 10px;}
.stellarnav.mobile.left > ul {    padding: 0;    border-right: none;}
.stellarnav a.dd-toggle .icon-plus:before, .stellarnav a.dd-toggle .icon-plus:after{  border-bottom: solid 1px var(--LogoColor);}
.stellarnav .menu-toggle {    padding: 15px 0;}

/*banner*/
.banner, .banner.banC {    background-position: right;}

/*購物車*/
.product_page .main_part, .product_info_page .main_part {    padding: 30px 20px;}
}

@media screen and (max-width: 600px) { 
    .footer_info ul {        grid-template-columns: 1fr;  gap: 0;  }
    .footer_info li:nth-child(1) {        border-left: none;        padding-left: 0;    }
    .banner h5 {
        padding-left: 3%;
        letter-spacing: 1px;
    }

    /*相簿*/
    .show-list {        grid-template-columns: 1fr;    }
    /*購物車*/
    .product_page .products-list, .product-wrapper {        grid-template-columns: 1fr 1fr;    }
    .contact_form li .form__label {        background: transparent;    }
}


@media screen and (max-width: 570px) { 
.stellarnav .menu-toggle {    padding: 5px 0;}
.banner.banF {    background-position: left;}
}

@media screen and (max-width: 500px) { 
.nav-brand {    margin-top: 22px;}
.box_search input[type=text] {
    max-width: 130px;
    padding: 7px 45px 3px 20px;
}
}

