@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 !important;}



/*
關於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: #a3779e;
}

&::-webkit-scrollbar-track {
    box-shadow: transparent;
}
/*反白顏色*/
::-moz-selection{  background-color: #444;  color: #fff;}
::selection{  background-color: #444;  color: #fff;}
:root {
    --MainColor: #f1ffef;
    --SubColor:#444444;
}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


.bannerindex {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* LOGO */
.bannerindex::after {
  content: "";
  display: block;
  background-image: url(https://pic03.eapple.com.tw/ly5961sh/logosmall.png);
  background-size: contain;
  width: 290px;
  height: 139px;
  background-position: center;
  background-repeat: no-repeat;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  z-index: 10001;
  pointer-events: none;
  animation: banner-logo 3s forwards;
}


/* LOGO 動畫 */
@keyframes banner-logo {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }
  30% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
  }
  80% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
  }
}

.bannerindex::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
background: radial-gradient(
  circle at center,
  #f8f1e1 0%,
  #f8f1e1 20%, 
  rgba(248, 241, 225, 0) 90%
);


  z-index: 10000;
  pointer-events: none;
  backdrop-filter: blur(40px);
  clip-path: circle(150% at 50% 50%);
  animation: banner-bg 2.6s forwards ease-in-out;
  filter: blur(30px); 
}


@keyframes banner-bg {
  0% {
    clip-path: circle(150% at 50% 50%);
    opacity: 1;
  }
  80% {
    clip-path: circle(40% at 50% 50%);
    opacity: 1;
  }
  100% {
    clip-path: circle(0% at 50% 50%);
    opacity: 0;
  }
}




/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*預設解除背景輪播*/
#content_main { margin:0;}
.bannerindex { position:relative; height:auto;}
.swiper-banner { position:relative; margin:0; height:auto;}
.swiper-slide img { height:auto;}
.swiper-slide {position: relative;}
.swiper-slide:before ,.swiper-slide:after { content: ""; position: absolute;  z-index: 999; pointer-events:none;}




.pageIndex .swiper-slide:nth-child(1):before {
    background: url(https://pic03.eapple.com.tw/ly5961sh/banner01.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: -3%;
    right: 8%;
    width: 25%;
    height: 100% !important;
    background-position: left;
    padding-bottom: calc(100% / 1 * 0.43);
    animation-delay: 0.5s;
   
}

.pageIndex  .bannerindex .swiper-slide.swiper-slide-active:nth-child(1) {
    position: relative;
    overflow: hidden;
}
.pageIndex .bannerindex .swiper-slide.swiper-slide-active:nth-child(1)::after {
    content: "";
    position: absolute;
    top: 0;
    left: -80%; 
    width: 80%; 
    height: 100%;
    background: linear-gradient(
        110deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.15) 30%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0.15) 70%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-12deg);
    animation: shine-effect 3.5s ease-in-out 1.5s forwards;
    pointer-events: none;
    z-index: 10002;
    filter: blur(8px);
}


@keyframes shine-effect {
    0% {
        left: -80%;
        opacity: 0;
    }
    15% {
        opacity: 0.4;
    }
    40% {
        opacity: 0.9; 
    }
    60% {
        opacity: 0.9;
    }
    85% {
        opacity: 0.4;
    }
    100% {
        left: 120%;
        opacity: 0;
    }
}



.pageIndex .swiper-slide:nth-child(2):before {
    background: url(https://pic03.eapple.com.tw/ly5961sh/banner02.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: -3%;
    right: 8%;
    width: 25%;
    height: 100% !important;
    background-position: left;
    padding-bottom: calc(100% / 1 * 0.43);
    animation-delay: 0.5s;
   
}

.pageIndex  .bannerindex .swiper-slide.swiper-slide-active:nth-child(2) {
    position: relative;
    overflow: hidden;
}

.pageIndex .bannerindex .swiper-slide.swiper-slide-active:nth-child(2)::after {
    content: "";
    position: absolute;
    top: 0;
    left: -80%; 
    width: 80%; 
    height: 100%;
    background: linear-gradient(
        110deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.15) 30%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0.15) 70%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-12deg);
    animation: shine-effect 3.5s ease-in-out 1.5s forwards;
    pointer-events: none;
    z-index: 10002;
    filter: blur(8px);
}
.pageIndex .swiper-slide.swiper-slide-active:nth-child(1):before { animation: fade-in-elegant  1.8s ease-in-out both; animation-delay: 1.2s;}
.pageIndex .bannerindex.ready .swiper-slide.swiper-slide-active:nth-child(1)::after {animation: banner02-move-down 1.5s ease-in-out forwards, shine-effect 2s ease-in-out 1s;animation-fill-mode: forwards;}

