@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200;300;400;500;600;700;900&display=swap');
@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/

/*顏色
#FFF
#f7f7f7
#364f52
#538266
#dad4c8
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*↓↓↓↓↓↓↓此網站更改↓↓↓↓↓↓↓↓*/
/* = = = = = = = 字型 = = = = = = = =*/
body {
    font-family: 'Noto Serif TC', sans-serif;
    letter-spacing: 1px;
}

/* = = = = = = = 大圖滿版 = = = = = = = =*/
.swiper-banner .swiper-slide img {
    width: 100%;}



/* = = = = = = = header = = = = = = = =*/
.header_area {
	background: #fff;
	padding: 10px 10px 0;
    position: absolute;
}
.main_header_area .container {
    max-width: 1700px;}       

/*下滑header */
.header_area.sticky {
    position: fixed;
    background: rgb(255 255 255 / 100%);
    border: solid 1px rgba(255, 255, 255, 0.1);
}

/*logo*/
.nav-header {max-width: 320px; transition: 0.6s;}
.navigation {grid-template-columns: 300px 1fr;}
.nav-brand img {    padding: 5px 0;}
.header_area.sticky .nav-header {
    max-width: 250px;
    transition: 0.6s;
}

/*小icon隱藏*/
.tp_links {
    display: none;
}

/*購物車*/
.shop_search_btn {
    background: #013d3b;
}
.box_search input[type=text] {border: solid 1px #f4f1ea;}
.me_tp_features a {color: #fff;}

/*按鈕*/
.stellarnav > ul > li > a {
	font-size: 15px;
	color: #000;
	transition: 0.7s;
}
.stellarnav > ul > li > a:hover {
    color: #375F30;
    transition: 0.7s;
}
.stellarnav > ul > li > a b {font-weight: 600;}
.stellarnav li.has-sub > a:after {border-top: 6px solid #d5d5d5;}
.stellarnav > ul > li > a b:nth-child(2) {
    font-size: 13px;
}
.header_area.sticky .stellarnav > ul > li > a {
    color: #444444;transition: 0.7s;text-shadow: 0px 0px 0px BLACK;
}
.header_area.sticky .me_tp_features a {
    color: #444;
}
.header_area.sticky .nav-brand img {
 }
.header_area.sticky .stellarnav li.has-sub > a:after {
    border-top: 6px solid #ababab;
}





/*按鈕下拉*/
.stellarnav li a {
	font-size: 14px;
	color: #fff;
}
.stellarnav li li {
	border: none;
    background-color: rgb(35 63 57 / 50%);
    -webkit-backdrop-filter: saturate(180%) blur(5px);
    backdrop-filter: saturate(180%) blur(5px);
    transition: opacity .2s;
}
.stellarnav li li:hover {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}
.stellarnav ul ul {background: #ffffff00;}
.header_area.sticky .stellarnav li a {color: #FFF;}

/* =============== 開場動畫 =============== */
.pageIndex .bannerindex::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: transparent;
    -webkit-backdrop-filter: grayscale(0) blur(0px);
    backdrop-filter: grayscale(0) blur(0px);
    z-index: 999999;
    animation: action-bg 2.5s cubic-bezier(0.80, 0.08, 0.11, 0.5) forwards;
    pointer-events: none;
}

.pageIndex.swiper-wrapper {
    transform: scale(0.8);
    animation: action-banner 2.5s cubic-bezier(0.80, 0.08, 0.11, 0.59) forwards;
}

@keyframes action-bg {
    0% { backdrop-filter: grayscale(0) blur(6px); }
    100% { backdrop-filter: grayscale(0) blur(0px); }
}

@keyframes action-banner {
    0% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* =============== LOGO與白底動畫 =============== */
@keyframes fade-bg-out {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.05);
    }
}

@keyframes logo-zoom-fade {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    20% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.05);
    }
    80% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1);
    }
}

body.pageIndex::before {
    content: '';
    pointer-events: none;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    animation: fade-bg-out 2.5s ease-out forwards;
}

