@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}
*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
:root {
    --MainColor: #513D24; /*網站主要色系*/
    --SubColor: #D3B572; /*網站輔助色系1*/
    --SubColor2: #383838; /*網站輔助色系2*/
    --color:#a50000;
    --SFont:"Noto Sans TC", sans-serif;/*黑體*/
    --SFont2: "Noto Serif TC", serif;/*細明體*/
    --SFontE:"Playfair Display", serif;/*特殊字體*/

    --pd100:100px 0;
    --m100:100px;
    --m50:50px;
    --m30:30px;
    --f100: 100px;
    --f60: 60px;
    --f48: 48px;
    --f40: 40px;
    --f36: 36px;
    --f32: 32px;
    --f28: 28px;
    --f24: 24px;
    --f22: 22px;
    --f20: 20px;
    --f18: 18px;
    --f17: 17px;
    --f16: 16px;
    --m100: 100px;
    --m50: 50px;

}

@media (max-width:1024px) {
    :root {
        --m50: 40px;
        --m30: 25px;
        --f100: 90px;
        --f60: 52px;
        --f48: 40px;
        --f40: 36px;
        --f36: 32px;
        --f32: 28px;
        --f28: 24px;
        --f24: 22px;
        --f22: 20px;
    }
}

@media (max-width:768px) {
    :root {
        --pd100: 70px 0;
        --m100: 70px;
        --m50: 30px;
        --m30: 20px;
        --f100: 72px;
        --f60: 50px;
        --f48: 32px;
        --f40: 28px;
        --f36: 26px;
        --f32: 24px;
        --f28: 20px;
        --f24: 20px;
        --f20: 18px;
        --f18: 17px;
        --f17: 16px;
        --f16: 15px;
    }
}

@media (max-width:600px) {
    :root {
        --pd100: 50px 0;
        --m100: 50px;
        --m50: 25px;
        --f100: 60px;
        --f60: 40px;
        --f48: 28px;
        --f40: 24px;
        --f36: 22px;
        --f32: 20px;
        --f28: 18px;
        --f24: 18px;
        --f22: 18px;
        --f20: 17px;
        --f18: 16px;
        --f17: 15px;
    }
}

@media (max-width:375px) {
    :root {
        --f100: 48px;
        --f60: 32px;
        --f48: 24px;
        --f40: 20px;
        --f36: 18px;
        --f32: 18px;
        --f28: 17px;
        --f24: 17px;
        --f22: 17px;
        --f20: 16px;
        --f18: 15px;
    }
}

#content { background: url(https://pic03.eapple.com.tw/sinyuan1950/bg1.png) ;}


