@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=El+Messiri:wght@400..700&family=El Messiri:ital,wght@0,100..900;1,100..900&display=swap');

body{
	overflow-x:hidden;
	font-family:"El Messiri","Noto Serif TC","Noto Sans TC","Source Sans Pro","微軟正黑體","arial","sans-serif";
	font-weight: 400;
  letter-spacing: 1px;
}
/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n)

*/
.me_tp_features {display: none;}
.header_area.sticky .me_tp_features {display: inline-block;text-align: center;margin-bottom: 10px;}
.page {display: none;}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
.edit_part {padding: 0;}
.header_area{background: #faf9f8;    transition: all 0.3s ease;padding: 0;}
.pageIndex  .header_area{background: #fff;position: sticky;}
.header_area .sticky { position:fixed;background: #faf9f8;}
.main_header_area {background: #fff;}
/*首頁+聯絡按鈕*/
.header_area.sticky .navigation {grid-template-rows: unset;transition: all 0.3s ease;background: #fff;}
.swiper-pagination {left: 50%;margin-left: 0;transform: translate(-50% , 0);}
.stellarnav > ul > li > a:hover b {color: #6c7250;}

/*預設解除背景輪播*/
#content_main { margin:0;}
.bannerindex { position:static; height:auto;}
.swiper-banner { position:static; margin:0; height:auto;}
.swiper-slide img { height:auto;}
.swiper-banner .swiper-slide img {
    width: 100%;
    height: auto;}

@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0;}}

/*bannerindex/＝＝＝＝＝*/
.swiper-banner .swiper-slide img {animation: none;}
.bannerindex { position:sticky; height:auto;}/*custom原本有寫*/
.bannerindex .swiper-banner { position:static; margin:0; height:auto;}/*custom原本有寫*/
.bannerindex .swiper-slide img { height:auto;}/*custom原本有寫*/
.bannerindex .swiper-slide {position: relative;}/*因為偽元素，所以要加的*/
.bannerindex .swiper-slide:before ,.bannerindex .swiper-slide:after { content: ""; position: absolute;  z-index: 999; pointer-events:none;}

.bannerindex .swiper-slide:nth-child(1)::after {
    background: url(https://pic03.eapple.com.tw/minerva/banner-01.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100% !important;
    background-position: left;
    padding-bottom: calc(100% / 1* 0.43);
mix-blend-mode: multiply;}

    .bannerindex .swiper-slide:nth-child(1):before{
    content: "";
    display: block;
    position: absolute;
    top: 5%;
    background: url(https://pic03.eapple.com.tw/minerva/banner-03.png);
    width: 100%;
    max-width: 80%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10000;mix-blend-mode: multiply;
    animation: swiff 15s infinite cubic-bezier(0.65, 0.01, 0.28, 0.94);    opacity: 0.3;
}

@keyframes swiff {
    0%,100%{
        transform: scale(1.2) rotateZ(0deg) translate(0px,0);
    }
    50%{
        transform: scale(1.3) rotateZ(2deg) translate(-100px,0);
    }

}

.bannerindex .swiper-slide:nth-child(2):before {
    background: url(https://pic03.eapple.com.tw/minerva/banner-02.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100% !important;
    background-position: left;
    padding-bottom: calc(100% / 1* 0.43);}


.bannerindex .swiper-slide.swiper-slide-active:nth-child(1)::after {animation:fade-in-elegant  2.5s ease-in-out both;}
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2):before {animation:fade-in-elegant  2.5s ease-in-out both;}
/*上升特效*/
@keyframes slide-top {
    0% {-webkit-transform: translateY(100%);  /* 一開始的位置 在Y-100(最下方)*/
              transform: translateY(100%);
              opacity:0;/*透明度0*/}
    100% {-webkit-transform: translateY(0);/* 跑到最後終止的位置 在Y-0(最上方)*/
              transform: translateY(0);
              opacity:1;/*透明度顯示*/}
    }
  
    @keyframes fade-in-elegant {
      0% {
          opacity: 0;
          transform: translateY(20px); /* 從下方滑入 */
      }
      100% {
          opacity: 1;
          transform: translateY(0); /* 最終位置 */
      }
  }
  
  @keyframes slide-fade-in {
      0% {
          opacity: 0;
          transform: translateX(-20px); /* 從左側滑入 */
      }
      100% {
          opacity: 1;
          transform: translateX(0);
      }
  }
  @-webkit-keyframes fade-in-bck {
      0% {
        -webkit-transform: translateZ(150px);
                transform: translateZ(150px);
        opacity: 0;
      }
      100% {
        -webkit-transform: translateZ(0);
                transform: translateZ(0);
        opacity: 1;
      }
    }
    @keyframes fade-in-bck {
      0% {
        -webkit-transform: translateZ(150px);
                transform: translateZ(150px);
        opacity: 0;
      }
      100% {
        -webkit-transform: translateZ(0);
                transform: translateZ(0);
        opacity: 1;
      }
    }

@media screen and (max-width: 1600px) {
    .bannerindex .swiper-slide:nth-child(2):before {
    top: -5%;
    }}

@media screen and (max-width: 1500px) {
    .bannerindex .swiper-slide:nth-child(2):before {width: 80%;top: -10%;}
.navigation {max-width: 1200px;}

}

@media screen and (max-width: 1024px) {.bannerindex .swiper-slide:nth-child(2):before {width:100%;top: 0%;}}


    @media screen and (max-width: 768px) {
      .bannerindex {
          padding-bottom: 0%;
      }}
.bannerindex .swiper-pagination, .stellarnav li.has-sub > a:after {display: none;}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

.footer_menu a:last-child {display: none;}

.page li {color: #9999;}
/*選單設定*/
.stellarnav ul ul {width: 200px;}
.nav-menu {    margin: 0;}
.main_header_area .container { max-width: 100%;transition: all 0.3s ease;}
.nav-menu>li:not(.tp_links) { padding-right: 15px;}
.nav-menu>li:hover>a, .nav-menu>li.active>a, .nav-menu>li.focus>a {    color: #757575;}
.nav-dropdown>li:hover>a, .nav-dropdown>li.focus>a {    color: #757575;}
.nav-dropdown>li { text-align: center;}
.tp_links{ display: none;}
.stellarnav > ul > li.has-sub > a {padding-right: 0;}
.navigation {
    width: 100%;
    position: relative;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 100px 1fr;
    grid-gap: 0 20px;
    justify-items: center;
    transition: all 0.3s ease;}

.stellarnav ul {
    background: #fff;
    text-align: center;
    transition: all 0.3s ease;}

.nav-header {max-width: 240px;text-align: center;}

.stellarnav > ul > li > a {
    width: 150px;
    border-right: 1px #ddd solid;
    letter-spacing: 2px;
    padding: 0 ;
    color: #777;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 40px;
    height: 26px;
    margin: 0 ;
    overflow: hidden;
    cursor: pointer;
    text-align: center;}

.stellarnav li.has-sub > a:after {border-top: 6px solid #fff;}
.stellarnav ul ul {background: #00000063;}
.stellarnav li li a {
    padding: 10px 10px;
    display: block;
    color: #fff;
    transition: all 0.3s;}

.stellarnav li li {font-size: 14px;border: 0.5px #777 solid;margin-bottom: -1px;}
.stellarnav li li a::before {
    content: '';
    display: inline-block;
    width: 0px;
    height: 0px;
    margin: 5px;
    border-radius: 3px;
    background-color: #fff;
    vertical-align: middle;
    opacity: 0;
    transition: all 0.3s;}

.stellarnav li li a:hover:before {
    display: inline-block;
    width: 3px;
    height: 3px;
    margin: 5px;
    border-radius: 3px;
    background-color: #fff;
    opacity: 1;
    transition: all 0.3s;}

/*下拉*/
.nav-dropdown>li>a {background: #f7f5f5;transition: 0.2s;letter-spacing: 1.5px; width: 100%;}
.nav-dropdown>li>a:hover {transition: 0.2s;background-color: #757575;color: #fff}
.nav-dropdown>li:hover>a .submenu-indicator-chevron, .nav-dropdown>.focus>a .submenu-indicator-chevron {border-color: transparent #fff #fff transparent;}


.promotion_title { display: none;}
.other_promotion { display: none;}


/*LOGO設定*/
.nav-brand img {
    max-width: 150px;
    transition: all 0.3s;} 
    
.footer_logo img {    
    width: 0px;    
    display: none;}

.footer_logo a {
    display: block;
    width: 200px;
    height: 100px;
    margin: 0px auto;
    background-image: url(https://pic03.eapple.com.tw/chengedesign/logo-01.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;}

.nav-brand {display: inline-block;width: 240px;}
.sticky .nav-brand img{transition: all 0.3s;}
.footer_logo {display: none;}


/*Footer*/

.copy {
    padding: 10px 0;
    background: #6c7250;
    color: #ffffff;}

.copy a{color: #ffffff;}
.footer_menu a:hover {
    background: none;
    color: #6c7250;
    font-weight: 500;}

.footer_menu a {    
    display: inline-block;
    padding: 5px 7px 5px 15px;
    border: none;
    margin: 0px 4px 4px 0px;
    font-size: 14px;
    line-height: 100%;
    color: #777;
    background: none;
    border-left: 1px #ccc solid;
    transition: all 0.3s;}

.footer .fix_ri a{transition: all 0.3s;}
.box_link{display: none;}
.footer {background: #eee3cd;border-top: 1px solid #E4E4E4;}
.footer_info ul { display: inline-block;vertical-align: top;width: 100%;}
.footer_info li { display: block; padding: 10px 0 10px 0;}
.footer_info li p {color: #777;font-weight: 400;}
.footer_info li p a {color: #777;}
.footer .center {position: relative;max-width: 90%;}
.footer .center {
    position: relative;
    max-width: 90%;
    padding: 30px 0 80px;}

.footer_info {
    padding: 0;
    display: flex;
    grid-gap: 20px;
    padding-right: 0;
    flex-wrap: wrap;}

.footer_info li:nth-child(2) {
    position: absolute;
    right: 0;
    top: 14px;}

.footer_menu a:nth-child(1) {display: none;}
.footer_menu a:nth-child(2) {border: none;}

@media screen and (max-width: 1100px) {
.footer_info li:nth-child(2) {
    position: relative;
    }
    .footer_menu a:nth-child(2) {
        border-left: 1px #ccc solid;
    }
    }

/*BANNER設定*/
.path {display: none;}
.banner.banB{display: none;}
.banner.banA{display: none;}

/*----------*/
.banner.banC h5::after{content: "CONTACT";}
.banner.banblog h5::after{content: "NEWS";}
.banner.banA h5::after{content: "MENU";}
.banner.banF h5::after{content: "PRODUCTS";}
.banner {
    background-image: url(https://pic03.eapple.com.tw/minerva/banner-01.jpg );
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center ;
    position: relative;
    background-position:center;
    background-repeat: no-repeat;}

  .banner h5 {
    color: #fff;
    font-weight: 400;
    position: absolute;
    top: 75%;
    left: 5%;
    font-size: 30px;
    letter-spacing: .3em;
    padding: 10px 0;
    display: flex;
    justify-content: left;
    align-items: flex-start;
    flex-direction: column-reverse;}
  
  .banner h5::after {
    content: "";
    display: block;
    font-size: 16px;
    color: #fff;
    letter-spacing: .2em;
    padding-bottom: 5px;}
  


  @media screen and (max-width: 670px) {
  .banner h5 {font-size: 30px;}}




/*首頁相簿設定*/
.i_album_list {grid-template-columns: repeat(3, 1fr);}
.module_i_album {padding: 90px 20px;}
.animated-arrow {background: none; height: 45px;color: #6c7250;width: unset;}
.i_album_b a:hover i.fa-solid.fa-arrow-right {margin: 0 0 0 40px;}
.i_album_b {justify-content: flex-end;}



/*相簿設定*/
.album_class_page .main_part {
    width: 100%;
    max-width: 95%;
    margin: auto;
    padding: 0;
    padding: 100px 0 150px;}

.album_info_page .main_part {
    width: 100%;
    max-width: 95%;
    margin: auto;
    padding: 0;
    padding: 100px 0 100px;}

.subalbum-menu h2 {display: none;}

.show-list .show_pic {
    vertical-align: top;
    padding: 3.5%;
    border-radius: 0;
    border-right: 1px #55555542 solid;
    border-bottom: 1px #55555542 solid;
    transition: all 0.5s;}

.pic-list .show_pic {
  vertical-align: top;
    padding: 3.5%;
    border-radius: 0;
    border-bottom: 1px #55555542 solid;
    border-right: 1px #55555542 solid;
    transition: all 0.5s;}

.show_content {margin: 0;padding: 0;}
.pic-list .item h6 {display: none;}
.show-list {border-top: 1px #55555542 solid;
  border-left: 1px #55555542 solid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 0;}

.pic-list {border-top: 1px #55555542 solid;
  border-left: 1px #55555542 solid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 0;}

.show-list .item:hover .show_name {color: #fff;}
.show-list .show_pic img {filter: brightness(0.8);}
.show-list .show_pic img:hover {filter: brightness(1.0);}
.album_page .page {display: none;}

.subalbum-menu {margin: 0;padding: 0;}
.subalbum-menu h2 {display: none;}

.other_subalbum li a p{
  position: absolute;
    top: 50%;
    bottom: 50%;
    right: 50%;
    left: 50%;
    width: 100%;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 10px;
    color: #fff;
    text-align: center;
    margin: 0;
    transition: all ease-in .3s;
    opacity: 1;
    transform: translate(-50%, -50%);}

.overlay {background:none;}
.other_album_choice {display: none;}
.other_album {display: none;}
.album_class_page .page {display: none;}

.show-list .show_pic img:hover{
    transform: scale(1.02);
    filter: grayscale(0);
    transition: all 0.5s;}

@media screen and (max-width: 1024px) {
.show-list {grid-template-columns: 1fr 1fr;}
.pic-list {grid-template-columns: 1fr 1fr;}}

@media screen and (max-width: 600px) {
.show-list {grid-template-columns: 1fr;}
.pic-list {grid-template-columns: 1fr;}
.i_album_list { grid-template-columns: repeat(1, 1fr) !important;}
.i_album_b {margin-top: 0;}
.animated-arrow {margin-top: 0;}
}


/*文章設定*/
.blog_page #content {background: #F2EEE3;}
.subbox_item a {grid-template-columns: 1fr;}

.blog_back a.article_main_header_area_back {background: #02642F;}

.blog_le .accordion>li:hover,
.blog_le .accordion>li.on_this_category {background: transparent !important;}

.share_page .edit {
    text-align: justify;
    line-height: 180%;}

.subbox_item a:before,
.subbox_item a:after {transition: 0.3s;}

.blog_le .accordion>li {
    width: 100%;
    position: relative;
    text-align: center;
    transition: all 0.3s;}

.blog_box_edit {line-height: 180%;font-family: "微軟正黑體";}

h4.blog_category_title {color: #333;}

.link a {
    width: 100%;
    display: block;
    padding: 15px 10px;}

.accordion li .link { padding: 0;}

.blog_page .main_part {
    width: 100%;
    max-width: 60%;
    margin: auto;
    padding: 0px;}

/* ===== */
.blog_box {
    margin-top: 70px;
    min-height: 20vw;
    padding: 0px;
    display: flex;
    flex-direction: column;}

.blog_le {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;justify-content: space-around;}

h5.blog_le_t {
    display: none;
    font-size: 24px;
    font-weight: 500;
    color: #9d8164;
    font-family: serif;
    letter-spacing: 2px;
    margin-bottom: 80px;
    width: auto;
    font-family: 'Noto Serif TC', 'Zen Maru Gothic', sans-serif, arial;}

.blog_search {
    width: 90%;
    position: relative;
    margin-bottom: 60px;
    display: flex;
    justify-content: flex-end;}

.blog_search form {position: relative;}

.blog_le .accordion {
    list-style-type: none;
    margin: auto;
    border-radius: 0;
    border: none;
    overflow: visible;
    width: 95%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-around;}

.accordion li .link a {
    font-size: 16px;
    color: #333;
    font-weight: 400;
    padding: 5px 10px;
    transition: all 0.3s;}

.blog_le .accordion>li:hover .link a,
.blog_le .accordion>li.on_this_category .link a {
    color: #333 !important;
    transition: all 0.3s;}

input[type="search"]::placeholder {color: #333;}

.accordion li::before {
    content: "";
    display: block;
    background-color: #6c7250;
    height: 1.5px;
    width: 0%;
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s;}

.accordion li:hover:before,
.blog_le .accordion>li.on_this_category::before {
    width: 95%;
    transition: all 0.5s;}

.blog_search input[type=search] {border-radius: 0;}

.blog_search input[type=submit] {
    outline: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 999;
    width: 38px;
    height: 38px;
    background: url(https://pic03.eapple.com.tw/purplebeauty/search_icon.svg) no-repeat;
    border: none;
    background-size: 20px;
    filter: brightness(100);
    background-position: center;
    transition: all 0.3s ease-in-out;}

.blog_search input[type="submit"]:hover {
    transition: all 0.3s ease-in-out;
    transform: translateY(-5px);}

.blog_search input[type=search] {color: #333;}
.blog_search input[type=search]:focus {color: #333;}
.blog_page .main_part {max-width: 1440px;}
.blog_list_le,.blog_list_ri {width: 100%;}
.accordion li+li .link {border-top: none;}
.subbox_item {
    width: calc(100% / 3);
    padding: 0px;}
.articel_mainPic img {display: none;}
.blog_shareData {justify-content: flex-end;}
h4.blog_category_title {margin-bottom: 0;font-size: 24px;color: #222;font-weight: 500;letter-spacing: 5px;}
.blog_ri {padding: 0;} 
.blog_back a.article_btn_prev,.blog_back a.article_btn_next,.blog_back a.article_btn_back {
    background: none;
    color: #333;
    letter-spacing: 1px;}
.blog_back a {width: auto;}
    
.blog_back {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;}
    
.blog_back:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: #00000017;
    bottom: 56px;} 

@media screen and (max-width: 1024px) {
    .subbox_item {
        width: 50%;
    }}

@media screen and (max-width: 600px) {
    .subbox_item {
        width: 100%;
    }}


/* --- */
.blog_ri {
    width: 100%;
    max-width: 1200px;
    margin: auto;}

.subbox_item {
    width: 100%;
    position: relative;
    border-bottom: 0.3px #ffffff31 solid;
    display: flex;
    flex-direction: row;
    align-items: center;}

.subbox_item::before,
.subbox_item::after {
    content: "";
    display: inline-block;
    width: 0.5px;
    background-color: #ffffff31;
    height: 85%;
    vertical-align: middle;
    opacity: 1;
    transition: all 0.3s;}

.subbox_item:hover:before,
.subbox_item:hover:after {
    opacity: 0;
    transition: all 0.3s;}

.subbox_item a:before {
    right: 30px;
    opacity: 1;
    font-size: 15px;}

.subbox_item a:after {
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    background: #ffffff5c;
    opacity: 0;
    transition: all .5s;
border: none;}

.subbox_item a {padding: 10%;width: 100%;}

.blog_list_ri h5 {
    -webkit-line-clamp: 2;
    font-weight: 500;
    font-size: 20px;
    color: #333;
    font-family: 'Noto Serif SC', 'Noto Serif TC';}

.blog_list_le img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    aspect-ratio: 9 / 9;
    object-fit: contain;
    background: #3E3047;}

.blog_list_ri em {color: #444;}
.blog_list_ri p {color: #444;}
.subbox_item a:before {color: #eae2d7;}
.blog_back {margin-top: 80px;}
.blog_shareData {justify-content: flex-end;}
.articel_mainPic img {display: none;}

@media screen and (max-width: 1440px) {
    .blog_page .main_part {
        max-width: 80%;
    }

}
@media screen and (max-width: 768px) {
    .stellarnav > ul > li > a { border-right: none;width:unset;}
    .stellarnav li li a { color: #777;}
    .stellarnav li li {border: none;border-bottom: 1px solid #f0f0f0;}
.blog_le {
    display: none;}
    }
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
.subalbum-menu h2 {display: none;}
.subalbum-menu {padding: 0;}
.other_album {text-align: right;}

.other_select_page .promotion_title h2 {display: none;}
.other_select_page .other_promotion {display: none;}
.other_promotion {grid-template-columns: 1fr; grid-gap: 10px;}
.other_promotion li a{ background:none;}
.other_promotion li a{
    display: flex;
    padding: 10px;
    margin: 0;
    position: relative;
    height: 100%;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;}
.other_promotion .pmtTitle h3 {
    padding: 5px 10px;
    background: #eae2d7;
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 25px;}
.other_promotion li a:before {display: none;}
.other_promotion li a:after{display: none;}
.other_promotion li a {border: none;}
.other_promotion li {border-bottom: 1px #cdcdcd dashed;}


/*購物車設定*/
.product_info_page #content {background: #F2EEE3;}
.product_page .main_part {
    width: 90%;
    max-width: 1440px;
    margin: auto;
    padding: 100px 0px;
    text-align: center;}

.inquiry_a3 {background: #d8bb99;}
/* 選單 */
.product-layer-two {display: flex;justify-content: center;}
.products-list .price .sp_price { text-align: left;}

.product-layer-two li:hover:before {
    bottom:  inherit;
    top:  0;
    height: 100%;
    transition: all 0.5s;}

.product-layer-two li a {
    color: #808080;
    border: 0;
    padding: 0;
    background: transparent;
    text-wrap: nowrap;
    transition: all 0.3s;}

.product-layer-two li:hover > a { 
    background: transparent;    
    color: #6c7250;}

.product_page .show_content {
    margin: auto;
    padding: 0;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    flex-wrap: nowrap;}

.product-layer-two li.active > a {font-weight: normal;border:none;}

.products-list .price b {
    color: #6c7250;
    font-size: 16px;
    width: calc(50% - 10px);}
.products-list .price b.ori_price{color: #6c7250ab;text-align: right;}



/* 內容 */
.products-list .more {display: none;}

.products-list .item a:hover .more {    background: #6c7250;    border-color: #6c7250;	color: #ffffff;}
.products-list {grid-template-columns: 1fr 1fr;}

.clearfix:before, .clearfix:after {content: " ";display: none;}
.products-list .price b:first-child:last-child {display: none;}
.products-list .pic { aspect-ratio: unset;}
.products-list .item a:hover img {transform: scale(1.05);transition: all 0.5s;}

.products-list .name {padding: 1% 5% 8%;}

.products-list .name::before {
    content: "";
    text-align: center;
    display: block;
    width: 100%;
    height: 1px;
    background-color: #808080;
    margin: 10px 0;}

.products-list .item a:hover .pic{transition: all 0.5s;}

/*內液*/
.product_info_page .main_part {
    width: 100%;
    max-width: 1440px;
    margin: auto;
    padding: 100px 0px;text-align: center;}

.lastPage {background: #6c7250;padding: 5px 20px;width: 200px;}
.nextaction {    background-color: #c1b09c;}
.lastaction {    color: #fff;    background-color: #c1b09c;}

.bx-wrapper .bx-viewport {
    border: none;
    left: 0px;
    background: transparent;}

.product_pic #bx-pager a {border: none;}

.product_info_page .product-layer-two {
    margin: 0;
    display: flex;
    flex-direction: row;
    width: 100%;
    text-align: center;
    justify-content: center;}

.sidebarBtn h2 {letter-spacing: 5px;color: #333;}

.product_info li span {color: #808080;}
#bx-pager h6{display: none;}

ul.prod li h3.prod-thumb {
    background: transparent;
    color: #6c7250;
    padding: 0;
    text-align: left;}

.inquiry_a1 {background: #33373a;}
.inquiry_a2 {background: #6c7250;}

ul.prod li h3.prod-thumb::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #6c7250;
    margin: 10px 0;}

ul.prod {
    list-style: none;
    display: block;
    width: 100%;}

ul.prod li .prod-panel {color: #808080;text-align: left;}
ul.prod li {margin-bottom: 40px;color: #808080;}
.toShare { border-top: 1px solid #6c7250;}
.pd_tabTitle {font-size: 40px;color: #666666;display: none;}
/*#prod_thumbSwiper .swiper-slide:nth-child(n+6) {display: none;}*/
.proImgSwiper img {width: 100%;}
.pd_tabTitle li {border-bottom: none;}
.proImgSwiper {aspect-ratio: unset;}
/*  */
.half_box {
    width: 100%;
    float: left;
    padding-right: 0px;}

ul.prod li span{color: #808080;}

.qaform .breakF {
    border: 1px #808080 solid;
    background: #00000061;
    color: #fff;}

.half_box li.btn_blankTop {
    margin-top: 0;
    display: flex;
    justify-content: space-between;}

.productBtn{
    text-align: center;
    width: 40%;
    background-color: transparent;
    background-image: none;
    margin-top: 10px;
    padding-left: 0;
    border: 1px #808080 solid !important;
    color: #808080;
    transition: all 0.5s;}

.productBtn:hover{ background-color: #00000071;transition: all 0.5s;}

/*  */
.prod_related { background: #ffffff;padding: 90px 15px 40px;}
.prod_related h6 span:before {letter-spacing: 5px;font-weight: 500;}

.related_list li a {
    display: block;
    padding: 5%;
        background: #eee3cd63;}

.related_list li a p {
    font-size: 15px;
    margin: 10px 0;letter-spacing: 3px;}

.related_list li{transition: all 0.5s;}
.related_list li:hover{transform: scale(1.05);transition: all 0.5s;}
.mobile_product_name {display: none;}
.product_menu_list {width: 100%;margin-bottom: 40px;}
.product_main {position: relative;}
.prod_tabs {margin-top: 0;}
.pd_tabTitle li.activeTab::after {display: none;}
.pd_tabTitle li.activeTab a {display: none;}
.prod-panel { width: 100%; max-width: 1000px;margin: auto;}
.product_info_page .edit img {width: 100%; max-width: 850px;}
.pd_tabInner_contain {text-align: center;}

.product-layer-two li {margin: 0 20px; width: 120px;}
.product-layer-two li a:hover:before {width: 100%;}
.product-layer-two li a:before {
    content: "";
    left: 0;
    width: 0;
    transition: all 0.3s;
    height: 1px;
    position: absolute;
    background: #6c7250;
    top: 34px;}

    .products-list .pic img {
    max-width: 100% !important;
    min-width: 100%;
    height: 300px !important;
    max-height: 300px !important;
    object-fit: cover;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    display: inline-block;
}

@media screen and (max-width: 1440px) {
    .product_main {left: 100px;}}

@media screen and (max-width: 1024px) {
  .products-list {grid-template-columns: 1fr;}

    }




@media screen and (max-width: 768px) {
  .product_page .main_part {padding: 0;}
    .product-layer-two {
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        width: 100%;
        margin-right: 0;
        justify-content: space-between;
        align-items: flex-end;}
    .product-layer-two li {width: calc(100% / 3);}
    .product-layer-two li a {text-wrap: pretty;word-break: keep-all;}
    .product-layer-two li:hover > a {padding-left: 20px;}
    .products-list {
        width: 100%;
        padding: 20px 0;
        margin-top: 30px;}
    .product_info_page .product-layer-two {display: none;}
    .product-wrapper {left: 0px;}
    .product_info_page .show_content {width: 100%;padding: 5%;}
    .product_main { position: relative;left: 0;}
    .product_menu_list{display: none;}}

@media screen and (max-width: 500px) {
    .products-list .item {width: 100%;}
    .product_page .main_part {max-width: 85%;}
    .product-layer-two li {width: calc(100% / 2);}
    .products-list .more {font-size: 14px;}
    .products-list .item {width: 100%;}
    .products-list .item a {padding: 10%;}
    .product_info_page .main_part {
        width: 100%;
        max-width: 85%;
        margin: auto;
        padding: 50px 0px;}}

/*聯絡我們*/ 
.blank_letter {
    color: #212121;
    font-weight: 500;}
.contact_le_map a {background: #6C7250;}
.contact_form li.last blockquote, .contact_form li.last cite { border: none;}
.contact_form li.last cite {background: #6C7250;}
.contact_form li.last blockquote, .contact_form li.last cite {padding: 1px 0;}

.contact_page .main_part {
    width: 100%;
    max-width: 80%;
    margin: auto;
    padding: 100px 0;}

.blank_letter {
    display: flex;
    text-align: left;
    letter-spacing: 5px;
    align-items: flex-end;
    padding-top: 0;}

.blank_letter.i {
    display: flex;
    text-align: left;
    letter-spacing: 5px;
    align-items: flex-end;}

.list_before.info li {
    display: flex;
    margin: 10px 0;
    padding-left: 0;
    letter-spacing: 0.1em;}

.contact_form li .form__label {
    display: inline-block;
    width: 100%;
    text-align: left;
    margin-left: 0;
    padding-right: 0;
    vertical-align: top;
    color: #727171;
    margin: 0;
    position: relative;}

.contact_content {
    margin: auto;
    padding: 0;
    max-width: 1000px;}

.contact_content form {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;}

.contact_content .information_left {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 120px;}

.contact_content .information_right {
    width: 100%;
    padding: 0;
    background: transparent;}

.clearfix:before,.clearfix:after {display: none;}
.contact_form {
    display: flex;
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 15px;
    color: #fff;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;}

.contact_form li input.noborder {
    border: 0;
    border-bottom: 1px #ddd solid;
    background-color: transparent;
    padding: 10px 0;}

.contact_form li textarea.noborder {border: 1px #ddd solid;background-color: #ffffff1f;}
.contact_form li {
    width: calc(100% / 2 - 30px);
    padding: 0;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: flex-start;
    position: relative;}

.contact_form li .form__insert {text-align: center;}
.contact_form li:nth-last-of-type(2) {
    padding: 0;
    padding-left: 0;
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    margin: 20px 0 10px;}

.contact_form li:nth-last-of-type(2) .form__label {
    width: fit-content;
    margin: 0;
    margin-right: 20px;}

.contact_form li:nth-last-of-type(2) .form__insert {width: auto;}
.red {color: #4ad3c2;letter-spacing: 0;}
.blank_letter.f span {margin-left: 20px;}
.contact_form li.last {
    display: flex;
    width: 100%;
    text-align: center;
    margin-top: 50px;
    padding-left: 0;
    flex-direction: row;
    justify-content: center;}

.info_TEL:before,
.info_TEL2:before,
.info_PHONE:before,
.info_LINE:before,
.info_FAX:before,
.info_TAXID:before,
.info_MAIL:before,
.info_ADD:before,
.info_ADD2:before {
    position: relative;
    font-weight: 200;
    letter-spacing: 2px;
    margin-right: 20px;}

.list_before { display: flex; flex-direction: column;}
.contact_le_nomap {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;}

@media screen and (max-width: 768px) {
    .contact_content form {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        align-items: flex-start;}
        .contact_le_nomap {position: static;}
    .contact_form li {width: 100%;}

    .contact_content .information_left {width: 100%;}
    .contact_content .information_right { width: 100%;}}

.accordion li+li .link {border: 0;}