@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200..900&display=swap');

body {font-family: "Noto Serif TC", serif; }
/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n)

*/


&::-webkit-scrollbar {
    background: #fff;
    width: 7px;
}

&::-webkit-scrollbar-button {
    background: #fff;
    border-radius: 0;
}

&::-webkit-scrollbar-track-piece {
    background: #eee;
}

&::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #3a5068;
}

&::-webkit-scrollbar-track {
    box-shadow: transparent;
}

/*反白顏色*/
::-moz-selection {
    background-color: #818181;
    color: #fff;
}

::selection {
    background-color: #818181;
    color: #fff;
}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

.nav-header { opacity: 1;}

.pageIndex .nav-header { opacity: 0; animation: banner-nav-logo 0.7s forwards; animation-delay: 1s;}

@keyframes banner-nav-logo {
    0% {
        top: 87px;
        opacity: 0;
    }

    100% {
        top: 0px;
        opacity: 1;
    }
}


.pageIndex .stellarnav.desktop { opacity: 0;animation: banner-navbar 0.7s forwards;animation-delay: 1s;}
.stellarnav.desktop { opacity: 1; z-index: 0;}
.pageIndex .me_tp_features{ opacity: 0;animation: banner-navbar 0.7s forwards;animation-delay: 1s;}

@keyframes banner-navbar {
    0% {
        top: 97px;
        opacity: 0;
    }

    100% {
        top: 0px;
        opacity: 1;
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*背景*/
#content {
    min-height: 80vh;
    background: #ffffff;
    background-size: cover;
}

#content_main {
    width: 100%;
    min-height: 80vh;
    overflow: hidden;
    z-index: 60;
    position: relative;
    margin-top: 100vh;
    background: #ffffff;
    background-repeat: no-repeat;
    background-size: cover;
}

body.product_page #content {
    min-height: 80vh;
    background: #ffffff;
    background-size: cover;
}

body.blog_page #content {
    min-height: 80vh;
    background: #ffffff;
    background-size: cover;
}

#to_top {
    position: fixed;
    left: 0px;
    z-index: 600;
    width: 50px;
    height: 50px;
    padding-top: 10px;
    font-size: 12px;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    background: #212020;
    border-radius: 0%;
}

#to_top i:before, #to_top i:after {
    content: "";
    display: block;
    position: absolute;
    border-radius: 100px;
    background: #ffffff;
    transition: all 100ms ease-in-out;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
body {
    overflow-x: hidden;
}

.bannerindex-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: clip;
    z-index: 9999;
    pointer-events: none;
}

/* 動畫圖片容器 */
.bannerindex {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: bannerSlideZoomIn 1.5s ease-out forwards;
    filter: blur(20px);
    transform: translateY(100vh) scale(0.3); 
    opacity: 0;
}

/* 動畫關鍵幀 */
@keyframes bannerSlideZoomIn {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0.3);
        filter: blur(20px);
    }

    60% {
        opacity: 1;
        transform: translateY(0) scale(0.8); 
        filter: blur(6px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1); 
        filter: blur(0);
    }
}


/*大圖*/

.bannerindex .swiper-slide.swiper-slide-active:nth-child(1) {
    position: relative; 
}

.bannerindex .swiper-slide.swiper-slide-active:nth-child(1)::before {
    content: "";
    position: absolute;
    background-image: url(https://pic03.eapple.com.tw/fascialspace/banner01.png);
    width: 500px;
    height: 100px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center top;
    z-index: 10001;
    pointer-events: none;
    left: 17%;
    top: 70%;
    transform: translateX(-50%);
    opacity: 0;
     animation: slideInUp 1s ease-out 1.8s forwards, /* 向上滑入 */ glowPulse 2s ease-in-out 3s infinite;
    animation-delay: 0.8s;
  
}


@keyframes banner-appear-and-fade {
    0% {
        transform: translateX(-15%);
        opacity: 0;
    }
    70% {
        transform: translateX(0%);
        opacity: 1;
    }
    100% {
        transform: translateX(5%);
        opacity: 0;
    }
}

.bannerindex .swiper-slide.swiper-slide-active:nth-child(2) {
    position: relative;
}

.bannerindex .swiper-slide.swiper-slide-active:nth-child(2)::before {
     content: "";
    position: absolute;
    background-image: url(https://pic03.eapple.com.tw/fascialspace/banner02.png);
    width: 650px;
    height: 150px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center top;
    z-index: 10001;
    pointer-events: none;
    left: 22%;
    top: 70%;
    transform: translateX(-50%);
    opacity: 0;
     animation: slideInUp 1s ease-out 1.8s forwards, /* 向上滑入 */ glowPulse 2s ease-in-out 3s infinite;
    animation-delay: 0.2s;
}


@keyframes slideInUp {
    0% {
        transform: translate(-50%, 30px);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}


@keyframes glowPulse {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(255, 255, 255, 1));
    }
}



/* ============================== */
/* 預設不顯示動畫圖 */

.bannerindex .swiper-slide.swiper-slide-active:nth-child(1)::before{ pointer-events: none;}
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2)::before{ pointer-events: none;}
/* ============================== */
@media screen and (max-width: 1500px) {
.bannerindex .swiper-slide.swiper-slide-active:nth-child(1)::before {
         width: 400px;
        height: 100px;
        left: 25%;
        top: 60%;

}
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2)::before {

         width: 400px;
        height: 100px;
        left: 25%;
        top: 60%;

}
}
@media screen and (max-width: 1000px) {
.bannerindex .swiper-slide.swiper-slide-active:nth-child(1)::before {
         width: 300px;
        height: 100px;
        left: 32%;
        top: 60%;

}
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2)::before {

         width: 300px;
        height: 100px;
        left: 32%;
        top: 60%;

}
}
@media screen and (max-width: 768px) {
.bannerindex .swiper-slide.swiper-slide-active:nth-child(1)::before {
         width: 250px;
        height: 100px;
        left: 45%;
        top: 60%;

}
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2)::before {

         width: 300px;
        height: 100px;
        left: 45%;
        top: 60%;

}
}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*上方選單解除滑動固定
.header_area.sticky { position:relative;}*/

