@charset "utf-8";
/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/

/*上方選單右邊設定 臉書/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}
*/

/*預設解除背景輪播*/
#content_main { margin:0;}
.bannerindex { position:relative; 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;}}

.copy { background:#ada17e; text-align: center; padding: 7px 0;  font-size: 13px;  color: #ffffff;  border-top: 1px #fff solid;  margin-top: 15px;}
/* 開場 */
.pageIndex #page::after {
    content: "";
    display: block;
    background-image: url(https://pic03.eapple.com.tw/xinruistone/開場logo.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: 1000000000000000000001;
    pointer-events: none;
    animation: banner-logo 3s forwards;
}
.pageIndex #page::before {
    content: "";
    display: block;
    background-image: url(https://pic03.eapple.com.tw/xinruistone/開場bg.jpg);
    background:;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1000000000000000000000;
    animation: banner-bg 2.6s forwards;

}


.swiper-banner::after {
    content: "";
    display: block;
    height: 0px;
    background-color: transparent;
    pointer-events: none;
    position: fixed;
    bottom: 240px;
    z-index: 500;
    opacity: 0;
}


@keyframes banner-logo {
    0% {
        opacity: 0;
        filter: blur(10px);
        transform: translate(-50%, 100%) scale(0.5); /* 從底部開始 */
    }

    25% {
        opacity: 1;
        filter: blur(0);
        transform: translate(-50%, 50%) scale(1.2); /* 稍微放大 */
    }

    50% {
        opacity: 1;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1); /* 到達中央 */
    }

    80% {
        opacity: 1;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1); /* 維持中央 */
    }

    100% {
        opacity: 0;
        filter: blur(10px);
        transform: translate(-50%, -50%) scale(1); /* 淡出 */
    }
}



@keyframes banner-bg {
    0% {}

    50% {}

    80% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}


/*●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●///首頁大圖*/
/*================================================BANNER*/
/*首頁大圖*/
/*預設解除背景輪播*/
.bannerindex { position:relative; height:auto;}
.swiper-banner { position:static; margin:0; height:auto;} 


/*大圖文字*/
.swiper-wrapper:before {
    content: "";
    width: 50%;
    height: 50%;
    background-size: contain;
    position: absolute;
    z-index: 101;
    animation: tracking-in-contract-bck2 1.5s both;
    aspect-ratio: 311 / 60;
}

.swiper-slide{position: relative;}
.swiper-slide:before, .swiper-slide:after {
    content: "";
    position: absolute;
    z-index: 999;
    pointer-events: none;
    transition-duration: 2s;
    transition-timing-function: linear;
}