body.pageIndex::after {
    content: "";
    pointer-events: none;
    display: block;
    width: 15%;
    height: 0;
    padding-bottom: 100%;
    background-image: url(https://pic03.eapple.com.tw//prelogo.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    z-index: 100000000;
    animation: logo-zoom-fade 2.5s ease-out forwards;
}

/* =============== 響應式 Logo 尺寸調整 =============== */
@media screen and (max-width: 768px) {
    body.pageIndex::after { width: 20%; }
}

@media screen and (max-width: 600px) {
    body.pageIndex::after { width: 25%; }
}

@media screen and (max-width: 450px) {
    body.pageIndex::after { width: 35%; }
}

/* 大圖特效樣式 */
#content_main {
    margin: 0;
}

.bannerindex {
    position: static;
    height: auto;
}


.swiper-slide {
    padding: 0px !important;
    position: relative;
}

.swiper-slide img {
    height: auto;
}

.swiper-pagination {
    display: none;
}


@media screen and (max-width: 768px) {
    .bannerindex {
        padding: 0;
        margin: 0;
    }

    .header_area {
        position: unset;
    }
}



/*預設解除背景輪播*/
#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;}
}
/* 通用設定 */
.pageIndex .bannerindex .swiper-slide:before,
.pageIndex .bannerindex .swiper-slide:after {
    content: "";
    position: absolute;
    z-index: 999;
    pointer-events: none;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    top: 0%;
    left: 8.5%;
    width: 100%;
    height: 100%;
    z-index: 9999;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
    /* 初始狀態：隱藏並在下方 */
    transform: translate3d(0, 100px, 0); /* 使用 translate3d 提升性能 */
    opacity: 0;
    /* 關閉預設 transition，改由 JS 或特定 class 控制 */
    transition: none;
}

/* Active 狀態 - 滑入動畫 */
/* 第一張圖 */
.pageIndex .bannerindex .swiper-slide:nth-child(1):before  {
    background-image: url(https://pic03.eapple.com.tw/0912397918/text1_1.png);
    transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.2s, 
                opacity 0.8s ease 0.2s;
    transform: translate3d(0, 0, 0);
    opacity: 1;
}
.pageIndex .bannerindex .swiper-slide:nth-child(1):after {
    background-image: url(https://pic03.eapple.com.tw/0912397918/text1_2.png);
    transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.4s, 
                opacity 0.8s ease 0.4s;
    transform: translate3d(0, 0, 0);
    opacity: 1;
}
/* 第2張圖
.pageIndex .bannerindex .swiper-slide:nth-child(2):before  {
    background-image: url(https://pic03.eapple.com.tw/0912397918/text2_1.png);
    transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.2s, 
                opacity 0.8s ease 0.2s;
    transform: translate3d(0, 0, 0);
    opacity: 1;
}
.pageIndex .bannerindex .swiper-slide:nth-child(2):after {
    background-image: url(https://pic03.eapple.com.tw/0912397918/text2_2.png);
    transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.4s, 
                opacity 0.8s ease 0.4s;
    transform: translate3d(0, 0, 0);
    opacity: 1;
} */
/* 脈動動畫 - 獨立圖層避免衝突 */
.pageIndex .bannerindex .swiper-slide-active:before,
.pageIndex .bannerindex .swiper-slide-active:after {
    animation: subtlePulse 3s ease-in-out infinite 1s;
}

/* 修正脈動動畫：僅影響 scale，絕對不改變位置 */
@keyframes subtlePulse {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(0, 0, 0) scale(1.05); }
}

/* 非 Active 狀態：強制重置 */
.pageIndex .bannerindex .swiper-slide:not(.swiper-slide-active):before,
.pageIndex .bannerindex .swiper-slide:not(.swiper-slide-active):after {
    transform: translate3d(0, 100px, 0) !important;
    opacity: 0 !important;
    animation: none !important;
    transition: none !important;
}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



















/* = = = = = = = footer = = = = = = = =*/
/*footer icon按鈕隱藏*/
.box_link {display: none;}
.footer_menu a:nth-of-type(1) {display: none;}

/*footer*/
.footer {background: #538266;}
.footer_logo img {filter: brightness(10000);}
.footer_info li p, .footer_info li p a {color: #fff;}
.footer_info li {padding: 0 10px 10px;}
.footer_menu a {
    padding: 5px 10px 5px 0;
    border: 0px #354e51 solid;
    margin: 0 4px 4px 0;
    color: #c7a47a;
    background: #568267;
}
.footer_menu a:hover {
    background: #538266;
    color: #fff;
}
.copy {
    color: #40514a;
    border-top: 0px #ddd solid;
    background: #edeaea;
}
.copy a, .copy a:hover {
    color: #40514a;
}

/*footer logo*/
.footer_logo {max-width: 250px; margin-left: 10px;}

/*置頂按鈕*/
#to_top {
	color: #013d3b;
    font-weight: bold;
    background: #f4f1ea;
}
#to_top i:before, #to_top i:after {
	background: #013d3b;
}
#to_top i.top:before, #to_top i.top:after {
	width: 2px;
}