.pageIndex .header_area{  position: fixed; width: 100%; right: 0; top: 0;}
.header_area {background: transparent;}
.pageIndex .main_header_area{background: transparent;}
.pageIndex .header_area { border-bottom: none;}
.header_area { border-bottom: 1px solid #ffffff;}
.header_area.sticky {  background: #ffffff8c; border-bottom: 1px solid #ffffff;  
    background: #ffffff8c;
    border-bottom: 1px solid #ffffff;
    backdrop-filter: blur(10px);}
.pageIndex .header_area *{ transition: ease-in-out .35s; }
 .pageIndex .header_area:not(.sticky) .main_header_area .container{ max-width: 93%; width: 100%;}

.pageIndex .header_area:not(.sticky) .navigation{  padding: 30px 0;}
.pageIndex .header_area:not(.sticky) .stellarnav{  display: flex; justify-content: flex-end;}
.pageIndex .header_area:not(.sticky) .stellarnav>ul{ width: auto; max-width: 160px; margin-right: 0; margin-left: auto; display: flex;
  flex-direction: column; align-items: flex-end; align-content: flex-end;  justify-content: flex-start;}
.pageIndex .header_area:not(.sticky) .stellarnav li{ text-align: right;}

.pageIndex  .header_area:not(.sticky) .stellarnav li li.has-sub > a:after{ float: unset; right: unset; left: 0; right: 0;  border-left: 0;}
.pageIndex .header_area:not(.sticky) .stellarnav > ul > li > a{ text-align: right; color: #ffffff;  padding: 0 ;  line-height: 20px;  height: 40px;  margin: 0;}

.pageIndex .header_area:not(.sticky) .stellarnav > ul > li:nth-of-type(7)>a:after {  opacity: 0;}
.pageIndex .header_area:not(.sticky) .stellarnav ul ul,
.pageIndex .header_area:not(.sticky) .stellarnav ul ul ul {
  left: unset;  top: 0;  background: transparent;  position: relative;}
.pageIndex .header_area:not(.sticky) .stellarnav ul ul ul {  position: absolute;  right: 100px;}
.pageIndex .header_area:not(.sticky) .stellarnav li a {  color: #3a5068; font-size: 15px; padding-right: 17px; font-size: inherit; text-align: right; margin: 0 0 0 auto;}

.pageIndex .header_area:not(.sticky) .stellarnav li li { border: 0;}
.pageIndex .header_area:not(.sticky) .stellarnav li li:hover > a , 
.pageIndex .header_area:not(.sticky) .stellarnav li li.has-sub:hover > a { color: #ffffff;}

.pageIndex .header_area:not(.sticky) .stellarnav > ul > li:nth-last-child(1) > a { border-bottom: 0.5px #ffffff solid;}
.pageIndex .header_area:not(.sticky) .stellarnav > ul > li:nth-last-child(7) > a { border-top: 0.5px #ffffff solid;}
.main_header_area .container {max-width: 1800px; margin: auto;}
/*LOGO*/
.nav-brand {width: 220px;}
.pageIndex  .nav-brand img {  filter: contrast(0) brightness(100); }
.pageIndex .sticky .nav-brand img {  transition: all 0.3s;  filter: none; width: 40%;}
.navigation {
    width: 100%;
    position: relative;
    padding: 0;
    display: grid;
    grid-template-columns: 200px 1fr;
    grid-gap: 0 20px;
    align-items: start;
}

/*其他分頁*/

.header_area { z-index: 9999;padding: 0px;background: transparent;position: fixed;top: 0; width: 100%;}
.nav-brand img {  filter: contrast(0) brightness(100); }
.sticky .nav-brand img {  transition: all 0.3s;  filter: none; width: 40%;}


/*下拉*/
.stellarnav ul ul, .stellarnav ul ul ul { background: transparent; backdrop-filter: blur(10px);}
.pageIndex .stellarnav > ul > li.drop-left > ul { right: auto; left: 50%; transform: translateX(0%);}
.stellarnav > ul > li.drop-left > ul { right: auto; left: 50%; transform: translateX(-50%);}
.sticky .stellarnav > ul > li.drop-left > ul { right: auto; left: 50%; transform: translateX(-50%);}
.stellarnav li.drop-left ul ul { left: 100%; right: auto;}
.stellarnav li li { border: 1px solid transparent; margin-bottom: 5px; background: #eaf3fddb;}

/*第一層*/
.stellarnav > ul > li > a {padding: 0;color: #ffffff;font-weight: 600;}
.sticky .stellarnav > ul > li > a {color: #3a5068;font-weight: 600;}
.stellarnav > ul > li.has-sub > a {padding-right: 0px;}
.stellarnav > ul > li > a{width: 120px ;}
/*右拉箭頭*/
.stellarnav li.has-sub > a:after{display: none;}
.stellarnav li li.has-sub > a::after { border-left: 6px solid #3a5068;}
.stellarnav li li.has-sub:hover > a::after { border-left: 6px solid #3a5068; border-top: 6px solid transparent;}

/*下拉選單*/
.stellarnav li.has-sub > ul > li.has-sub > a, .stellarnav li.has-sub > ul > li > a { color:#3a5068; padding: 7px 20px 7px 5px; font-family: "Noto Serif TC", serif;;}
.stellarnav li li > a, .stellarnav li li.has-sub > a { color: #3a5068; font-size: 15px; font-weight: normal; padding: 7px 5px; border-left: 1px solid transparent; background: transparent; transition: all 0.3s;}
.stellarnav li li:hover > a, .stellarnav li li.has-sub:hover > a { color: #ffffff; padding-left: 10px; transition: all 0.3s;}
.stellarnav li ul:hover li, .stellarnav li ul li.has-sub ul:hover li { opacity: .8; transition: .3s ease-in-out;}
.stellarnav li ul:hover li:hover , .stellarnav li ul li.has-sub ul:hover li:hover { opacity: 1; transition: .3s ease-in-out;}
.stellarnav li ul:hover li > a, .stellarnav li ul li.has-sub ul:hover li > a { opacity: .8; transition: .3s ease-in-out;}
.stellarnav li ul:hover li:hover > a, .stellarnav li ul li.has-sub ul:hover li:hover > a { opacity: 1; transition: .3s ease-in-out;}




/*上面購物車*/
.me_tp_features a { color: #ffffff;}
.me_tp_features {width: 100%;text-align: right; padding: 0 0 10px 0;}
.sticky .me_tp_features a {color: #3a5068;}

.me_tp_features a:hover.tp_btn_cart  {color: #c5e1ff;}
.me_tp_features a:hover.tp_btn_notice  {color: #c5e1ff;}

.tp_links {display: none;}
/*產品搜尋*/
.shop_search_btn {background: #3a5068; color: #fff; font-size: 13px;border: none;border-radius: 20px;position: absolute;top: 0;right: 0; z-index: 5;padding: 4px 12px;cursor: pointer; height: 100%;}
.shop_search_btn:hover {background-color: #c5e1ff;}


 /*下拉頁面隱藏下方選單*/
 body.other_select_page .promotion_title {
    display: none;}

body.other_select_page .other_promotion { display: none;}
.path {display: none;}

body.other_select_page .page {
        margin: auto;}


/*footer = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

/*Footer/＝＝＝＝＝*/
/*換圖*/
.footer {
    background: #3a5068;
    padding: 0;
    position: relative; 
    z-index: 99; 
}


.footer_logo img {width: 0;}
    
.footer_logo {
    background: url(https://pic03.eapple.com.tw/fascialspace/footerlogo.png) no-repeat center;
    height: 100px;
    max-width: 30%;
    width: 100%;
    margin-top: 10px;
    background-size: contain;

    /* 動畫效果 */
    animation: cuteShake 1.2s infinite ease-in-out;
    transform-origin: bottom center; /* 旋轉中心點設在底部 */
}
@keyframes cuteShake {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1) rotate(3deg); }
    50% { transform: scale(1) rotate(-3deg); }
    75% { transform: scale(1) rotate(3deg); }
}


.footer_info li p {
    line-height: 175%;
    letter-spacing: 1px;
    color: #ffffff;
}
.footer a {
    color: #ffffff;
}
.footer_info{
	grid-template-columns: 1fr;
    justify-items: center;
	padding-right: 0;
	grid-gap: 10px;
	padding: 0;
}
.footer_info li:nth-child(1) {
    display: flex;
    justify-content: center;
}
.footer_info li p:before {
    margin: 0 0px 0 25px;
}
.footer_menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(84px, 100%), 1fr));
   
    max-width: 1200px;
    margin: auto;
}
.footer_menu a {
    margin: 0;
    text-align: center;
    transition: all 0.3s;
    border: 0;
    border-left: 1px solid #ffffff75;
    color: #ffffff;
    background: #312c2c00;
}
.footer_menu a:nth-last-child(1) {
    border-right: 1px solid #ffffff75 ;
}
.footer_menu a:first-child{display: none;}

.footer_menu a:hover {    background: #9dbbc95e; color: #ffffff;}

/*回首頁按鈕刪除
.footer_menu a:nth-child(1){display: none;}*/
.copy {    background: transparent;    color: #ffffff;border:none; border-top: 0.5px #ffffff59 solid;}
.copy a{    color: #ffffff;transition:all 0.3s;}
.box_link {
  display: none;
}
a.me_tp_mail {
    display: none;
}



/*上方選單右邊設定 臉書/LINE/電話/信箱
.tp_links a:before {寬高大小設定}
.tp_links a.me_tp_fb {}
.tp_links a.me_tp_fb:before {背景換圖/建議.SVG}
.tp_links a.me_tp_line {}
.tp_links a.me_tp_line:before {背景換圖/建議.SVG}
.tp_links a.me_tp_call {}
.tp_links a.me_tp_call:before {背景換圖/建議.SVG}
.tp_links a.me_tp_mail {}
.tp_links a.me_tp_mail:before {背景換圖/建議.SVG}
*/


/*電腦LOGO
.nav-brand {}
*/

/*手機LOGO
.nav-brand-m {}
*/

/*內頁BANNER 設定*/


.banner.banB {display: none;}
.banner.banA {display: none;}
.banner.banblog {}
.banner.banC {}
.banner {
    background: url(https://pic03.eapple.com.tw/fascialspace/banner.png);
    position: relative;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    flex-direction: column;
    height: 80vw;
    max-height: 550px;
    border-radius: 0 0 50px 0;}

.banner h5 {display: none;}


@media screen and (max-width: 768px) {
  .banner {
    background-attachment: scroll; /* 取消固定背景，避免手機裝置顯示異常 */
    background-size: 100% auto;   /* 背景寬度100%，高度自動調整 */
    background-position: center top; /* 確保從上方開始顯示圖片 */
    height: 55vw;                /* 讓區塊高度根據螢幕寬度調整 */
    max-height: none;            /* 取消原本的 max-height 限制 */
    border-radius: 0;            /* 若在小螢幕不需邊角弧度可視需求調整 */
  }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*頁碼*/
.path p, .path p a {
    display: none;
    text-align: right;
    line-height: 24px;
    font-size: 13px;
    color: #3d3938;
}




/*按鈕*/
.animated-arrow {
    background: #3a5068;
    color: #fff;
    display: inline-block;
    margin-top: 20px;
    height: 50px;
    line-height: 50px;
    overflow: hidden;
    width: 250px;
    text-align: center;
    position: relative;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.product_page .main_part {
    max-width: 1500px;
}
/*匯款資訊*/
.car_page .information_left {
    display: block;}
/* .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.active a {
    font-weight: bold;
    border: 0px #ccc solid;
}


.product-layer-two li:hover a {
    color: #3a5068;
    border: 0px #3a5068 solid;
    background-color: #9bb9c7;
}

.product-layer-two li li a {
    padding: 5px 10px;
    background-color: #f3f3f32b;
}

.product-layer-two li li:hover>a {
    background: #fff;
    color: #3a5068;
}

.product-layer-two>li {
    width: 100%;
    max-width: 100%;
    padding: 0;
    text-align: left;
    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%;
    background: transparent;
    padding: 20px;
}

.product-layer-two li li:hover {
    margin-left: 15px;
    border-bottom: 1px dotted #ccc;
}

.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: #3a5068;
}

.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;
}

#prod_thumbSwiper .swiper-slide {
    padding-top: calc(25% - 2px);
    position: relative;
}

#prod_thumbSwiper img {
    position: absolute;
    left: 0;
    top: 0;
}

/*外層*/
.products-list .more {
    border: 1px solid #3a5068;
    color: #3a5068;
    font-size: 16px;
    font-weight: bold;
    line-height: 32px;
    text-align: center;
    transition: all .5s;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    bottom: 0;
}

.products-list .item a:hover .more {
    background: #3a5068 !important;
    color: #fff;
    letter-spacing: 2px;
}

.products-list .name {
    font-size: 15px;
    color: #444;
    letter-spacing: 1px;
    margin-top: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2em;
}

.products-list .price b {
    color: #3a5068;
    width: calc(50% - 10px);
}

.products-list .item {
    position: relative;
    background-color: #ffffff;
    padding: 5px;
}

/*左側分類*/

.product-layer-two li a {
    position: relative;
    background: #3a5068;
    padding: 7px 16px;
    display: block;
    font-size: 16px;
    color: #ffffff;
    border-bottom: 1px #ffffff solid;
    border-left: 0;
    border-right: 0;
    border-top: 0;
}

.product-layer-two>li.active {
    background: transparent;

}

/*產品資訊標題*/
.pd_tabTitle li.activeTab a {
    color: #3a5068;
}



/*產品資訊內文*/
element.style {
    color: #3a5068;
}
/*產品資訊*/
.pd_tabInner_contain {
    padding-top: 20px;
    color: #3a5068;
}

/*右側商品資訊*/
.product_info li .txt_box {
    display: inline-block;
    vertical-align: top;
    color: #3a5068;
}

/*標題*/
.sidebarBtn h2 {
    color: #3a5068;
    font-size: 24px;
}

.sidebarBtn .price {
    color: #3a5068;
    font-size: 22px;
}

.sidebarBtn .sp_price {
    display: block;
    color: #bd2424;
    font-size: 22px;
    font-weight: bold;
}

/*加入詢價*/
.inquiry_a1 {
    background: #3a5068;
}

.inquiry_a2 {
    background: #3a5068;
}
/*加入購物車*/
.inquiry_a3 {
    background: #3a5068;
}

.inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover {
    letter-spacing: 2px;
    background: #9bb9c7;
}

/*底*/
.sidebarBtn {
    padding: 15px;
    display: inline-block;
    width: 28%;
    vertical-align: top;
    border: 0px #dddddd00 solid;
    background: transparent;
}

/*內文*/
.product_info li span {
    display: block;
    font-size: 12px;
    color: #999999;
    margin-bottom: 3px;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 1px;
}


/*底下相關商品*/
.prod_related {
    background: #a1a1a170;
    padding: 25px 15px;
}

.prod_related h6 span:before {
    content: '相關推薦';
    font-size: 24px;
    color: #3a5068;
}
.related_list li a p {
    font-size: 15px;
    color: #3a5068;
    line-height: 2;
}
.related_list li a {
    display: block;
    padding: 0px;
    background: transparent;
    height: 100%;
}
/*商品範例名稱*/
.related_list li a p {
    font-size: 18px;
    color: #3a5068;
    line-height: 2;
}
/*詢價車*/
/*回產品頁*/
.rewrite_simple {
    background: #3a5068 url(../images/simple_left.png) 10% center no-repeat;
}


/*送出詢價*/
.send_simple {
    background: #3a5068 url(../images/simple_right.png) 88% center no-repeat;
}
/*購屋車上面資訊文字底色*/
.shopping-cart .cart_head {
    background: #c7c5c5;
    color: #fff;
}

/*訂購資料*/
.formbox_form li .form__label {
    display: block;
    width: 100%;
    text-align: left;
    color: #3a5068;
}

.form label {
    display: block;
    position: relative;
    float: left;
    width: auto;
    margin-right: 20px;
    margin-bottom: 5px;
    color: #3a5068;
}

.form label.Bigcheck {
    float: none;
    display: inline-block;
    color: #3a5068;
    font-size: 15px;
    margin-left: 20px;
    top: 5px;
}

.declaration {
    background: #b9b9b9;
    line-height: 40px;
    padding: 5px 15px;
}

.shopping-cart .cell.product_name p {
    width: calc(100% - 90px);
    color: #3a5068;
}
/*產品名稱*/
.shopping-cart .cell {
    padding: 10px;
    text-align: center;
    width: 20%;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 5px;
    color: #3a5068;
}

.total_amount li b {
    font-weight: normal;
    color: #3a5068;
}

.total_amount li span {
    color: #3a5068;
}


.total_amount li {
    margin: 10px 0;
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    color: #3a5068;
}

.total_amount li .couponData, .total_amount li .transFree {
    color: #ff4f4f;
}

/*訂購資訊按鈕*/
.send_simple:hover {
    background-color: #9bb9c7
}

.rewrite_simple:hover {
    background-color: #9bb9c7
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*要記得改成設定顏色*/
/*訂單*/
/*訂購人資訊*/
.order_list_tab td {
    font-size: 15px;
    color: #3a5068;
    padding: 10px;
    border-top: 1px #3a5068 solid;
}

.list_before.account li {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    color: #3a5068;
}
/*下方購物清單文字*/
.order_list_pro tr:first-child td {
    color: #3a5068;
    font-weight: 1000;
}
/*文字底色-要比文字淺*/
.order_list_pro tr:first-child {
    background: #3a50683d;
}

/*商品訂單文字顏色*/
.order_list_tit b {
    font-size: 28px;
    color: #3a5068;
}
/*商品訂單左邊文字*/
.order_list_tab td:nth-child(1) {
    background: #e6e6e6;
    color: #3a5068;
    width: 100px;
    font-weight: 1000;
}
/*底色通常為白色*/
.payer {
    background: #ffffff;
}

/*購物清單*/

.order_list_head p {
    font-size: 24px;
    color: #3a5068;
    text-align: center;
    display: inline-block;
    border-bottom: 2px #3a5068 solid;
    padding: 10px;
    margin: 20px;
}

.order_list_pro td {
    padding: 10px;
    border-bottom: 1px #3a5068 solid;
    text-align: center;
    color: #3a5068;
    font-size: 14px;
}

/*匯款資訊*/
.contact_le_map a {
    display: block;
    background: #3a5068;
    text-align: center;
    padding: 10px;
    color: #fff;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*文章管理*/
h5.blog_le_t {
    font-size: 24px;
    font-weight: 500;
    color: #3a5068;
    font-family: serif;
    letter-spacing: 2px;
    margin-bottom: 7px;
}

/*側邊標題*/
.accordion li .link a {
    cursor: pointer;
    display: block;
    padding: 15px 10px;
    color: #3a5068;
    font-size: 14px;
    font-weight: 700;
    position: relative;
}

.blog_le .accordion>li:hover, .blog_le .accordion>li.on_this_category {
    background: #3a5068 !important;
}

.blog_le .accordion {
    list-style-type: none;
    margin: auto;
    border: 1px #3a5068 solid;
    overflow: hidden;
    border-bottom: 1px #3a5068 solid;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-radius: 0px
}

/*右側文章排版*/
.blog_subbox {

    padding: 5px;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
    flex-wrap: wrap;
}

/*標題*/
.blog_list_ri h5 {
    font-weight: 900;
    font-size: 20px;
    color: #3a5068;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
}

/*時間*/
.blog_list_ri em {
    font-size: 14px;
    color: #9d9c9c;
    font-style: normal;
    display: block;
}

/*內文*/
.blog_list_ri p {
    font-size: 15px;
    color: #3d3938;
    line-height: 130%;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    word-break: break-all;
}

.blog_subbox {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-gap: 20px;
}

/*內文hover*/
.subbox_item a {
    display: flex;
    grid-template-columns: 160px 1fr;
    position: relative;
    grid-gap: 20px;
    flex-direction: column;
}

.subbox_item a:before {
    content: 'READ MORE';
    position: absolute;
    z-index: 19;
    bottom: 10px;
    right: 10px;
    opacity: 0;
    font-size: 15px;
    color: #999;
    transition: all .6s;
}

.subbox_item a:before {
    transform: translate(-50%, -50%);
    left: 50%;
    right: 0;
    bottom: -15%;
    letter-spacing: 2px;
    opacity: 0;
    display: block;
    color: #fff;
    background: #3a5068;
    border-radius: 15px 15px 0 0;
    width: 100%;
    padding: 8px 0;
    text-align: center;
}

.subbox_item a:hover:before {
    bottom: -6%;
}

.subbox_item a:hover:before, .subbox_item a:hover:after {
    opacity: 1;
    transition: all .5s;
}

.blog_subbox * {
    transition: all 0.6s ease;
}

.subbox_item a:after {
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 8;
    background: #c9c8c870;
    opacity: 0;
    transition: all .5s;
}
/*文章封面圖片*/
.blog_list_le img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 30px 0;
}
/*文章*/
/*文章內頁*/
/*標題*/
h4.blog_category_title {
    color: #3a5068;
    font-size: 30px;
    padding: 10px 0;
    margin-bottom: 20px;
}

.blog_box_edit * {
    line-height: 150%;
    color: #3d3938;
}

body.blog_in_page.article_a .accordion li .link a {
    cursor: pointer;
    display: block;
    padding: 15px 10px;
    color: #3a5068;
    font-size: 14px;
    font-weight: 700;
    position: relative;
}


body.blog_in_page.article_a .blog_le .accordion>li:hover, .blog_le .accordion>li.on_this_category {
    background: #3a5068 !important;
}
/*左邊分類標題*/
body.blog_in_page.article_a h5.blog_le_t {
    font-size: 24px;
    font-weight: 500;
    color: #3a5068;
    font-family:"Noto Serif TC", serif; 
}
/*文章當前頁面左側按鈕*/
body.blog_in_page.article_b .blog_le .accordion>li:hover, .blog_le .accordion>li.on_this_category {
    background: #3a5068 !important;
}


/*第二顆文章按鈕*/
body.blog_in_page.article_b .accordion li .link a {
    cursor: pointer;
    display: block;
    padding: 15px 10px;
    color: #3a5068;
    font-size: 14px;
    font-weight: 700;
    position: relative;
}

body.blog_in_page.article_b h5.blog_le_t {
    font-size: 24px;
    font-weight: 500;
    color: #3a5068;
}

/*第二顆文章按鈕*/

/*分享文字*/
.toShareNews {
    font-size: 1em;
    color: #a1a1a1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

/*文章按鈕*/
.blog_back a.article_btn_back {
    background: #3a5068;
}
/*上一篇*/
.blog_back a.article_btn_prev,.blog_back a.article_btn_next {
    background: #6b85a1;
}

.blog_back a.article_btn_back:hover, .blog_back a.article_btn_prev:hover, .blog_back a.article_btn_next:hover {
    background: #9bb9c7;
}

/*相關文章*/
.news_related {
    background: #bebebe40;
    padding: 25px 15px;
}

.news_related h6 span:before {
    content: '相關文章';
    font-size: 24px;
    color: #000000;
}
/*相關文章名稱*/
.news_related_list li a {
    display: block;
    padding: 4px;
    background: transparent;
    height: 100%;
}
.news_related_list li a p {
    font-size: 18px;
    color: #3a5068;
    line-height: 2;
}

/*按鈕*/
.lastPage {
    font-size: 16px;
    color: #fff;
    background: #3a5068;
    padding: 10px 20px;
    display: block;
    margin: 40px auto;
    width: 130px;
    text-align: center;
}


/*文章縮圖隱藏*/
.articel_mainPic img {display: none;}


/*首頁-文章管理*/
.module_i_news li a:after {
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 8;
    background: #bebebe40;
    opacity: 0;
    border: 0px #3d3938 solid;
}

.module_i_news li a:before {
    content: 'READ MORE';
    position: absolute;
    z-index: 19;
    bottom: 10px;
    right: 10px;
    opacity: 0;
    text-align: center;
    font-size: 15px;
    color: #000000;
    transition: all .6s;
}

/*首頁-文章顯示*/
.module_i_news li:nth-child(n+5) {
    display: none !important;
}

/*標題*/

.module_i_news .title_i_box h4 {
    font-size: 24px;
    color: #000000;
    font-weight: bold;
    letter-spacing: 3px;
}

.module_i_news .title_i_box h4:before {
    content: "NEWS";
    display: block;
    font-family: "Russo One", sans-serif;
    color: #000000;
    font-size: 40px;
    letter-spacing: 3px;
    margin-bottom: -5px;
    font-weight: 100;
}

/*文章標題*/
.i_blog_ri h5 {
    font-weight: 500;
    font-size: 20px;
    color: #3d3938;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
}

/*時間*/
.i_blog_ri em {
    font-size: 14px;
    color: #858585;
    font-style: normal;
    display: block;
    margin: 7px 0;
}

/*內文*/
.i_blog_ri p {
    font-size: 15px;
    color: #3d3938;
    line-height: 130%;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    word-break: break-all;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 商品下拉超過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: #2d2d2d;
    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個--結束 */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */




@media screen and (max-width: 768px) {

    /*文章*/
    .path p, .path p a {
        text-align: left;
    }


}

@media screen and (max-width: 600px) {}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*側邊按鈕*/




/*******************************************/
.contact_editbox {
    margin: auto;
    padding: 0px;
}

/*聯絡我們MAP區改滿版編輯區*/
.contact_content {
    width: 100%;
    padding: 0;
    margin-top: -30px;
}

.contact_page .main_part {
    max-width: 100%;
    padding: 0;
}

.contact_page .path {
    display: none;
}

.contact_content .information_left {
    width: 100%;
    padding: 0;
}

.contact_content .information_right {
    width: 90%;
    margin: 0px auto;
    padding: 0 10px;
    display: block;
}

.contact_content .information_left>h4.blank_letter {
    display: none;
}

.contact_content .list_before {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.contact_content .list_before>li:not(li:last-of-type) {
    display: none;
}

.contact_content .list_before.info>li:last-of-type {
    padding: 0;
    margin: 0;
    display: none;
}

@media screen and (max-width: 768px) {
    .contact_content .information_right {
        margin: 50px auto;
    }
}

/**/
/*電腦版表單最大寬度設定*/
.contact_content .information_right {
    max-width: 1200px;
}

/**/
/*******************************************/
/*表單*/
.contact_form li.last cite {
    background: #000000;
    color: #fff;
}

.contact_form li.last blockquote, .contact_form li.last cite {
    display: block;
    vertical-align: top;
    font-style: normal;
    padding: 7px;
    text-align: center;
    border: 1px #000000 solid;
    width: 150px;
    max-width: calc(50% - 10px);
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*預設解除背景輪播*/
#content_main {
    margin: 0;
}

.bannerindex {
    position: static;
    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;
    }
}

/*大圖*/
.swiper-banner .swiper-slide img {
    width: 100%;
    height: auto;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */






/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

@media screen and (max-width: 1600px) {


    /*表單*/
    .contact_form li .form__label {
        width: 100%;
        margin-left: 0;
        text-align: left;
        font-weight: bold;
        padding: 5px;
        background: rgb(129 129 129 / 15%);
    }
}

@media screen and (max-width: 1400px) {
    .container {
        max-width: 1200px;
        transition: all 0.3s;
    }
}

@media screen and (max-width: 1200px) {
   /*第一層*/ 
.stellarnav > ul > li > a{width: auto;}


    .footer_logo {
        width: 200px;
    }

 

    .stellarnav>ul>li>a {
        font-size: 16px;
    }
/*Header/＝＝＝＝＝*/
.nav-header { position: relative;}
.stellarnav ul { justify-content: center;}
.navigation { padding: 10px;}
.header_area.sticky .navigation { padding-top: 10px;}

}

@media screen and (max-width: 980px) {
    .header_area.sticky {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
    }
   
    .footer_info li:nth-child(1), .footer_info li:nth-child(2) {
        width: 100%;
    }

      .pageIndex .header_area:not(.sticky) .navigation,  .main_header_area .container .navigation {
        grid-template-columns: 1fr;
    }
     .sticky .nav-brand img{display: none;}
     .nav-brand {
    width: 0px;
}
    .stellarnav ul {
        text-align: center;
        justify-content: center;
    }
.pageIndex .header_area:not(.sticky) .navigation {
    padding: 0;
}

/*上面購物車*/
.me_tp_features {
  text-align: right;}

.sticky .me_tp_features {
  text-align: center;}


}

@media screen and (max-width: 768px) {
    
 .header_area.sticky {   backdrop-filter: none;}
.header_area.sticky .navigation { padding-top: 30px;}
/*menu*/
.stellarnav .menu-toggle span.bars span { height: 1px;}

/*側邊選單 */
    .stellarnav .menu-toggle { padding-top: 5px;}
    .stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul{
        max-width: 100%;
        background: #fffffff5;
        backdrop-filter: saturate(100%) blur(10px);
        transition: all 1s;
        left: 0;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: flex-start;
    }
 .stellarnav.mobile ul { background: transparent;}
.pageIndex .header_area:not(.sticky) .stellarnav li a {text-align: left;}
.header_area:not(.sticky) .stellarnav li a {text-align: left;}
.pageIndex .header_area:not(.sticky) .stellarnav li li.has-sub:hover > a { color: #3a5068;}
.pageIndex .header_area:not(.sticky) .stellarnav li li:hover > a, .pageIndex .header_area:not(.sticky) .stellarnav li li.has-sub:hover > a { color: #3a5068;}
.header_area:not(.sticky) .stellarnav li li.has-sub:hover > a { color: #3a5068;}
.stellarnav li li { background: transparent;}
.pageIndex .header_area:not(.sticky) .stellarnav>ul{        
    max-width: 100%;
        background: #ffffff;
        backdrop-filter: saturate(100%) blur(10px);
        transition: all 1s;
        left: 0;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: flex-start;
        width: 100%;}

.header_area:not(.sticky) .stellarnav>ul {   
         max-width: 100%;
        background: #fffffff5;
        backdrop-filter: saturate(100%) blur(10px);
        transition: all 1s;
        left: 0;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: flex-start;
        width: 100%;
}
.header_area:not(.sticky) .stellarnav li {
    text-align: left;
    width: 100%;
}
.header_area:not(.sticky) .stellarnav > ul > li > a {
    text-align: left;
    color: #3a5068;

}
.stellarnav.mobile.left .close-menu {
        background: none;
        color: #3f3a35;
    }
.pageIndex .header_area:not(.sticky) .stellarnav > ul > li > a {
    text-align: left;
    color: #3a5068;
    line-height: 20px;
    height: 40px;
    margin: 0;
    padding: 10px;
    display: block;
    text-align: left;
    overflow: auto;
    height: auto;
    line-height: 150%;
    display: block;}

/*MENU*/
.stellarnav .menu-toggle:after {
    content: 'MENU';
    font-size: 12px;
    color: #3a5068;
    display: block;
    transform: scale(0.9);
}
.stellarnav .menu-toggle span.bars span {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 6px;
    background: #3a5068;
    margin: 0 auto 4px;
}
/*取消網頁版的線*/
.pageIndex .header_area:not(.sticky) .stellarnav > ul > li:nth-last-child(1) > a { border-bottom: 0px #ffffff solid;}
.pageIndex .header_area:not(.sticky) .stellarnav > ul > li:nth-last-child(7) > a { border-top: 0px #ffffff solid;}


 
/*上面購物車*/
.me_tp_features {
  display: none;}

/*Footer/＝＝＝＝＝*/
#to_top { bottom:60px;}

.footer.with_shopping_mode { padding:30px 0 50px; }
.footer_info {    
	justify-content: center;
	padding: 0px 4%;
	}
.footer_logo {       
	width: 180px;
    margin-bottom: 10px;
}

.footer_info li:nth-child(1) {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  align-items: baseline;
}
.footer_menu{    max-width: 450px;}

.box_link{justify-content: center;}

    /* 開啟手機板下方按鈕所需設定 */

    #to_top {
        bottom: 60px;
    }
    #to_top {
        bottom: 60px;
    }

    #bottom_menu li a {
        background: #ffffff;
    }

    #bottom_menu {
        flex: 1;
        float: none;
        border-right: 1px solid #ffffff;
        z-index: 9998;
    }

    #bottom_menu li a:hover {
       background: #c9c9c9 !important;
    }
   #bottom_menu li a em {

    color: #3a5068;
}
.fa-house::before ,.fa-credit-card::before ,.fa-cart-shopping::before {
    color: #3a5068;
}
    /*產品頁面*/
    /*產品分類標題*/
  .product_menu_list>h5 {
        color: #3a5068;
        font-size: 18px;
        padding: 10px;
    }

    .product_menu_list>h5 a {
        width: 100%;
        height: 100%;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        text-align: right;
        display: flex;
        align-items: center;
        align-content: center;
        justify-content: center;
    }

    /*下拉箭頭*/
.fa-caret-down::before {
    content: "\f0d7";
    color: #3a5068;
}
    a.pd_menu_toggle {
        width: 100%;
        height: 100%;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        align-content: center;
        justify-content: center;
        border: 1px #3a5068 solid;
        border-radius: 20px;
    }

    /*產品內頁-標題名稱*/
    .mobile_product_name {
        display: block;
        margin-bottom: 10px;
        color: #000000;
    }

    /*產品資訊*/
    .sidebarBtn {
        padding: 15px;
        display: inline-block;
        width: 100%;
        vertical-align: top;
        border: 0px #dddddd00 solid;
    }

    .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% !important;
        border-right: none;
    }

    .product_page .product_menu_list>h5 {
        display: block;
    }

    .product_page .product_menu_list {
        width: 100% !important;
        order: 0;
        min-height: unset;
    }

    /*上方購物車*/
    .me_tp_features a.tp_btn_cart, .me_tp_features a.tp_btn_notice {
        display: inline-block;
    }

    /*購物車內頁*/
    .inquiry_a1 {
        background: #4d4d4d;
    }

    .inquiry_a2 {
        display: none;
    }

    .inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover {
        letter-spacing: 2px;
        background: #a5a5a5;
    }

    /*文章*/
    .blog_subbox {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        grid-gap: 5px;
    }
}

@media screen and (max-width: 600px) {}