.swiper-slide.swiper-slide-active:nth-child(1):before, .swiper-slide.swiper-slide-active:nth-child(1):after,
.swiper-slide.swiper-slide-active:nth-child(2):before, .swiper-slide.swiper-slide-active:nth-child(2):after {
    background-repeat: no-repeat;
    width: 50%;
    height: 50%;
	top: 50%;
    left: 25%;
    background-size: contain;
    position: absolute;
    z-index: 101;
    animation: upin 1.5s ease;
	
}
.swiper-slide.swiper-slide-active:nth-child(1):before{ background-image: url(https://pic03.eapple.com.tw/xinruistone/slogan01.png);}
.swiper-slide.swiper-slide-active:nth-child(2):before{ background-image: url(https://pic03.eapple.com.tw/xinruistone/slogan02.png); animation: leftin 1.5s ease;}


@keyframes upin {
 0% { transform: translateY(10%); opacity: 0;}
 60% { transform: translateY(0);}
 70% { transform: translateY(1%);opacity: 1;}
 100% { transform: translateY(0);}
}
@keyframes leftin {
 0% { transform: translateX(10%); opacity: 0;}
 60% { transform: translateX(0);}
 70% { transform: translateX(1%);opacity: 1;}
 100% { transform: translateX(0);}
}
@media screen and (max-width: 768px) {
    .bannerindex {  padding-bottom: 0;}
}



/* = = = header = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

/*首頁/＝＝＝＝＝*/
.pageIndex .header_area { padding: 0;background: #f0f0f000;}
.pageIndex .header_area { position: fixed; width: 100%;}
.pageIndex .main_header_area { background: linear-gradient(to bottom, #000, #0000);}

/*其他頁/＝＝＝＝＝*/
.header_area{background: linear-gradient(to bottom, #000, #0000);  position: fixed;}

.main_header_area .container 
.main_header_area {
    background: #0c0b0b;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    transition: all .5s;
    transition-timing-function: ease-in-out;
}
.header_area.sticky {padding: 0;}
header.header_area.sticky .main_header_area{ background: rgba(0, 0, 0, 0.7);padding: 0;}

.main_header_area .container { max-width: 1600px;}




/*第一層*/
.stellarnav > ul > li > a { transition: all 0.3s; letter-spacing: 2px; padding: 0px 15px; line-height: 90px;  height: 90px; overflow: inherit; color: #fff; font-weight: bolder;}
.stellarnav > ul > li:hover > a { color: #c9c9c9; letter-spacing: 5px; }
header.header_area.sticky .stellarnav > ul > li > a { line-height: 75px; height: 75px;  font-size: 14px;}
.stellarnav > ul > li:before { content: ""; width: 1px; height: 85%; background: #ffffff40; position: absolute;  left: 0;  top: 0; transform: rotateZ(195deg);}
.stellarnav > ul > li:after { content: ""; width: 2px; height: 0%; transform: rotateZ(195deg); background: #f9d485; position: absolute; left: 6px;  top: 0;  transition: 0.5s;}
.stellarnav > ul > li:hover:after { height: 30%;}

/*第二層*/
.stellarnav li.has-sub > a:after{display: none;}
.stellarnav li li > a , .stellarnav li li.has-sub > a{ padding: 7px 5px;    transition: all 0.3s;border-left:1px solid transparent;}
.stellarnav li li:hover > a , .stellarnav li li.has-sub:hover > a{color: #ADA17E;	padding-left:10px;border-color:#ADA17E ;}
/*SubMenu*/
.me_tp_features {display: none;}
.shop_search_btn { background: #ADA17E;}
.tp_links a{transition:all 0.3s;}
.tp_links a:hover { color: #ADA17E;}

/*Logo/＝＝＝＝＝*/
.nav-brand {    width: 100%;max-width: 250px;transition:all 0.3s;}

.header_area .nav-brand {    transition: all 0.3s;  }
.header_area.sticky .nav-brand{}

.navigation {     width: 100%;
    position: relative;
    padding: 0;
    display: grid;
    grid-template-columns: 250px 1fr;
    grid-gap: 0 20px;
}
.nav-header { max-width: 250px;}

/*--手機板選單---------------------------------------*/

/*選單*/
.stellarnav .menu-toggle span.bars span { background: #aba07d;}
.stellarnav .menu-toggle:after { color: #aba07d;}

/*展開*/
.stellarnav.mobile.left > ul { background: #3a3a3af2;}
.stellarnav.mobile > ul > li { border-bottom: 1px #888 solid;}
.stellarnav.mobile > ul > li > a { padding: 20px 30px; border-bottom: none; display: block; }
.stellarnav.mobile > ul > li.has-sub > a { padding: 20px 30px 20px 36px;}
.stellarnav.mobile > ul > li.has-sub > a.dd-toggle { padding: 20px 30px 20px 36px;}
.stellarnav.mobile > ul > li.has-sub > ul > li > a { color: #ccaa7a; padding: 20px 30px 20px 40px;}
.stellarnav.mobile > li > a { border-bottom: none;}

/*close*/
.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu { background: #ada17e; color: #fff;}
.stellarnav .icon-close:after, .stellarnav .icon-close:before { border-bottom: solid 3px #fff;}
.stellarnav.mobile > ul > li > a.dd-toggle { top: 14px;}
.stellarnav a.dd-toggle .icon-plus {width: 0; top: -7px; left: -4px;}
.stellarnav a.dd-toggle .icon-plus { width: 0;  top: -18px;  left: -10px;}
.stellarnav a.dd-toggle .icon-plus:before, .stellarnav a.dd-toggle .icon-plus:after { border-bottom: solid 3px #888;}
.stellarnav li.open > a.dd-toggle .icon-plus:before, .stellarnav li.open > a.dd-toggle .icon-plus:after { border-bottom: solid 3px #ada17e;}

/*下拉*/
.stellarnav.mobile li.open { background: #cbc0a022; padding: 0;}
.stellarnav.mobile li.open > ul > li { margin-bottom: 0; border-bottom: 1px solid #ccc;}
.stellarnav.mobile li.open li.open { padding: 0; background: #ffffff88;}
.stellarnav.mobile ul { background: transparent;}
.stellarnav > ul > li.drop-left > ul { left: 0; right: auto;}
.stellarnav ul ul ul {max-height: 300px;overflow: auto;}/*次分類部下滾輪*/



/*--RWD---------------------------------------*/
@media screen and (max-width: 425px){.stellarnav > ul > li:hover > a, .stellarnav > ul > li.has-sub:hover > a {color: #fff;}}
@media screen and (max-width: 1440px) {  .swiper-pagination { display: none;}}

@media screen and (max-width: 1024px) {
/*Header/＝＝＝＝＝*/
.navigation { padding: 0px;}
.header_area.sticky .navigation { padding-top: 0px;}
.header_area.sticky .nav-header { height: 0;}
.stellarnav > ul > li > a { line-height: 40px;height: 40px;}
header.header_area.sticky a.nav-brand { max-width: 0px;}
/*Logo/＝＝＝＝＝*/
.header_area .nav-brand{max-width: 100px;}
.header_area.sticky .nav-brand{max-width: 0;}}


@media screen and (max-width: 768px) {
/*選單漸變效果＝＝*/
/*首頁固定選單*/
.header_area.sticky .nav-header { height: 50px;}

/*側邊選單/＝＝＝＝＝*/
.stellarnav.mobile > ul > li.has-sub > a {
    padding: 20px 30px 20px 36px;
}
.stellarnav .menu-toggle:after { color: #FFC85A;}
.stellarnav .menu-toggle span.bars span { background: #FFC85A;}
.stellarnav.mobile ul { background: #000;}
.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {  background: #ceab76;color: #fff;}
.stellarnav .icon-close:after,.stellarnav .icon-close:before {  border-bottom: solid 3px #fff;}
.stellarnav a.dd-toggle .icon-plus:before ,.stellarnav a.dd-toggle .icon-plus:after{ border-bottom: solid 3px #fff;}
.stellarnav > ul > li:before ,.stellarnav > ul > li:after{display: none;}
.stellarnav.mobile li a { border-bottom: none;}
.stellarnav.mobile li.open { background: #585858; padding: 0px;}
header.header_area.sticky .stellarnav > ul > li > a { line-height: 150%; height: auto;}
.stellarnav.mobile li.open li.open { background: #d8d8d8; padding: 0px;}
.stellarnav li a { color: #999;}
.stellarnav li li > a , .stellarnav li li.has-sub > a{    padding: 10px;border-left:none;}
.stellarnav li li:hover > a , .stellarnav li li.has-sub:hover > a{padding: 10px;border-color:transparent;}

/*Logo/＝＝＝＝＝*/
.nav-brand{ margin-top: 10px;}
.header_area .nav-brand { max-width: 100%; }
header.header_area.sticky a.nav-brand { max-width: 200px;}

.navigation { display: flex; flex-direction: column; justify-content: flex-start; align-items: center;}
.header_area.sticky .nav-header { height: 90px; }}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*校稿版面設定*/
.services_page .main_part, .pageIndex .main_part, .other_page .main_part, .other_select_page .main_part{ width: 100%; max-width:100%; margin: auto; padding:0px; margin-top:-1px;}
.show_content { width: 100%; padding:0px; top:-1px;}
.edit_part { max-width: 100%; margin: 0; padding: 0px;}


/*頁面內容*/
div#page { }
#content_main, #content {}
.news_related{background: #ada17e33;}
.module_i_news { }
.path { display: none;}
.other_page #content, .other_select_page #content { min-height: auto;}

/*下拉選單頁面*/
ul.page {display:;}
.other_promotion{display: none;}
.promotion_title {  display: none;}

/*SubMenu*/
.shop_search_btn { background: #ada17e;}
.tp_links a { display: none;}/*隱藏選單按鈕連結*/
.tp_links a:hover { color: #ada17e;}
.me_tp_features a.tp_btn_notice { color: #ada17e;}
.me_tp_features a {  color: #ada17e;}
.me_tp_features a i { color: #ada17e;   margin: 0 3px;}
.me_tp_features a.tp_btn_cart { color: #ada17e;}
.me_tp_features a.tp_btn_notice {color: #ada17e;}

/*＝＝相簿＝＝＝*/
.show-list .item:hover .show_name { color: #ada17e;}
.overlay {background: #8e6c5161;}

/*購物車/＝＝＝＝＝*/
#content { width: 100%; max-width: 100%; background: url(https://pic03.eapple.com.tw/) top repeat-y; background-size: cover;}
.products-list {    display: grid;    gap: 10px;    grid-template-columns: 1fr 1fr 1fr 1fr;}
.products-list:before{content:none;}
.products-list .item {   width: 100%;}

/*購物車/外層＝＝*/
/*顏色*/
.products-list .item a:hover .more {    background: #ada17e;}
.products-list .name {
    text-align: center;
    font-size: 15px;
    color: #ada17e;
    letter-spacing: 1px;
    margin-top: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 30px;
}
/*價格*/
.products-list .price {    display: none;    margin-bottom: 5px;    align-items: center;    justify-content: center;    flex-wrap: wrap;}
.products-list .price b {    margin: 0 5px;    line-height: 180%;    text-align: center;color: #ada17e;}
.products-list .price b.ori_price {    font-size: 14px;}

/*外層版面*/
.product_page .main_part {    width: 90%;	max-width: 1500px;}
.product_page .show_content {    display: flex;    flex-wrap: wrap;    align-items: flex-start;    justify-content: space-between;}
.product_page .products-list {    width: calc(100% - 280px);}
.product-layer-two {    width: 250px;    margin: 0;}
.product_info_page .product-layer-two {    display: none;}
.product-layer-two li {    margin: 0;    width: 100%;padding: 0 10px;}
.product-layer-two > li.active {    background: #f2f2f2;}
.product-layer-two li.active a {    border: unset;border-bottom: 1px dotted #ccc;}
/**/
.product-layer-two li a {    color: #222;    border: none;    background: transparent;    transition: all 0.3s;    line-height: 200%;    transition: all 0.3s;}
.product-layer-two > li > a {    border-bottom: 1px dotted #ccc;padding-left: 25px;}
.product-layer-two li:hover > a , .product-layer-two li.active > a{color: #ada17e;}
.product-layer-two li:hover > a:before , .product-layer-two li.active > a:before {background: #ada17e; color:#fff;}
.product-layer-two > li > a:before {
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    height: 18px;
    content: "＞";
    color: #ada17e;
    background: #f2f2f2;
    width: 18px;
    text-align: center;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
    padding-left: 2px;
    font-size: 13px;
}
/**/
.product-layer-two li ul {    position: relative;padding-top: 1px;}
.product-layer-two li li {    border: none;background: transparent;}
.product-layer-two li li a{    background: transparent;}
.product-layer-two li li:hover a{color: #ada17e;}

/*hover到才顯示副選單 關掉↓*/
.product-layer-two li li {    display: block;}

/*購物車/內層＝＝*/
.product_info_page .main_part {    width: 90%;}
.product_pic #bx-pager h6 {
    display: none;
}
/*按鈕顏色*/
.inquiry_a1, .inquiry_a2, .inquiry_a3{}
.inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover{}

.sidebarBtn form:nth-of-type(2) {  position: absolute; left: 10px; width: 100%; max-width: 270px;}

.toShare {margin-top: 175px;}

.lastaction { color: #ada17e; background-color: #dedede;}
.nextaction { background-color: #ada17e;}
.lastPage {    background: #ada17e;}

/*商品側邊規格*/
.product_info li .txt_box {    color: #222222;    width: 100%;}
.sidebarBtn .sp_price {   color: #8cbefa;}
.sidebarBtn { border: none;   background: #fff;  box-shadow: 0 0 10px #ada17e; position: relative;}
.mobile_product_name{font-size: 24px;}

/*相關推薦*/
.prod_related h6 span:before { font-size: 28px; color: #ada17e;}
.prod_related {  background: #e1dbd66b;}
.related_list li a p {color: #fff; background: #01385f;}

.products-list .more {
        border: 0px solid #ada17e;
        color: #ada17e;
        font-size: 16px;
        font-weight: bold;
        line-height: 32px;
        text-align: center;
        transition: all .5s;
        position: absolute;
        transform: translateX(-50%);
        left: 50%;
        bottom: 0;
        border-radius: 10px;
    }

.products-list .item a:hover .more { background: #ada17e; color: #fff; letter-spacing: 2px;}
.inquiry_a1 {background: #999;}
.inquiry_a1:hover{background: #5f5843;}

.inquiry_a2 {background: #867a55;}
.inquiry_a2:hover{background: #777;}




@media screen and (max-width: 1200px) { .products-list {    grid-template-columns: 1fr 1fr 1fr;} }
@media screen and (max-width: 1024px) {.product_page .products-list {    grid-template-columns: 1fr 1fr;}}

@media screen and (max-width: 768px) {
.products-list {    grid-template-columns: 1fr 1fr;}
.product_page .products-list ,.product-layer-two {    width:100%;}
.prod_related h6 span:before{font-size: 24px;}
/*順序*/
.product_page .products-list {    order: -1;}}

@media screen and (max-width: 600px) {
.prod_related h6 span:before{font-size: 20px;}
/* 首頁購物車 */
.animated-arrow {margin-bottom: 50px;}}
@media screen and (max-width: 375px) {.products-list , .product_page .products-list  {    grid-template-columns: 1fr;}}


/*按鈕*/
.animated-arrow { background: #ada17e; border-radius: 10px; transition: .3s ease-in-out;}
.animated-arrow:hover { background: #ada17e; transition: .3s ease-in-out;}

/*頁碼*/
.page { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; width: 100%; margin: 40px auto;}
.page li { display: flex; margin: 3px; width: 30px; height: 30px; line-height:30px; align-items: center; justify-content: center;}
.page li.activeN { background: #666; border-radius: 100%; color: #fff; font-weight: 600;}
.page li a { display: block; width: inherit; height: inherit; line-height: inherit; padding: 0; color: #ccc; transition:all 0.3s;}
.page strong, .page a:hover { background: #ada17e; border: 1px solid #ada17e;}

.lastPage { background: #ada17e;}
.pd_tabTitle li.activeTab::after { height: 5px;  background: #ada17e;}

/* = = = 預設解除背景輪播 = = = = = = = = = = = = = = = = = = = = = = = = = */

#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;}}

/* = = = Index banner = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

@media screen and (max-width: 768px) {
/* 行動裝置相容性調整 大圖調整 */
.swiper-slide img { animation-fill-mode: none; -webkit-animation-fill-mode: none;}
}

/* = = = footer = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.footer { background: #6c6c6c;}
.footer_info {    display: flex;    flex-wrap: wrap;    align-items: center;    justify-content: space-between;}
.footer_info li p , .footer_info li p a { color: #fff;}

.footer_menu {    display: grid;    grid-template-columns: repeat(auto-fit, minmax(min(110px,100%), 1fr));    gap: 5px;}/*footer按鈕最小寬度100px*/
.footer_menu a {  color: #c1c1c1;  margin: 0;	text-align: center;	padding: 5px;	transition: all 0.3s;border: none; background: transparent; border-left: 1px solid;   font-weight: bolder;}
.footer_menu a:nth-child(1) { display: none;}
.footer_menu a:hover { background: transparent; letter-spacing: 3px; color: #dedede;}
.copy {background: #222;    color: #fff;	border:none;}
.copy a{ color: #fff;transition:all 0.3s;}
.copy a:hover { color: #fff;}
.box_link { display: none;}
.box_link a{transition:all 0.3s;}
.box_link a:hover {    background: #ADA17E;    color: #fff;}

#to_top { bottom:60px;}

.footer.with_shopping_mode {  }
.footer_info {    justify-content: center; padding-right: 0;}
.footer_logo {    text-align: center;}
.footer_info li:nth-child(1) {display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px 20px;}

 @media screen and (max-width: 768px) {.footer_info li:nth-child(1) { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 20px; }}

@media screen and (max-width: 430px) {
.footer_info li:nth-child(1) { text-align: center; display: grid; grid-template-columns: repeat(1, 1fr); gap: 10px 20px;}}

.footer_info li p.tel2:before { content: '手機：';}

.footer_info li p:nth-of-type(1) {
  order: 1;
}
.footer_info li p:nth-of-type(2) {
  order: 2;
}
.footer_info li p:nth-of-type(3) {
  order: 3;
}
.footer_info li p:nth-of-type(4) {
  order: 4;
}
.footer_info li p:nth-of-type(8) {
  order: 5;
}/*第二地址改*/
.footer_info li p.add2:before {
    content: '手機：';
}
.footer_info li p:nth-of-type(5) {
  order: 6;
}
.footer_info li p:nth-of-type(6) {
  order: 7;
}
.footer_info li p:nth-of-type(7) {
  order: 8;
}
/*聯絡icon*/
.box_link {display: none;}

/*--------------------------------------------------------------------------------------------*/
/* 商品下拉超過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: #efefef; 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個--結束 */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 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 li a{ padding:5px 10px;}
.product-layer-two li li:hover > a { background:#fff; color:#ad925e;}
.product-layer-two > li { width:100%; max-width:100%; padding:0; text-align:left; border-bottom:1px dotted #ccc; 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%;}

.product-layer-two li li:hover{ margin-left: 15px;}
.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:#ad925e;}

.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;}
@media screen and (max-width: 1200px) {}
@media screen and (max-width: 980px) {}
@media screen and (max-width: 768px) {
.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_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: 600px) {}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*內頁BANNER 設定*/
.banner { height: 300px;}
.banner h5 { position: relative; font-size: 16px; letter-spacing: 1px; top: 36px; color: #fff; text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);}
.banner h5:after {
    text-align: center;
    font-size: 39px;
    color: #fff;
    position: absolute;
    top: 27px;
    left: 50%;
    transform: translateX(-50%);
    font-family: Montserrat;
    font-weight: 500;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}
.banner.banblog h5:after {  content: "INTRODUCTION";}
.banner.banC h5:after { content: "CONTACT";}
.banner.banE h5:after { content: "PROJECT";}

.banner.banA { display:none ; background-image: url(https://pic03.eapple.com.tw/);}
.banner.banB{ display: none; background-image: url(https://pic03.eapple.com.tw/);}
.banner.banC{background-image: url(https://pic03.eapple.com.tw/xinruistone/bn03.jpg);}
.banner.banE{ background-image: url(https://pic03.eapple.com.tw/xinruistone/bn02.jpg);}

.banner.banF{ background-image: url(https://pic03.eapple.com.tw/);}

.banner.banblog { background-image: url(https://pic03.eapple.com.tw/xinruistone/bn01.jpg);}

@media screen and (max-width: 768px) { .banner h5 { font-size: 28px;}}
@media screen and (max-width: 600px) { .banner h5 { font-size: 24px;}}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu {display:; }
#to_top { bottom:60px;}}

@media screen and (max-width: 600px) { }

/* = = = 文章 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*文章管理/＝＝＝＝＝*/
h4.blog_category_title{font-size: 28px;}
h4.blog_category_title span{font-size: 24px;}
/*文章管理/外層＝＝*/
.module_i_news ul, .blog_subbox {    display: grid;    gap: 10px;}
.module_i_news li , .subbox_item {    width: 100%;}
.module_i_news li a , .subbox_item a {    padding: 5px;}
.subbox_item a {  display: flex;  position: relative;  grid-gap: 20px;  flex-direction: column;}

.module_i_news li a:after , .subbox_item a:after{pointer-events:none;}
.subbox_item a:after {background: #8e6c514f; border: 0px #ddd solid;}
.subbox_item a:before {
    background: #ada17e;
    padding: 5px 20px;
    color: #ffffff;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
    -webkit-clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
    -o-clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
    -moz-clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
    -ms-clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
    bottom: 0;
    right: 0;}

.i_blog_le, .i_blog_ri , .blog_list_le , .blog_list_ri {    width: 100%;}
.i_blog_le , .blog_list_le{    position: relative;    padding-bottom: 100%;    height: 0;}/*文章縮圖長寬比例，100% →100:100 = 1:1 正方形 */
.i_blog_le img , .blog_list_le img{
	display:block;
    max-width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);}
.blog_list_ri h5 {
    font-weight: bold;
    color: #0b0b0b;}    
/*側邊*/
.blog_le .accordion > li{transition:all 0.3s;}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {    background: #ada17e !important;}
.submenu a:hover {    background: #2655455d;}
/*首*/
.module_i_news ul{width: 90%;	grid-template-columns:1fr 1fr 1fr 1fr;}
/*功*/
.blog_subbox{grid-template-columns:1fr 1fr 1fr;}
.blog_subbox:before{content:none;}
/*文章管理/內層＝＝*/
.blog_back a.article_btn_back{background: #ada17e;}
.blog_back a.article_btn_next {    background: #aba07d;}
.blog_back a.article_btn_prev{    background: #aba07d;}  

.module_i_news ul{grid-template-columns:1fr 1fr;}

.blog_le .accordion > li:hover .link, .blog_le .accordion > li.on_this_category .link { background-color: #ada17e; color: #fff !important;}/*外層*/
/*內層*/
.blog_le .accordion > li.on_this_category .link { color: #fff !important;  background-color: #ada17e;}/*文章選單底色*/
.blog_back a.article_btn_back { background: #ada17e;}/*回列表*/

/*--文章RWD---------------------------------------*/
@media screen and (max-width: 980px) {
.blog_subbox{grid-template-columns:1fr 1fr;}}

@media screen and (max-width: 768px) {
h4.blog_category_title{font-size: 24px;}
h4.blog_category_title span{font-size: 20px;}}

@media screen and (max-width: 600px) {
    .module_i_news ul , .blog_subbox{grid-template-columns:1fr;}
    h4.blog_category_title{font-size: 20px;}
    h4.blog_category_title span{font-size: 18px;}}



/*--RWD---------------------------------------*/
@media screen and (max-width: 1440px) {
    .stellarnav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    text-align: right;
    margin: 0px ; 
    padding: }
}

@media screen and (max-width: 768px) {}

@media screen and (max-width: 600px) { 
  /*聯絡icon*/
  .box_link { text-align: center;}
}

/* = = = 聯絡表單 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

.contact_le_map { display: none;}

/*表單最大寬度設定*/
.contact_content .information_right { max-width: 1400px;}
.contact_content {margin: auto;padding: 20px 100px;}

/*標題*/
.blank_letter { color: #ada17e;}

/*側邊資訊*/

.list_before {
    display: flex;
    margin-top: 10px;
    flex-direction: column;
}
.list_before.info li:nth-of-type(1) {order: 0;}
.list_before.info li:nth-of-type(2) {order: 1;}
.list_before.info li:nth-of-type(3) {order: 2;}
.list_before.info li:nth-of-type(4) {order: -1;}
.list_before.info li:nth-of-type(5) {order: 5;}
.list_before.info li:nth-of-type(7) {order: 7;}
.list_before.info li:nth-of-type(8) {order: 3;}

.info_TEL2:before {
    content: "手機";
}
.info_ADD2:before {
    content: "手機";
}
/*表格樣式*/
.contact_form li input.noborder { border: none; border-bottom: 1px #ddd solid; background: transparent;}/*文字欄*/
.contact_form li textarea.noborder { background: transparent; border: 1px #ddd solid;}/*文字區塊*/
.form select { background: transparent;}/*下拉式*/
input[type="checkbox"], input[type="radio"] { margin: 0px;}/*複選、單選*/

/*驗證碼對齊*/
.contact_form li:nth-last-of-type(2) .form__insert { display: inline-flex; align-items: center; justify-content: flex-start; flex-wrap: nowrap;}
.contact_form li:nth-last-of-type(2) input.noborder { border: 1px #ddd solid;}
.captcha { margin-right: 20px;}

/*按鈕*/
.contact_form li.last blockquote { border: 1px #ccc solid;}
.contact_le_map a { background: #ada17e;}
.contact_form li.last cite {background: #ada17e;}

@media screen and (max-width: 425px){
    .stellarnav.mobile > ul > li.has-sub > a {
        padding: 20px 30px;}
    /*聯絡表單*/
    .contact_form li { padding-left: 0;}
    .contact_form li .form__label { margin: 0 0 10px; width: 100%; text-align: left;}
    .contact_form li .form__insert { width: 100%;}
    .contact_content { margin: auto;padding: 20px 10px;}
}


/* = = = RWD = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
@media screen and (max-width: 1200px) { 
    .stellarnav {
        padding: 0 0 10px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
        text-align: center;
        margin: 0 0px 0 20px;
    }
}
@media screen and (max-width: 1024px) { }
    

@media screen and (max-width: 768px) { }

@media screen and (max-width: 600px) {  
     .header_area .nav-brand {
        max-width: 150px;
    } }

    @media only screen and (max-width: 570px) {
    .stellarnav .menu-toggle {
        padding: 25px 10px;
    }
}
@media screen and (max-width: 425px) { 
    .me_tp_features{display: none;}
    .header_area { padding: 0px; position: fixed;}}

.show_content .fadeInUp .animated15 {animation: none ;}
.fadeInUp{ animation: none ;}
