@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 


/*頁面內容*/

:root {
  --SFont: "Lato", 'Noto Sans TC', sans-serif;/*特殊字體*/
  --pd100:100px 0;
  --m100:100px;
  --m50:50px;
  --m30:30px;
  --f60:60px;
  --f48:48px;
  --f40:40px;
  --f36:36px;
  --f32:32px;
  --f28:28px;
  --f24:24px;
  --f22:22px;
  --f20:20px;
  --f18:18px;
  --f17:17px;
  --f15:15px;
  --f14:14px;
}
* {
    font-family: var(--SFont); 
}
.path { display: none;}



#content_main, #content {
    background: #141414;
    min-height:80vh;
}


/*SubMenu*/
.me_tp_features { display:none;}/*隱藏整列*/
.shop_search_btn { background: #212121;}
.tp_links a { display: none;}/*隱藏選單按鈕連結*/
.tp_links a:hover { color: #212121;}

/*按鈕*/
.animated-arrow {background: #212121;transition: .3s ease-in-out;}
.animated-arrow:hover { background: #aaaaa9; transition: .3s ease-in-out;}

/*頁碼*/
.page { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; width: 100%; margin: 0;}
.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: #212121; border: 1px solid #212121;}
.other_select_page .page{display: none;}


/*預設解除背景輪播*/
#content_main {
    margin: 0;
}

.bannerindex {
    position: relative;
}

.swiper-banner {
    position: static;
    margin: 0;
    height: auto;
}

.swiper-slide img {
    width: 100% !important;
    height: auto;
}

@media screen and (max-width: 1024px) {
    .bannerindex {
        position: relative;
    }


}
/* = = = Index banner = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

@media screen and (max-width: 768px) {
/* 行動裝置相容性調整 大圖調整 */
.swiper-slide img { animation-fill-mode: none; -webkit-animation-fill-mode: none;}
}

@media screen and (max-width: 425px) {
    .swiper-slide::after { bottom: 0%; width: 33vw;}
}

/*首頁大圖特效*/


.header_area + .bannerindex .swiper-slide {
    position: relative;
    overflow: hidden;
}

.pageIndex .header_area + .bannerindex .swiper-slide::before, .header_area + .bannerindex .swiper-slide::after{
	content: "";
    position: absolute;
    width: 100%;
    height: 100%;
	left: 0;
    bottom:0px;
}
/* .pageIndex .swiper-slide:nth-child(2):before,
.pageIndex .swiper-slide:nth-child(2):after {
    content: "";
    position: absolute;
    z-index: 999;
    pointer-events: none;
} */

.pageIndex .header_area + .bannerindex .swiper-slide:nth-child(1)::before{
    background: url(https://pic03.eapple.com.tw/insensedesign/bn_img01.png) no-repeat center center;
    background-size: 100%;
    z-index: 11;
	/* animation: leaf ease-in-out 3s infinite;
	animation-direction: alternate; */
}

/*.pageIndex  .header_area + .bannerindex .swiper-slide:nth-child(1)::after{
    background: url(https://pic03.eapple.com.tw/insensedesign/bn_img02.png) no-repeat center center;
    background-size: 100%;
    z-index: 10;
	animation: leaf ease-in-out 3.5s 0.5s infinite;
	animation-direction: alternate;
} */

/* .pageIndex .header_area + .bannerindex .swiper-slide:nth-child(2)::before{
    background: url(https://pic03.eapple.com.tw/insensedesign/bn_img02.png) no-repeat center center;
    background-size: 100%;
    z-index: 10;
} */
.pageIndex  .header_area + .bannerindex .swiper-slide:nth-child(2)::after {
    background: url(https://pic03.eapple.com.tw/insensedesign/bn_img02.png) no-repeat center center;
    background-size: 100%;
    z-index: 10;
}

.pageIndex .swiper-slide.swiper-slide-active:nth-child(1)::before {
    animation: ani_BtoT 1.5s 0.5s both;
}
.pageIndex .swiper-slide.swiper-slide-active:nth-child(2):after {
    animation: ani_LtoR 1.5s 0.5s both;
}



@keyframes ani_LtoR {
    0% {
        transform: translateX(-5%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes ani_BtoT {
    0% {
        transform: translateY(5%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@media screen and (min-width: 769px) {
	.pageIndex .header_area.sticky + .bannerindex::before, .header_area.sticky + .bannerindex::after{
		animation: ani_RtoL_moveout ease-in-out 2s 0s both;
	}
	
}


@media screen and (max-width:768px) {
	
	.pageIndex .bannerindex .swiper-slide img {
        width: 100%;
        display: block;
        max-width: 100%;
        min-width: 100%;
        object-position: 60%;
        object-fit: cover;
        -moz-object-fit: cover;
        -ms-object-fit: cover;
        -o-object-fit: cover;
        -webkit-object-fit: cover;
        margin: 0;
        transition: all 0.3s;
    }
	

	.pageIndex .header_area + .bannerindex::after {
		height: 16vw;
        max-height: 95px;
        width: 100%;
        top: unset;
        bottom: 0px;
	}

	
	@keyframes ani_LtoR_move_teapot{
		0% {
			left:-50%;
			opacity:0;
		}
		100% {
			left:0px;
			opacity:1;
		}
	}
	

	

	
}


/* = = = banner = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

.banner {display:block;background: repeat center center transparent;min-height: auto;height: fit-content;padding: 0;}
.banner h5 {color: #ffffff;min-height: 50vh;padding: 210px 0 0;text-align: center;border-bottom: 1px #3C3C3C solid;}
.banner h5:before {
    display: block;
    content: '';
    font-weight: normal;
    font-size: 72px;
}
/* .services_page .banner h5:before { content: 'SERVICE';}
.blog_page .banner h5:before,.blog_in_page .banner h5:before{ content: 'BLOG';}
.album_page .banner h5:before,.album_class_page .banner h5:before,.album_info_page .banner h5:before{ content: 'PROJECTS';} */

.banner.banA {}
.banner.banblog {
    background-image: url(https://pic03.eapple.com.tw/insensedesign/banner.jpg);
    background-repeat: no-repeat;
    box-shadow: none;
    background-position: center center;
    }

.banner.banF {background-image: url(https://pic03.eapple.com.tw/insensedesign/banner.jpg);
    background-repeat: no-repeat;
    box-shadow: none;
    padding: 0 0;
    background-position: center center;}

    .banner.banE {background-image: url(https://pic03.eapple.com.tw/insensedesign/banner.jpg);
        box-shadow: none;
        padding: 0 0;
        background-position: center center;}

@media screen and (max-width: 768px) {}
@media screen and (max-width: 600px) {
    .banner h5{width: 95%;padding: 60px 0px 20px;}
    .banner h5:before{font-size:48px}
     .banner.banF ,.banner.banblog ,.banner.banE {
        background-size: cover;
    }
    .pic-list .item {
        width: 96%;}
    }


/* = = = header = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

/*header*/
.header_area {position: fixed;width: 100%;top: 0;left: 0;padding: 0;background: #ffffffcf;box-shadow: 0 0 10px #00000029;}
.header_area.sticky {/* position: fixed; */background: #ffffffcf;}


.main_header_area .container {max-width: 100%;}

.stellarnav ul {
    margin: 0;
    padding: 0;
    text-align: right;
}
.navigation{padding: 0 2%;}
.nav-brand{position: absolute;top: 10px;padding: 10px 0 10px;width:120px;}
.stellarnav > ul > li { position: relative;}
.stellarnav li{padding: 20px 0 10px 0;}
.stellarnav > ul > li::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #000000;
    transform: translateX(-50%);
    transition: all 0.3s;
}
.stellarnav ul li.has-sub:nth-of-type(3)>ul>li:nth-child(1){display:none;}
.stellarnav > ul > li:hover::after {width: 50%;height: 4px;background: #000000;transition: all 0.3s;}
.stellarnav > ul > li > a, .stellarnav li.has-sub > a {font-weight: 600;position: relative;padding: 0 20px;color: #000000;transition: all .3s;}
.stellarnav > ul > li:hover > a, .stellarnav > ul > li.has-sub:hover > a {color: #00000080;}
.stellarnav li.has-sub > a::after {display: none;}/*下拉箭頭*/
.stellarnav li.has-sub:hover > a::after { display: none;}/*下拉箭頭*/

/*--下拉頁面---------------------------------------*/

/*外框*/
.stellarnav ul ul, .stellarnav ul ul ul {background: #000000;}
/* box-shadow: 0 2px 5px #00000012; */
.stellarnav ul ul ul { left: 100%;}
.stellarnav li li {
    display: block;
    border: 0;
    border-bottom: 1px #eeeeee2e solid;
    margin-bottom: -1px;
    padding: 2px;
}

/*右拉箭頭*/
.stellarnav li li.has-sub > a::after { border-left: 6px solid #888;}
.stellarnav li li.has-sub:hover > a::after { border-left: 6px solid #212121; border-top: 6px solid transparent;}

/*項目*/
.stellarnav li li > a, .stellarnav li li.has-sub > a { color: #fff; font-size: 15px; padding: 7px 5px; border-left: 1px solid transparent; background: transparent; transition: all 0.3s;}
.stellarnav li li:hover > a, .stellarnav li li.has-sub:hover > a {
    color: #ddd;
    padding-left: 10px;
    transition: all 0.3s;
}

/*--手機板選單---------------------------------------*/

/*選單*/
.stellarnav .menu-toggle{padding: 15px 10px;}
.stellarnav .menu-toggle span.bars span { background: #333;}
.stellarnav .menu-toggle:after { color: #333;}

/*展開*/
.stellarnav.mobile.left > ul {background: #bbbbbbfa;}
.stellarnav.mobile > ul > li {border-bottom: 1px #ccc 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: 0;}
.stellarnav.mobile > ul > li.has-sub > ul > li > a { color: #444; padding: 20px 30px 20px 40px;}
.stellarnav.mobile > li > a { border-bottom: none;}

/*close*/
.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu { background: #212121; 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 li.open > a.dd-toggle .icon-plus { width: 0; top: -5px; left: 6px;}
.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 #212121;}

/*下拉*/
.stellarnav.mobile li.open { background: #aaaaa922; 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 li.has-sub:nth-of-type(2)>ul>li:nth-child(1) {display: none;}
/*--RWD---------------------------------------*/

@media screen and (max-width: 1024px) { 
    .stellarnav ul {text-align: center;}
    .stellarnav li {
        padding: 4px 0;
    }
    .navigation {
        padding: 16px 0;
    }
    .stellarnav > ul > li::after{top:unset;bottom:0;}   
        
    /*logo*/
    .header_area .nav-brand { max-width: 200px; transition: .3s ease-in-out;}

    /*menu*/
    .header_area .navigation, .header_area.sticky .navigation, .navigation { padding: 10px;}
    .stellarnav { padding: 0 0 10px;}
    .stellarnav.mobile > ul > li > a.dd-toggle, .stellarnav > ul > li.has-sub > a, .stellarnav.mobile > ul > li.has-sub a.dd-toggle, .stellarnav.mobile > ul > li.has-sub > a { padding: 0 30px;}
    .stellarnav li.has-sub > a::after { top: 49%;}/*下拉箭頭*/
}


@media screen and (max-width: 768px) {
    /*logo*/
    .nav-header { position: static;}  

    /*menu*/
    .stellarnav ul ul, .stellarnav > ul > li:hover > ul > li:hover > ul { box-shadow: none;}
    .stellarnav li li { border: none;}
    .stellarnav > ul > li:hover::after { width: 100%;}
    .stellarnav > ul > li > a b:last-child { display: none;}
    .stellarnav.mobile > ul > li > a.dd-toggle, .stellarnav > ul > li.has-sub > a, .stellarnav.mobile > ul > li.has-sub a.dd-toggle, .stellarnav.mobile > ul > li.has-sub > a { padding: 20px 30px;}
    .stellarnav.mobile > ul > li > a.dd-toggle { top: 3px;}
    .stellarnav li.has-sub > a::after { top: 53%;}/*下拉箭頭*/
    .stellarnav li li > a, .stellarnav li li.has-sub > a, .stellarnav li li.has-sub.drop-left a { padding: 10px 30px; border-left: none;}
    .stellarnav li li:hover > a, .stellarnav li li.has-sub:hover > a { border-color: transparent;}

    /* 測選單 */
    .stellarnav.mobile {
        position: relative;
        flex: unset;
        padding: 0;
    }
    .navigation{display:flex;flex-direction: row;align-items: center;justify-content: space-between;}
    .stellarnav .menu-toggle:after{display:none;}
    .nav-brand{padding:0;}
}

/* = = = footer = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.footer {background: #000;padding: 50px 0 0;}


.footer_logo img {width: 100%;height: 100%;opacity: 0;}
.footer_logo {
    display: none;
    margin: 0 0 20px;
    height: 120px;
}
.footer_info {
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.footer_info ul {display: grid;grid-template-columns: 1fr 1fr;width: 100%;padding: 0;margin: 0;text-align: left;}

.footer_info > ul >li:nth-child(1):before, .footer_info > ul >li:nth-child(2):before {font-family: var(--SFont);font-weight: bold;font-size: var(--f18);letter-spacing: 8%;color: #ffffff;margin-bottom: var(--f20);display: block;}
.footer_info li:nth-child(1):before {    content: "CONTACT";}
.footer_info li:nth-child(2):before {content: "QUICK LINKS";}


/*footer_info*/
.footer_info li:nth-child(1) {display: inline-block;width: 100%;padding: 10px 10px 30px;}
.footer_info li p {/* text-align: center; */color: #eee;}
.footer_info li p a { color: inherit;}
/*footer_menu*/
.footer_info li:nth-child(2) {display: inline-block;width: 100%;vertical-align: top;padding-bottom: 30px;}
.footer_menu {margin-top: 10px;display: grid;grid-template-columns: repeat(3, 1fr);gap: 0;/* padding: 0 20%; */}/*footer按鈕最小寬度100px*/
.footer_menu a {margin: 5px 0;padding: 5px 10px;max-width: 120px;background: transparent;border: none;border-left: 3px #ccc solid;text-align: left;color: #aaaaa9;transition: .3s ease-in-out;}
.footer_menu a:last-child {border-right: none;}
.footer_menu a:hover {color: #ffffff;background: transparent;transition: .3s ease-in-out;}
.footer_menu a:nth-child(1){display:none;}

p.mail{display:none;}
.footer_info li p.add2:before {
    content: '營業時間：';
}
/*聯絡icon*/
.box_link {
    display: none;
    position: relative;
    text-align: center;
    max-width: 100%;
    margin: 20px 0 0;
}
.box_link a {
    display: inline-block;
    max-width: 50px;
    transition:all 0.3s;
    padding: 8px;
    width: 50px;
    border-radius: 100px;
}
.fa-whatsapp:before, .fa-envelope::before { color: #ccc;}
.box_link a:hover { background: #ddd; border-color: #ddd;}
.box_link a:hover {    color: #fff;}
.box_link a:nth-child(3),.box_link a:nth-child(4) {display: none;}
.box_link a:hover .fa-whatsapp:before, .box_link a:hover .fa-envelope::before { color: #212121;}


/*版權*/
.copy {
    position: relative;
    background: #000000;
    color: #ffffff;
    border: 1px #333 solid;
}
.copy a { color: #fff; transition:all 0.3s;}
/*版權聲明隱藏*/
.copy p:nth-child(1) {
    display: none;
}
/*--RWD---------------------------------------*/

@media screen and (max-width: 768px) {

    /*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;}

    .footer_menu a:first-of-type { border-left: 1px #ccc solid;}
    .footer_menu { grid-template-columns: repeat(3, 1fr);}

    /*底部按鈕*/
    #to_top { bottom:60px;}
    #bottom_menu {display: none; }
    .footer.with_shopping_mode { padding:30px 0 0; }
}

@media screen and (max-width: 600px) { 
    /*footer*/
    .footer_info ul { width: 100%;}
    .footer_info li:nth-child(2) {width: 100%;border-left: none;}
    /*聯絡icon*/
    .box_link { text-align: center;}
}


/* = = = 促銷方案 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

/*--促銷方案/首頁---------------------------------------*/
.news_part { width: 90%; max-width: 90%; padding: 100px 0 50px;}
.news_part .title_i_box h6 { display: none;}
.news_part .title_i_box h4 { position: relative; color: #212121; text-align: left; font-weight: 600; font-size: 20px;}
.news_part .title_i_box h4::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 100px;
    width: 200px;
    height: 1px;
    background: #aaaaa9;
}
.news_list ul li a:hover { background: #f9f9f9;}
.news_list ul li p::after { background: #212121; padding: 3px 5px; border-radius: 5px; color: #fff;}
.news_list ul li a { }

/*按鈕*/
.i_news_b a.animated-arrow { background: transparent; border-radius: 15px; transition: .3s ease-in-out;}
.i_news_b a.animated-arrow:hover { background: transparent;}
.i_news_b a.animated-arrow b { color: #666; font-weight: normal; letter-spacing: 3px; transition: .3s ease-in-out;}
.i_news_b a.animated-arrow:hover b { transition: .3s ease-in-out;}
.i_news_b a.animated-arrow i { color: #888;}

/*--促銷方案/功能頁---------------------------------------*/
.promotion_title h2 { position: relative; color: #212121; text-align: left; font-weight: 600; font-size: 20px;}
.promotions_page .edit { min-height: 22vw; color: #666; line-height: 32px; letter-spacing: 1px; text-align: justify;}

/* = = = 文章管理 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

/*--文章管理/首頁---------------------------------------*/

/*區塊設定*/
.module_i_news { padding: 80px 20px 50px;}

/*英文標題*/
.module_i_news .title_i_box h6 { display: none; color: #aaaaa9;}

/*中文標題*/
.module_i_news .title_i_box h4 { position: relative; color: #212121; font-weight: 600; text-shadow: 2px 2px 0 #FFFFFF, -2px -2px 0 #FFFFFF, 2px -2px 0 #FFFFFF, -2px 2px 0 #FFFFFF;}
.module_i_news .title_i_box h4::before {
    content: "NEWS";
    position: absolute;
    top: -45px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 60px;
    color: #aaaaa9;
    letter-spacing: 3px;
    text-shadow: none;
    z-index: -1;
}
.module_i_news ul { width: 90%; grid-template-columns:1fr 1fr 1fr 1fr;}
.i_blog_ri h5 { color: #212121; font-weight: 600;}

/*--文章管理/外層---------------------------------------*/

.blog_page .main_part { max-width: 1400px;}

/*列表搜尋*/
h5.blog_le_t { display: none;}

/*分類標題*/
h4.blog_category_title {font-size: 20px;color: #ffffff;/* display: none; */}
.blog_shareData {
    flex-direction: row;
}
.blog_box_edit *{color:#fff;}

/*次分類*/
.submenu { background: transparent;}
.submenu a:hover { color: #fff;}
.blog_le .accordion li a { color: #666;}
.blog_le .accordion li a:hover { color: #fff;}
.blog_le .accordion li i { top: 12px;}

/*文章*/
.module_i_news ul, .blog_subbox { display: grid; gap: 10px;}
.module_i_news li, .subbox_item { position: relative; width: 100%;}
.module_i_news li a, .subbox_item a {padding: 5px;grid-template-columns: 30% 1fr;background: #ffffff05;box-shadow: 0 0 10px #0000000f;grid-gap: 5px;}
.module_i_news li a:after, .subbox_item a:after { pointer-events: none;}

.module_i_news li a::before, .module_i_news li a::after, .subbox_item a::after,.subbox_item a::before { display: none;}
.module_i_news li::after, .subbox_item::after { 
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 8;
    background: #ffffff88;
    opacity: 0;
    border: 1px #ddd solid;
    pointer-events: none;
    transition: all .5s;
}
.module_i_news li::before, .subbox_item::before { 
    content: 'READ MORE';
    position: absolute;
    z-index: 19;
    bottom: 10px;
    right: 10px;
    opacity: 0;
    font-size: 15px;
    color: #999;
    pointer-events: none;
    transition: all .5s;
}
.module_i_news li:hover::before, .module_i_news li:hover::after, .subbox_item:hover::before, .subbox_item:hover::after {
    opacity: 1;
    transition: all .5s;
}
.blog_list_ri h5 {color: #ffffff;font-weight: 600;font-size: 28px;}
.blog_list_ri p{
    border-top: 1px #ccc solid;
    color: #ddd;
    padding-top: 20px;
    padding-bottom: 50px;
    margin-top: 20px;
}
.i_blog_le, .i_blog_ri, .blog_list_le, .blog_list_ri {width: 100%;}
.blog_list_ri {
    padding: 5px 10px;
}
.i_blog_le, .blog_list_le {position: relative;padding-bottom: 100%;height: 100%;}/*文章縮圖長寬比例，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%);
}
.module_i_news li::before, .subbox_item::before{opacity:1;background: #686868;color: #ddd;padding: 10px 20px;}
.subbox_item:hover::before{background:#000;color:#fff;}
/*側邊*/
.blog_le .accordion > li{transition:all 0.3s;}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category { background: #fff !important;}
.blog_le .accordion > li:hover .link, .blog_le .accordion > li.on_this_category .link { background: #212121;}
.submenu a:hover { background: #aaaaa9;}
.blog_le .accordion > li.on_this_category .link a { width: 100%;}
.blog_le .accordion {
    list-style-type: none;
    margin: auto;
    border-radius: 8px;
    border: 1px #4c4c4c solid;
    overflow: hidden;
}
.blog_search input[type=search] {
    outline: none;
    box-sizing: border-box;
    width: 100%;
    font-size: 14px;
    color: #999;
    border: solid 1px #ccc;
    border-radius: 8px;
    padding: 10px 35px 10px 10px;
}
/*隱藏其餘主分類
.blog_le .accordion > li:not(.on_this_category) { display: none;}*/

/*次分類*/
.blog_le .accordion li.default .submenu { display: block !important;}

/*功*/
.blog_subbox {grid-template-columns: repeat(1,1fr);}
.blog_subbox:before { content:none;}

/*--文章管理/內層---------------------------------------*/

.blog_back a.article_btn_back {background: #686868;border: 1px solid #686868;transition: 0.3s ease-in-out;}
.blog_back a.article_btn_back:hover {background: #aaaaa9;border-color: #aaaaa9;transition: 0.3s ease-in-out;}

.blog_back a.article_btn_prev, .blog_back a.article_btn_next {background: transparent;color: #686868;border: 1px solid #686868;transition: 0.3s ease-in-out;}
.blog_back a.article_btn_prev:hover, .blog_back a.article_btn_next:hover {background: #aaaaa9;border: 1px solid #aaaaa9;color: #fff;transition: 0.3s ease-in-out;}
.news_related{background: #242424;}
/*--RWD---------------------------------------*/

@media screen and (max-width: 768px) {
    /*首頁*/
    .module_i_news ul { width: 100%; grid-template-columns: 1fr 1fr;}

    
}

@media screen and (max-width: 480px) {
    /*首頁*/
    .module_i_news ul { grid-template-columns: 1fr;}

    /*功能頁/外層*/
    .blog_subbox { grid-template-columns: 1fr;}
.subbox_item a{display:flex;flex-direction: column;}
}


/*相簿*/
.show-list .item:hover .show_name {
    color: #a18545;}

/*相簿*/
.overlay {
    background: rgba(170, 170, 170, 0.25);
    border-radius: 5px;
    transition: all .2s 100ms cubic-bezier(.42,0,.58,1);
    }

.subalbum-menu h2 {
    color: #b0b0b3;
    letter-spacing: 1px;}


.other_album_choice li {
    background: #686868;
    border-radius: 5px;
    font-size: 13px;
    }
.other_album_choice li:hover{background: #aaa;}
.other_subalbum li {
    width: 23%;
    margin: 14px 9px;
    background: transparent;
}
.other_subalbum li a p,.album_descrip{color:#fff;}

.pic-list .show_pic{ padding-bottom: 0;}
.pic-list .show_pic img {
    height: 100%;
    width: 100%;
    object-fit: cover;}

    .album_fixed_title {
        font-size: 17px;
        color: #666;
        padding-right: 14px;
        display: none;
        position: relative;
        background: none;
        margin-bottom: 15px;
    }


/*大分類*/
.album_page .main_part {max-width: 1400px;}
.show-list{    grid-template-columns: 1fr 1fr;}
.show-list .item .show_name,.show-list .item:hover .show_name {color: #ffffff;}
.show-list .show_name {text-align: center;font-weight: 500;}
.overlay {-webkit-transform: scale(1);transform: scale(1);}
.pic-list{grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));}
.show-list .show_pic img{min-height: 20vw;object-fit: cover;transition: .3s ease;}
.pic-list .show_pic img{transition: .3s ease;}
.show-list .show_pic:hover img ,.pic-list .show_pic:hover img{
    transform: scale(1.1);
}
@media screen and (max-width: 570px) {
    .show-list .item {     width: 89%;    }
    .show-list .item {   margin: 10px 6%;  }
    }    

/*--RWD---------------------------------------*/

@media screen and (max-width: 1024px) { .module_i_news ul { 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;}
    ul.show-list { grid-template-columns: repeat(1,1fr);}
    .other_subalbum, ul.pic-list { grid-template-columns: repeat(2,1fr);}
    .products-list {grid-template-columns: 1fr 1fr;}
}
@media screen and (max-width: 600px) {
    .module_i_news ul, .blog_subbox { grid-template-columns:1fr;}
    .i_blog_le, .blog_list_le {padding-bottom: 100%;}
    h4.blog_category_title { font-size: 20px;}
    h4.blog_category_title span { font-size: 18px;}
}
@media screen and (max-width: 425px) {
    ul.show-list, .other_subalbum, ul.pic-list { grid-template-columns: repeat(1,1fr);}
    .footer_menu { padding: 0 ;}
    .products-list {grid-template-columns:  1fr;}
}

/*購物車*/
.qaform{ display: none;}
.sidebarBtn{ display: none;}
ul.prod li h3.prod-thumb{display: none;}
body.product_info_page ul.prod {
    display: inline-block;
    max-width: 54%;
    vertical-align: top;
    padding: 0 2%;
    width: 54%;
    overflow: auto;
	padding-top: 45px;}
.products-list .name {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    letter-spacing: 1px;
    background: #0c2354;
    margin-top: 0px;
    margin-bottom: 10px;
    text-align: center;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 50px;
    align-items: center;
    justify-content: center;
    }
.name span{font-size: 20px;
    display: block;}
.products-list .pic{    padding-bottom: 130%;}
.product-wrapper{display: flex;}
.product_pic #bx-pager{display: none;}

.prod-panel h3 {
    font-size: 1.2em;
    font-weight: 800;
    border-bottom: 1px solid #ddd;
    padding: 8px;
    text-align: left;
    background: #fbf3c8;
    color: #082454;
    margin-bottom: 2%;
    margin-top: 2%;
}

.lastPage{background: #686868;}

.prod_part {    width: 90%;}
.products-list {
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    position: relative;
    padding-top: 10px;}
.products-list:before{content:none;}
.products-list .item { width: 100%;}
.product-layer-two{display:none;}

.products-list .price {
    margin: 10px 0;
    display: none;
}


.products-list .item a:hover .more {
    background: #ddd;
    color: #fff;
    letter-spacing: 2px;
    padding: 6px;
}

.products-list .more {
    border: 1px solid #ddd;
    color: #ddd;
    font-size: 16px;
    font-weight: bold;
    line-height: 32px;
    text-align: center;
    transition: all .5s;
    padding: 6px;
}

/*內頁名稱*/
.mobile_product_name {
    display: block;
    color: #ddd;
    text-align: center;
    letter-spacing: 1px;
    font-size: 30px;
    padding-bottom: 3%;
    position: relative;}
.mobile_product_name:after {
    content: '';
    height: 6px;
    width: 10%;
    background: #ddd;
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    transform: translate(-50%, 4px);}

    .prod_related h6 span:before {
        content: '相關推薦';
        font-size: 24px;
        color: #a7a7a7;
    }
    
    .prod_related {
        background: #181818;
        padding: 25px 15px;
    }

    .bx-wrapper .bx-viewport {
        border: 0;
        left: -5px;
         background: none; 
        -webkit-transform: translatez(0);
        -moz-transform: translatez(0);
        -ms-transform: translatez(0);
        -o-transform: translatez(0);
        transform: translatez(0);
    }

    .product_pic {
        padding-bottom: 20px;
        padding-left: 40px;
        position: relative;
    }
    .product_main {
        padding: 0 10px;
        display: inline-block;
        width: 44%;
        vertical-align: top;
    }

/*列表*/
.product_page .products-list .name , .product_page .more.slowAnimation { display: flex !important;justify-content: center;}

/*圖片*/
.products-list .pic {
    display: block;
    position: relative;
    text-align: center;
    /* height: auto;
    aspect-ratio: 1 / 1.2;
    overflow: hidden;
    padding-bottom: 0; */
}
.products-list a .pic 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;
}
/* 商品輪播效果取消 */
body.product_info_page ul.bxslider li {
    opacity: 1 !important;
}
.related_list li a p{display:none;}
/*hover到才顯示副選單 關掉↓*/
.product-layer-two li li {    display: block;}
@media screen and (max-width: 820px) {
    ul.prod li .prod-panel {
        text-align: left;
    }
.product-wrapper {
    display: inline-block;
    /* text-align: center; */
    width: 100%;
}

.product_main {
    padding: 0 10px;
    display: inline-block;
    width: 90%;
    vertical-align: top;
}

.product_pic .bx-wrapper .bx-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 437px;
}

.product_pic {
    padding-bottom: 20px;
    padding-left: 40px;
    position: relative;
    width: 100%;
}

body.product_info_page ul.prod {
    display: inline-block;
    max-width: 100%;
    vertical-align: top;
    padding: 0 2%;
    width: 100%;
    overflow: auto;
    padding-top: 45px;
}
	}



/* = = = 聯絡表單 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.contact_page .main_part {
    max-width: 1400px;
}


.contact_page .contact_editbox {
    margin: 0;
    padding: 0;
}

.contact_content .information_left {
        width: 100%;
        padding: 0;
        margin: 20px 0 80px;
}
.contact_content .information_left .blank_letter.i, ul.list_before.info {
    display: none;
}


h4.blank_letter.f {padding-bottom: 15px;position: relative;;align-items: flex-start;}
h4.blank_letter.f:before {
        content: "FORM";
        font-size: 30px;
        margin-left: -4px;
        margin-right: 10px;
        font-family: var(--SFont);
        font-weight: 500;
        letter-spacing: 4%;
        padding-right: 10px;
        border-right: 1px #ccc solid;
        }
.contact_form{gap:20px;}
.blank_letter {font-size: 23px; color: #2F2F2F; font-weight: 500; letter-spacing: 2px; text-indent: 2px; background-repeat: no-repeat;}
/*表單最大寬度設定*/
.contact_content .information_right {width: 100%;padding: 40px 6%;background: #fff;box-shadow: 0 0 10px #0000000f;}

/*標題*/
.blank_letter { color: #212121;}

/*側邊資訊*/
.list_before {margin-top: 10px;display: flex;flex-direction: row;gap: 40px;}
.list_before.info li{border-left:3px #ccc solid;padding-left: 42px;}
.list_before.info li:before{padding-left:10px;width: fit-content;}
/*表格樣式*/
.contact_form li{grid-template-columns: 1fr;}
.contact_form li .form__label {
    max-width: 100%;
    text-align: left;
}
.contact_form li:has(input[type=radio]) .form__insert{    grid-template-columns: repeat(auto-fill, minmax(13px, 13px) minmax(100px, 1fr));}
.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;}/*下拉式*/

/*驗證碼對齊*/
.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_le_map a { background: #212121;}
.contact_form li.last cite {background: #212121;}

@media screen and (max-width: 425px){
    /*聯絡表單*/
    h4.blank_letter.f{
        display: flex;
        flex-direction: column;
        padding: 0;
    }
    h4.blank_letter.f:before{border:0;}
    .contact_form li { padding-left: 0;}
    .contact_form li .form__label { margin-left: 0;}
    .contact_form li .form__insert { width: 100%;}
}

/* = = = RWD = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
@media screen and (max-width: 425px) { 

    .contact_content {
        margin: auto;
        max-width: 90%;
    }
}




/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 商品下拉超過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個--結束 */


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2025.12.18  */
.product_page .main_part { max-width:1500px;}

.product_page .show_content,
.product_info_page .show_content { display: flex; justify-content: space-between; flex-wrap: wrap; align-items: flex-start; align-content: flex-start; width: 100%;}
ul.page { width: 100%;}

.ProdFilter_Item_Show { width: 100%;}
.Prods_Menulists { width: 100%; padding: 0;}
.Prods_Wrap { width: calc(100% - 270px);}


/* 產品分類-左手邊 / 篩選器-上面 */

.ProdFilter_ { order: 1; margin-bottom: 25px;}
.Prods_Menulists { order: 2;}
.Prods_Wrap { order: 3;}
.Prods_Menulists { width: 250px; letter-spacing: 1px;}
.Prods_Menulists ul {}
.Prods_Menulists > ul > li { width: 100%; flex-wrap: wrap;}
.Prods_Menulists ul ul { position: static; border: none;}
.Prods_Menulists ul li ul li {}
.Prods_Menulists li.has-sub.open > a {}

.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: 1024px) {
.product_main { display: block; width: 100%;}    
.sidebarBtn { display: block; width: 100%;}
}
@media screen and (max-width: 980px) {
}
@media screen and (max-width: 768px) {


.Prods_Wrap { width: 100%; margin-top: 20px;}
.ProdFilter_ { width: 100%;}
.Prods_Menulists { opacity: 0; display: none;}

}
@media screen and (max-width: 600px) {
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 2025.12.26 中間放大*/
.BannerHome02 .swiper-slide-active img { transform: scale(1);}
.BannerHome02 .swiperBan02 .swiper-slide img { transition: transform 5s ease-out; will-change: transform; transform: scale(1);}
.BannerHome02 .swiperBan02 .swiper-slide-active img { transform: scale(1.06);}




/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

