@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Parkinsans:wght@300..800&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: #191919;
}

&::-webkit-scrollbar-track {
    box-shadow: transparent;
}

/* === Banner 開場動畫 === */
body {
    overflow-x: hidden;
    margin: 0;
}
.banner-wrapper {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; 
    z-index: 99999;
}
.bannerindex {
    width: 100%;  
    height: 100%;
    background-position: center;
    background-size: cover;
    transform-origin: center center;
    transform: scale(1.2) rotate(-5deg); 
    animation: bannerAssemble 2s ease-out forwards;
    filter: grayscale(100%) brightness(0.5) blur(10px);
    opacity: 0;
}

@keyframes bannerAssemble {
    0% {
        opacity: 0;
        filter: grayscale(100%) blur(10px);
        clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%);
    }

    60% {
        opacity: 1;
        filter: grayscale(50%) blur(4px);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    100% {
        opacity: 1;
        filter: grayscale(0%) blur(0);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        transform: scale(1) rotate(0); 
    }
}

@media (max-width: 768px) {
  .bannerindex {
    width: 100%;
    height: 100%;
    transform: scale(1.1) rotate(-3deg);
  }
}

@media (max-width: 480px) {
  .bannerindex {
    width: 100%;
    height: 100%;
    transform: scale(1.05) rotate(-2deg);
  }
}


/* === Header 開場動畫 === */
.nav-header { 
    opacity: 1;
    position: relative;
}
.pageIndex .nav-header { 
    opacity: 0; 
    animation: banner-nav-logo 0.7s forwards; 
    animation-delay: 0.8s; 
}
.pageIndex header.header_area{ 
    opacity: 0;
    animation: banner-navbar 0.9s forwards;
    animation-delay: 0.8s;
}


@keyframes banner-nav-logo {
    0% {
        top: 87px;
        opacity: 0;
    }
    100% {
        top: 0px;
        opacity: 1;
    }
}

.stellarnav.desktop { 
    opacity: 1; 
    position: relative;
    z-index: 0;
}
.pageIndex .stellarnav.desktop { 
    opacity: 0;
    animation: banner-navbar 0.7s forwards;
    animation-delay: 0.5s;
}

@keyframes banner-navbar {
    0% {
        top: 97px;
        opacity: 0;
    }
    100% {
        top: 0px;
        opacity: 1;
    }
}
@media (max-width: 768px) {
.pageIndex header.header_area{ 
    opacity: 1;
    animation: none;
    animation-delay: none;
}
}

/* 大圖 */
/* banner1  */
.bannerindex .swiper-slide.swiper-slide-active:nth-child(1)::before {
    content: "";
    position: absolute;
    background-image: url(https://pic03.eapple.com.tw/sanfusinqiye/banner01.png);
    width: 48%;
    height: 100%;
    padding-bottom: 30%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    z-index: 10001;
    pointer-events: none;
    right: 12vw;
    top: 18%;
    opacity: 0;
    transform: scale(0);
    transform-origin: center;
    animation: banner01-bounce 1s ease-out forwards;
    animation-delay: 1s;
}



/* banner2  */
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2)::before {
    content: "";
    position: absolute;
    background-image: url(https://pic03.eapple.com.tw/sanfusinqiye/banner02.png);
    width: 35%;
    height: 80%;
    padding-bottom: 3%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    z-index: 10001;
    pointer-events: none;
    right: 29vw;
    top: 8%;
    opacity: 0;
    transform: translateX(-50%);
    animation: banner01-bounce 1s ease-out forwards;
    animation-delay: 0.2s;
}


/* banner2  */
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2)::after {
    content: "";
    position: absolute;
    background-image: url(https://pic03.eapple.com.tw/sanfusinqiye/banner03.png);
    width: 60%;
    height: 16%;
    padding-bottom: 4%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    z-index: 10000;
    pointer-events: none;
    left: 3%;
    top: 75%;
    opacity: 0;
    transform: translateX(50%);
    animation: banner02-slide-in 1.2s ease-out forwards;
}



/* ==================== */
/* 動畫定義 */
/* ==================== */


@keyframes banner01-bounce {
  0% {
    opacity: 0;
    transform: scale(0) translateY(0);
  }
  60% {
    opacity: 1;
    transform: scale(1.1) translateY(-10px);
  }
  80% {
    opacity: 1;
    transform: scale(0.98) translateY(5px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}



@keyframes banner02-slide-in {
    0% { opacity: 0; transform: translateX(-50%); }
    100% { opacity: 1;  transform: translateX(0); }
}


/* ============================== */
/* 預設不顯示動畫圖 */
/* ============================== */
.bannerindex .swiper-slide.swiper-slide-active:nth-child(1)::before,
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2)::before,
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2)::after{ pointer-events: none;}

@media screen and (max-width: 768px) {

.bannerindex .swiper-slide.swiper-slide-active:nth-child(1)::before {

        width: 70%;
        height: 50%;
        padding-bottom: 30%;
        right: 2vw;
        top: 40%;

}


.bannerindex .swiper-slide.swiper-slide-active:nth-child(2)::before {
 
        width: 85%;
        height: 85%;
        padding-bottom: 3%;
        right: -32vw;
        top: 10%;
}
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2)::after {
  
        width: 80%;
        height: 20%;
        padding-bottom: 4%;
        left: 3%;
        top: 70%;

}

}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*背景*/
#content {
    min-height: 80vh;
    background: #000000;
    
    background-size: cover;}