.pageIndex .swiper-slide.swiper-slide-active:nth-child(2):before {animation: slide-in-left 1.8s ease-in-out both;}
.pageIndex .bannerindex.ready .swiper-slide.swiper-slide-active:nth-child(2)::after {animation: banner02-move-down 1.5s ease-in-out forwards, shine-effect 2s ease-in-out 1s;animation-fill-mode: forwards;}




  @keyframes fade-in-elegant {
    0% {
        opacity: 0;
        transform: translateY(20px); 
    }
    100% {
        opacity: 1;
        transform: translateY(0); 
    }
}

@keyframes slide-in-left {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*背景*/
#content {
    min-height: 80vh;
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-size: cover;}
#content_main {

    width: 100%;
    min-height: 80vh;
    overflow: hidden;
    z-index: 60;
    position: relative;
    margin-top: 100vh;
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-size: cover;}

#to_top {
    position: fixed;
    left: 20px;
    z-index: 600;
    width: 50px;
    height: 50px;
    padding-top: 10px;
    font-size: 12px;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    border-radius: 30px;
    background-color: #a3779e;

}


    #to_top i:before, #to_top i:after {
        content: "";
        display: block;
        position: absolute;
        border-radius: 100px;
        background: #ffffff;
        transition: all 100ms ease-in-out;}
        


/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/

/*Main/＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*Header/＝＝＝＝＝*/
/*首頁*/

.pageIndex .main_header_area {
    transition: all .3s;}
.pageIndex .header_area .main_header_area {
    position:relative;
    width: 100%;
    transition: all 0.3s;

}
    

.pageIndex .header_area.sticky .main_header_area {
        background: #ffffffc4;
        transition: all 0.3s;
    }


/*其他分頁*/

.header_area {    
    position: relative;
    z-index: 9999;
    padding: 0px;
    background: #ffffff;
    width: 100%;
 box-shadow: 1px 1px 5px rgba(169, 169, 169, 0.3);}

.main_header_area .container {
        max-width: 90%;
        transition: all 0.3s;}


.header_area.sticky .main_header_area .container {
            max-width: 90%;
            transition: all 0.3s;}

.header_area.sticky {
    background:#ffffffe0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 1px 1px 5px rgba(169, 169, 169, 0.3);
    backdrop-filter: blur(5px);
}


 .swiper-banner:after {
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0; }

 .swiper-pagination-bullet {
        display: none; }


/*第一層*/