.path { display: none;}
.tp_links{ display: none;}
.header_area { 
    background: linear-gradient(180deg, #3920076e, transparent);
    padding: 10px 10px 0px 10px;    
    position: absolute;
    border-bottom: 1px solid #fff;
    }
.me_tp_features a.tp_btn_cart, .me_tp_features a.tp_btn_notice { color: #fff;}
/*.header_area.sticky{ background: var(--MainColor);}*/
/*電腦LOGO*/
.nav-brand {    width: 100%;transition:all 0.3s;}
.header_area .nav-brand {    transition: all 0.3s;       filter: brightness(100);}
.header_area::after{
    position: absolute;
    content: "";
    background: var(--MainColor);
    width:0;
    height: 100%;
    left: 0%;
    top: 0;
}

.pageIndex .header_area{opacity: 0;animation: scale-down-top 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;animation-delay: 3s;}
@keyframes scale-down-top {
    0% {
        -webkit-transform: scale(1.05);
                transform: scale(1.05);
        -webkit-transform-origin: 50% 0%;
                transform-origin: 50% 0%;
                opacity: 0;
      }
      100% {
        -webkit-transform: scale(1);
                transform: scale(1);
        -webkit-transform-origin: 50% 0%;
                transform-origin: 50% 0%;
                opacity: 1;
      }
    }
   

/*sticky*/
.sticky .me_tp_features a.tp_btn_cart, .sticky  .me_tp_features a.tp_btn_notice { color:var(--MainColor);}
.sticky .main_header_area .container {   max-width: 1800px;transition: 0.3s ease-in;}
.header_area.sticky{
    position: fixed;
    background: #d3b572c4;
    backdrop-filter: blur(4px);
    border-bottom:none ;
}
.sticky .nav-brand img{display: none;}
.header_area.sticky .nav-brand{
    background: url(https://pic03.eapple.com.tw/sinyuan1950/logo-header-stk.svg);
    background-repeat: no-repeat!important;
    background-position: center!important;
    background-size: contain!important;
    width: 203px;
    height: 60px;
    filter: brightness(1);
}
.sticky .stellarnav > ul > li > a{color: var(--MainColor); filter: unset;}
.sticky .stellarnav li.has-sub > a:after,
.sticky .stellarnav li.has-sub:hover > a:after { border-top: 6px solid var(--MainColor);}
.sticky .stellarnav > ul > li:hover > a{color: var(--MainColor);}




/*第一層*/
.navigation { grid-template-columns: 220px 1fr;padding: 0 0 10px 0;     align-items: end;}
.stellarnav > ul > li > a{transition:all 0.3s;font-family: var(--SFont);color: #fff;letter-spacing: 1px;    filter: drop-shadow(2px 2px 3px #52463da2);}
.stellarnav > ul > li > a b:nth-child(1){font-family: var(--SFont2);font-weight: bold;}
.stellarnav > ul > li > a b:nth-child(2){font-family: var(--SFontE);font-weight: bold;}
.stellarnav > ul > li:hover > a{color: var(--MainColor);}
.stellarnav > ul > li > a:hover b{color: var(--MainColor);}
.stellarnav li.has-sub > a:after { border-top: 6px solid #fff;}
.stellarnav li.has-sub:hover > a:after { border-top: 6px solid var(--MainColor);}
/*第二層*/
.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: #fff;	padding-left:10px;background: var(--MainColor);}

.stellarnav > ul > li.drop-left > ul { padding-top: 10px;background: #ffffff00;}
.stellarnav li li{background: #fff;border: 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個--結束 */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*進入網站動畫*/
.pageIndex::after{
    content: "";
    pointer-events: none;
    display: block;
    width: 100%;
    height: 0;
    padding-bottom:calc(100% / 1* 0.04);
    background: url(https://pic03.eapple.com.tw/sinyuan1950/logo.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(0%, -50%) ;
    z-index: 100000000;
    animation: logo 3s cubic-bezier(0.550, 0.085, 0.680, 0.530);
    opacity: 0;
   filter:drop-shadow(2px 2px  3px #fff) ;
}

@keyframes logo {
    0% {
        -webkit-transform: perspective(1000px)translateZ(0);
                transform: perspective(1000px)translateZ(0);
        opacity: 1;
      }
      60% {
        opacity: 0.8;
      }
      100% {
      
        -webkit-transform: perspective(1000px) translateZ(100px);
                transform: perspective(1000px) translateZ(100px);
        opacity: 0;
      }
}

.pageIndex #page::before{
    content: "";
    pointer-events: none;
    display: block;
    width: 100%;
    height: 100%;
    background:#ffffff00;
    background-size: cover;
    background-position: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    animation:  blur 3s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
  
    backdrop-filter: saturate(90%) blur(7px);
}
    @keyframes blur{
    0% {  opacity: 0;background: #ffffffe3;filter: brightness(150%);}
    50% {  opacity: 1;background:  #ffffff63;}
    100% {  opacity: 0;background: #ffffff00;filter: brightness(100%);}
}


/*大圖*/
.swiper-fade .swiper-slide:nth-child(2)::after{
    position: absolute;
    content: "";
    background: url(https://pic03.eapple.com.tw/sinyuan1950/bn02p.png) no-repeat;
    background-size: contain;
    background-position: center;
    width: 100%;
    height: 0;
    padding-bottom: calc(100% / 1*0.2);
    left: 50%;
    transform: translateX(-50%);
    top: 30%;
    filter: drop-shadow(0 0 3px var(--MainColor));
    z-index: 2;
}
.swiper-fade .swiper-slide:nth-child(2)::before{
    position: absolute;
    content: "";
    background: url(https://pic03.eapple.com.tw/sinyuan1950/bn02p-bg.png) no-repeat;
    background-size: contain;
    background-position: center;
    width: 100%;
    height: 0;
    padding-bottom: calc(100% / 1*0.25);
    left: 0%;
    top: 0%;

    filter: drop-shadow(0 0 5px var(--MainColor));
    z-index: 1;
}

.swiper-fade .swiper-slide-active:nth-child(2):before,
.swiper-fade .swiper-slide-active:nth-child(4):before{ animation:   Smoke 6s ease-out both;}
@keyframes  Smoke{
    0% {
        -webkit-transform: scale(1) translateY(0);
        transform: scale(1) translateY(0);
-webkit-transform-origin: 50% 16%;
        transform-origin: 50% 16%;
        opacity: 0;
        filter: brightness(100)；
}
100% {
-webkit-transform: scale(1.1) translateY(-15px);
        transform: scale(1.1) translateY(-15px);
-webkit-transform-origin: top;
        transform-origin: top;
        opacity: 1;
        filter: brightness(100)；
}
}

.swiper-fade .swiper-slide:nth-child(4)::after{
    position: absolute;
    content: "";
    background: url(https://pic03.eapple.com.tw/sinyuan1950/bn04p.png) no-repeat;
    background-size: contain;
    background-position: center;
    width: 100%;
    height: 0;
    padding-bottom: calc(100% / 1*0.1);
    left: 50%;
    transform: translateX(-50%);
    top: 60%;
    filter: drop-shadow(0 0 5px var(--MainColor));
    z-index: 2;
}
.swiper-fade .swiper-slide:nth-child(4)::before{
    position: absolute;
    content: "";
    background: url(https://pic03.eapple.com.tw/sinyuan1950/bn04p-bg.png) no-repeat;
    background-size: contain;
    background-position: right;
    width:100%;
    height: 0;
    padding-bottom: calc(100% / 1*0.3);
    right: 0%;
    bottom:0%;
    opacity: 0.7;
    z-index: 1;
}

/*Banner/＝＝＝＝＝*/

.banner{
    background:url(https://pic03.eapple.com.tw/sinyuan1950/banner-1.png) no-repeat;
    background-size: cover;
    background-position: left;
    min-height:700px;
    position: relative;
}
.banner h5{
    font-size: 32px;
    font-family: var(--SFont2);
    position: relative;
    width: 100%;
    color: #fff;
    left: 50%;
    transform: translateX(-50%);
        top: 110px;
}
.contact_page .banner{display: none;}
.banner h5::after{
    position: absolute;
    content: "";
    font-size: var(--f18);
    color: #fff;
    font-family: var(--SFontE);
    left: 50%;
    transform: translateX(-50%);
    top: -20px;
}
.banner h5::before{
    position: absolute;
    content: "";
    background: url(https://pic03.eapple.com.tw/sinyuan1950/banner-logo.png) no-repeat;
    background-size: contain!important;
    left: calc(50% - 25px);
    transform: translateX(-50%);
    top: -75px;
    width: 50px;
    height: 50px;
    animation: rotation2 3s linear infinite;
}
@keyframes rotation2 {
        0% {
            transform: rotate3d(0, 1, 0, 0deg);
        }

        50% {
            transform: rotate3d(0, 1, 0, 0deg);
        }

        100% {
            transform: rotate3d(0, 1, 0, 360deg);
        }
    }

.services_page .banner h5::after{ content: "SERVICE";}


.product_page .banner, .product_info_page .banner{   background: url(https://pic03.eapple.com.tw/sinyuan1950/banner-product.jpg) no-repeat;}
.product_page .banner h5::after, .product_info_page .banner h5::after{content: "PRODUCT";}
.blog_page .banner h5::after, .blog_in_page .banner h5::after{content: "NEWS";}
/*Footer/＝＝＝＝＝*/
.footer{
    background: url(https://pic03.eapple.com.tw/sinyuan1950/footer_bg.jpg) no-repeat;
    background-size: cover;
    background-position: right;
    position: relative;
}
.footer:after {
    position: absolute;
    content: "";
    background: linear-gradient(89deg, #503d26 0%, #503d26 90%, transparent 100%);
    height: 100%;
    width: 50%;
    left: 0;
    top: 0;
    z-index: -1;
}
.footer_logo{
    background: url(https://pic03.eapple.com.tw/sinyuan1950/logo-footer.svg) no-repeat;
    background-size: contain;
    width: 180px;
    height: 90px;
}
.footer_logo img { width: 100%;display: none;}
.footer_info {  
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        padding: 0 60px;
        grid-gap: 0;
        flex-direction: column;}
.footer_info ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: column-reverse;
    width: 50%;
}
.footer_info li{  width: 100%;}
.footer_info li p {  color: #fff;}
.footer_info li p a {  color: #fff;}
.footer_info li p.mail{display: none;}
.footer_info li:nth-child(2){border-bottom:1px solid #fff ;}





.footer_menu {    display: flex;   flex-wrap: wrap;   gap: 5px;}/*footer按鈕最小寬度100px*/
.footer_menu a {    
    margin: 0;	
    text-align: left;	
    padding: 5px 5px 5px 25px;
    transition: all 0.3s;
    border: none;
    color: #ffffff;
    background: #ffffff00;
    position: relative;
}
.footer_menu a::after{
    position: absolute;
    content: "";
    background: url(https://pic03.eapple.com.tw/sinyuan1950/footer-icon.svg) no-repeat;
    background-size: contain;
    width: 20px;
    height:20px;
    left: 0;
    top: 2px;
    filter: brightness(100);
}
.footer_menu a:hover::after{animation:  rotate 3s infinite alternate;filter: brightness(1);}
@keyframes rotate {
    0% {transform: rotateY(365deg);}
    50% {transform: rotateY(182.5deg);}
    100% {transform: rotateY(365deg);}
}

.footer_menu a:hover {    background: #ffffff00;letter-spacing: 2px;}
.copy {    background: var(--MainColor);    color: #fff;	border:none;}
.copy a{    color: #fff;transition:all 0.3s;}
.box_link{display: none;}
.box_link a{transition:all 0.3s;}
.box_link a:hover {    background: #ADA17E;    color: #fff;}

/*url(https://pic03.eapple.com.tw/sinyuan1950/icon-01.png) no-repeat;*/

/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 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;margin-top: 0;column-gap: 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:var(--MainColor);}
.product-layer-two > li { width:100%; max-width:100%; padding:0; text-align:left; border-bottom:none; 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:var(--MainColor);}

.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;}

.products-list .name { text-align: center;color: #fff;border-bottom:1px solid #fff ;}
.products-list .more {  border: 1px solid var(--MainColor);   color:var(--MainColor);}
.products-list .item a:hover .more{background: var(--MainColor);opacity: 1;}
.products-list .item a .more{
position: absolute;
    bottom: unset;
    top: 30%;
    width: max-content;
    background: #000;
    padding: 0 15px;
    opacity: 0;
}
.product-layer-two>li:hover>a, .product-layer-two li.active>a {
    background:#ffffff00;
    color: var(--SubColor);
     border-left: 1px solid var(--SubColor);
    border-right: 1px solid var(--SubColor);
}
.product-layer-two li ul {    grid-gap: 0;}

.product-layer-two li a {
    border: none;
    background: #ffffff00;
    color: #fff;
    font-family: var(--SFont2);
    font-family: var(--SFont2);
    text-align: center;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
}
.products-list .price b{color: var(--SubColor);}
.products-list .price b:nth-child(1){color: #cca779c9;}
.prod_related { background:#443422;}
.prod_related h6 span:before { color: #fff;}
    /*首頁*/
.animated-arrow { background:var(--MainColor);}
    
/*產品內頁*/
.sidebarBtn { border: 5px var(--MainColor) solid;background: #32251a;}
.sidebarBtn h2 { color: var(--SubColor);font-family: var(--SFont2);}
.sidebarBtn .price { color: #b4b4b4;    border-bottom: 1px solid var(--SubColor);}
.product_info li .txt_box { color: #fff;}
.toShare {border-top: none;color: #fff;}
.product_info li span { color:#fff;}
.inquiry_a1 { background: var(--MainColor);}
.inquiry_a2 { background: var(--color);}
.inquiry_a3 { background:var(--MainColor);}
.lastPage {background:var(--color);}
.pd_tabInner_contain {color: #fff;}
.pd_tabTitle li.activeTab a {  color:var(--SubColor);font-family: var(--SFont2);}
.pd_tabTitle li.activeTab::after {
    height: 3px;
    background: var(--SubColor);
    width: 100px;
    left: 50%;
    transform: translateX(-50%);
}
.pd_tabTitle li {  border-bottom: none;}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#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;}
}




/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/




/*相簿 內頁*/
.other_album_choice li{background: var(--MainColor);}
.show-list .show_name {text-align: center;   color: var(--SubColor2);}
.show-list .item:hover .show_name { color: var(--MainColor);}
.album_fixed_title {  background: #ffffff00;}

/*最新消息-文章*/
h5.blog_le_t{color: var(--MainColor);font-family: var(--SFont2);background: var(--SubColor);justify-content: center;display: flex;}
h5.blog_le_t span{font-family: var(--SFontE);}
.blog_back a.article_btn_back {    background:var(--SubColor);color: var(--MainColor);}
.lastPage {  background:#9f8059;}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {  
    background:#ffffff00 !important;    
    border-top: 1px solid var(--SubColor)!important;
    border-bottom: 1px solid var(--SubColor)!important;
}
.blog_le .accordion > li:hover .link a, .blog_le .accordion > li.on_this_category .link a {  color: var(--SubColor)!important;}
.subbox_item a{padding: 5px;}
.blog_list_ri h5{color: var(--SubColor);font-weight: bold;border-top:1px solid var(--SubColor) ;border-bottom:1px solid var(--SubColor) ;font-family: var(--SFontE);}
.blog_list_ri em, .blog_list_ri p{color: #fff;}
.subbox_item a:after {
    background:#66491fa8;
    border: 1px #d3b57287 solid;
}
.subbox_item a:before {
    content: 'MORE';
    bottom: unset;
    left: 50%;
    transform: translate(-50%,-50%);
    right: unset;
    top: 50%;
    color: var(--MainColor);
    background: var(--SubColor);
    border: 2px solid var(--SubColor);
    padding: 5px 15px;}
.other_subalbum li a p { text-align: center;font-weight: bold;line-height: 3;}
.show-list .item:hover{background: var(--MainColor);}


.accordion li .link a{color: #fff;font-family: var(--SFont2);font-size: var(--f17);letter-spacing: 1px;}
.blog_le .accordion{border: none;border-radius: unset;}
.blog_le .accordion li{    border-bottom: 1px solid #ffffff61;}
.toShareNews b, .toShareNews a, .toShareNews a object, .toShareNews a i {  color: #fff;}




/*文章內頁*/
h4.blog_category_title { color: var(--SubColor);}
.blog_box_edit{color: #fff;}
.blog_back a.article_btn_prev, .blog_back a.article_btn_next {  background:var(--MainColor);}
.news_related h6 span:before{color: #fff;}
.news_related {  background: #4f3d28;}

/*首頁-文章*/
.module_i_news section {
     width: 100%;
     display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: space-between;
}
.module_i_news_list{     padding: 0px 0 30px 0; width: calc(100% - 120px);margin: 0 0 0 auto}
.module_i_news .title_i_box { text-align: left; writing-mode: vertical-rl;    display: flex;    flex-direction: row-reverse;    align-items: center;}
.module_i_news .title_i_box h6{font-family: var(--SFontE);color: var(--SubColor);font-size: var(--f18);    display: inline-block;    margin-top: 15px;}
.module_i_news .title_i_box h4{font-family: var(--SFont2);color: #fff;font-size: var(--f22);padding: 15px 0;background: var(--SubColor);}
.module_i_news{background:#3b2e1f;}
.module_i_news li a {  grid-template-columns: 1fr;padding: 5px;}
.module_i_news ul {  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));}
.module_i_news li a:after {    background: rgb(255 255 255 / 0%);border: 1px var(--SubColor) solid;}
.module_i_news li a:before {
    content: 'MORE';
    bottom: unset;
    right: unset;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    background: var(--SubColor);
    padding: 2px 15px;}
.i_blog_le {  aspect-ratio: 4 / 3;}
.pageIndex .i_blog_ri h5 {color:var(--SubColor);font-family: var(--SFont2);border-top: 1px solid var(--SubColor);border-bottom: 1px solid var(--SubColor);}
.pageIndex .i_blog_ri em , .pageIndex .i_blog_ri p{ color: #ffffff;}

.pageIndex .animated-arrow { border: 1px solid #fff;    background: #ffffff00;}
.pageIndex .i_blog_b a:hover{background: var(--SubColor);border: 1px solid var(--SubColor);color: var(--MainColor);}





/*聯絡我們*/
.contact_form li.last cite {  background: var(--MainColor);}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
@media screen and (max-width:1300px) { 
.stellarnav {  width: calc(100% - 250px);}
.navigation { justify-items: end;}
.pageIndex::after { padding-bottom: calc(100% / 1 * 0.07);}

}
@media screen and (max-width:1024px) { 
    .sticky .me_tp_features a.tp_btn_cart, .sticky  .me_tp_features a.tp_btn_notice { color:#fff;}
    .nav-header { margin: auto;}
    .stellarnav { width: 100%;}
    .navigation {  padding: 0;}
    
    .nav-brand { max-width: 175px;}
    .header_area {
        position: static;
        text-align: center;
        background: var(--MainColor);
        border-bottom:none;
    }
    .stellarnav > ul > li > a ,   .sticky .stellarnav > ul > li > a {color: #fff;}
    .stellarnav > ul > li:hover > a b {color: var(--SubColor);}
    .stellarnav li.has-sub > a:after {  border-top: 6px solid #fff; }
    .nav-header{filter: brightness(100);}
   .stellarnav li.has-sub > a:after, .sticky .stellarnav li.has-sub > a:after { border-top: 6px solid #fff;    }
   .stellarnav li.has-sub:hover > a:after{ border-top: 6px solid var(--SubColor);    }

    .header_area.sticky .nav-brand{background: unset;}
    .sticky .nav-brand img{display: block; transition: 0.5s ease-in-out;}
    .sticky .header_area .nav-brand {display: none;}
    .sticky .stellarnav > ul > li:hover > a b {color: var(--MainColor);}

    /*banner*/
    .banner {  min-height: 365px;}
    .banner h5 {  top: 50px;}
}
    
    @media screen and (max-width: 980px) { 
    
    
    
    }
    @media screen and (max-width:850px) { 
        /*footer*/
        .footer{background: var(--MainColor);}
        .footer_logo { width: 100%;    height: 58px;}
        .footer_info { padding: 0 60px;}
        .footer_info ul { width: 100%;}
        .footer_info li:nth-child(1) { width: 100%;}
        .footer_info li:nth-child(2) { width: 100%;}
        .footer_menu {grid-template-columns: 1fr 1fr 1fr 1fr;}
        
        .box_link { top: 193px;  left: 63px;}
       }
    @media screen and (max-width: 768px) { 
    /*HEADER*/
    .me_tp_features { text-align: left;margin: 15px 0 0;}
    .me_tp_features a{padding: 3px;border-radius: 20px;}
    .me_tp_features a:hover {  background:var(--SubColor);}
    .me_tp_features a:hover i{color: var(--MainColor);transition: 0.3s ease-in-out;}
    .me_tp_features a.tp_btn_cart span, .me_tp_features a.tp_btn_notice span{display: none;}
    .nav-header { max-width:180px;  position: relative;  z-index: 9999;margin: auto auto auto 0;justify-content: flex-start;filter: unset;}
    .header_area {padding:14px 14px 8px;}
    .nav-brand img {opacity: 0;}
    .sticky .stellarnav.mobile.left .close-menu {background: var(--SubColor);        color:#fff;}
    .header_area .nav-brand { filter: brightness(1);}
    .header_area.sticky .nav-brand { filter: brightness(100);}
    .header_area .nav-brand, .header_area.sticky .nav-brand {
         background: url(https://pic03.eapple.com.tw/sinyuan1950/logo-header-768.svg); 
         background-repeat: no-repeat;
         width: 112px;
         height: 50px;
         background-size: contain;
         margin: 0;
        }
    .header_area.sticky { backdrop-filter: unset;}
    .pageIndex .header_area{opacity: 1;animation:unset;}
    /*進入網站*/    
    .pageIndex::after {  padding-bottom: calc(100% / 1 * 0.09);}
/*大圖*/
    .swiper-banner .swiper-slide img {
        height: 600px;
        object-fit: cover;
    }
    .swiper-fade .swiper-slide:nth-child(4)::after {  padding-bottom: calc(100% / 1 * 0.2);    bottom: 10%;}
    .swiper-fade .swiper-slide:nth-child(2)::before {  padding-bottom: calc(100% / 1 * 0.35);}
    .swiper-fade .swiper-slide:nth-child(2)::after {  padding-bottom: calc(100% / 1 * 0.35);}


    /*手機側邊欄位*/
    .stellarnav.mobile { left: unset; right: 0;}
    .stellarnav .menu-toggle { padding: 0;}
    .stellarnav .icon-close:before, .stellarnav .icon-close:after {   border-bottom: solid 3px #fff;}
    .stellarnav .menu-toggle span.bars span {  background: #fff}
    .stellarnav .menu-toggle:after { color:#fff;}
    .sticky .stellarnav .menu-toggle span.bars span {  background:#fff;}
    .sticky .stellarnav .menu-toggle:after { color: #fff;}
    .stellarnav a.dd-toggle .icon-plus:before, .stellarnav a.dd-toggle .icon-plus:after {  border-bottom: solid 3px #fff;}
    .stellarnav li li {  background: #ffffff00;}
    .stellarnav.mobile > ul > li {  border-bottom:none;}
    .stellarnav.mobile > ul > li > a { padding: 20px ;          text-align: left;color: #fff;        font-size: var(--f22);}
    .stellarnav > ul > li > a b , .sticky .stellarnav > ul > li > a { color: #fff;               text-align: left;  }
    .stellarnav.mobile > ul > li > a:hover b{color: var(--SubColor);font-weight: bold;}
    .stellarnav.mobile > ul > li > a b:last-child{display: none;}
    .stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul { border-right: none;}
    .sticky .stellarnav > ul > li:hover > a b { color: var(--SubColor);}
    .stellarnav.mobile.active>ul{z-index: 9999999;     animation: move 0.5s linear;  }
    @keyframes move{  
        0% {
            transform: translateX(-100%);       
          }
        100% {
            transform: translateX(0);   
            }
    }

    .stellarnav.mobile.left > ul{
        transition: 0.5s ease;
        max-width: 300px;        
        background: #3a2e2078;
        backdrop-filter: blur(9px);
        border-top: none;
        box-shadow: 0 0 5px #000;
    }
    .stellarnav li li > a, .stellarnav li li.has-sub > a {  padding: 7px 45px;color: #ffffffe3;}
    .stellarnav > ul > li.drop-left > ul { padding-top: 0;}


    .stellarnav.mobile.left .close-menu {
        padding: 15px 10px 45px;
        background: var(--MainColor);
        color: #fff;
    }
    .stellarnav.mobile li.open {background:var(--MainColor);}
    .stellarnav > ul > li.open > a{border-bottom:1px solid var(--SubColor) ;color: var(--SubColor);}
    .stellarnav > ul > li.open > a b{color: var(--SubColor);}
    .stellarnav.mobile ul ul{background: #ffffff00;}
    .stellarnav li li:hover > a, .stellarnav li li.has-sub:hover > a {
        color:#ffffffe7;
        background: #ffffff00;
        padding-left: 55px;
    }
    /* 開啟手機板下方按鈕所需設定 */
    #bottom_menu {display: none; }
    .footer.with_shopping_mode { padding:30px 0 0px; }
    #to_top { bottom:60px;}
    .footer_info li { width: 90%;}
    .footer_info {
        width: 90%;
        padding: 0 60px 0 0;
        margin: auto;

}
    .footer_info li:nth-child(1) { grid-template-columns: 1fr;}
    .footer_menu{display: grid;grid-template-columns: 1fr 1fr 1fr;}
    .footer_menu a {  margin: 0 0 5px;}
    .box_link {
        top: 170px;
        left: 50%;
        transform: translateX(-50%);
    }
    .footer_info li p.line{margin-top: 10px;}
    

    /*banner*/
    .banner {  min-height: 270px;background-position: center!important;}
.banner h5 {top: 50px;    font-size: 24px;}
.banner h5::before {
    left: calc(50% - 15px);
    top: -57px;
    width: 30px;
    height: 30px;}



    .product_menu_list,
    .products-list,
    .product-wrapper { width: 100%;}
    .product-layer-two { margin-right: 0; grid-template-columns: 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;    }

    .product_menu_list>h5 {
    color: #ffffff;
    border-bottom: 1px solid #fff;
    font-family: var(--SFont2);
}
.product-layer-two li a {
    border-left:none;
    border-right: none;
    border-bottom: 1px solid #ffffff7a;
    text-align: left;
 }
 .product-layer-two>li:hover>a, .product-layer-two li.active>a {
border-left:none;
    border-right: none;
    border-bottom: 1px solid var(--SubColor);
}
 a.pd_menu_toggle i {  color: #fff;}
 .mobile_product_name { color: #fff;}




/*首頁*/
.module_i_news .title_i_box {
    text-align: center;
    writing-mode: unset;
    width: 100%;
    margin: auto auto 30px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.module_i_news_list { width: 100%;}
.module_i_news .title_i_box h4 {
    color:var(--SubColor);
    font-size: var(--f22);
    padding:5px 0;
    background: #ffffff00;
}
.module_i_news ul {  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));}
.module_i_news li {  border-bottom: 1px #eeeeee38 solid;}


/*文章 最新消息*/
h5.blog_le_t {
    color: var(--SubColor);
    background: #ffffff00;
}
.blog_le a.news_menu_toggle{color: var(--SubColor);}
h5.blog_le_t { justify-content: flex-start;}
.subbox_item {  border-bottom: 1px #eeeeee14 solid;}







    }
    
    
    @media screen and (max-width: 600px) { 
     
        .me_tp_features a.tp_btn_cart, .me_tp_features a.tp_btn_notice { display:inline-block!important;  }
        /*進入網站*/
        .pageIndex::after {
            background-size: contain!important;
            background-position: center!important;
            background: url(https://pic03.eapple.com.tw/sinyuan1950/logo-600.svg)no-repeat;
            padding-bottom: calc(100% / 1 * 0.25);
            top: 40%;
        }
        /*大圖*/
    .swiper-banner .swiper-slide img { height: 500px;}
    .swiper-fade .swiper-slide:nth-child(2)::before {  top: 20%;}

    .swiper-banner .swiper-slide{  
        background-size: cover!important;
        background-position: left!important;
        width: 100%!important;
        max-width: 600px!important;
        height:500px!important;}

    .swiper-banner .swiper-slide:nth-child(1) img,
    .swiper-banner .swiper-slide:nth-child(3) img,
    .swiper-banner .swiper-slide:nth-child(4) img{display: none;}

    .swiper-banner .swiper-slide:nth-child(1){ background:  url(https://pic03.eapple.com.tw/sinyuan1950/bn01-600.png) no-repeat;}
    .swiper-banner .swiper-slide:nth-child(3){ background:  url(https://pic03.eapple.com.tw/sinyuan1950/bn03-600.png) no-repeat;}
    .swiper-banner .swiper-slide:nth-child(4){ background:  url(https://pic03.eapple.com.tw/sinyuan1950/bn04-600.png) no-repeat;}
    .swiper-fade .swiper-slide:nth-child(4)::after { filter: drop-shadow(2px 2px 3px var(--MainColor));padding-bottom: calc(100% / 1 * 0.25);}
    .swiper-fade .swiper-slide:nth-child(4)::before { 
        bottom: 20%;
        opacity: 1;}
        .contact_form li .form__label {  background: rgb(255 255 255 / 0%);    }
    }
    @media screen and (max-width: 500px) { 
        .footer_menu {  grid-template-columns: 1fr 1fr;}
    

        .blog_page .main_part, 
        .product_info_page .main_part,
        .product_page  .main_part{ padding: 10px;}
    }
    @media screen and (max-width: 420px) { 
    
    }
    @media screen and (max-width: 3750px) { 
    
    }
    
    