/* = = = = = = = banner = = = = = = = =*/
.path {display: none;}
.banner { background: url(https://pic03.eapple.com.tw/0912397918/ban.jpg) center top;
    background-repeat: no-repeat;
    background-size: cover;min-height: 300px;}
.banC,.banA,.banB{display: none;}
.banner h5 {
    font-size: 23px;
    color: #000;
    letter-spacing: 3px;
	padding-top:50px;
}



/* = = = = = = = 購物車 = = = = = = = =*/
/*外層*/
.products-list .price b {
    color: #364f52;display:none;}
.products-list .more {
    border: 1px solid #364f52;
    color: #364f52;
}
.products-list .item a:hover .more {
    background: #538266;}
.product-layer-two li a {
    border: 1px #538266 solid;
    background: #538266;
    color: #ffffff;
}    

/*內層*/
.sidebarBtn .sp_price {color: #bf0f0f;}
.sidebarBtn {
    padding: 25px;
    border: 0px #ddd solid;
    background: #fff;
    box-shadow: 0 0 5px #5555553b;
    border-radius: 15px;
}
.inquiry_a3 {
    background: #538266;
}
.inquiry_a1 {
    background: #568267;
}
.inquiry_a2 {
    background: #959189;
}


/*推薦*/
.prod_related {
    background: #F7F7F7;}
.prod_related h6 span:before {
    color: #013d3b;
}
.lastPage {
    color: #fff;
    background:#568267;
    border-radius: 10px;
}

/*購物車-訂購頁*/
.shopping-cart .cart_head {
    background: #005757;}
.shopping-cart .cell.product_name p {color: #555;}
.shopping-cart .cart_content .row {
    border-bottom: 1px solid #027373;
    color: #555;
}
.fa-remove:before, .fa-close:before, .fa-times:before {
    color: #555;
}
.contact_le_map a {background: #057979;}
.total_amount li {color: #555;}
.rewrite_simple {
    background: #057979 url(../images/simple_left.png) 10% center no-repeat;
}
.send_simple {
    background: #057979 url(../images/simple_right.png) 88% center no-repeat;
}

/*購物車-訂購資料*/
.form label, .formbox_form, .form label.Bigcheck {color: #555;}
.declaration {
    background: #d9d9d9;}
.border200, .total_amount li input[name=DiscountCode] {color: #555;}

/*購物車-訂購完成*/
.animated-arrow {
    background: #538266;
    border-radius: 10px;}
.order_list_tit span {
    color: #057979;
    border-bottom: 1px #057979 solid;
}
.payer {
    background: #013d3b;
}
.order_list_tab td:nth-child(1) {color: #013d3b;}
.order_list_head p {
    color: #555;
    border-bottom: 2px #057979 solid;}
.order_list_pro tr:first-child td {
    color: #555;}
.order_list_pro tr:first-child {
    background: #057979;
}  
.last_box_money p, .last_box_money em {color: #555;}


/* = = = = = = = 文管 = = = = = = = =*/
/*外層*/
h5.blog_le_t {
    font-size: 23px;
    font-family: 'Noto Serif TC', sans-serif;
    font-weight: 600;
}
h5.blog_le_t span {
    font-size: 15px;
}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {
    background: #538266 !important;
}
.subbox_item a:after {
    background: none;
    opacity: 1;
    border: none;
    border-bottom: 1px #538266 solid;
}
.subbox_item a:before {
    opacity: 1;
    font-size: 13px;
    color: #057979;
}
.subbox_item a:hover:before {
    color: #364f52;
}
.subbox_item a:hover:after {
    border-bottom: 1px #87cdba solid;
}
.subbox_item a {padding-bottom: 45px;}


/*改排版-直式*/
.blog_subbox {
    grid-template-columns: 1fr 1fr 1fr;
}
.subbox_item a {grid-template-columns: 1fr;}
/*改排版-直式結束*/


/*內層*/
.blog_back a.article_btn_prev, .blog_back a.article_btn_next {
    background: #364f52;
}
.blog_back a.article_btn_back {
    background: #538266;
}

/*相關文章*/
.news_related {
    background: #F7F7F7;}
.news_related h6 span:before {
    content: '相關消息';
    color: #013d3b;
} 


/* = = = = = = = 表單 = = = = = = = =*/   
.list_before.info li {
    padding-left: 50px;
}
.blank_letter {
    color: #364f52;
    font-family: 'Noto Serif TC', sans-serif;
}
.contact_content .information_right {
    width: calc(100% - 305px);
}
.contact_form li:has(input[type=checkbox]) .form__insert, .contact_form li:has(input[type=radio]) .form__insert {
    grid-template-columns: repeat(auto-fit, minmax(13px, 13px) minmax(200px, 1fr));
}
.contact_form li.last cite {
    background: #538266;
    color: #fff;
}

.contact_content {
   width: 90%;
}
/* = = = = = = = 相簿 = = = = = = = =*/   
.overlay {background: #013d3b5c;}
.other_album_choice li {
    background: #538266;}

/*瀑布流*/
.pic-list .show_pic {
    height: auto;
    aspect-ratio: auto;
}
.pic-list .item {
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
    padding: 0;
    margin: 0;
}
.pic-list {
    display: inline-block;
    grid-template-columns: none;
    grid-gap: 0;
    -moz-column-count: 3;
    -moz-column-gap: 10px;
    -webkit-column-count: 3;
    -webkit-column-gap: 10px;
    column-count: 3;
    column-gap: 10px;
    width: 100%;
    margin: 0 auto;
}


/* = = = = = = = page = = = = = = = =*/
.page, .page li a {color: #555;}
.page strong, .page a:hover {
    color: #fff;
    border: 1px solid #538266;
    background: #538266;
}

/* = = = = = = = 首頁文管 = = = = = = = =*/

.i_blog_ri h5 {color: #555;}
.module_i_news li a {grid-template-columns: 1fr;}
.module_i_news ul {grid-template-columns: 1fr 1fr 1fr 1fr;}
.module_i_news li {position: relative;}
.module_i_news {
    padding: 100px 20px;
    background: #F7F7F7;
}
.module_i_news .title_i_box h6 {
    font-size: 14px;
    color: #538266;
}
.module_i_news .title_i_box {
    margin-bottom: 30px;
    text-align: center;
    display: flex
;
    flex-direction: column-reverse;
    align-content: flex-start;
    flex-wrap: wrap;
    border-left: 1px solid #DAD4C8;
    padding-left: 6px;
}
.module_i_news section {
    max-width: 1400px;}

.module_i_news li a:after {border: 0px #ddd solid;}




/* = = = = = = = 暫時 = = = = = = = =*/



@media screen and (max-width: 1200px) {
/*    首文管*/
.module_i_news ul {
    grid-template-columns: 1fr 1fr;
}
.module_i_news li::before {left: -2%;}
.module_i_news li:after {right: -2%;}

}

@media screen and (max-width: 1100px) { 
/*HEADER按鈕文字*/
    .stellarnav > ul > li > a {
    font-size: 14px;}
/*文管-外層*/
.blog_subbox {
    grid-template-columns: 1fr 1fr;
}

}
@media screen and (max-width: 1024px) {
/*header*/
.nav-header, .footer_logo, .header_area.sticky .nav-header {
    max-width: 190px;}
.me_tp_features {margin: 0;}   

/*banner 
.banner h5 {margin-top: 55px;}*/

}
@media screen and (max-width: 768px) { 
/*banner*/
.banner {
    height: 200px;min-height: 200px;
}
.banner h5 {
    padding-top: 0px;
}
/*表單*/
.contact_content .information_right {
    width: 100%;
}

/*瀑布流*/
.pic-list {
    -moz-column-count: 2;
    -webkit-column-count: 2;
    column-count: 2;
}

/*HEADER寬度*/
.main_header_area .container {
    max-width: 100%;
}
/*header*/
.header_area {padding: 10px;}
.me_tp_features {display: none;}
.header_area {
        padding: 10px;
        padding-bottom: 0;
    }    
/*漢堡按鈕*/

.header_area.sticky .menu-toggle span.bars span {background: #585858;}
.header_area.sticky .menu-toggle:after {color: #585858;}
/*手機底部*/
#bottom_menu {background: #f4f1ea;}
#bottom_menu li a {color: #013c3a;}
/*側邊選單*/
.stellarnav.mobile ul {background: #364f52;}
.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {background: #364f52;}
.stellarnav .icon-close:before, .stellarnav .icon-close:after {border-bottom: solid 2px #f4f1ea;}
.stellarnav a {color: #f4f1ea;}
.stellarnav.mobile > ul > li {border-bottom: 1px #4a696d solid;}
.stellarnav > ul > li > a {color: #f4f1ea;}
.stellarnav > ul > li > a:hover {
    color: #f4f1ea;
    font-weight: 500;}
.stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul {border-right: 0px #eee solid;}
.stellarnav a.dd-toggle .icon-plus:before, .stellarnav a.dd-toggle .icon-plus:after {border-bottom: solid 2px #7ba9af;}
.stellarnav.mobile li.open {
    background: #538266;}
.stellarnav.mobile li a {
    border-bottom: 0px solid rgba(255, 255, 255, .15);
}  
.stellarnav li li {
    background-color: rgb(146 146 146 / 0%);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
} 
.header_area.sticky {backdrop-filter: none;} 
.header_area.sticky .stellarnav > ul > li > a {
    color: #f4f1ea;
}
.header_area.sticky .stellarnav li a {
    color: #fff;
}

/*首頁文館*/
.module_i_news li {border-bottom: 0px #eee solid;}

}

@media screen and (max-width: 600px) {
/*    表單*/
.contact_form li .form__label {background: rgb(84 121 111 / 7%);}

}

@media screen and (max-width: 500px) {
/*文管-外層*/
.blog_subbox {
    grid-template-columns: 1fr;
}
.module_i_news li:before, .subbox_item:before {display: none;}
.module_i_news li:after, .subbox_item:after {display: none;}

/*    首文管*/
.module_i_news ul {
    grid-template-columns: 1fr;
}
.module_i_news {
    padding: 75px 20px;
}
.module_i_news .title_i_box {
    margin-bottom: 10px;}

/*瀑布流*/
.pic-list {
    -moz-column-count: 1;
    -webkit-column-count: 1;
    column-count: 1;
}    

 }



/*↑↑↑↑↑↑↑↑此網站更改結束↑↑↑↑↑↑↑↑*/


/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/


/*上方選單右邊設定 臉書/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}
*/


/*電腦LOGO
.nav-brand {}
*/

/*手機LOGO
.nav-brand-m {}
*/

/* 商品下拉超過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個--結束 */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 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;background: #ad907a;}
.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;}
@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;grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));}
.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) {
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#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;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*一排呈現
.subbox_item { width: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;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本列表
.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 screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
/*#bottom_menu {display: block; }*/
.footer.with_shopping_mode { padding:30px 0 54px; }
#to_top { bottom:60px;}
}

@media screen and (max-width: 600px) { 
    body {font-weight: 600;}
    .module_i_news .title_i_box h4, .i_blog_ri h5,  {font-weight: 600;}
    .total_amount li b {
    font-weight: 600;
}
}



.info_fix_links {
    display: flex !important;}
.info_fix>span {display:none;}

.promotion_title h2,.contact_le_map ,.other_promotion {display:none;}
.info_fix_links a {
    background: rgb(33 53 41);}
.info_fix_links a:hover {
    background: rgb(57 119 101);}