@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

/*
關於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: #3f3a35;
}

&::-webkit-scrollbar-track {
    box-shadow: transparent;
}

/*反白顏色*/
::-moz-selection {
    background-color: #818181;
    color: #fff;
}

::selection {
    background-color: #818181;
    color: #fff;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
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: bannerZoomIn 1.5s ease-out forwards;
    filter: blur(20px);
    transform: scale(2);
    opacity: 0;
}

/* 動畫關鍵幀 */
@keyframes bannerZoomIn {
    0% {
        opacity: 0;
        transform: scale(2);
        filter: blur(20px);
    }

    60% {
        opacity: 1;
        transform: scale(1.05);
        filter: blur(6px);
    }

    100% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}


/* LOGO */
.bannerindex::after {
    content: "";
    display: block;
    background-image: url(https://pic03.eapple.com.tw/trstudiodesign/logo.png);
    background-size: cover;
    width: 465px;
    height: 70px;
    background-position: center;
    background-repeat: no-repeat;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000000000000000000001;
    pointer-events: none;
    animation: banner-logo-glow 2.6s forwards;
  
}

/* 更快閃爍的關鍵幀 */
@keyframes banner-logo-glow {
    0% {
        opacity: 0;
        filter: blur(0) drop-shadow(0 0 2px rgba(255, 255, 255, 0.2));
    }

    10% {
        opacity: 1;
        filter: blur(0) drop-shadow(0 0 14px rgba(255, 255, 255, 0.9));
    }

    20% {
        filter: blur(0) drop-shadow(0 0 6px rgba(255, 255, 255, 0.4));
    }

    30% {
        filter: blur(0) drop-shadow(0 0 14px rgba(255, 255, 255, 0.9));
    }

    40% {
        filter: blur(0) drop-shadow(0 0 4px rgba(255, 255, 255, 0.3));
    }

    60% {
        filter: blur(0) drop-shadow(0 0 12px rgba(255, 255, 255, 0.8));
    }

    80% {
        opacity: 1;
        filter: blur(0) drop-shadow(0 0 14px rgba(255, 255, 255, 1));
    }

    100% {
        opacity: 0;
        filter: blur(10px) drop-shadow(0 0 2px rgba(255, 255, 255, 0.2));
    }
}
@media (max-width: 768px) {
  .bannerindex::after {
    width: 50vw; /* 用相對單位適配不同寬度 */
    background-size: contain; /* 確保圖片不裁切 */
  }
}

/*大圖*/

.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/trstudiodesign/banner01.png);
    width: 300px;
    height: 100px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center top;
    z-index: 10001;
    pointer-events: none;
    left: 42%;
    top: 50%;
    transform: translateX(-50%);
    opacity: 0; 
    animation: banner-appear-and-fade 3s ease-out 1s forwards;
    animation-delay: 1.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/trstudiodesign/banner02.png);
    width: 300px;
    height: 100px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center top;
    z-index: 10001;
    pointer-events: none;
    left: 50%;
    top: 46%;
    transform: translate(-50%, 30px);
    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: 768px) {
.bannerindex .swiper-slide.swiper-slide-active:nth-child(1)::before {
    width: 150px;
    height: 100px;
    left: 32%;
    top: 50%;

}
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2)::before {

    width: 150px;
    height: 100px;
    left: 50%;
    top: 46%;

}
}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*背景*/
#content {
    min-height: 80vh;
    background: #fdf6ebf5;
    background-size: cover;
}

#content_main {
    width: 100%;
    min-height: 80vh;
    overflow: hidden;
    z-index: 60;
    position: relative;
    margin-top: 100vh;
    background: #fdf6ebf5;
    background-repeat: no-repeat;
    background-size: cover;
}

body.product_page #content {
    min-height: 80vh;
    background: #fdf6ebf5;
    background-size: cover;
}

body.blog_page #content {
    min-height: 80vh;
    background: #fdf6ebf5;
    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;
}




/*上方選單解除滑動固定
.header_area.sticky { position:relative;}*/

/*Main/＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/


/*header*/

 .header_area{
    display: none;
    opacity: 0;
    animation: text-focus-in 0.6s cubic-bezier(.55,.085,.68,.53) both
  }
  
