@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n)

*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Chocolate+Classical+Sans&display=swap');

body {font-family: "Chocolate Classical Sans", sans-serif;}
.edit_part {padding: 0;}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*反白顏色*/
::-moz-selection {background-color: #444;color: #F8F7F5;}
::selection {background-color: #444;color: #F8F7F5;}

/* 頁面的麵包屑 首頁/頁面名稱/ */
.path {display: none;}

/*首頁+聯絡按鈕*/
.animated-arrow {background: #111111;}

.swiper-pagination {
    display: none;
    left: 50%;
    margin-left: 0;
    transform: translate(-50%, 0);}

/*預設解除背景輪播*/
#content_main { margin: 0;}
#content {background-color: #F8F7F5;}

.pageIndex .bannerindex {
    position: static;
    height: 0;
    background: #F8F7F5;
    height: 100vh;}

.pageIndex .swiper-banner {
    position: static;
    margin: 0;
    height: auto;}

.pageIndex .swiper-slide {background-color: #F8F7F5;height: 100vh;}

.pageIndex .swiper-banner .swiper-slide img {
    position: absolute;
    height: 100%;
    top: 0;
    right: 0;
    opacity: 1;object-fit: cover;}

@keyframes banner-up {
    0% {
        bottom: -1000px;
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    100% {
        bottom: 0;
        opacity: 1;

    }}

@keyframes line-left-in {
    0% {width: 0;}
    100% { width: 100%;}}

/* 右 */
.pageIndex .swiper-wrapper::before {
    content: "";
    display: block;
    width: 100%;
    max-width: 100%;
    height: 0.5px;
    background: #d1d1d1;
    position: absolute;
    bottom: 7.7%;
    right: 0;
    z-index: 10000;}

@keyframes line-left-in {
    0% {
        width: 0;
    }

    100% {
        width: 100%;

    }}

/* 大圖1字 */
.pageIndex .swiper-wrapper .swiper-slide:nth-child(1):after {
    content: "讓畫畫走進你的生活 \A Make Art a Part of Your Life.";
    width: fit-content;
    display: block;
    position: absolute;
    bottom: 10%;
    word-break: break-all;
    white-space: break-spaces;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 2px;
    color: #fff;
    z-index: 99999;
    opacity: 1;
    font-weight: 500;}

.pageIndex .swiper-wrapper .swiper-slide:nth-child(2):after {
    content: "用畫筆，收藏你的日常 \A Collect Your Daily Moments with Your Brush.";
    width: fit-content;
    display: block;
    position: absolute;
    bottom: 10%;
    word-break: break-all;
    white-space: break-spaces;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 2px;
    color: #fff;
    z-index: 99999;
    opacity: 1;
    font-weight: 500;}

.bannerindex .swiper-slide:nth-child(1)::after {left: 3%;}
.bannerindex .swiper-slide:nth-child(2)::after {left: 3%;}
.bannerindex .swiper-slide.swiper-slide-active:after {animation: slide-fade-in 3s 0.3s 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;
      }
    }
    
/* 開場header */
.header_area {
    opacity: 1;
    transform-origin: 100% 50%;}

@keyframes action-header {
    0% {
        opacity: 0;
        transform: scale(1, 0);
    }

    100% {
        opacity: 1;
        transform: scale(1, 1);
    }
}

/*選單設定*/
.nav-menu {margin: 0;}
.main_header_area .container {max-width: 95%;transition: all 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);}
.sticky .main_header_area .container { max-width: 95%;transition: all 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);}
.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: #474747;}

.nav-dropdown>li:hover>a,
.nav-dropdown>li.focus>a {color: #474747;}

.nav-dropdown>li {text-align: center;}

.header_area {
    width: 100%;
    padding: 0;
    background: transparent;}

.header_area.sticky {
    position: fixed;
    background: #fff;
    transition: all 0.1s;}

.stellarnav {}
.stellarnav ul {display: flex;justify-content: flex-start;}

/* 購物籃 */
.me_tp_features {order: 3;width: 55%;}
.box_search input[type=text]:hover {color: #fff;transition: all 0.3s;}
.box_search input[type=text]:focus { color: #fff;transition: all 0.3s;}

.box_search {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 0;}

.me_tp_features a {margin: 0 0;color:#a4ac86 !important;}
.me_tp_features a i {margin: 0 3px;color: #a4ac86;}
.me_tp_features a i:hover {color: #737a5d;}
/*  */

.pageIndex .header_area {display: none;position: fixed;background-color: #F8F7F5;transition: all 0.1s;}
.header_area {position: fixed;background-color: #F8F7F5;transition: all 0.1s;}
.pageIndex .header_area.sticky{display: block;transition: all 0.3s;animation: hd-ac 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) both;}
.pageIndex .header_area::before {opacity: 1;}
.header_area.sticky::before {opacity: 1;transition: all 0.3s;}

.header_area .main_header_area {
    background: #fff;
    opacity: 1;
    transition: all 0.3s;}

.header_area.sticky .main_header_area {opacity: 1;transition: all 0.3s;background: #ffffff67;}

.header_area .navigation {
    padding: 25px 0;
    display: flex;
    transition: all 0.3s;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;}

.shop_search_btn {background: #a4ac86;}


@media screen and (max-width: 1024px) {

    .header_area .navigation {transition: all 0.3s;}
    .header_area .stellarnav ul {
        text-align: center;
        transition: all 0.3s;
        justify-content: center;}

}

@media screen and (max-width: 768px) {

}

/*  */
.stellarnav>ul>li>a {
    padding: 0;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 40px;
    height: 40px;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    color: #404434;
    opacity: 1;
    font-weight: 700;
    transition: all 0.5s;}

.stellarnav>ul>li>a:hover {color: #a4ac86;transition: all 0.5s;}
.stellarnav>ul>li>a b {font-weight: 400;}

/*  */
.stellarnav li.has-sub>a:after {display: none;}

/*下拉*/
.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: #474747;;
    color: #fff}

.nav-dropdown>li:hover>a .submenu-indicator-chevron,
.nav-dropdown>.focus>a .submenu-indicator-chevron {border-color: transparent #fff #fff transparent;}

.stellarnav li li a {
    padding: 10px 0px;
    border-left: 0;
    color: #7f7f7f;
    transition: all 0.3s;}

.stellarnav li li a:hover { color: #3f3f3f; transition: all 0.3s;}
.stellarnav>ul>li:nth-child(4) ul li:nth-child(1) {display: none;}
.stellarnav ul ul { background: transparent;display: none !important;}
.stellarnav>ul>li.has-sub>a {padding-right: 0px;}

.stellarnav li li {
    display: block;
    border: 0;
    border-bottom-width: 0;}

.stellarnav>ul>li {
    text-align: center;
    margin: 0 5px;}

@media screen and (max-width: 1440px) {
    .header_area .navigation {}

    .nav-brand {
        display: inline-block;
    }

    .main_header_area .container {}

    .stellarnav>ul>li {}

    .stellarnav>ul>li:nth-of-type(3) {}

    .stellarnav>ul>li>a {
        margin: 0 5px;
    }
}


@media screen and (max-width: 1024px) {
    .header_area .navigation {
        display: flex;
        flex-direction: column;
        align-content: center;
        align-items: center;
        padding: 95px 0 0;
    }

    .stellarnav>ul>li:nth-last-of-type(1) {width: 105px;}
}



@media screen and (max-width: 768px) {

    .stellarnav.mobile {top: 19px;}

    .stellarnav .menu-toggle span.bars span {
        background: #9f747f;
        width: 15px;
        transition: all 0.3s;}

    .stellarnav .menu-toggle:after {
        content: 'MENU';
        font-size: 12px;
        color: #7f7f7f;
        display: block;
        transform: scale(0.9);
        transition: all 0.3s;
        display: none;}

    .sticky .stellarnav .menu-toggle span.bars span {background: #7f7f7f;transition: all 0.3s;}
    .sticky .stellarnav .menu-toggle:after {color: #7f7f7f;transition: all 0.3s;}
    .stellarnav>ul { text-align: center; padding: 0px 0;}
    .stellarnav.mobile.right .close-menu,
    .stellarnav.mobile.left .close-menu {
        background: transparent;
        color: #fff;
        padding: 20px 10px;
        text-align: left;
        font-size: 0;}

    .stellarnav .icon-close {
        box-sizing: border-box;
        width: 18px;
        height: 18px;}

    .stellarnav .icon-close:before {width: 100%;border-bottom: solid 2px #7f7f7f;}
    .stellarnav .icon-close:after { width: 100%;border-bottom: solid 2px #7f7f7f;}

    .stellarnav.mobile.right>ul,
    .stellarnav.mobile.left>ul {
        max-width: 100%;
        border-right: 0px #eee solid;
        background-color: #F8F7F5;}

    .stellarnav.mobile>ul>li>a {padding: 25px 10px;border: 0;}

    .stellarnav.mobile>ul>li>a b:nth-child(2) {
        font-size: 12px;
        vertical-align: bottom;
        letter-spacing: 2px;}

    .stellarnav.mobile li.open {background: transparent;}

    .stellarnav.mobile ul ul { background-color: transparent;}
    .stellarnav.mobile>ul>li {
        width: 100%;
        margin: 0;
        border: 0;}

    .stellarnav.mobile li a {border-bottom: 0; background-color: transparent;}

    .stellarnav>ul>li>ul>li>a {
        background-color: #fff;
        border: 0;
        padding: 15px 15px;
        padding-left: 25px;}

    .stellarnav>ul>li>ul>li {border: 0;background-color: #fff;}
    .stellarnav.mobile ul ul li {background-color: transparent;}
    .stellarnav.mobile li.open li.open { background: #171717e0;padding: 3px;}
    .stellarnav.mobile li li.has-sub a { padding: 10px 43px 10px 10px;border: 0;}
    .stellarnav a.dd-toggle .icon-plus:after { border-bottom: solid 3px #474747;}
    .stellarnav a.dd-toggle .icon-plus:before {border-bottom: solid 3px #474747;}

    .header_area .stellarnav>ul>li>a {
        color: #666666;
        transition: all 0.3s;
        margin: 0;
        text-align: center;}

    .stellarnav.mobile>ul>li>a.dd-toggle {display: none;}

    .header_area.sticky .stellarnav ul {
        text-align: center;
        padding: 0;
        transition: all 0.3s;}

    .stellarnav.mobile>ul {border-top: 0;}
    .stellarnav .dd-toggle {top: 17px;}
    .stellarnav a.dd-toggle .icon-plus:before {width: 15px;}
    .stellarnav a.dd-toggle .icon-plus::after {width: 15px;}
    .stellarnav.mobile>ul>li:nth-child(4) ul li:nth-child(1) {display: none;}
    .header_area.sticky .stellarnav>ul>li>a { color: #666666;transition: all 0.3s;}

    .header_area .stellarnav ul {
        text-align: center;
        padding: 0;
        transition: all 0.3s;}
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*LOGO設定*/
.nav-brand img {
    position: relative;
    top: 0px;
    max-width: 100%;
    transition: all 0.3s;}

.nav-header {mix-blend-mode: multiply;
    max-width:130px;
    position: absolute;
    z-index: 123;
    order: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);}

.nav-header img {
    width: 100%;
    opacity: 1;
    transition: all 0.5s;}

.sticky .nav-header img {
    opacity: 1;
    transition: all 1s;
    transition-delay: 1.3s;}

.header_area .nav-brand {
    display: block;
    position: relative;
    padding: 0;
    transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);}

.header_area.sticky .nav-brand {transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);}
.header_area .nav-brand img { transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);}
.header_area.sticky .nav-brand img {transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);}

@media screen and (max-width: 1400px) {
    .nav-header {transform: translate(100%, -50%);}}

@media screen and (max-width: 1024px) {
    .stellarnav { order: 3;}

    .nav-header {max-width: 55px;}
    .nav-header {transform: translate(-50%, -50%);}
    .nav-brand { width: 100px;}
    .header_area .nav-header {text-align: center;top: 48px;}
    .header_area .nav-brand {padding: 0;width: 100%;}
    .header_area.sticky .nav-header {}

    .nav-brand img {
        position: relative;
        max-width: 100%;
        z-index: 100000;
        transition: all 0.3s;}

    .header_area.sticky a.nav-brand::before {
        width: 20%;
        left: 50%;
        transform: translateX(-50%);
        transition: all 0.3s;}
    .me_tp_features {order: 1;}
    .stellarnav>ul>li>a {font-size: 14px;margin: 0 15px;}
}

@media screen and (max-width: 768px) {
    .nav-brand-m {
        display: block;
        text-align: left;
        padding: 15px 10px;}

    .nav-brand-m img {max-width: 200px; width: 100%;}
    .header_area .main_header_area {}

    .header_area .nav-brand {
        display: inline-block;
        width: 70px;
        transition: all 0.5s;}

    .header_area .navigation {
        display: flex;
        justify-content: center;}


    .header_area.sticky a.nav-brand::before { width: 160%;}
    .header_area a.nav-brand::before {display: none;}
    .header_area.sticky a.nav-brand::before {display: none;}

    .header_area .nav-header {}

    .nav-header {z-index: 0;top: -13px;}
    .header_area.sticky .nav-header {top: 50%;}
    .header_area.sticky .main_header_area {backdrop-filter: none;}
    .me_tp_features {display: none;}
    .stellarnav .menu-toggle {padding: 0;}
}


@media screen and (max-width: 500px) {
    .header_area .nav-brand {width: 100%;}
}

/* = = = footer = = = = = = = = = == = = = = = = = = = = = = = = == = = */
.footer {
    padding: 5% 0 0;
    background: #f2efe2;}
.footer .center {max-width: 1500px;}
.footer_info {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;}
p.mail {display: none;}
.footer_logo {max-width: 160px;mix-blend-mode: multiply;}
.box_link {display: none;}
.footer_info ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-top: solid 1px #737a5d;
    padding: 1% 10px 5%;
    margin-top: 20px;}

.footer_info li p, 
.footer_info li p a,
.footer_menu a { color: #404434;}
.footer_info li p {line-height: 200%;}
.footer_menu a {
    letter-spacing: 2px;
    border: 0;
    background: transparent;
    margin: 0 8px 8px 0;}

.copy, 
.copy a {color: #ffffff;}
.copy {margin-top: 0;
    background: #737a5d;
    letter-spacing: 1px;
    text-align: right;
    border: 0;}

/* hover */
.box_link a,
.box_link a:hover,
.footer_menu a,
.footer_menu a:hover,
.copy a,
.copy a:hover {transition: all .3s;}
.box_link a:hover { opacity: .7;}
.box_link a,
.box_link a:hover { transition: all .2s;}
.footer_menu a:hover {
    background: #fcb729;
    color: #ffffff;}
.copy a:hover {color: #fbcd4f;}
.footer_menu a:first-child {display: none;}

@media screen and (max-width: 920px) {
    .footer_menu {
        display: grid;
        grid-template-columns: repeat(4,1fr);}}

@media screen and (max-width: 768px) {  
}

@media screen and (max-width: 680px) {
    .footer_info ul {flex-direction: column;}}

@media screen and (max-width: 400px) {
    .footer_menu { grid-template-columns: repeat(2,1fr);}}


/*購物車設定*/
.product-wrapper {max-width: 1200px;}
.prod_part { width: 90%;}
.product_pic .swiper-slide img {width: 100%; object-fit: cover;}

.products-list .pic {
    position: relative;
    aspect-ratio: 1/1;
    height: auto;
    overflow: hidden;
    padding-bottom: 0;}

.products-list .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;}

.products-list {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr 1fr;}

.products-list:before { content: none;}
.products-list .item { width: 100%;}
.product-layer-two>li>a::before {background: #fff !important;padding-left: 10px !important;}
.product-layer-two li li a {font-size: 13px;}
.products-list .name { height: auto;}
.product_page .products-list .price {margin-top: 0;}
.products-list .price b {font-weight: 400;}
.products-list .more {display: none;}

.products-list .item a:hover .more {
    background: #343434;
    border: 1px solid #343434;
    transition: 0.5s;
    letter-spacing: 0;}

.products-list .item a:hover .pic {opacity: 0.75;transition: 0.5s;}

.product_pic #bx-pager h6 {display: none;}
.sidebarBtn {border: 1px #ddd solid;background: transparent;}

.sidebarBtn h2,
.sidebarBtn .price {
    font-size: 22px;
    font-weight: 400;
    color: #101010;}

.product_info {font-weight: 400;}

/*��厰�閖�讛𠧧*/
.inquiry_a1 {background: #808080;}
.inquiry_a2 {background: #808080;}
.inquiry_a3 {background: #9F747F;}

.lastaction {color: #1A1A1A;background-color: #f2f2f2;}
.nextaction {background-color: #1A1A1A;}

.inquiry_a1:hover,
.inquiry_a2:hover,
.inquiry_a3:hover {
    background: #222;
    color: #fff;
    transition: 0.5s;}

ul.prod li h3.prod-thumb {
    background: transparent;
    font-size: 22px;
    font-weight: 400;
    color: #101010;
    border-bottom: 1px solid #c9c9c9;
    margin-bottom: 20px;
    text-align: left;}

.qaform {
    font-size: 14px;
    font-weight: 400;
    color: #101010;}

.qaform .breakF {border: 1px #cecece solid;background: #ffffff;}

.productBtn {
    width: 100%;
    max-width: 100px;
    padding-left: 0;
    margin-right: 10px;
    font-size: 13px;
    font-weight: 400;}

.half_box li.btn_blankTop {margin-top: 180px;text-align: end;}

.lastaction,
.nextaction {background-image: none;text-align: center;}

.prod_related h6 span:before {
    font-size: 22px;
    font-weight: 400;
    color: #101010;}

.prod_related {background: transparent; border-top: 1px solid #e5e5e5;}
.lastPage {background: #9f747f;}

.related_list li a {background: transparent;}

.related_list li a p {
    font-size: 16px;
    color: #474747;
    border-bottom: 1px solid #c6c6c6;
    text-align: center;
    padding: 7px 0 0;}

.related_list {
    max-width: 1550px;
    width: 100%;
    margin: auto;
    text-align: center;
    display: grid;
    gap: 25px;
    grid-template-columns: 1fr 1fr 1fr 1fr;}

.related_list li {width: 100%;}
.related_list li a:hover img { opacity: 0.75; transition: 0.5s;}
.related_list li a:hover p { border-bottom: 1px solid #000;transition: 0.5s;}

.rewrite_simple,
.send_simple {
    background-color: #ffffff;
    border: 1px solid #bbb !important;
    border-radius: 0;
    color: #555;
    font-size: 15px;
    width: 120px;
    height: 33px;
    line-height: 31px;}

.rewrite_simple:hover,
.send_simple:hover { border: 1px solid #000 !important;transition: 0.5s;}

/*�𥲤甈暸�𡁶䰻*/
.form_content {padding: 120px 10px;}

.separate_title {
    font-size: 16px;
    color: #444;
    padding: 10px 0 10px 20px;
    background: #e5e3d9;}

.products-list .price {
    display: flex;
    margin-bottom: 5px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;}

.products-list .price b {
    margin: 0;
    line-height: 180%;
    color: #a4ac86;
    text-align: center;}

.products-list .price b.ori_price {font-size: 14px;}
.product_page .main_part {max-width: 100%;}

.product_page .show_content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-around;
    gap: 2%;}

.product_page .products-list { width: 80%;}
.product-layer-two { width: 250px; margin: 0;}
.product_info_page .product-layer-two { display: none;}
.product-layer-two li {margin: 0;width: 100%;}

.product-layer-two li i {
    right: 12px;
    top: 4px;
    color: #eed6d5;}

.product-layer-two li.active a {border: unset;border-bottom: 1px dotted #ccc;}

/**/
.product-layer-two li a {
    color: #222;
    border: none;
    background: transparent;
    transition: all 0.3s;
    line-height: 200%;
    transition: all 0.3s;
    width: 100%;
    display: block;}

.product-layer-two>li>a {
    background: #CCADAB;
    color: #ffffff;
    border-bottom: 1px solid #eed6d5;
    padding-left: 18px;}

.product-layer-two>li:hover>a { background: #9F747F;}
.product-layer-two>li.active>a {background: #9F747F;}
.product-layer-two li:hover a {transition: 0.5s;}
.product-layer-two li ul { position: relative; padding-top: 1px;}
.product-layer-two li li { border-bottom: 1px solid #ccc;background: transparent;}
.product-layer-two li li:hover a { background: #e1e0d9; color: #958E86;}
.product-layer-two li li a {background: transparent ;}
.product-layer-two li li.active a { background: #e1e0d9 !important;color: #958E86;}
.product-layer-two li li {display: block;}
.bx-wrapper img {margin: auto;}
body.product_info_page #content {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;}


.product_info li .txt_box {color: #222222;width: 100%;}
.sidebarBtn .sp_price {color: #808080;}
.mobile_product_name {font-size: 24px;}

.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;
}

.products-list .pic {aspect-ratio: unset;}
.products-list .name {padding: 1% 5%;text-align: center;}

.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 img {transform: scale(1.05);transition: all 0.5s;}
.related_list li a img {transform: scale(1.05);transition: all 0.5s;}
.pd_tabTitle li.activeTab::after {height: 1px;background: #cbcbcb;}
.product_page .page {margin: 40px 10px 40px auto;}


@media screen and (max-width: 1450px) {
.product_page .products-list { width: 70%;}}

@media screen and (max-width: 1200px) {
    .products-list {
        grid-template-columns: 1fr 1fr;
    }}

@media screen and (max-width: 950px) {
.product_page .products-list { width: 60%;}}


@media screen and (max-width: 768px) {
    .related_list {grid-template-columns: 1fr 1fr;}
    .product_page .products-list {
        width: 100%;
    }

    .product_page .show_content {
        padding-bottom: 40px;
    }
}

@media screen and (max-width: 476px) {
    .related_list {grid-template-columns: 1fr;}
    .products-list {grid-template-columns: 1fr;}
}
@media screen and (max-width: 1200px) {
    @media screen and (max-width: 980px) {
        @media screen and (max-width: 768px) {
            @media screen and (max-width: 600px) {
                .products-list .price b {
                    width: 100%;
                    text-align: center !important;
                }
            }
        }
    }
}
/*相簿設定*/
.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 #a4ac863d solid;
    border-bottom: 1px #a4ac863d solid;
    transition: all 0.5s;}

.pic-list .show_pic {
  vertical-align: top;
    padding: 3.5%;
    border-radius: 0;
    border-bottom: 1px #a4ac863d solid;
    border-right: 1px #a4ac863d solid;
    transition: all 0.5s;}

.show_content {margin: 0;padding: 0;}
.pic-list .item h6 {display: none;}
.show-list {border-top: 1px #a4ac863d solid;
  border-left: 1px #a4ac863d solid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 0;}

.pic-list {border-top: 1px #a4ac863d solid;
  border-left: 1px #a4ac863d 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;}
.other_subalbum li { background: 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) {
    .album_info_page .main_part {padding: 30px 0;}
.album_class_page .main_part {padding: 30px 0;}
.show-list {grid-template-columns: 1fr;}
.pic-list {grid-template-columns: 1fr;}}



/*首頁文章管理*/
.module_i_news li a {
    display: flex;
    flex-direction: column;}
.pageIndex .module_i_news li a:after {display: none !important;}

.module_i_news .title_i_box h4 {
  font-size: 25px;
  color: #A0757F;
  font-weight: 500;
  top: -10px;
  position: relative;}
    
.module_i_news .title_i_box h6 {
  font-size: 80px;
  color: #a4ac86;
  font-family: "Tangerine", cursive;
  font-weight: normal;}

.module_i_news_list, .module_i_news_list.swiper {padding: 0 0 30px;}
.animated-arrow {background: #A0757F;font-style: normal;font-family: "微軟正黑體";}
.module_i_news section {max-width: 1600px;}
/*文章管理/＝＝＝＝＝*/
.blog_page .main_part, .blog_in_page .main_part { max-width: 1600px;}
h4.blog_category_title { font-size: 28px; color:#9F747F;}
h4.blog_category_title span { font-size: 24px;}
h5.blog_le_t { display: none;}
.blog_le .accordion {border-radius: 0;border: none;}
.blog_ri {padding: 0 0 0 5%;}

/*文章管理/外層＝＝*/
.module_i_news { padding: 100px 20px;}
.module_i_news ul, .blog_subbox { display: grid; gap: 0;}
.module_i_news li, .subbox_item {
  width: 100%;
  position: relative;
  height: 100%;
  transition: .3s ease-in-out;}

.subbox_item a:hover img { opacity: 1;}
.subbox_item{margin-bottom: 0;}
.module_i_news li:hover, .subbox_item:hover { background-color: #eed6d53f; transition: all 0.3s ease-in-out;}
.module_i_news li:hover:before, .subbox_item:hover:before { opacity: 0;}
.module_i_news li:hover::after, .subbox_item:hover::after { opacity: 0;}
.subbox_item a {
    display: flex;
    flex-direction: column;}

.blog_subbox:hover .subbox_item { opacity: .6; transition: .3s ease-in-out;}
.blog_subbox:hover .subbox_item:hover { opacity: 1; transition: .3s ease-in-out;}

.module_i_news li:before, .subbox_item:before, .module_i_news li:after, .subbox_item:after {
  content: "";
  position: absolute;
  width: 1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 86.04%;
  background-color: #9f747fa4;
  -webkit-transition: opacity .4s linear;
  transition: opacity .4s linear;}

.module_i_news li:before, .subbox_item:before {left: 0;}
.module_i_news li:after, .subbox_item:after  {    right: 0;}


.i_blog_ri h5, .blog_list_ri h5 {
  color:#9F747F;
  font-size: 20px;
  padding-top: 7px;
  padding-bottom: 2px;
}

.blog_le .accordion > li:hover .link a, .blog_le .accordion > li.on_this_category .link a {color: #eed6d5 !important;}

.i_blog_ri p, .blog_list_ri p {font-size: 16px;}
.module_i_news li a, .subbox_item a {
  padding: 5px;
  padding: 10%;
}
.module_i_news li a:after , .subbox_item a:after { pointer-events:none;}
.module_i_news li a:before, .subbox_item a:before {
  display: none;
}
.module_i_news li a:after, .subbox_item a:after {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #9f747fa4;
  -webkit-transition: opacity .4s linear;
  transition: opacity .4s linear;
  content: "";
  opacity: 1;
  border: none;
  top: 100%;}

.i_blog_le, .i_blog_ri , .blog_list_le , .blog_list_ri { width: 100%;}
.i_blog_le , .blog_list_le{ position: relative; padding-bottom: 100%; height: 0;}/*文章縮圖長寬比例，100% →100:100 = 1:1 正方形 */

.i_blog_le img , .blog_list_le img{
display:block;
  max-width: 100%;
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  -moz-object-fit: cover;
  -ms-object-fit: cover;
  -o-object-fit: cover;
  -webkit-object-fit: cover;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
.i_blog_ri em, .blog_list_ri em {
  padding-right: 3.1em;
  font-size: 10px;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  position: absolute;
  top: 14.66%;
  left: 5%;
  color: #24231f;
  font-family: var(--SFontE);
}

/*側邊*/
.blog_le{ margin-top: 10px;}
.blog_le .accordion > li{transition:all 0.3s;}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category { background: none !important;}
.accordion li .link a { color:#9f747f !important;font-size: 16px;font-weight: 400;}
.submenu a:hover { background: #f5deb3;}
/*首*/
.module_i_news ul {
  width: 100%;
  grid-template-columns: repeat(4,1fr);
  max-width: 1600px;
}
/*功*/
.blog_subbox{grid-template-columns: repeat(3,1fr);}
.blog_subbox:before{content:none;}

/*文章內頁設定*/
.news_related { background: transparent;border-top: 1px solid #e5e5e5;}
.news_related_list li a {background: transparent;}
.news_related h6 span:before {
    font-size: 22px;
    font-weight: 400;
    color: #101010;
}

.news_related_list li a p {
    font-size: 16px;
    color: #474747;
    border-bottom: 1px solid #c6c6c6;
    text-align: center;
    padding: 7px 0 0;
}

.news_related_list {
    max-width: 1550px;
    width: 100%;
    margin: auto;
    text-align: center;
    display: grid;
    gap: 25px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.blog_box_edit * {line-height: 250%;color: #666666;font-size: 15px;}
.articel_mainPic img {display: none;}
.blog_shareData {justify-content: flex-end;}
h4.blog_category_title {
  font-size: 25px;
    letter-spacing:3px;
    margin-bottom: 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;}
   
@media screen and (max-width:1024px) {
  .blog_subbox{ grid-template-columns: repeat(2,1fr);}
}

@media screen and (max-width:768px) {
.news_related_list {grid-template-columns:1fr 1fr;}
.module_i_news ul {grid-template-columns: repeat(2, 1fr);}
.blog_ri {padding: 0 5%;}
  .blog_page .main_part, .blog_in_page .main_part { padding: 0 0 100px;}
}

@media screen and (max-width:450px) {
    .news_related_list {grid-template-columns: 1fr;}
    .module_i_news ul {grid-template-columns: repeat(1, 1fr);}
  .blog_subbox{ grid-template-columns: 1fr;}
}