#content_main {
    width: 100%;
    min-height: 80vh;
    overflow: hidden;
    z-index: 60;
    position: relative;
    margin-top: 100vh;
    background: #000000;
    background-repeat: no-repeat;
    background-size: cover;}

    #to_top {
        position: fixed;
        left: 10px;
        z-index: 600;
        width: 50px;
        height: 50px;
        padding-top: 10px;
        font-size: 12px;
        color: #ffffff;
        text-align: center;
        text-decoration: none;
        background: #191919c3;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
        border-radius: 100%;
    }
    #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/＝＝＝＝＝*/

/*Main/＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*Header/＝＝＝＝＝*/
/*首頁*/

.pageIndex .main_header_area {
    transition: all .3s;}
.pageIndex .header_area .main_header_area {
    position:relative;
    width: 100%;
    transition: all 0.3s;
    background: #000000;}
    

.pageIndex .header_area.sticky .main_header_area {
        background: #00000069;
        transition: all 0.3s;
    }


/*其他分頁*/

.header_area {position: fixed;z-index: 9999; padding: 0px;background: #000000; width: 100%;}
.main_header_area {
    background: #00000000;}
.main_header_area .container {
        max-width: 85%;
        transition: all 0.3s;}


.header_area.sticky .main_header_area .container {
            max-width: 80%;
            transition: all 0.3s;}

.header_area.sticky {
    background:#000000b3;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 1px 1px 5px rgba(169, 169, 169, 0.3);
    backdrop-filter: blur(50px);
}


 .swiper-banner:after {
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0; }

 .swiper-pagination-bullet {
        display: none; }

/**/
.header_area.sticky .main_header_area:before {
                width: 100%;}
 .main_header_area:before {
                content: "";
                position: absolute;
                bottom: 0;
                left: 0;
                width: 0;
                height: 3px;
                background-image: linear-gradient(to right, #ffffff 0%, #cccccc 100%);
                z-index: 55;
                transition: all .8s;}


/*第一層*/
/*首頁文字顏色*/
.pageIndex .stellarnav  ul  li  a {    color: #ffffff;border-right: 1px solid #e7e7e7e6;}
.pageIndex .stellarnav  ul  li:hover  a {color: #ffffff; }


/*首頁sticky文字顏色*/
.pageIndex .header_area.sticky a {color: #ffffff;}
.pageIndex .header_area.sticky a:hover { color:#ffffff;}
/*其他分頁文字顏色*/
.stellarnav > ul > li > a {    padding: 0 10px 0 0; color: #ffffff; line-height: 30px; margin: 0px 5px; margin: 20px 0px; margin: 5px; height: 30px;}
.stellarnav  ul  li:hover  a {color: #ffffff; }
.stellarnav ul li a { color: #ffffff; border-right: 0.5px solid #e7e7e7e6;}
/*HOVER*/
.stellarnav > ul > li:hover > a,
.stellarnav > ul > li.has-sub:hover > a {
    color: #fff;
    animation: glow 0.3s 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);
    }
}
.nav-menu {    margin: 0 auto;padding: 0;text-align:center;}
.nav-header {    position: relative;}

.me_tp_features a {
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px;
    font-size: 14px;
    color: #fff;}

.me_tp_features {     width: 100%;z-index: 1;
    text-align: right;
    margin-top: 10px;}
.nav-menu>li:hover>a, .nav-menu>li.active>a, .nav-menu>li.focus>a {
    color: #ffffff;}

.tp_links {
        display: none;
    }
    
.nav-menu>li:not(.tp_links) {
    display: none;
}

.nav-menu>li>a {
    color: #fff;
    letter-spacing: 3px;
    padding: 25px 7px;
}


.nav-menu>li.focus>a {
    color: #ffffff;
}
.nav-dropdown>li:hover>a .nav-dropdown>li.focus>a {
    color: #ffffff;
}

.stellarnav li.has-sub > a:after {
        content: '';
        margin-left: 10px;
      
        position: absolute;
        top: 40%;
        right: 5px;
        transform: translateY(-50%);}   



/*下拉箭頭*/
.stellarnav li.has-sub > a:after {
            height: 8px;
            width: 8px;
            display: block;
            border-style: solid;
            border-width: 0 1px 1px 0;
            border-color: transparent #ffffffe0 #ffffffc6 transparent;
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
            -webkit-transition: border .2s;
            transition: border .2s;    }    

.stellarnav li.has-sub > a:after {
    border-width: 0px 2px 2px 0;
    border-color: transparent #ffffffc6 #ffffffc6 transparent;}



/*第二層*/
.stellarnav li li > a , .stellarnav li li.has-sub > a{    padding: 7px 5px;   transition: all 0.3s; }
.stellarnav li li:hover > a , .stellarnav li li.has-sub:hover > a{color: #ffffff;	padding-left:10px;}
.stellarnav li li.has-sub:hover > a {color: #ffffff;}




/*次選單樣式-半透明底色*/
.stellarnav ul ul {
    background:#191919;
    border-radius: 0 0  6px 6px;
    padding: 7px;
    box-shadow: 0px 3px 10px 0px rgb(0 0 0 / 12%);
    -webkit-backdrop-filter: saturate(180%) blur(5px);
    backdrop-filter: saturate(180%) blur(5px);
    width: 300px;
}

/*次選單欄位邊框*/
.stellarnav li li {
    border: 0px var(--f3-color) solid;
}

/*次選單文字樣式*/
.stellarnav li a {
    padding: 7px 10px;
    display: block;
    color: #ffffff;
   
    letter-spacing: .1rem;
}
.stellarnav li li > a ,
.stellarnav li li.has-sub > a {
    padding: 7px 5px;
    border-left: 2px solid transparent ;
}

/*hover欄位樣式-向右滑動*/
.stellarnav li.has-sub ul li a:hover{
    color:#ffffff ;
    padding-left: 10px;
    
}

/*文字底色透明*/
.stellarnav.desktop li.has-sub ul a {
    background: transparent;
    letter-spacing: .1rem;
    position: relative;
}


/*logo*/
.header_area .nav-brand {
    transition: all 0.3s;
    margin-top: 10px;}

.header_area.sticky .nav-brand {
        max-width: 100%;
        }
 .nav-brand img {
            max-width: 100%;
            filter: brightness(2);}

/* = = = 頁尾 = = = =  = = = = = = = = */

/* = = = 頁尾 = = = =  = = = = = = = = */

/*換圖*/
.footer {
    padding: 60px 0 0;
    font-size: 16px;
    background-color: #0a0a0a;
    background-position: center;  /*位置*/
    background-size: cover;  /*尺寸*/
    background-repeat: no-repeat;
    position: relative;
    z-index: 99;}


  

/*換logo*/
.footer_logo img {
    width: 0;
    height: 118px; }
    
.footer_logo {
        background: url(https://pic03.eapple.com.tw/sanfusinqiye/footerlogo.png) no-repeat center;
        height: 118px;
        max-width: 200px;
        width: 100%;
        margin-top: 10px;
        background-size: contain;}
    
.footer .center { max-width: 1450px;}

.footer_info {       display: flex;
        flex-wrap: wrap;
        align-items: center;
        padding: 0 0;
        flex-direction: row;}

.footer_menu {display: inline-block; grid-template-columns: repeat(auto-fit, minmax(min(120px,100%), 1fr));  gap: 3px; width: 100%; text-align: center; margin: 0 auto;}/*footer按鈕最小寬度100px*/
.footer_menu a { margin: 0;padding: 5px 20px;
    text-align: center;
    transition: all 0.3s;
    color: #8d8d8d;
    background: transparent;
    border: none;}

.footer_menu a:hover {    background: #ebebeb;color: #000000; border-radius: 99em;}
.footer_logo img {max-width: 200px;}
.footer_logo {text-align: left;}
.footer_info ul {    display: flex;
        width: 100%;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;}
.footer_info li {padding: 10px 0%; display: inline-block;}
.footer_info li p {text-align: left;display: block; color: #8d8d8d; letter-spacing: 2px; margin: 2px 8px;}
.footer_info li p:before{margin: 0;color: #8d8d8d;font-weight: bold;}

.footer_info li p a {color: #8d8d8d;}
.footer_info li:nth-child(1) {display: flex; flex-wrap: wrap;justify-content: center;border-bottom: 0.1px solid #414141;}
.footer_info li:nth-child(2) {}
.copy {background:transparent; color: #8d8d8d; border:none; padding: 10px 0;margin: 10px 0 0;}
.copy a{color: #8d8d8d;transition:all 0.3s;}
.copy a:hover {color: #d6d6d6;}

.box_link a{display: none;}
.box_link a:hover {background: #e6e6e6;  color: #8d8d8d;}
.box_link {display: none;}




/*上方選單右邊設定 臉書/LINE/電話/信箱
.tp_links a:before {寬高大小設定}
.tp_links a.me_tp_fb {}
.tp_links a.me_tp_fb:before {背景換圖/建議.SVG}
.tp_links a.me_tp_line {}
.tp_links a.me_tp_line:before {背景換圖/建議.SVG}
.tp_links a.me_tp_call {}
.tp_links a.me_tp_call:before {背景換圖/建議.SVG}
.tp_links a.me_tp_mail {}
.tp_links a.me_tp_mail:before {背景換圖/建議.SVG}
*/


/*電腦LOGO
.nav-brand {}
*/

/*手機LOGO
.nav-brand-m {}
*/

/*頁碼*/
.path p, .path p a {display: none;
    text-align: right;
    line-height: 24px;
    font-size: 13px;
    color: #ffffff;}



/*相簿*/
.show-list .show_name {
    font-size: 17px;
    color: #ffffff;
    letter-spacing: 0.15em;
    line-height: 1.5;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 26px;
}
.show-list .item:hover .show_name {
    color: #ffffff;}
/*標題*/
.subalbum-menu h2 {
    font-size: 20px;
    color: #a7a7a7;
    display: inline-block;
    vertical-align: middle;}
.other_subalbum li {
    display: block;
    background: transparent;}
.other_subalbum li a p {
    line-height: 2;
    color: #ffffff;
}

/*觀看更多*/
.album_fixed_title {
    font-size: 17px;
    color: #ffffff;
    padding-right: 14px;
    display: inline-block;
    position: relative;
    background: transparent;
}
.other_album_choice li {
    background: #a7a7a7;
    font-size: 15px;
    display: inline-block;
    border-radius: 18px;
    padding: 7px 20px;
    margin: 0 7px 7px 0;}
   
 /*相簿內頁*/
 /*說明*/
    .album_descrip {
        margin-bottom: 20px;
        color: #ffffff;
        line-height: 1.4;}
/*文章管理*/
h5.blog_le_t {
    font-size: 24px;
    font-weight: 500;
    color:  #ffffff;
    font-family: serif;
    letter-spacing: 2px;
    margin-bottom: 7px;}


/*側邊標題*/
.accordion li .link a {
    cursor: pointer;
    display: block;
    padding: 15px 10px;
    color:  #ffffff;
    font-size: 14px;
    font-weight: 700;
    position: relative;}
    .accordion li:hover .link a {
        cursor: pointer;
        display: block;
        padding: 15px 10px;
        color:  #a7a7a7;
        font-size: 14px;
        font-weight: 700;
        position: relative;}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {    background: #c0c0c041 !important;}  
/*右側文章排版*/
.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: #ffffff;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;}
/*時間*/
.blog_list_ri em {
    font-size: 14px;
    color: #7b7b7b;
    font-style: normal;
    display: block;}
/*內文*/
.blog_list_ri p {
    font-size: 15px;
    color: #ffffff;
    line-height: 130%;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    word-break: break-all;}
/*內文hover*/
.subbox_item a:after {
        content: '';
        width: 100%;
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        z-index: 8;
        background:#19191970;
        opacity: 0;
    
        transition: all .5s;}
 .subbox_item a:before {
            content: 'READ MORE';
            position: absolute;
            z-index: 19;
            bottom: 10px;
            right: 10px;
            opacity: 0;
            font-size: 15px;
            color: #ffffff;
            transition: all .6s;}

/*文章*/
/*文章內頁*/

h4.blog_category_title {
    color: #ffffff;
    font-size: 30px;
    padding: 10px 0;
    margin-bottom: 20px;
    font-weight: 500;
}
.blog_box_edit * {
    line-height: 150%;
    color:  #ffffff;}

/*文章圖片取消上面*/
body.blog_in_page .articel_mainPic img {
    display: none;
    max-width: 50%;}
/*分享文字*/
.toShareNews {
        font-size: 1em;
        background-color: transparent;
        color:  #a1a1a1;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        align-content: center;
        flex-wrap: wrap;}
/*文章按鈕*/
.blog_back a.article_btn_back {
        background: #676767;}


.blog_back a.article_btn_back:hover, .blog_back a.article_btn_prev:hover, .blog_back a.article_btn_next:hover {
            background: #696969;}
/*相關文章*/
.news_related {
    background: #a1a1a170;
    padding: 25px 15px;}
.news_related h6 span:before {
        content: '相關文章';
        font-size: 24px;
        color: #191919;}
/*按鈕*/
.lastPage {
        font-size: 16px;
        color: #fff;
        background: #191919;
        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: rgb(8 8 8 / 90%);
    opacity: 0;
    border: 1px #ddd solid;}
/*首頁-文章顯示*/
 .module_i_news li:nth-child(n+5){
        display:none !important;}
/*標題*/

.module_i_news .title_i_box h4{   font-size: 32px;
    color: #fff;}
/*文章標題*/
.i_blog_ri h5 {
    font-weight: 500;
    font-size: 20px;
    color: #ffffff;
    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: #ffffff;
    line-height: 130%;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    word-break: break-all;}       

/* 商品下拉超過30個變大 */
.stellarnav.desktop li.bigMenu>ul{display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); left: 0; width: 100%; position: fixed; padding: 20px;}
.stellarnav.desktop li.bigMenu ul ul{top: 100%; left: 0; width: 100%; background: #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個--結束 */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*按鈕*/
.animated-arrow {
    background: #191919;
    color: #fff;
    display: inline-block;
    margin-top: 20px;
    /* margin-left: auto; */
    height: 50px;
    line-height: 50px;
    overflow: hidden;
    width: 250px;
    /* padding-left: 5%; */
    text-align: center;
    position: relative;}




    /*促銷方案*/
    /*促銷內頁*/
    /*標題*/
    .promotion_title h2 {
        font-size: 24px;
        color: #191919;}
/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 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: 250px; 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 {

    background: #000000;

    margin: 0;
}
.product-layer-two li.active li a {
    font-weight: normal;
    color: #ffffff;
}
.product-layer-two li.active a {
    font-weight: bold;
    border: 0px #ccc solid;}
.product-layer-two li a {
    position: relative;
    background: #3d3c3cc7;
    padding: 7px 18px;
    display: block;
    font-size: 16px;
    color:#ffffff; border: 0px #191919 solid;}

.product-layer-two li:hover a { color: #191919; border: 1px #191919 solid;background-color: #656363;}
.product-layer-two li li a{ padding:5px 10px;background-color: #f3f3f32b;}
.product-layer-two li li:hover > a { background:#fff; color:#191919;}
.product-layer-two > li { width:100%; max-width:100%; padding:0; text-align:left; padding-bottom: 5px;}
.product-layer-two > li ul > li + li { margin-top:5px;}

.product_info_page .product-layer-two { display: none;}
.product_info_page .products-list,
.product-wrapper {     width: 100%;
    background: #606161;
    padding: 20px;}

.product-layer-two li li:hover{ margin-left: 15px; border-bottom:1px dotted #ccc;}
.product-layer-two li li > a:before { content: ""; position: absolute; width: 12px; height: 8px; background: transparent; left: 0; margin-left: -20px; top: 50%; margin-top: -4px; clip-path: polygon(0 0, 100% 50% , 0 100%);}
.product-layer-two li li:hover > a:before { background:#191919;}

.product_info_page .half_box { width: 100%; float: none; padding-right: 0;}
.product_info_page .half_box li.btn_blankTop { margin-top: 50px; justify-content: space-between; display: flex;}
.product_info_page .half_box li.btn_blankTop input { width: calc(50% - 10px); background-image: none; padding: 0; text-align: center;}

#prod_thumbSwiper .swiper-slide{padding-top: calc(25% - 2px); position: relative;}
#prod_thumbSwiper img{position: absolute; left: 0; top: 0;}






/*產品資訊標題*/
.pd_tabTitle li.activeTab a {
    color: #ffffff;}
    element.style {
        color: #ffffff;}
/*產品資訊內文*/
element.style {
    color: #ffffff;}
.pd_tabInner_contain {
        padding-top: 20px;
        color: #ffffff;}


/*取消詳細資訊按鈕*/
body.product_page .more.slowAnimation {
    display: none;
}

/*右側商品資訊*/
.product_info li .txt_box {
    display: inline-block;
    vertical-align: top;
    color: #ffffff;}
/*標題*/
.sidebarBtn h2 {
    color: #191919;
    font-size: 24px;}
.sidebarBtn .price {
        color: #191919;
        font-size: 22px;}
 .sidebarBtn .sp_price {
            display: block;
            color: #bd2424;
            font-size: 22px;
            font-weight: bold;}
/*加入詢價*/
.inquiry_a1 {
    background: #4d4d4d;}

.inquiry_a2 {
        background: #939393;}
 .inquiry_a3 {
            background: #333;}

 .inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover {
            letter-spacing: 2px;
            background: #a5a5a5;}
    
 /*底*/   
.sidebarBtn {
    padding: 15px;
    display: inline-block;
    width: 28%;
    vertical-align: top;
    border: 0px #dddddd00 solid;
    background: transparent;
}

/*內文*/
 .product_info li span {
                display: block;
                font-size: 12px;
                color: #999999;
                margin-bottom: 3px;
                font-family: Arial, Helvetica, sans-serif;
                letter-spacing: 1px;}


 /*底下相關商品*/       
.prod_related {
                    background: #a1a1a170;
                    padding: 25px 15px;}
 .prod_related h6 span:before {
                        content: '相關推薦';
                        font-size: 24px;
                        color: #191919;}
/*首頁-商品*/
/*首頁-商品顯示*/
.pageIndex .products-list .item:nth-child(n+5){
    display:none;}


/*標題*/
.i_prod_tit span, .i_video_tit span {
    font-size: 32px;
    color: #a7a7a7;
    font-weight: 600;
font-family: 'Noto Serif TC', serif !important;}


.products-list .more {
    border: 1px solid #ffffff !important;
    color: #ffffff !important;
    font-size: 16px;
   
    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: #b7b7b7 !important;
        color: #222222 !important;
        letter-spacing: 2px;}
.products-list .name {
            font-size: 15px;
            color: #ffffff;
            letter-spacing: 1px;
            margin-top: 15px;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            height: 44px;}
.products-list .price b {
                color: #ffffff;
                font-size: 16px;
                width: calc(50% - 10px);}
/*詢價車*/
/*回產品頁*/
.rewrite_simple {
    background: #9a9a9a url(../images/simple_left.png) 10% center no-repeat;}


/*送出詢價*/
.send_simple {
    background: #828282 url(../images/simple_right.png) 88% center no-repeat;}

/*聯絡我們*/
/*標題顏色*/
.blank_letter {
    font-family: 'Josefin Sans', 'sans-serif', '微軟正黑體';
    padding-top: 30px;
    font-size: 26px;
    color: #c9c9c9;
    background-position: left bottom;
    background-repeat: no-repeat;}
/*資訊顏色*/
 .list_before {
        margin-top: 30px;
        margin-bottom: 20px;
        font-size: 15px;
        color: #a1a1a1;
        display: block;
        width: 100%;
        position: relative;}
.contact_le_map a {
            display: block;
            background: #191919;
            text-align: center;
            padding: 10px;
            color: #fff;}
/*購物車*/
.shopping-cart .cell.product_name p {
    width: calc(100% - 90px);
    color: #fff;}


    .shopping-cart .cell {
        padding: 10px;
        text-align: center;
        width: 20%;
        font-size: 16px;
        letter-spacing: 1px;
        padding: 5px;
        color: #fff;}
.total_amount {
    width: 500px;
    margin-top: 30px;
    margin-left: auto;
    margin-right: 5px;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
}

/*訂購資料*/
.formbox_form li .form__label {
    display: block;
    width: 100%;
    text-align: left;
    color: #fff;}
    .form label {
        display: block;
        position: relative;
        float: left;
        width: auto;
        margin-right: 20px;
        margin-bottom: 5px;
        color: #ffffff;}
 .form label.Bigcheck {
            float: none;
            display: inline-block;
            color: #ffffff;
            font-size: 15px;
            margin-left: 20px;
            top: 5px;}
            .declaration {
                background: #575252;
                line-height: 40px;
                padding: 5px 15px;}
 .shopping-cart .cell.product_name p {
        width: calc(100% - 90px);
        color: #fff;}
 .shopping-cart .cell {
            padding: 10px;
            text-align: center;
            width: 20%;
            font-size: 16px;
            letter-spacing: 1px;
            padding: 5px;
            color: #fff;}
 .total_amount li b {
                font-weight: normal;
                color: #fff;}
.total_amount li span {color:#fff;}


.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: #ffffff;}
.total_amount li .couponData, .total_amount li .transFree {
        color: #ff4f4f;}
.send_simple:hover{background-color:#7a7a7a}
.rewrite_simple:hover{background-color:#7a7a7a}
/*訂單*/

.order_list_tab td {
    font-size: 15px;
    color: #ffffff;
    padding: 10px;
    border-top: 5px #fff solid;}
    .list_before.account li {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        align-items: center;
        align-content: center;
        color: #fff;
    }
    /*底色通常為白色*/
    .payer {
        background: #191919;
    }

/*購物清單*/

.order_list_head p {
    font-size: 24px;
    color: #ffffff;
    text-align: center;
    display: inline-block;
    border-bottom: 2px #000 solid;
    padding: 10px;
    margin: 20px;}

    .order_list_pro td {
        padding: 10px;
        border-bottom: 1px #ddd solid;
        text-align: center;
        color: #ffffff;
        font-size: 14px;
    }
/*表單*/
.contact_form {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 15px;
    color: #a1a1a1;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 10px;}


.contact_form li.last cite {
        background: #191919b3;
        color: #a1a1a1;}
.contact_form li.last input {
            background: none;
            border: none;
            outline: none;
            font-size: 15px;
            padding: 7px;
            letter-spacing: 2px;
            color: #a1a1a1;}
.contact_form li {
    display: grid;
    grid-template-columns: 200px 1fr;
    grid-gap: 10px;
}
.contact_form li .form__label {
    display: block;
    max-width: 20vw;
    text-align: right;
}

body.contact_page .blank_letter {text-align: center;
}
/*地圖隱藏*/

body.contact_page .contact_le_map {
    display: none;
}

/*表單輸入文字*/
 button, input, optgroup, select, textarea {
                color: #000000;
                font: inherit;
                margin: 0;}   
.contact_form li:has(input[type=checkbox]) .form__insert, .contact_form li:has(input[type=radio]) .form__insert {
    display: grid;
    grid-template-columns: 90px 1fr;
    grid-gap: 5px;
    grid-template-columns: repeat(auto-fit, minmax(13px, 13px) minmax(200px, 1fr));
    align-items: center;
}
/*******************************************/
.contact_editbox {
    margin: auto;
    padding: 0px;}
    
/*聯絡我們MAP區改滿版編輯區*/
.contact_content {    width: 100%;padding: 0; margin-top: -30px;}
.contact_page .main_part {    max-width: 100%;    padding: 0;}
.contact_page .path {    display: none;}
.contact_content .information_left {    width: 100%;    padding: 0;}
.contact_content .information_right {       width: 90%;
    margin: 0px auto;
    display: block;}
.contact_content .information_left > h4.blank_letter {    display: none;}
.contact_content .list_before {    width: 100%;		max-width: 100%;    padding: 0;    margin: 0 auto;}
.contact_content .list_before > li:not(li:last-of-type) {    display: none;}
.contact_content .list_before.info > li:last-of-type {    padding: 0;    margin: 0;display:none;}
@media screen and (max-width: 768px) {.contact_content .information_right {    margin: 50px auto 0;}}
/**/
/*電腦版表單最大寬度設定*/
.contact_content .information_right {    max-width: 1450px;}
/**/
/*******************************************/
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
            
@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;}

/*產品頁面*/
a.pd_menu_toggle {
    font-size: 1.6em;
    font-weight: bold;
    margin-bottom: 10px;
    position: relative;
    color: #ffffff !important;

   }

   #prod_thumbSwiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;}


/*文章*/
.path p, .path p a {
    text-align: left;}
    
.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;}
.articel_mainPic img {
    display: block;
    max-width: 100%;}
}
@media screen and (max-width: 600px) {
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#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;}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner.banF { background-image: url(https://pic03.eapple.com.tw/sanfusinqiye/banner-02.jpg); }
.banner.banE{ background-image: url(https://pic03.eapple.com.tw/sanfusinqiye/banner-03.jpg); }
.banner.banblog { background-image: url(https://pic03.eapple.com.tw/sanfusinqiye/banner-01.jpg); }
.banner.banB {display: none;}
.banner.banC {display: none;}
.banner {  background: url(https://pic03.eapple.com.tw/sanfusinqiye/banner-02.jpg);}

.banner {
     padding: 13vw;
    position: relative;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    height: 60vw;
    max-height: 850px;
    display: flex;
    align-content: center;
    justify-content: flex-start;

}

.banner h5 {
    color: #ffffff;
    font-weight: 700;
    animation: glow 0.9s infinite alternate;
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-direction: column;}
 
.banner h5:before {
    content: "";
    font-size: 50px;
    white-space: pre-line;
    display: block;
    color: #353535;
    font-family: "Parkinsans", 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;
}

body.product_page h5:before,
body.product_info_page h5:before,
body.car_page h5:before { content: 'SHOP'; }
body.other_page h5:before { content: 'SERVICE'; }
body.album_page .banner h5:before,
body.album_info_page .banner h5:before,
body.album_class_page .banner h5:before { content: 'PHOTO'; }
body.video_page .banner h5:before { content: 'VIDEO'; }
body.blog_page .banner h5:before,
body.blog_in_page .banner h5:before { content: 'NEWS'; }



/* ===== 動畫效果 ===== */
@-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); }
}   
@media screen and (max-width: 768px) {
    .banner {         
        max-height: none;
        background-attachment: scroll;
        display: flex;
        justify-content: center;}
    .banner h5:before { font-size: 40px; }
    .banner h5 { 
    font-size: 20px; 
    display: flex;
    align-content: flex-start;
    align-items: center;
    flex-direction: column;}
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本分類全版面 ( 限制最寬2000px
.work_page .main_part { max-width:2000px;}
.work_page .show_content { padding:0; width:100%;}
.work_page .show-list .item { width:33%; display:inline-block; float:none; margin:0; padding:0;}
@media screen and (max-width: 768px) {
.work_page .show-list .item { width:49%;}
}
@media screen and (max-width: 570px) {
.work_page .show-list .item { width:100%;}
}
.work_page .show-list .item a { max-width:100%;}
.work_page .show-list .show_pic { height:auto; line-height:0;}
.work_page .show-list .show_pic img { max-width:100%; max-height:100%;}
.work_page .show-list .show_name { position:absolute; top:50%; right:10%; width:80%; height:auto; line-height:160%; font-size: 20px; color: #FFFFFF !important; border: solid 1px #fff; text-align: center; margin: -20px 0 0 -120px; padding:5px 20px; transition:all ease-in .3s; opacity:0;}
.work_page .show-list .item:hover .show_name {opacity:1;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本列表
.work_info_page .main_part { max-width:2000px;}
.work_info_page .show_content { padding:0; width:100%;}
.work_info_page .subalbum-menu { text-align:center;}
.work_info_page .subalbum-menu h2 { float:none;}
.work_info_page .pic-list .item { margin:0; padding:10px; width:49%; float:none; display:inline-block;}
@media screen and (max-width: 768px) {
.work_info_page .pic-list .item { width:100%;}
}
.work_info_page .pic-list .show_pic { height:auto; line-height:0;}
.work_info_page .pic-list .show_pic img { max-width:100%; max-height:100%;}
.work_info_page .pic-list .item a { max-width:100%; pointer-events: none; cursor: default; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



@media screen and (max-width: 1400px) {
.container {
        max-width: 1200px;
        transition: all 0.3s;}}




@media screen and (max-width: 1240px) {
            .navigation {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        align-content: center;
    }
.me_tp_features {
    width: 100%;
    z-index: 1;
    text-align: center;
    margin-top: 10px;
}
.stellarnav ul {
    margin: 0;
    padding: 0;
    text-align: center;
}
}
 @media screen and (max-width: 980px) {
 .main_header_area .container .navigation {    grid-template-columns: 1fr;}
 .main_header_area .container .navigation> *{grid-row:unset;grid-column:unset;text-align: center;}
.nav-menu>li>a {padding: 10px 0px;}
.pageIndex .header_area {
    position: relative;
    width: 100%;
 }
.header_area.sticky {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
       backdrop-filter: none;}
.pageIndex .header_area .main_header_area , .pageIndex .header_area.sticky .main_header_area{    background: #000000;}

.pageIndex .stellarnav  ul  li:hover  a {color: #ffffff; }

.nav-menu>li>a {    padding: 15px 0px;letter-spacing: 2px;}
.me_tp_features {
    width: 100%;
    text-align: center;
    margin-bottom: 7px;}
/*logo*/
.nav-brand img {
        transition: all 0.3s;
        text-align: center; }
.nav-brand img {max-width: 80%;}

.navigation {
grid-template-columns: 200px 1fr;
grid-gap: 0 20px;
align-content: stretch;
justify-content: center;
align-items: center;
justify-items: center}

.tp_links {display: none;}

}

@media screen and (max-width: 980px){
    .footer_info{flex-direction: column;flex-wrap: nowrap;align-content: space-between;}
    .footer_info ul{width: calc(100% - 100px);}
}





@media screen and (max-width: 768px) {


/*產品頁面*/


.product_menu_list>h5 {
    color: #ffffff;
   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 #ffffff solid;
    border-radius: 20px;}

/*產品內頁-標題名稱*/
.mobile_product_name {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;}
/*產品資訊*/
.sidebarBtn {
        padding: 15px;
        display: inline-block;
        width: 100%;
        vertical-align: top;
        border: 0px #dddddd00 solid;
        }
/*上方購物車*/
.me_tp_features a.tp_btn_cart, .me_tp_features a.tp_btn_notice {
            display: inline-block;}
/*購物車內頁*/
.inquiry_a1 {
    background: #4d4d4d;}
.inquiry_a2{display: none;}
.inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover {
        letter-spacing: 2px;
        background: #a5a5a5;
    }

 /*側邊選單*/
 /*menu*/
 .stellarnav > ul > li > a {padding: 0 10px 0 0;color: #ffffff;font-size: 17px;    line-height: 30px;margin: 5px 5px;
    height: 30px;}
 .stellarnav .menu-toggle span.bars span {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 6px;
    background: #ffffff;
    margin: 0 auto 4px;}
  .stellarnav .menu-toggle:after {
        content: 'MENU';
        font-size: 12px;
        color: #ffffff;
        display: block;
        transform: scale(0.9);}


 .stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 380px;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 9999;
    border-right: 1px #eee solid;
    background:#191919;}
.stellarnav.mobile li.open {
        background: #090e1859;}
.stellarnav.mobile ul {
background: #4c4c4c;}

.pageIndex .stellarnav ul li a {
        color: #a1a1a1;    border-right: 0;}
.stellarnav ul li:hover a {
            color: #9c9c9c;    border-right: 0;}
.stellarnav.mobile .menu-toggle, .stellarnav.mobile .dd-toggle, .stellarnav.mobile .close-menu, .stellarnav.mobile .call-btn-mobile, .stellarnav.mobile .location-btn-mobile {
            display: inline-block;
            padding: 5px 7px;}
.stellarnav .menu-toggle {
        margin-top: 20px;
    }
/*close*/
 .stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {
                display: inline-block;
                text-align: right;
                font-size: 12px;
                background: #191919;
                color: #fff;
            }
.stellarnav .icon-close:after {
                content: '';
                display: block;
                width: 12px;
                height: 0px;
                top: 50%;
                border-bottom: solid 3px #fff;
                position: absolute;
                transform: rotate(-45deg);}
.stellarnav .icon-close:before {
                    content: '';
                    display: block;
                    width: 12px;
                    height: 0px;
                    border-bottom: solid 3px #fff;
                    position: absolute;
                    top: 50%;
                    transform: rotate(45deg);}
.stellarnav.mobile li a {border-bottom: 0px solid rgba(255, 255, 255, .15);}
                    
/*表單*/
.contact_form li .form__label {
    width: 100%;
    margin-left: 0;
    text-align: left;
    font-weight: bold;
    padding: 5px;
    background: transparent;}

.contact_form li {
     grid-template-columns: 1fr;
     grid-gap: 10px;}
.contact_form li .form__label {
    max-width: 100%;}
/*Footer/＝＝＝＝＝*/
        .footer_info { justify-content: center;}
        .footer_logo { text-align: center;}
        .footer_info ul { flex-direction: column;}
        .footer_info li:nth-child(1) { width: 100%;}
        .footer_info li:nth-child(2) { width: 100%; border-left: none;}
        .box_link {
            display: flex;
            flex-wrap: wrap;
            flex-direction: row;
            align-content: center;
            justify-content: center;}
    

.footer_info li p {
   
        text-align: left;
        display: block;
        color: #a1a1a1;
        letter-spacing: 2px;
        margin: 2px 8px;
        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: #191919;}
 #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;}

    /*底部按鈕*/
    #to_top { bottom:60px;}
    .footer.with_shopping_mode { padding:30px 0 70px; }



/* 開啟手機板下方按鈕所需設定 */
.footer.with_shopping_mode { padding:30px 0 60px; }
#to_top { bottom:60px;}
}


@media screen and (max-width: 600px) { 
    /*footer*/
    .footer_info{gap: 0;}
    .footer_info ul { width: 90%;}

    
    
}