.header_area.sticky{
    display: block;
    opacity: 1;
    
  }
  
  @-webkit-keyframes text-focus-in {
      0% {
        -webkit-filter: blur(12px);
                filter: blur(12px);
        opacity: 0;
      }
      100% {
        -webkit-filter: blur(0px);
                filter: blur(0px);
        opacity: 1;
      }
    }
    @keyframes text-focus-in {
      0% {
        -webkit-filter: blur(12px);
                filter: blur(12px);
        opacity: 0;
      }
      100% {
        -webkit-filter: blur(0px);
                filter: blur(0px);
        opacity: 1;
      }
    }
  
.header_area {   position: fixed;   width: 100%;}/**/
.header_area.sticky {
    width: 100%;
    z-index: 9999;
    background: linear-gradient(180deg, #55473b, #14000000);
}
.main_header_area .container {   max-width: 97%;}
.pageIndex .sticky .header_area {   position: fixed;   width: 100%;}
.pageIndex .sticky .main_header_area,.main_header_area {   
    background: #ffffff00;
    border-bottom: 1px #fff solid;
    transition: all 0.3s;
}

.sticky .main_header_area{background:transparent 0;   transition: all 0.3s; } 

/*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;}

/*選單*/

.stellarnav > ul > li > a, .stellarnav li.has-sub > a {
    font-weight: 400;
    position: relative;
    padding: 0;
    color: #ffffff;
    padding: 0 0px 0 0;
    margin: 0 px;
    font-size: 14px;
    letter-spacing: 2px;
    width: 6vw;
}

.stellarnav > ul > li:hover > a,
.stellarnav > ul > li.has-sub:hover > a {
    color: #fff;
    animation: glow 1s infinite alternate;
}
@keyframes glow {
    0% {
        text-shadow: 0 0 4px rgba(255, 255, 255, 0.753),
                     0 0 8px rgba(255, 255, 255, 0.3);
    }
    50% {
        text-shadow: 0 0 6px rgba(255, 255, 255, 0.897),
                     0 0 12px rgba(255, 255, 255, 0.5);
    }
    100% {
        text-shadow: 0 0 4px rgba(255, 255, 255, 0.801),
                     0 0 8px rgba(255, 255, 255, 0.3);
    }
}

.stellarnav > ul:hover > li {
    opacity: .3;
    transition: .3s ease-in-out;
}
.stellarnav > ul:hover > li:hover {
    opacity: 1;
    transition: .3s ease-in-out;
}

/*最後一顆按鈕*/
.stellarnav > ul > li:nth-last-child(1) > a{margin: 0;}

/*下拉*/
.stellarnav ul ul, .stellarnav ul ul ul { background: transparent; backdrop-filter: blur(10px);}
.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: #ffffffcf;}

/*右拉箭頭*/
.stellarnav li.has-sub > a:after{display: none;}
.stellarnav li li.has-sub > a::after { border-left: 6px solid  #3f3a35;}
.stellarnav li li.has-sub:hover > a::after { border-left: 6px solid var(--TextColor_4); border-top: 6px solid transparent;}

/*下拉選單*/
.stellarnav li.has-sub > ul > li.has-sub > a, .stellarnav li.has-sub > ul > li > a { color: #3f3a35; padding: 7px 20px 7px 5px; font-family: "微軟正黑體", sans-serif;}
.stellarnav li li > a, .stellarnav li li.has-sub > a { color:  #3f3a35; 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: var(--MainColor); 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;}

@media screen and (max-width: 1400px) {
.stellarnav > ul > li > a, .stellarnav li.has-sub > a {width: 100%;}}
@media screen and (max-width: 1024px) {
    /*header*/
    .pageIndex .header_area {   position: relative;}
    .header_area.sticky {   position: fixed;}
    .pageIndex .main_header_area {  background: rgb(255 255 255 / 45%) 0;}
   
    /*LOGO*/
    .pageIndex .nav-brand img {filter: contrast(0) brightness(100); }
}

@media screen and (max-width: 768px) {


  .header_area {
    display: block !important;
    opacity: 1 !important;
    animation: none !important;
  }


/*手機側邊選單*/
.stellarnav li li {background: transparent;}
.header_area { background: #b8a89b;}
.pageIndex .stellarnav .menu-toggle span.bars span {   background: #ffffff;}
.sticky .stellarnav .menu-toggle span.bars span {  }
.pageIndex .stellarnav .menu-toggle:after {  color: #ffffff;    }
.sticky .stellarnav .menu-toggle:after {   }

.stellarnav .menu-toggle span.bars span {   background: #ffffff;}
.stellarnav .menu-toggle:after {     color: #ffffff;}

.stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul {  max-width: 100%;   background: #fdf6ebf5;  backdrop-filter: saturate(100%) blur(10px);  transition: all 1s;   left: 0;}
.stellarnav.mobile.left .close-menu {      background: none;          color: #3f3a35; }
.stellarnav .icon-close:after {    border-bottom: solid 3px #3f3a35;}
.stellarnav .icon-close::before {    border-bottom: solid 3px #3f3a35;}
.stellarnav a.dd-toggle .icon-plus:after {    border-bottom: solid 3px #3f3a35;}
.stellarnav a.dd-toggle .icon-plus:before {    border-bottom: solid 3px #3f3a35;}
.stellarnav > ul > li:not(.tp_links) > a:before {display: none;}
.stellarnav .menu-toggle, .stellarnav .call-btn-mobile, .stellarnav .location-btn-mobile, .stellarnav .close-menu { padding: 14px 15px;     position: relative;   }
.stellarnav.mobile ul {    background: none;  }
.stellarnav.mobile li.open li.open {     background: transparent;}
.stellarnav.mobile li.open {   background: none;  }
.stellarnav.mobile > ul > li {         border-bottom: 1px #3f3a35 solid; text-align: center;     margin: 0px 30px; }
.stellarnav > ul > li:after {display: none;}
.stellarnav li li {   border-bottom: 1px #372d2d solid; border: none;    margin-bottom: 0px; }
.stellarnav>ul>li>a {display: inline-block;width: 100%;}
.stellarnav > ul > li:nth-last-child(1) > a{margin: 0 5px;}
.stellarnav > ul > li > a, .stellarnav li.has-sub > a { width: auto;}
/**/

.pageIndex .main_header_area, .main_header_area {  background:transparent;}
.sticky .main_header_area {  backdrop-filter:unset;}
.stellarnav > ul > li > a, .stellarnav li.has-sub > a {  color: #3f3a35;}
.stellarnav > ul > li > a:hover,.stellarnav li.has-sub > a:hover {color: #baa899;}
.stellarnav > ul > li:hover > a, .stellarnav > ul > li.has-sub:hover > a { color: #baa899;}


/*LOGO*/
    .pageIndex .nav-brand img {filter: none; }

}


/*上面購物車*/
.me_tp_features a { color: #ffffff;
}
.sticky .me_tp_features a {color: #ffffff;}

.me_tp_features a:hover.tp_btn_cart  {color: #e0c6ab;}
.me_tp_features a:hover.tp_btn_notice  {color: #e0c6ab;}

.tp_links {
    display: none;
}
.shop_search_btn {
    background: #3f3a35;
    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%;
}
/* = = = 頁尾 = = = =  = = = = = = = = */


/*footer = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

.box_link {
    position: absolute;
    top: 0%;
    right: 0px;
    width: auto;
    max-width: 350px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
    max-height: 100%;
    justify-content: flex-end;
    z-index: 10;
}

.box_link a{border: 1px #ffffff solid;    color: #ffffff;}
.box_link a:hover {
    border: 1px #ffffff solid;
    color: #ffffff;
}
.footer {
    position: relative;
    margin: auto;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-top: 0;
    z-index: 99;
    background: #baa899
}
.footer .center {
    position: relative;
    max-width: 90%;
    padding: 60px 0 0 0;
    font-size: 13px;
}
.footer_info {
    display: flex;
    width: 100%;
    max-width: 100%;
    margin: auto;
    padding: 0;
    position: relative;
    flex-direction: column;
    gap: 10px;
    font-family: var(--SFontE);
}
.footer_logo {
    background-image: url(https://pic03.eapple.com.tw/trstudiodesign/footerlogo.png) !important;
    background-position: left top;
    background-repeat: no-repeat;
    background-size: contain;
    animation: glowPulse 2s ease-in-out infinite;
}

.footer_logo img {
    opacity: 0;
}

@keyframes glowPulse {
  0%, 100% {
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 18px rgba(255, 255, 255, 1));
  }
}



.footer_info ul {
    position: relative;
    border-top: 1px solid #ffffff91;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
}
/* 聯絡資訊 */
.footer_info li{
    padding: 0;
}
.footer_info li p {
    font-size: 13px;
    line-height: 1.8;
    text-align: left;
    color: #ffffff;
}
.footer_info li p a{
    color: #ffffff;
}


.footer_info li p.tel2:before {
    content: '曾先生：';
}
.footer_info li p.phone:before {
    content: '陳先生：';
}

/* 網頁連結 */
.footer_info li:nth-child(2) {   
    right: 0;
    top: 0;
}
.footer_menu {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
}
.footer_menu a:first-child{
    display: none;
}
.footer_menu a {
    color: #ffffff;
    background: transparent;
    border: 0;
    letter-spacing: 1.25px;
    margin: 0 0 10px;
    transition: all .3s cubic-bezier(.165,.84,.44,1);
}

.footer_menu a:hover {
    background: transparent;
    color: #ffffff;
    animation: glow 1s infinite alternate;
}

@keyframes glow {
    0% {
        text-shadow: 0 0 4px rgba(255, 255, 255, 0.753),
                     0 0 8px rgba(255, 255, 255, 0.3);
    }
    50% {
        text-shadow: 0 0 6px rgba(255, 255, 255, 0.897),
                     0 0 12px rgba(255, 255, 255, 0.5);
    }
    100% {
        text-shadow: 0 0 4px rgba(255, 255, 255, 0.801),
                     0 0 8px rgba(255, 255, 255, 0.3);
    }
}

/**/
.copy {background:transparent; color: #ffffff; border:none; padding: 10px 0;margin: 10px 0 0;}
.copy a{color: #ffffff;transition:all 0.3s;}
.copy a:hover {color: #e0c6ab;}
.box_link a {
    display: block;
    width: 40px;
    border: 0px #ccc solid;
    border-radius: 5px;
    padding: 5px;
    font-size: 24px;
    text-align: center;
    margin: 2px;
}
.box_link a{transition:all 0.3s;}
.box_link a:hover {background: #e0c6ab;  color: #ffffff;}
.box_link {}



/*上方選單右邊設定 臉書/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 樣式 ===== */
.banner {
    position: relative;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    flex-direction: column;
    height: 80vw;
    max-height: 850px;
}

/* ===== 各頁 Banner 圖片 ===== */
.banner.banF { background-image: url(https://pic03.eapple.com.tw/trstudiodesign/banner1.jpg); }
.banner.banblog { background-image: url(https://pic03.eapple.com.tw/trstudiodesign/banner2.jpg); }
.banner.banE { background-image: url(https://pic03.eapple.com.tw/trstudiodesign/banner3.jpg); }
.banner.banC,
.banner.banD,
.banner.banB,
.banner { background-image: url(https://pic03.eapple.com.tw/trstudiodesign/banner4.jpg); }

/* ===== Banner 文字 ===== */
.banner h5 {
    color: #3f3a35;
    font-size: 24px;
}

.banner h5:before {
    content: "";
    font-size: 50px;
    white-space: pre-line;
    display: block;
    color: #3f3a35;
    font-family: "Quicksand", sans-serif !important;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.1;
    -webkit-animation: imgSlideUpAnimation 1s 0.1s ease-in-out forwards;
    animation: imgSlideUpAnimation 1s 0.1s ease-in-out forwards;
    opacity: 0;
}

/* ===== 各頁 Banner 文字內容 ===== */
body.other_page h5:before { content: 'SERVICE'; }
body.product_page h5:before,
body.product_info_page h5:before,
body.car_page h5:before { content: 'SHOP'; }
body.blog_page .banner h5:before,
body.blog_in_page .banner h5:before { content: 'ARTICLE'; }
body.album_page .banner h5:before,
body.album_info_page .banner h5:before,
body.album_class_page .banner h5:before { content: 'PHOTO'; }
body.contact_page .banner h5:before { content: 'CONTACT'; }
body.remit_page h5:before { content: 'REMITTANCE ADVICE'; }

/* ===== 動畫效果 ===== */
@-webkit-keyframes imgSlideUpAnimation {
    0% { opacity: 0; -webkit-transform: translateY(30px); transform: translateY(30px); }
    100% { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
}
@keyframes imgSlideUpAnimation {
    0% { opacity: 0; -webkit-transform: translateY(30px); transform: translateY(30px); }
    100% { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
}

/* ===== RWD (手機版) ===== */
@media screen and (max-width: 768px) {
    .banner {
        max-height: none;
        background-attachment: scroll; /* 手機避免 fixed 卡頓 */
    }
    .banner h5:before { font-size: 40px; }
    .banner h5 { font-size: 20px; }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*頁碼*/
.path p, .path p a {
    display: none;
    text-align: right;
    line-height: 24px;
    font-size: 13px;
    color: #3d3938;
}




/*按鈕*/
.animated-arrow {
    background: #3f3a35;
    color: #fff;
    display: inline-block;
    margin-top: 20px;
    height: 50px;
    line-height: 50px;
    overflow: hidden;
    width: 250px;
    text-align: center;
    position: relative;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
.car_page .information_left {
    display: block;
}

/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 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;
  
    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;
    
    width: 100%;
    margin-left: 0;
}

.product-layer-two li:hover ul {
    border: none !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 li a {
    padding: 5px 10px;
    background-color: #f3f3f32b;
}

.product-layer-two li li:hover>a {
    background: #fff;
    color: #3f3a35;
}

.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: #3f3a35;
}

.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 #3f3a35;
    color: #3f3a35;
    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: #3f3a35;
    color: #ffffff;
    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: auto;
}

.products-list .price b {
    color: #3f3a35;
    width: calc(50% - 10px);
}

.products-list .item {
    position: relative;
    background-color: transparent;
    padding: 5px;
}

/*左側分類*/

.product-layer-two li a {
    position: relative;
    background: transparent;
    padding: 7px 16px;
    display: block;
    font-size: 16px;
    color: #3f3a35;
    border-bottom: 1px #3f3a35 solid;
    border-left: 0;
    border-right: 0;
    border-top: 0;
}

.product-layer-two li:hover a {
    color: #3f3a35;
    border: 1px #3f3a35 solid;
    background-color: #3f3a3500;
}
/*下拉圖示*/
.product-layer-two li i.close::before {
    content: '\f056';
    color: #3f3a35;
}

/*左邊分類底色*/
.product-layer-two>li.active {
    background: transparent;

}

/*產品資訊標題*/
.pd_tabTitle li.activeTab a {
    color: #3f3a35;
}

element.style {
    color: #3f3a35;
}

/*產品資訊內文*/
element.style {
    color: #3f3a35;
}
.pd_tabInner_contain {
    padding-top: 20px;
    color: #3f3a35;
}

/*右側商品資訊*/
.product_info li .txt_box {
    display: inline-block;
    vertical-align: top;
    color: #3f3a35;
}

/*標題*/
.sidebarBtn h2 {
    color: #3f3a35;
    font-size: 24px;
}

.sidebarBtn .price {
    color: #3f3a35;
    font-size: 22px;
}

.sidebarBtn .sp_price {
    display: block;
    color: #bd2424;
    font-size: 22px;
    font-weight: bold;
}
/*加入購物車*/
.inquiry_a3 {
   background: #b6a495;;
}
/*加入詢價*/
.inquiry_a1 {
    background: #dac0a7;
}
/*檢視詢價車*/
.inquiry_a2 {
    background: #dac0a7;
}


.inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover {
    letter-spacing: 2px;
    background: #b9a084;
}

/*底*/
.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: #3f3a35;
    margin-bottom: 3px;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 1px;
}


/*底下相關商品*/
.prod_related {
    background: #e9dfd3;
    padding: 25px 15px;
}

.prod_related h6 span:before {
    content: '相關推薦';
    font-size: 24px;
    color: #3f3a35;
}

.related_list li a {
    display: block;
    padding: 0px;
    background: #fff;
    height: 100%;
}

/*詢價車*/
/*回產品頁*/
.rewrite_simple {
    background: #dcc2a7 url(../images/simple_left.png) 10% center no-repeat;
}


/*送出詢價*/
.send_simple {
    background: #dcc2a7 url(../images/simple_right.png) 88% center no-repeat;
}

.shopping-cart .cart_head {
    background: #dcc2a7;
    color: #fff;
}

/*訂購資料*/
.formbox_form li .form__label {
    display: block;
    width: 100%;
    text-align: left;
    color: #3f3a35;
}

.form label {
    display: block;
    position: relative;
    float: left;
    width: auto;
    margin-right: 20px;
    margin-bottom: 5px;
    color: #3f3a35;
}

.form label.Bigcheck {
    float: none;
    display: inline-block;
    color: #3f3a35;
    font-size: 15px;
    margin-left: 20px;
    top: 5px;
}

.declaration {
    background: #dcc2a7;
    line-height: 40px;
    padding: 5px 15px;
}

.shopping-cart .cell.product_name p {
    width: calc(100% - 90px);
    color: #3f3a35;
}

.shopping-cart .cell {
    padding: 10px;
    text-align: center;
    width: 20%;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 5px;
    color: #3f3a35;
}

.total_amount li b {
    font-weight: normal;
    color: #3f3a35;
}

.total_amount li span {
    color: #3f3a35;
}


.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: #3f3a35;
}

.total_amount li .couponData, .total_amount li .transFree {
    color: #ff4f4f;
}

.send_simple:hover {
    background-color: #b9a084
}

.rewrite_simple:hover {
    background-color: #b9a084
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/*底色通常為白色*/
.payer {
    background: #fdf6ebf5;
}


/*匯款資訊*/
.contact_le_map a {
    display: block;
    background: #dcc2a7;
    text-align: center;
    padding: 10px;
    color: #3f3a35;
}
.blank_letter {
    font-family: 'Josefin Sans', 'sans-serif', '微軟正黑體';
    padding-top: 30px;
    font-size: 26px;
    color: #3f3a35;
    background-position: left bottom;
    background-repeat: no-repeat;
}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*文章管理*/
h5.blog_le_t {
    font-size: 24px;
    font-weight: 500;
    color: #3f3a35;
    font-family: serif;
    letter-spacing: 2px;
    margin-bottom: 7px;
}

/*側邊標題*/
.accordion li .link a {
    cursor: pointer;
    display: block;
    padding: 15px 10px;
    color: #3f3a35;
    font-size: 14px;
    font-weight: 700;
    position: relative;
}

.blog_le .accordion>li:hover, .blog_le .accordion>li.on_this_category {
    background: #cab094 !important;
}

.blog_le .accordion {
    list-style-type: none;
    margin: auto;
    border: 1px #3f3a35 solid;
    overflow: hidden;
    border-bottom: 1px #3f3a35 solid;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-radius: 0px
}
/*次分類底色*/
.submenu {
    display: none;
    background: #dcc2a745;
    font-size: 14px;
}
/*次分類hover*/
.submenu li.on_this_category a, .submenu a:hover {
    background: #dcc2a7;
    color: #FFF;
}
/*右側文章排版*/
.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: #3f3a35;
    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: #3f3a35;
    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: #3f3a35;
    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;
}

/*文章*/
/*文章內頁*/
h4.blog_category_title {
    color: #3d3938;
    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: #3f3a35;
    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: #dcc2a7 !important;
}

body.blog_in_page.article_a h5.blog_le_t {
    font-size: 24px;
    font-weight: 500;
    color: #3f3a35;
}

/*隱藏文章縮圖*/
.articel_mainPic img {display: none;}


/*分享文字*/
.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_prev { background: #dcc2a7;}
.blog_back a.article_btn_next {background: #dcc2a7;}
/*文章按鈕*/
.blog_back a.article_btn_back {
    background: #c5ab8f;
}


.blog_back a.article_btn_back:hover, .blog_back a.article_btn_prev:hover, .blog_back a.article_btn_next:hover {
    background: #ad9478;
}

/*相關文章*/
.news_related {
    background: #e9dfd3;
    padding: 25px 15px;
}

.news_related h6 span:before {
    content: '相關文章';
    font-size: 24px;
    color: #3f3a35;
}

/*按鈕*/
.lastPage {
    font-size: 16px;
    color: #fff;
    background: #3f3a35;
    padding: 10px 20px;
    display: block;
    margin: 40px auto;
    width: 130px;
    text-align: center;
}

/*首頁-文章管理*/
.module_i_news li a:after {
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 8;
    background: #e9dfd3;
    opacity: 0;
    border: 0px #3d3938 solid;
}



/*首頁-文章顯示*/
.module_i_news li:nth-child(n+5) {
    display: none !important;
}

/*標題*/

.module_i_news .title_i_box h4 {
    font-size: 24px;
    color: #3f3a35;
    font-weight: bold;
    letter-spacing: 3px;
}

.module_i_news .title_i_box h4:before {
    content: "NEWS";
    display: block;
    font-family: "Quicksand", sans-serif;
    color: #3f3a35;
    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;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*相簿*/

.show-list .item:hover .show_name {
    color: #dcc2a7;
}
.other_subalbum li {
    display: block;
    background: transparent;
    width: 100%;
    margin: 0;
    border: none !important;
}


/*下方分類按鈕*/
.other_album_choice li {
    background: #dcc2a7;
    font-size: 15px;
    display: inline-block;
    border-radius: 18px;
    padding: 7px 20px;
    margin: 0 7px 7px 0;
}

/* 商品下拉超過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_form li.last cite {
    background: #3f3a35;
    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 #3f3a35 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: transparent;
    }
}

@media screen and (max-width: 1400px) {
    .container {
        max-width: 1200px;
        transition: all 0.3s;
    }
}

@media screen and (max-width: 1200px) {
    

    .footer_logo {
        width: 300px;
    }

 

    .stellarnav>ul>li>a {
        font-size: 16px;
    }
}

@media screen and (max-width: 980px) {
    .header_area.sticky {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
    }
    .main_header_area .container .navigation> * {
        grid-row: unset;
        grid-column: unset;
        text-align: center;
    }
    .footer_info li:nth-child(1), .footer_info li:nth-child(2) {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {

    /*Footer/＝＝＝＝＝*/
    .footer_info li p {
        text-align: left;
        display: flex;
        color: #ffffff;
        flex-direction: row;
    }

    #to_top {
        bottom: 60px;
    }

    .footer.with_shopping_mode {
        padding: 30px 0 60px;
    }

    .footer_info {
        justify-content: center;
    }

    .footer_logo {
        text-align: center;
    }

    #bottom_menu li a {
        background: #b9a89a;
    }

    #bottom_menu {
        flex: 1;
        float: none;
        border-right: 1px solid #ffffff;
        z-index: 9998;
    }

    #bottom_menu li a:hover {
        color: #ffffff;
    }

    .footer_info li {
        width: 80%;
    }

    .footer_info ul {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: column;
        align-items: center;
    }

    /*footer*/
    .footer_info {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        align-items: flex-start;
        padding: 10px;
        flex-direction: column;
    }

    .box_link {
    display: none;
    }

    .footer_info li:nth-child(1) {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

    .footer_menu {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(min(135px, 100%), 1fr));
        gap: 5px;
    }

    .footer_info li {
        width: 80%;
    }

    .footer_menu a {
        margin: 0;
        text-align: center;
        transition: all 0.3s;
        color: #ffffff;
        background: #ffffff00;
        border: 1px #ffffff solid;
    }

    .footer_menu a:hover {
        border: 1px #e0e0e0 solid;
        
    }

    /* 開啟手機板下方按鈕所需設定 */

    #to_top {
        bottom: 60px;
    }


    /*產品頁面*/


    .product_menu_list>h5 {
        color: #3f3a35;
        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 #3f3a35 solid;
        border-radius: 20px;
    }

    /*產品內頁-標題名稱*/
    .mobile_product_name {
        display: block;
        margin-bottom: 10px;
        color: #3f3a35;
    }

    /*產品資訊*/
    .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: none;
    }

    /*購物車內頁*/
    .inquiry_a1 {
        background: #4d4d4d;
    }

    .inquiry_a2 {
        display: none;
    }

    .inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover {
        letter-spacing: 2px;
        background: #dcc2a7;
    }

    /*文章*/
    .blog_subbox {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        grid-gap: 5px;
    }
}

@media screen and (max-width: 600px) {}