/*首頁文字顏色*/
.pageIndex .stellarnav  ul  li  a {  color: #a3779e;;font-weight:bold ;}
.pageIndex .stellarnav  ul  li:hover  a {color: #75416b; font-weight:bold ;}


/*首頁sticky文字顏色*/
.pageIndex .header_area.sticky a {color: #281625;}


/*其他分頁文字顏色*/
.stellarnav > ul > li > a {padding: 0 10px 0 0;color: #a3779e;font-weight:bold;font-size: 17px; line-height: 30px;height: 30px;}
.stellarnav  ul  li:hover a {color: #75416b; font-weight:bold ;}
.sticky .stellarnav > ul > li > a {color: #281625;}
.sticky .stellarnav > ul > li:hover > a{color: #75416b; font-weight:bold ;}
.nav-menu {    margin: 0 auto;padding: 0;text-align:center;}
.nav-header {    position: relative;}
.me_tp_features {    position: relative;    right: unset;    top: unset;    width: fit-content;padding: 5px 0 0 0;}

.nav-menu>li:hover>a, .nav-menu>li.active>a, .nav-menu>li.focus>a {
    color: #75416b;}

 .pageIndex .me_tp_features a {color: #ffffff;}
 .pageIndex .me_tp_features .sticky a {color: #75416b;}

.me_tp_features a {color: #ffffff;}
.me_tp_features a:hover {color: #75416b;}

.nav-menu>li:not(.tp_links) {
    padding-right: 15px;
}

.nav-menu>li>a {
    color: #75416b;
    letter-spacing: 3px;
    padding: 25px 7px;
}
.tp_links{display: none;}
.shop_search_btn {
    background: #75416b;
    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%;
}
.nav-menu>li.focus>a {
    color: #75416b;
}
.nav-dropdown>li:hover>a .nav-dropdown>li.focus>a {
    color: #75416b;
}


.stellarnav li.has-sub > a:after {
        content: '';
        margin-left: 10px;
      
        position: absolute;
        top: 20%;
        right: 5px;
        transform: translateY(-50%);}   


.navigation {     padding: 20px 0px 20px 300px;}
.navigation {
    width: 100%;
    position: relative;
    padding: 0;
    display: grid;
    grid-template-columns: 200px 1fr;
    grid-gap: 0 20px;
    align-content: stretch;
    justify-content: center;
    align-items: center;
    justify-items: end;}
/*下拉箭頭*/
.stellarnav li.has-sub > a:after {
            height: 8px;
            width: 8px;
            display: block;
            border-style: solid;
            border-width: 0 1px 1px 0;
            border-color: transparent #a3779e #a3779e transparent;
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
            -webkit-transition: border .2s;
            transition: border .2s;    }    

.sticky .stellarnav li.has-sub > a:after {
           border-color: transparent #281625 #281625 transparent; }




/*第二層*/
.stellarnav li li > a , .stellarnav li li.has-sub > a{    padding: 7px 5px;   transition: all 0.3s; }
.stellarnav li li:hover > a , .stellarnav li li.has-sub:hover > a{color: #75416b;	padding-left:10px;}
.stellarnav li li.has-sub:hover > a {color: #ffffff;}




/*次選單樣式-半透明底色*/
.stellarnav ul ul {
    background:#ffffff;
    border-radius: 0 0  6px 6px;
    padding: 7px;
    box-shadow: 0px 3px 10px 0px rgb(0 0 0 / 12%);
    -webkit-backdrop-filter: saturate(180%) blur(5px);
    backdrop-filter: saturate(180%) blur(5px);
    width: 180px;
}

/*次選單欄位邊框*/
.stellarnav li li {
    border: 0px var(--f3-color) solid;
}

/*次選單文字樣式*/
.stellarnav li a {
    padding: 7px 10px;
    display: block;
    color: #ffffff;
    font: bold ;
    letter-spacing: .1rem;
}
.stellarnav li li > a ,
.stellarnav li li.has-sub > a {
    padding: 7px 5px;
    border-left: 2px solid transparent ;
}

/*hover欄位樣式-向右滑動*/
.stellarnav li.has-sub ul li a:hover{
    color:#75416b;
    padding-left: 10px;
    font-weight: bold;
}

/*文字底色透明*/
.stellarnav.desktop li.has-sub ul a {
    background: transparent;
    letter-spacing: .1rem;
    position: relative;
}


/*logo*/
.pageIndex .header_area .nav-brand {
    max-width: 100%;
  }

.pageIndex .header_area.sticky .nav-brand {
    filter: none !important;
}


.header_area .nav-brand {
    transition: all 0.3s;
    margin-top: 10px;}

.header_area.sticky .nav-brand {
        max-width: 100%;
        }
   
/* = = = 頁尾 = = = =  = = = = = = = = */


/*換圖*/
 .footer{z-index: 99 !important;}   
.footer_logo img {width: 0%;}
.footer .center {    max-width: 90%;}
.footer_info {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    padding-right: 0px;
}
.footer_info ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 50px;
    align-items: center;
}
.footer_info li p {    display: inline-block;    padding-right: 26px;}
.footer_info li p, .footer_info li p a {    
    color: #281625;
  /*  display: flex;*/
  display: none;
    flex-direction: row;}
.footer_info li:nth-child(1) {
    color: #281625;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}
p.tel {    order: 2;}
p.add {    order: 3;}
p.line {    order: 1;}
.footer_menu {   /* display: inline-block;*/ display: none;}
.footer_menu a {
    margin: 0;
    text-align: center;
    padding: 5px 10px;
    transition: all 0.3s;
    background: transparent;
    border: none;
    color: #281625;
}
.footer_menu a:hover {   color: #75416b; background: transparent;}
.copy {    background: transparent;    color: #281625;	border:none;margin-top: 3vw;}
.copy a{    color: #281625;transition:all 0.3s;}
.copy a:hover {color: #75416b;}
.box_link {   display: none;}
.box_link a{transition:all 0.3s;}
.box_link a:hover {    background: #261b17;   color: #281625;}
.privacyLinks a+a { border-left: 1px solid #281625;}

.double_key a { font-size: 13px !important;}
.ft_contentbox {  padding: 40px 20px 0px 20px !important;}

/*上方選單右邊設定 臉書/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 {}
*/
/*按鈕*/
.animated-arrow {
    border-radius:20px;
    background: #75416b;
    color: #fff;
    display: inline-block;
    margin-top: 20px;

    height: 50px;
    line-height: 50px;
    overflow: hidden;
    width: 250px;

    text-align: center;
    position: relative;}

/*頁碼*/
.path p, .path p a {
    text-align: right;
    line-height: 24px;
    font-size: 13px;
    color: #000000;}

body.other_page .path p, .path p a {display: none;}

.path p a:hover {
        color: #75416b;}

 /*下拉頁面隱藏下方選單*/
body.other_select_page .promotion_title {display: none;}
body.other_select_page .other_promotion { display: none;}
body.other_select_page .page {display: none;}
/* = = = banner = = = =  = = = = = = = = */

/*內頁BANNER 設定*/
/* ===== 共用 Banner 樣式 ===== */
.banner {
    position: relative;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    flex-direction: column;
    height: 20vw;
    max-height: 650px;
}

/* ===== 各頁 Banner 圖片 ===== */

.banner.banE { background-image: url(https://pic03.eapple.com.tw/ly5961sh/banner.jpg); }
.banner.banblog { background-image: url(https://pic03.eapple.com.tw/ly5961sh/banner.jpg); }
.banner.banB{display: none;}




/* ===== Banner 文字 ===== */
.banner h5 {
    color: #000000;
    font-size: 24px;
    position: relative; /* 為了定位 after */
    opacity: 0; 
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out forwards;
}

/* h5 下方的線 */
.banner h5::after {
    content: "";
    position: absolute;
    left: 50%;               /* 先置中 */
    bottom: -8px;            /* 文字下方距離 */
    width: 0;                /* 初始寬度為 0 */
    height: 2px;             /* 線的粗細 */
    background: #000000;     /* 線的顏色 */
    transform: translateX(-50%);
    animation: lineExpand 0.6s ease-out forwards;
    animation-delay: 0.6s;   /* 等 h5 文字滑入後再出現 */
}

/* 文字向上滑入 */
@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 線條從中間展開 */
@keyframes lineExpand {
    0% {
        width: 0;
    }
    100% {
        width: 80px; /* 可自行調整線的長度 */
    }
}


/* ===== RWD (手機版) ===== */
@media screen and (max-width: 768px) {
    .banner {
        max-height: none;
        background-attachment: scroll; /* 手機避免 fixed 卡頓 */
    }
    .banner h5 { font-size: 20px; }
}




/* = = = 購物車 = = = =  = = = = = = = = */  

/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.product_page .main_part { max-width:1500px;}
/* .product_info_page .main_part { max-width:1200px;} */

.product_page .show_content,
.product_info_page .show_content { width: 100%; display: flex; justify-content: space-between; flex-wrap: wrap; align-items: flex-start; align-content: flex-start;}
.product_page .product_menu_list { position: relative; width: 220px; letter-spacing: 1px; /*border-right: 1px solid #ccc;*/min-height: 30vw;}
.product_page .products-list,
.product-wrapper { width: calc(100% - 270px);}
ul.page { width: 100%;}

.product-layer-two li ul { position:static; margin-top:5px; /*display:block !important;*/ width:100%; margin-left:0;}
.product-layer-two li:hover ul { border: none !important; /*display:block !important;*/}
.product-layer-two li li { display: block; padding:0; transition:all ease .3s;}
.product-layer-two li.active a {
    font-weight: bold;
    border: 0px #ccc solid;}
.product-layer-two li a {
    position: relative;
      color: #75416b;
    border: 1px #75416b solid;
    background-color: #75416b00;
    padding: 7px 16px;
    display: block;
    font-size: 16px;
   }

.product-layer-two li:hover a {    

   background: #75416b;
    color:#ffffff; border: 0px #191919 solid;}

.product-layer-two li li a{ padding:5px 10px;background-color: #f3f3f32b;}
.product-layer-two li li:hover > a { background:#fff; color:#191919;}
.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:#191919;}

.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 #75416b;
    color: #75416b;
    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 { border: 0px solid #75416b;
    background-color: #75416b;}


/*內層*/
#prod_thumbSwiper .swiper-slide::before {
    content: '';
    width: 100%;
    height: 100%;
    background: #00000036;
    opacity: 0.6;
    position: absolute;
    left: 0;
    top: 0;
}

/*產品資訊標題*/
.pd_tabTitle li.activeTab a {
    color: #75416b;}
    element.style {
        color: #75416b;}
/*產品資訊內文*/
element.style {
    color: #75416b;}
.pd_tabInner_contain {
        padding-top: 20px;
        color: #75416b;}
/*右側商品資訊*/
.product_info li .txt_box {
    display: inline-block;
    vertical-align: top;
    color: #75416b;}
/*標題*/
.sidebarBtn h2 {
    color: #191919;
    font-size: 24px;}
.sidebarBtn .price {
        color: #191919;
        font-size: 22px;}
 .sidebarBtn .sp_price {
            display: block;
            color: #bd2424;
            font-size: 22px;
            font-weight: bold;}
/*加入詢價*/
.inquiry_a1 {
    background: #4d4d4d;}

.inquiry_a2 {
        background: #939393;}
 .inquiry_a3 {
            background: #333;}

 .inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover {
            letter-spacing: 2px;
            background: #a5a5a5;}

            

/*詢價頁面*/

.rewrite_simple {
    background: #75416b url(../images/simple_left.png) 10% center no-repeat;
}

.send_simple {
    background: #af9474 url(../images/simple_right.png) 88% center no-repeat;
}
 /*底*/   
.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: #191919;}


/* = = = 相簿 = = = =  = = = = = = = = */

.show-list .item:hover .show_name
 { color: #75416b;
}
/*尺寸改照原本尺寸*/
.pic-list .show_pic img {
    max-width: 100%;
    display: block;
    width: auto;
    height: auto;
    object-fit: cover;
}
/*hover*/
.overlay {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(0, 0, 0, .3);
    left: 0;
    top: 0;
    opacity: 0;
    transform: translateY(200px); /* 初始往下 */
    transition: all .5s cubic-bezier(.25,.8,.25,1); /* 緩動效果 */
}

/* 觸發顯示（例如 hover 時） */
.parent:hover .overlay {
    opacity: 1;
    transform: translateY(0); /* 向上滑入 */
}

/*相簿主分類名稱*/
 .show-list .show_name {
    font-size: 17px;
    color: #000000;
    letter-spacing: 0.15em;
    line-height: 1.5;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 26px;
    text-align: center;
} 
/*相簿次分類名稱*/   
.show-list .show_name {
    font-size: 17px;
    color: #000000;
    letter-spacing: 0.15em;
    line-height: 1.5;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 26px;
    text-align: center;
} 
/*相簿次分類標題*/  
.subalbum-menu h2 {
    font-size: 20px;
    color: #000000;
    display: inline-block;
    vertical-align: middle;
}
/*觀看更多*/
.other_album_choice li {
    background: #a3779e;
    font-size: 15px;
    display: inline-block;
    border-radius: 18px;
    padding: 7px 20px;
    margin: 0 7px 7px 0;
}


/*影音管理*/

.video-list .vidCover {
    display: flex;
    position: relative;
    text-align: center;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border-radius: 10px;
}


/*hover*/
.video-list .vidCover::after {
    content: '';
    width: 100%;
    bottom: 100%;
    background: #a3779e4f;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    transition: .3s;
}

/*左側分類*/
.video-layer-two > li {
    border-bottom: 1px dotted #a3779e;
    padding-bottom: 5px;
}

.video-layer-two li a {
    position: relative;
    border: 0px #a3779e solid;
    background: transparent;
    padding: 7px 16px;
    display: block;
    font-size: 16px;
    color: #a3779e;
    font-weight: 600;
}


.video-layer-two li:hover a {
    color: #75416b;
}

/* = = = 文章管理 = = = =  = = = = = = = = */

/*文章管理/外層＝＝*/


.module_i_news ul, .blog_subbox {    display: grid;    gap: 10px;}
.module_i_news li , .subbox_item {    width: 100%;border-bottom: unset;}
.module_i_news li a , .subbox_item a {
	padding: 5px;
	display: flex;
    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
    flex-wrap: wrap;
}
.module_i_news li a:after , .subbox_item a:after{pointer-events:none;}
.i_blog_le, .i_blog_ri {    width: 100%;}
.blog_list_le {
	width: 30%;
}
.blog_list_ri {
    width: 65%;
    padding: 0 0 0 30px;
    position: relative;
}

.i_blog_le img{
	display:block;
    max-width: 100%;
    object-fit: cover;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    border-radius:20px;
}

.blog_list_ri h5 {
     font-size: 24px;
    color: #000000;
    display: block;
    font-weight: 800;
}

.blog_list_ri p {
    margin-top: 25px;
    line-height: 180%;
    color: #000000;
    -webkit-line-clamp: 3;
    min-height: 80px;
    font-size: 18px;
}


.module_i_news li a:before, .subbox_item a:before {
    top: 50%;
    left: 50%;
	bottom:unset;
	right:unset;
    transform: translate(-50%, -50%);
    letter-spacing: 2px;
	font-size: 18px;
	
}
.blog_list_le img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
border-radius: 20px;}


/*側邊*/
/*標題*/
h5.blog_le_t {
    font-size: 24px;
    font-weight: 500;
    color: #000000;
    font-family:  "Noto Serif TC", serif !important;
    letter-spacing: 2px;
    margin-bottom: 7px;
    position: relative;
}
/*側邊文章分類文字*/
.accordion li .link a {
    cursor: pointer;
    display: block;
    padding: 15px 10px;
    color: #000000;
    font-size: 14px;
    font-weight: 700;
    position: relative;
}
/*側邊文章分類線條*/
.blog_le .accordion > li {
    transition: all 0.3s;
    border-bottom: 1px solid #a3779e;
}


.blog_le .accordion {
    border: unset;
    border-radius: 0px;
}
.blog_le .accordion > li:hover .link, .blog_le .accordion > li.on_this_category .link {
    color: #fff !important;
    background: #75416b !important;;
}
.blog_le .accordion > li{transition:all 0.3s;border-bottom: 1px solid #a3779e;}
.accordion li .link{background:#fff;}

/*首*/
/*標題*/
.i_blog_ri h5 {
    font-weight: 500;
    font-size: 20px;
    color: #000000;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
}

.module_i_news .title_i_box h4 {
    font-size: 30px;
    color: #000000;
    font-family: 'Noto Serif TC';
    font-weight: bold;
    letter-spacing:5px;}
.module_i_news .title_i_box {
    margin-bottom: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;}

.module_i_news ul{grid-template-columns:1fr 1fr 1fr 1fr;    max-width: 1400px;}

.module_i_news .title_i_box h4::before {
   
    display: block;
    font-size: 30px;
    font-family: Cardo;
    letter-spacing: 1px;
    color: #767f86;}
.animated-arrow {
    background: #75416b;}

.i_blog_ri p {
    font-size: 15px;
    color: #000000;
    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:before{content:none;}

.blog_subbox {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(580px, 1fr));}



/*文章管理/內層＝＝*/
/*文章縮圖隱藏*/
.articel_mainPic img{display: none;}

h4.blog_category_title {
    color: #000000;
    font-size: 30px;
    padding: 10px 0;
    margin-bottom: 20px;}
.blog_le .accordion > li:hover .link, .blog_le .accordion > li.on_this_category .link {
    color: #fff !important;
    background: #323232;}
.blog_back a.article_btn_next {
    border-radius:20px;
    background: #a3779e;
}
.blog_back a.article_btn_prev {
        border-radius:20px;
    background: #a3779e;
}
.blog_back a.article_btn_back {
        border-radius:20px;
    background: #75416b;
}
.lastPage {
    border-radius:20px;
    font-size: 16px;
    color: #fff;
    background: #a3779e;
    padding: 10px 20px;
    display: block;
    margin: 40px auto;
    width: 130px;
    text-align: center;
}

/*相關文章*/
.news_related h6 span:before {content: '相關文章';font-size: 24px;color: #a3779e;}
@media screen and (max-width: 1024px) {
.module_i_news ul {grid-template-columns: 1fr 1fr;}
}

@media screen and (max-width: 1000px) {
.module_i_news .title_i_box h6 {font-size: 50px;}


}
@media screen and (max-width: 768px) {	
.module_i_news ul, .blog_subbox { grid-template-columns: 1fr;}
.module_i_news .title_i_box h4 { font-size: 30px;}  

/*產品頁面*/
.product_menu_list,
.products-list,
.product-wrapper { width: 100%;}
.product-layer-two { margin-right: 0; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); grid-gap: 5px;}
.product_page .product-layer-two,
.product_page .products-list { width: 100%; border-right: none;}
.product_page .product_menu_list>h5{display: block;}

.product_menu_list>h5 {color: #75416b;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;}
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 #75416b solid;border-radius: 20px;}

/*產品內頁-標題名稱*/
.mobile_product_name { display: block;margin-bottom: 10px;color: #75416b;}
/*產品資訊*/
.sidebarBtn {padding: 15px;display: inline-block; width: 100%;vertical-align: top; border: 0px #dddddd00 solid;}
/*上方購物車*/
.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;} 
  
.product_page .show_content > a { order: 1;}
.product_page ul.products-list { order: 2;}
.product_page ul.page { order: 3;}
.product_page .product_menu_list {width: 100%; order: 0; min-height: unset;}
}
@media screen and (max-width: 500px) {	

.blog_list_le { width: 100%;}
.blog_list_ri { width: 100%;padding: 5px;}
.blog_list_ri p { margin-top: 0px;}
.blog_list_ri h5{font-size:20px;}
.module_i_news .title_i_box h6 {font-size: 18px;}


}

/*******************************************/
.contact_editbox { margin: auto;padding: 0px;}
/*聯絡我們MAP區改滿版編輯區*/
.contact_content {    width: 100%;padding: 0;}
.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: 80px 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: 1000px;}
/**/
/*******************************************/
.contact_form li.last cite {
    background: #75416b;
    color: #fff;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#content_main { margin:0;}
.bannerindex { position:static; height:auto;}
.swiper-banner { position:static; margin:0; height:auto;} 

/*大圖*/
.swiper-banner .swiper-slide img {width: 100%;height: auto;}



@media screen and (max-width: 1400px) {
.container {max-width: 1200px;transition: all 0.3s;}
/*footer*/

.footer_info ul {    flex-direction: column;}
.footer_info li:nth-child(1) {    padding-left: 10px;    padding-top: 15px;}
.footer_info li:nth-child(2) {    padding-top: 2px;    padding-bottom: 15px;}



}

 @media screen and (max-width: 1100px) {
/*表單*/
.contact_form li .form__label { width: 100%; margin-left: 0;text-align: left;font-weight: bold;padding: 5px;background: #75416b1f;}
                
.main_header_area .container .navigation {    grid-template-columns: 1fr;}
.main_header_area .container .navigation> *{grid-row:unset;grid-column:unset;text-align: center;}
.nav-menu>li>a {padding: 10px 0px;}
.pageIndex .header_area {position: relative;width: 100%;}
.header_area.sticky {position: fixed;top: 0;left: 0;width: 100%;z-index: 9999;}

.pageIndex .header_area .main_header_area , .pageIndex .header_area.sticky .main_header_area{    background: #ffffff;}
.stellarnav  ul  li:hover  a {color: #75416b; font-weight:bold ;}
.stellarnav ul li a { color: #a3779e;}
.pageIndex .stellarnav ul li a { color: #a3779e;}
.pageIndex .header_area.sticky a {color: #75416b;}
.sticky .stellarnav li.has-sub > a:after { border-color: transparent #75416b #75416b transparent;}
.stellarnav ul {margin: 0; padding: 0;text-align: center;}
.nav-menu>li>a {    padding: 15px 0px;letter-spacing: 2px;}
.me_tp_features {width: 100%;text-align: center; margin-bottom: 7px;}



/*logo*/
.nav-brand img {transition: all 0.3s;text-align: center; }
.nav-brand img {max-width: 80%;}
.navigation {grid-template-columns: 200px 1fr;grid-gap: 0 20px;align-content: stretch;justify-content: center;align-items: center;justify-items: center}
.tp_links {display: none;}}


@media screen and (max-width: 980px) {
/*footer*/
.footer_info li:nth-child(1) {    width: 100%;}
.footer_info li p {    padding-right: 5px;}
}
@media screen and (max-width: 768px) {
/*影音管理*/
/*主標題*/
.video_menu_list>h5 {color: #a3779e;}



.bannerindex { padding:0; margin:0;}

/*footer*/
.footer.with_shopping_mode { padding:70px 0; }
.footer_info {    justify-content: center;}
.footer_logo {    text-align: center;}
.footer_info ul { margin-top: 20px; }
.footer_info li:nth-child(1) {    flex-direction: column;}
.footer_info li:nth-child(2) {    text-align: center;}
.footer_menu a:first-child {    display: none;}
.footer_info li p {    padding: 5px 10px;}

/*關鍵字*/
.double_key {padding: 0 0 80px 0;}
 .ft_contentbox {  padding: 0px 20px;}

/*取消文字效果*/
.stellarnav  ul  li:hover  a { animation: none;}
.pageIndex .stellarnav  ul  li:hover  a { animation: none;}
 /*側邊選單*/
.main_header_area .container {max-width: 95%;transition: all 0.3s;}
.header_area.sticky .main_header_area .container {max-width: 95%;transition: all 0.3s;}
.stellarnav > ul > li > a {border-right: 0px solid #75416b;}
.header_area.sticky { backdrop-filter:none;}
 /*menu*/
.stellarnav .menu-toggle span.bars span {display: block;width: 24px;height: 2px;border-radius: 6px;background: #75416b; margin: 0 auto 4px;}
.stellarnav .menu-toggle:after {content: 'MENU';font-size: 12px;color: #75416b;display: block;transform: scale(0.9);}
.stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul { position: fixed;top: 0; bottom: 0; width: 80%;max-width: 100%; overflow-x: hidden;overflow-y: auto;-webkit-overflow-scrolling: touch; z-index: 9999; border-right: 1px #ffffff solid; background: #ffffff;}
.stellarnav.mobile li.open { background: #ffffff;}
.stellarnav.mobile ul {background: #ffffff;}
.pageIndex .stellarnav ul li a {color: #ffffff;    border-right: 0;}
.stellarnav li {text-align: left;}
.stellarnav.mobile > ul > li > a { text-align: left;}
.stellarnav ul li a {color: #000000 !important;    border-right: 0;}
.stellarnav ul li:hover a {color: #75416b !important;    border-right: 0;}
.stellarnav.mobile li a { border-bottom: 0px solid rgba(255, 255, 255, .15);}
.stellarnav.mobile .menu-toggle, .stellarnav.mobile .dd-toggle, .stellarnav.mobile .close-menu, .stellarnav.mobile .call-btn-mobile, .stellarnav.mobile .location-btn-mobile {display: inline-block;padding: 15px 7px;}

/*close*/
 .stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {display: inline-block;text-align: right;font-size: 12px;  background: #75416b; color: #ffffff;}
.stellarnav .icon-close:after {content: '';display: block;width: 12px;height: 0px;top: 50%;border-bottom: solid 3px #ffffff;position: absolute;transform: rotate(-45deg);}
.stellarnav .icon-close:before {content: '';display: block; width: 12px;height: 0px;border-bottom: solid 3px #ffffff;position: absolute;top: 50%;transform: rotate(45deg);}


#to_top { bottom:60px;}


/* 開啟手機板下方按鈕所需設定 */
.footer.with_shopping_mode { padding:30px 0 60px; }
#to_top { bottom:60px;}
#bottom_menu li a {  background: #ffffff;}
 #bottom_menu li a:hover {  background: #cccccc !important;}
.fa-house::before {
    content: "\f015";
    color: #75416b;
}
.fa-phone-volume::before {
    content: "\f2a0";
    color: #75416b;
}
.fa-phone-volume::before {
    content: "\f2a0";
    color: #75416b;
}
.fa-line:before {
    content: "\f3c0";
    color: #75416b;
}
#bottom_menu li a em {
    display: block;
    font-size: 12px;
    font-style: normal;
    color: #75416b;
}

}

@media screen and (max-width: 600px) { }


