@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/

.pageIndex #content_main { z-index: 6;}

body{
    font-family:"Noto Sans TC", "Montserrat", sans-serif;
}
.path p, .path p a{ display: none;}
.edit{ padding: 0px 0;}


#to_top {bottom: 10px;left: auto;right: 15px;letter-spacing: 0.1em;color: #000;background: unset;
    box-shadow: unset;border-radius: 0;  font-family: "Lora", serif;}
#to_top i.top {height: 15px;}
#to_top i.top:before, #to_top i.top:after {height: 35px;transform: rotate(0deg) translateY(-100%);left:45%;}
#to_top i.top:after {width: 5px;height: 5px;left: 35%;}
#to_top:hover i.top:after {top: -35px;}

@media screen and (max-width: 768px) {
#to_top {width: 35px;right: 5px;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/*反白顏色*/
::-moz-selection{
    background-color: #8f8e8e;
    color: #e2e2e2;
  }
  ::selection{
    background-color: #8f8e8e;
    color: #e2e2e2;
  }
  
  body{
      overflow: overlay;
  }
  &::-webkit-scrollbar {
      background: #e2e2e2;
      width: 7px;
  }
  &::-webkit-scrollbar-button {
      display: none;
      background: #e2e2e2;
      border-radius: 0;
    }
  &::-webkit-scrollbar-track-piece {
      background: #e2e2e2;
    }
  
  &::-webkit-scrollbar-thumb {
      border-radius: 4px;
      background-color: #8f8e8e;
    }
  
  &::-webkit-scrollbar-track {
      box-shadow: transparent;
}



/* 底下圈圈 */


.pageIndex #page .swiper-pagination-clickable .swiper-pagination-bullet {
    position: relative;
    border-radius: 0;
    height: 5px;
    width: 50px;
    z-index: 0;
    margin: 0;
    bottom: 40px;
}
.pageIndex #page  .swiper-pagination-bullet {
    background: #ffffffad;
}
.pageIndex #page  .swiper-pagination-clickable .swiper-pagination-bullet::after {
    content: "";
    display: block;
    width: 100%;
    height: 0px;
    opacity: 0;
    background-color: #fff;
    position: absolute;
    top: 0;
    z-index: 1;
    border-radius: 2.5px;
    transition: all 0.3s;
}
.pageIndex #page  .swiper-pagination-clickable .swiper-pagination-bullet:nth-of-type(1) {
    border-radius: 2.5px 0 0 2.5px;
}
.pageIndex #page  .swiper-pagination-clickable .swiper-pagination-bullet:nth-last-child(1) {
    border-radius: 0 2.5px 2.5px 0;
}

.pageIndex #page  .swiper-pagination-clickable .swiper-pagination-bullet-active.swiper-pagination-bullet::after {
    opacity: 1;
    height: 5px;
    transition: all 0.3s;
}


@media screen and (max-width:1400px) {
    .pageIndex #page  .swiper-pagination-clickable .swiper-pagination-bullet{ bottom: 15px;}
}

@media screen and (max-width:1024px) {
    .pageIndex #page  .swiper-pagination-clickable .swiper-pagination-bullet{ bottom: 10px;}
}

@media screen and (max-width:768px) {
    .pageIndex #page  .swiper-pagination-clickable .swiper-pagination-bullet{ width: 20px;}
     .pageIndex #page  .swiper-pagination-clickable .swiper-pagination-bullet{ bottom: 5px;}
}

@media screen and (max-width:768px) {
        .pageIndex #page  .swiper-pagination-clickable .swiper-pagination-bullet{ width: 5px;}
     .pageIndex #page  .swiper-pagination-clickable .swiper-pagination-bullet{ bottom: -6px;}
}

/* 開場動畫 */

.pageIndex #page::before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: transparent;
    backdrop-filter: grayscale(1)  blur(7px);
    z-index: 1000000000000000000000;
    animation: action-bg 4.3s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    pointer-events: none;
}


.pageIndex #page::after{
	 content: "";
    display: block;
    background-image: url(https://pic03.eapple.com.tw/mumuspacedesign/open-logo.png );
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 10%;
    height: 0;
    padding-bottom: 100%;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 1000000000000000000001;
    transform: translate(-50%,-50%) ;
    pointer-events: none;
    animation: action-logo 3s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
}

.pageIndex #page  .swiper-wrapper {
    transform: scale(0.8);
    animation: action-banner 3s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards ;
}

@keyframes action-bg {
    0%{
        backdrop-filter: grayscale(1)  blur(7px);
    }
    100%{
        backdrop-filter: grayscale(0)  blur(0px);
    }
}


@keyframes action-banner {
    0%{
        transform: scale(1.2);
    }
    100%{
        transform: scale(1);
    }
    
}

@keyframes action-logo {
    0%{
        opacity: 0;
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}


@media screen and (max-width:1024px) {
	.pageIndex #page::after{ width: 25%;}
}

@media screen and (max-width:500px) {
	.pageIndex #page::after{ width: 35%;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


.main_header_area{
    /*box-shadow: 1px 1px 10px rgba(0,0,0,0.07);*/
	background: rgb(255 255 255 / 90%);
	padding: 0px 20px;
}

.pageIndex .main_header_area{
	/*background: #fcfdea;*/
	transition:.3s;
}

.header_area.sticky .main_header_area{
	background: rgb(255 255 255 / 90%);
}

.header_area,.header_area.sticky {
    /*z-index: 20000000;*/
	padding: 0px;
}

.main_header_area .container {
    max-width: 1550px;
}
/*選單最大寬度設定*//*
.main_header_area .container {    max-width: 95%;}
*/
.navigation {
	grid-template-columns: 250px 1fr;
}

.nav-header {
    max-width: 100%;
}

.nav-brand {
    max-width: 200px;
}

/*電腦LOGO
.nav-brand {}
*/

/*手機LOGO
.nav-brand-m {}
*/

/*第一層*/
.stellarnav > ul > li > a{
	transition:all 0.3s;
	/*color: #FFF;*/
}
.stellarnav > ul > li > a{
	margin: 30px 1vw 24px;
	padding:0px 5px;
}

.stellarnav > ul > li.has-sub > a {
    padding-right: 0px;
}
.stellarnav > ul > li:hover > a{color: #b2b2b2 !important;text-shadow: unset !important;}

.stellarnav li.has-sub > a:after {
    height: 8px;
    width: 8px;
    display: block;
    border-style: solid;
    border-width: 0 1px 1px 0;
    border-color: transparent #777 #777 transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: border .2s;
    transition: border .2s;
    margin: 0px;
    top: 40px;
    right: -13px;
}

.stellarnav li.has-sub:hover > a:after {
    border-color: transparent #b2b2b2 #b2b2b2 transparent !important;
}




@media screen and (min-width:769px) {
	.stellarnav > ul > li > a, .stellarnav li.has-sub > a{
		position:relative;
	}
	
	.stellarnav > ul > li:hover > a b {
		transform: translateY(-40px);
		-webkit-transform: translateY(-40px);
		-moz-transform: translateY(-40px);
	}
}




/*第二層*/
.stellarnav ul ul {
    background: transparent;
    /*width: 185px;*/
	top: 75px;
	left: 12px;
}
.stellarnav > ul > li.drop-left > ul {
   right: unset;
   left: 12px;
   top: 75px;
}
.stellarnav li li {
    border: unset;
	margin-bottom: unset;
}
.stellarnav li li > a , .stellarnav li li.has-sub > a{
	padding: 10px 15px;
	transition: all 0.5s;
	color: #FFFFFF;
	/*border-bottom: 1px solid rgb(255 255 255 / 5%);
    background: rgb(0 0 0 / 40%);*/
	border-bottom: 1px solid rgb(255 255 255 / 20%);
    background: #B2B2B2;
	
}
.stellarnav li li:hover > a , .stellarnav li li.has-sub:hover > a{
	padding-left: 20px;
}


@media screen and (min-width: 769px) {
	.stellarnav li li:hover > a , .stellarnav li li.has-sub:hover > a{
		/*background: rgb(0 0 0 / 70%);*/
		background: #535353;
	}
}



/*第三層*/
@media screen and (min-width: 769px){
	.stellarnav li li.has-sub > a:after, .stellarnav li.drop-left li.has-sub > a:after {
		height: 8px;
		width: 8px;
		display: block;
		border-style: solid;
		border-width: 0 1px 1px 0;
		border-color: transparent #FFF #FFF transparent !important;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		-webkit-transition: border .2s;
		transition: border .2s;
		margin: 0px;
		top: 18px !important;
		right: 15px;
	}
	
	
	.stellarnav li.drop-left li.has-sub > a:after {
		-webkit-transform: rotate(-225deg);
        transform: rotate(-225deg);
	}
	
	
	
	.stellarnav li li.has-sub:hover > a:after, .stellarnav li.drop-left li.has-sub:hover > a:after {
		border-color: transparent #FFF #FFF transparent !important;
	}


	/*.stellarnav li ul ul li:hover > a{
		background: rgb(0 0 0 / 100%);
	}*/
	
	.stellarnav ul ul {
		/*width: 170px;*/
	}
	.stellarnav li.drop-left ul ul {
		/*right: 170px;*/
	}
	
}
.stellarnav li ul ul {
	background: transparent;
}

.stellarnav li ul ul li > a{
	/*background: rgb(0 0 0 / 70%);
    border-bottom: 1px solid rgb(255 255 255 / 5%);*/
	background: #535353;
    border-bottom: 1px solid rgb(255 255 255 / 20%);
}

.stellarnav li ul ul li:hover > a{
	background: #b2b2b2;
}


/* 商品下拉超過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;}



/*隱藏選單按鈕連結*/
.me_tp_features {
	display: none;
}
.tp_links{display: none;}


@media screen and (min-width: 1025px) {
	.header_area {
		position: fixed;
		width: 100%;
		top: 0px;
		background: unset;
	}
	
	.header_area.sticky {
		background: unset;
	}
	
	.main_header_area {
		transition: 0.3s ease;
		background: transparent;
		box-shadow: unset;
		background: -webkit-linear-gradient(top, rgba(34, 34, 34, 0.5) 0%, rgba(173, 161, 126, 0) 100%);
        background: linear-gradient(to bottom, rgba(34, 34, 34, 0.5) 0%, rgba(173, 161, 126, 0) 100%);
		position:relative;
	}
	
	.header_area.sticky .main_header_area {
		background: transparent;
	}
	
	.header_area .main_header_area::after {
		content:"";
		position:absolute;
		width:0%;
		height:94%;
		top:0px;
		left:0%;
		background: rgb(255 255 255 / 90%);
		transition: all 1s;
		opacity: 0;
	}
	
	.header_area.sticky .main_header_area::after {
		width:100%;
		opacity: 1;
	}
	
	
	
	.header_area .nav-brand {
		transition:.3s;
		max-width: 240px;
		margin-top: 12px;
	}
	
	.header_area.sticky .nav-brand {
		filter: unset;
		-webkit-filter: unset;
		max-width: 160px;
		margin-top: 0px;
	}
	
	.pageIndex .header_area .nav-brand {
	}
	
	.pageIndex .header_area.sticky .nav-brand {
		opacity:1;
	}
	
	
	
	.stellarnav > ul > li > a {
		margin: 30px 1vw 24px;
		color: #FFF;
		text-shadow: 0px 0px 10px rgb(0 0 0 / 50%);
		/*color: #343a40;*/
		transition: 0.3s ease;
		padding: 0px 5px;
	}
	
	.stellarnav > ul > li.has-sub > a {
		padding-right: 5px;
	}
	
	.header_area.sticky .stellarnav > ul > li > a {
		margin: 25px 1vw 23px;
		color: #535353;
		text-shadow: unset;
	}
	
	.stellarnav li.has-sub > a:after {
		border-color: transparent #FFF #FFF transparent;
		top: 17px;
		transition: 0.3s ease;
	}
	
	.header_area.sticky .stellarnav li.has-sub > a:after {
		border-color: transparent #777 #777 transparent;
		top: 17px;
	}
	
	
	/*解決首頁最上方時，按鈕列滑鼠移入字看不清*/
	.header_area:not(.sticky) .stellarnav > ul > li:hover > a {
		color: #FFF !important;
		text-shadow: 0px 0px 10px rgb(0 0 0 / 50%) !important;
		/*color: #343a40 !important;*/
	}
	
	.me_tp_features a.tp_btn_cart, .me_tp_features a.tp_btn_notice {
		color: #FFFFFF;
		text-shadow: 0px 0px 10px rgb(0 0 0 / 50%);
		transition: 0.3s ease;
	}
	
	.me_tp_features a.tp_btn_cart:hover, .me_tp_features a.tp_btn_notice:hover {
		text-shadow: unset !important;
	}
	
	.header_area.sticky .me_tp_features a.tp_btn_cart, .header_area.sticky .me_tp_features a.tp_btn_notice {
		color: #343a40;
		text-shadow: unset;
	}
	
	
	.header_area .nav-brand {
		transition:.3s;
		max-width: 240px;
		margin-top: 12px;
		filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.5));
	}
	
	.header_area.sticky .nav-brand {
		max-width: 210px;
		margin-top: 0px;
	}
	
	.header_area .nav-brand img{
		filter: invert(100%) grayscale(100%) brightness(500%);
		-webkit-filter: invert(100%) grayscale(100%) brightness(500%);
	}
	
	.header_area.sticky .nav-brand img{
		filter: unset;
		-webkit-filter: unset;
	}
	

}




/*按鈕中英文 - 隱藏英文翻動特效*/
/*.stellarnav > ul > li > a b {
    line-height: unset;
   	height: unset;
	transform: unset !important;
    -webkit-transform: unset !important;
    -moz-transform: unset !important;
	transition: unset;
	font-weight: 400;
}

.stellarnav > ul > li > a b:nth-of-type(2) {
	display:none;
}*/

.stellarnav > ul > li > a b:nth-of-type(2) {
	letter-spacing:0px;
    font-family:"Montserrat", sans-serif;

}

@media screen and (min-width: 769px){
	.stellarnav > ul > li > a b:nth-of-type(2) {
		/*text-transform: none;*/
	}
}



/*按鈕列RWD*/

@media screen and (max-width: 1024px){
	/*Header/＝＝＝＝＝*/
	.header_area {
		background: #FFF;
	}
	.header_area.sticky {
		background: transparent;
	}
	
	.navigation {    padding: 0px;}
	.stellarnav > ul > li > a {
		margin: 0px 1.5vw;
	}
	.stellarnav li.has-sub > a:after {
		/*top: 25px;*/
		right: calc(1.5vw - 13px);
	}
	/*Logo/＝＝＝＝＝*/
	.header_area .nav-brand{max-width: 180px;margin-top: 8px;margin-bottom: 5px;transition: .5s;}
	.header_area.sticky .nav-brand{max-width: 155px;}

    .main_header_area{ background: #fff;}
	.header_area.sticky .main_header_area{	background: rgb(255 255 255 / 93%);
}
	
}

@media screen and (max-width: 768px) {
	
	/*首頁固定選單*//*
	.pageIndex .header_area{position: position:relative;}*/
	
	
	.stellarnav li li > a , .stellarnav li li.has-sub > a{    padding: 15px !important;border-left:none;}
	.stellarnav li li:hover > a , .stellarnav li li.has-sub:hover > a{padding: 15px !important;/*border-color:transparent;*/}
	.stellarnav.mobile li a {
		border-bottom: 1px solid rgba(255, 255, 255, .20);
	}

	.navigation {
        align-items: flex-start;
    }
	.nav-header {
		text-align: left;
		line-height: 0px;
		justify-content: flex-start;
	}
	.header_area .nav-brand{
		max-width: 160px;
        margin: 12px auto 8px 10px;
	}
	.header_area.sticky .nav-brand{
		max-width: 160px;
	}
	.main_header_area {
		padding: 0px 0px;
	}
	.stellarnav.mobile {
		position: absolute;
		left: 0;
		top: 0px;
		width: auto;
		display: inline-block;
		right: 0px;
		left: unset;
	}
	
	.stellarnav .menu-toggle {
        padding: 15px 10px;
    }
	
	.stellarnav.mobile.left > ul {
		max-width: 100%;
		padding: 10px;
		background: rgba(255,255,255,0.95);
	}
	
	.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {
		background: unset;
	}
	.stellarnav.mobile li.drop-left ul ul {
		left: 0px;
	}
	.stellarnav.mobile li li:last-child > a {
		border-bottom: unset;
	}
	
	.stellarnav.mobile li li li:last-child > a {
		border-bottom: 1px solid rgba(255, 255, 255, .15);
	}
	
	.stellarnav.mobile > ul > li > a {
		border-bottom: unset;
		margin: 3px 0px;
	}
	.stellarnav > ul > li > a, .stellarnav li.has-sub > a {
		margin: 0px;
	}
	.stellarnav.mobile li.open {
		background: unset;
		padding: 0px;
	}
	.stellarnav.mobile li.open li.open {
		background: unset;
		padding: 0px;
	}
	
	.stellarnav li li a.dd-toggle .icon-plus:before, .stellarnav li li a.dd-toggle .icon-plus:after {
		content: '';
		display: block;
		width: 12px;
		height: 0px;
		top: 50%;
		border-bottom: solid 3px #FFFFFF;
		position: absolute;
	}

	.stellarnav > ul > li.drop-left > ul{ left: 0px; top: auto;}
	.stellarnav ul ul{ left: 0px; top: auto; }

}
@media screen and (max-width: 380px) {
	.me_tp_features a.tp_btn_cart, .me_tp_features a.tp_btn_notice {
        display: none;
    }
	
	.box_search {
		width: 75%;
	}
	
	.box_search input[type=text] {
		max-width: 100%;
	}
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/*footer*/
.footer {    padding: 50px 0 0;    background: #fff; border-top: 1px solid #e4e4e4;}
.footer .center {   max-width: 80%;}
.footer_info {
    grid-template-columns: 1fr 300px;
    padding: 0;
    justify-items: end;
}
.footer_logo {    order: 2; max-width: 250px;}
/* .footer_logo {
    background: url(https://pic03.eapple.com.tw/heyin/f-logo.png) no-repeat;
    background-size: contain;
} */

.footer_info ul {    display: flex;    flex-direction: column-reverse;}
.footer_info li:nth-child(2) {    padding-left: 0;}
.footer_info li p, .footer_info li p a { font-weight: 400; color: #444444; }

.footer_info li:nth-child(1){ display: flex; flex-direction: column; color: #444444;}

.footer_info li:nth-child(1):after{
    content: "沐睦空間設計";
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
    color: #2b2b2b;
}
.footer_info li p.tel{ order: 1;}
.footer_info li p.line{ order: 2;}
.footer_info li p.mail{ order: 3;}
.footer_info li p.add{ order: 4;}

.footer_info li p.line:before{content: 'LINE ID：'; }
.footer_info li p.mail:before{content: 'EMAIL：'; }


.footer_menu a {
    background: transparent;
    border: none;
    /* border-bottom: 1px #ccc solid; */
    margin: 0 9px;
    transition: all .3s;
    position: relative;
    font-weight: 400;
    color: #b2b2b2;
}
.footer_menu a:hover {
    background: transparent;
    color: #535353;
}

.copy {
    margin-top: 34px;
    font-size: 12px;
    padding: 14px 20px;
}

.box_link {
    flex-direction: row;
    max-width: 100%;
    position: relative;
    order: 2;
    justify-content: flex-start;
    display: none;
}
.box_link a {
    border: none;
    background: transparent;
    font-size: 15px;
}




@media (max-width:1024px) {

}


@media screen and (max-width: 768px) {

.footer_info {    grid-template-columns: 1fr;    justify-items: center;}
.footer_info ul {    order: 2;}
.footer_info li:nth-child(1) {
    padding: 20px 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.footer_info li:nth-child(2) {    text-align: center;}
.footer_logo{ max-width: 220px;}
.footer_info li:nth-child(1):after{ font-size: 17px;}
}


@media (max-width:750px) {

    .footer_info {    grid-template-columns: 1fr;    justify-items: center;}
    .footer_info li:nth-child(1) {
    order: 1;
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0;
    }
}




/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*●●●●●●●●●●●●●●●●●●●●●●●●   購物車(商品展示)   ●●●●●●●●●●●●●●●●●●●●●●●●*/
/*※※※※※【【  固定區塊不動↓↓↓  】】※※※※※*/
/*★★★切版師原版設定↓↓↓↓↓↓↓↓↓↓↓↓*/
/* 商品下拉超過30個變大 */
.stellarnav.desktop li.bigMenu>ul{display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); left: 0; width: 100%; position: fixed; padding: 20px;}
.stellarnav.desktop li.bigMenu ul ul{top: 100%; left: 0; width: 100%; background: #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;}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.product_page .main_part { max-width:1500px;}
/* .product_info_page .main_part { max-width:1200px;} */

.product_page .show_content,
.product_info_page .show_content { width: 100%; display: flex; justify-content: space-between; flex-wrap: wrap; align-items: flex-start; align-content: flex-start;}
.product_page .product_menu_list { position: relative; width: 220px; letter-spacing: 1px; /*border-right: 1px solid #ccc;*/min-height: 30vw;}
.product_page .products-list,
.product-wrapper { width: calc(100% - 270px);}
ul.page { width: 100%;}

.product-layer-two li ul { position:static; margin-top:5px; /*display:block !important;*/ width:100%; margin-left:0;}
.product-layer-two li:hover ul { border: none !important; /*display:block !important;*/}
.product-layer-two li li { display: block; padding:0; transition:all ease .3s;}
.product-layer-two li li a{ padding:5px 10px;}
.product-layer-two li li:hover > a { background:#fff; color:#ad925e;}
.product-layer-two > li { width:100%; max-width:100%; padding:0; text-align:left; border-bottom:1px dotted #ccc; padding-bottom: 5px;}
.product-layer-two > li ul > li + li { margin-top:5px;}

.product_info_page .product-layer-two { display: none;}
.product_info_page .products-list,
.product-wrapper { width: 100%;}

.product-layer-two li li:hover{ margin-left: 15px;}
.product-layer-two li li > a:before { content: ""; position: absolute; width: 12px; height: 8px; background: transparent; left: 0; margin-left: -20px; top: 50%; margin-top: -4px; clip-path: polygon(0 0, 100% 50% , 0 100%);}
.product-layer-two li li:hover > a:before { background:#ad925e;}

.product_info_page .half_box { width: 100%; float: none; padding-right: 0;}
.product_info_page .half_box li.btn_blankTop { margin-top: 50px; justify-content: space-between; display: flex;}
.product_info_page .half_box li.btn_blankTop input { width: calc(50% - 10px); background-image: none; padding: 0; text-align: center;}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 980px) {
}
@media screen and (max-width: 768px) {
.product_menu_list,
.products-list,
.product-wrapper { width: 100%;}
.product-layer-two { margin-right: 0; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); grid-gap: 5px;}
.product_page .product-layer-two,
.product_page .products-list { width: 100%; border-right: none;}
.product_page .product_menu_list>h5{display: block;}

.product_page .show_content > a { order: 1;}
.product_page ul.products-list { order: 2;}
.product_page ul.page { order: 3;}
.product_page .product_menu_list {width: 100%; order: 0; min-height: unset;}
}
@media screen and (max-width: 600px) {
}

/*★★★自訂義區塊↓↓↓↓↓↓↓↓↓↓↓↓*/
/*側邊*/
.product_page .product_menu_list {padding: 0 7px;}
.product-layer-two ul {grid-gap: 0;}
.product-layer-two li.active{background: #fff;transition: all .5s;}
.product-layer-two li.active li a {background: #eee;transition: all .5s;}
.product-layer-two li a {background: transparent;color: #222;font-size: 13px;font-weight: 500;letter-spacing: .6rem;
    text-align: center;padding: 15px 10px;border: 1px #888 solid;margin-top: -1px;font-weight: 400;}
.product-layer-two li a:hover{background: #666;color: #fff;}
.product-layer-two li.active a {font-weight: 500;border: none;color: #fff;background: #666;}
.product-layer-two li li a {padding: 10px;font-size: 12px;}
.product-layer-two > li {padding-bottom: 0;border-bottom: none;}
.product-layer-two > li > a {transition: all .5s;}
.product-layer-two > li.active > a {background: #555;}
.product-layer-two > li.active li.active > a{background: #fff;color: #ad925e;}
.product-layer-two > li ul > li + li {margin-top: 0;}
.product-layer-two li ul {margin-top: 0;}
.product-layer-two li li:hover {margin-left: 0;transition: all .5s;}
.product-layer-two li li:hover > a {background: transparent;}
.product-layer-two li li:hover > a:before{display: none;}
.product-layer-two li i {top: 6px;color: #ccc;}
/*分類頁*/
.products-list .price {margin: 0 0 10px;}
.products-list .price b {color: #bb1438;}
.products-list .more {font-size: 14px;font-weight: 500;border: 1px solid #ccc;color: #888;}
.products-list .item a:hover .more {background: #aaa;}
.products-list .name {height: 60px;text-align: center; line-height: 160%;}
/*商品頁*/
#prod_thumbSwiper .swiper-slide::before {background: #00000066;}
.sidebarBtn {border: none;background: transparent;}
.sidebarBtn h2 {color: #333;font-size: 20px;font-weight: 400;}
.inquiry_a1 {background: #888;border-radius: 0;}
.inquiry_a2 {background: #eee;border-radius: 0;color: #888;}
.inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover{background: #555;color: #fff;}
.prod_tabs {margin-top: 120px; margin-top: 0px;}
.pd_tabTitle li {border-bottom: none;background: transparent;border-bottom: 2px solid #ddd;transition: all .5s;}
.pd_tabTitle li a{color: #ddd;letter-spacing: .6rem;transition: all .5s;}
.pd_tabTitle li.activeTab{border-bottom: 2px solid #888;}
.pd_tabTitle li.activeTab a{color: #333;font-weight: 600;}
.pd_tabTitle li.activeTab::after {height: 0;}
.prod_related {background: transparent;padding: 50px 0 25px;border-top: 1px solid #333;margin-top: 100px;}
.related_list li a{padding: 0;}
.related_list li a p {font-size: 14px;width: 90%;line-height: 1.4;margin: 10px auto 20px;padding: 0;}
.prod_related h6 span:before {font-size: 18px;letter-spacing: .6rem;}
/*加入購物車-1*/
/*---流程區*/
.stepImg{margin: 40px auto 80px;width: 100%;}
.stepImg img{display: none;}
.stepImg span {border: 1px solid #4f4949;text-align: center;font-size: 12px;padding: 15px 20px;color: #4f4949;
 margin: 0 -1px 0 0;width: 33.3%;}
.stepImg span.one{text-align: center;margin-left: 0;}
.stepImg span.three{text-align: center;}   
.stepImg span.active {color: #fff;background: #4f4949;}
/*---詳細內容區*/
.shopping-cart .cart_head {background: #b6a292;}
.shopping-cart .cell.product_name {font-weight: 400;padding: 10px 20px;}
/*---金額TOTAL區*/
.total_amount {justify-content: flex-end;margin: 30px 0 80px auto;}
.total_amount ul {background: #fff;margin: 40px 0 60px;}
.total_amount ul:after{display: none;}
.rewrite_simple, .send_simple {font-size: 14px;}
.rewrite_simple {background: #4f4949;}
.send_simple {background: #b6a292;margin-left: 20px;}
/*加入購物車-2*/
.separate_title {padding: 10px 20px;background: #b6a292;color: #fff;font-weight: 400;}
.border200 {width: 300px;border: 1px solid #b6a292;padding: 10px 26px 10px 10px;color: #474141;border-radius: 6px;}
.formbox_form li .form__insert select{margin-bottom: 10px;}
.form label {color: #474141;margin-bottom: 0;}
.form label .inputbox {margin-right: 10px;}
.form label.circle .inputbox {background-image: none;border: 1px solid #474141;border-radius: 50%;}
.form label .inputbox.Big {width: 18px;height: 18px;}
.form label.Bigcheck{top: 0;}
.form label.Bigcheck .inputbox {background-image: none;border: 1px solid #474141;}
.form label.circle input:checked {background-position: center !important;}
.form label.Bigcheck input:checked {background: #474141;}
/*結帳完成*/
.note_edit{background: #fff;padding: 20px;color: #474141;}
.order_list_tit b {font-size: 24px;color: #474141;font-weight: 400;}
.order_list_spec p {font-weight: 400;padding: 10px 20px;background: #b6a292;}
.order_list_tab td {background: #f8f8f8;}
.order_list_tab td:nth-child(1) {background: #474141;color: #fff;width: 150px;font-weight: 400;}
.order_list_tab.payer td:nth-child(1) {border-right: 3px #b6a292 solid;}
.pay_text > a{font-size: 14px;}
.order_list_head p {font-size: 18px;color: #474141;border-bottom: 2px #474141 solid;}
.order_list_pro td:nth-child(1),.order_list_pro td:nth-child(4) {width: 70px;}
.order_list_pro tr:first-child {background: #b6a292;}
.order_list_pro tr:first-child td {color: #fff;font-weight: 400;}
/*---匯款資訊*/
.car_page .information_left {width: 100%;margin: 50px auto;}
.contact_le_map a {background: #888;}
.ACCN1:before, .ACCN2:before, .ACCN3:before, .ACCN4:before {margin-right: 20px;}
/*匯款通知*/
.formbox_form li.last {justify-content: flex-start;}


@media (max-width: 1024px){
	/*加入購物車-1*/
	/*---流程區*/
	.stepImg {margin: 40px auto;}
}
@media screen and (max-width: 768px) {
	/*清單頁*/
	.product_page .product_menu_list > h5 {font-size: 18px;font-weight: 500;letter-spacing: .4rem;margin-bottom: 0;}
	.fa-caret-down::before{font-size: 14px;}
	.product-layer-two li a{border-bottom: 1px solid #eee;padding: 10px 0 5px;width: 95%;}
	/*商品頁*/
	.mobile_product_name{display: none;}
	/*加入購物車-1*/
	/*---詳細內容區*/
	.shopping-cart .cart_content .row{border: 1px solid #b6a292;padding: 15px 10px;}
	.shopping-cart .cell {flex-direction: row;border-bottom: none;}
	.shopping-cart .cell:before {color: #b6a292;margin-right: 10px;font-weight: 400;}
	.shopping-cart .cell.product_name {padding: 0;}
	.shopping-cart .cell.product_name p {font-size: 18px;color: #4f4949;padding-right: 30px;}
	.small_pic {width: 65px;height: 65px;}
	.shopping-cart .cell.amount:last-child {position: absolute;right: 0;top: 0;border-bottom: none;
     width: 30px !important;height: 30px;background: #b6a292;}
    .shopping-cart .cell.amount:last-child:before{display: none;}
    .shopping-cart .cell.amount:last-child > a{margin: 0 auto;}
    .fa-lg {font-size: 14px;color: #fff;}
}
@media (max-width: 640px) {
	/*結帳完成*/
    .order_list_pro td span {font-size: 14px;color: #474141;}
}
@media screen and (max-width: 600px){
	/*商品頁*/
	.pd_tabTitle li a{font-size: 12px;}
	/*加入購物車-1*/
	/*---詳細內容區*/
	.shopping-cart .cell, .shopping-cart .cell.amount, .shopping-cart.check .cell.amount, .shopping-cart.check .cell{
		width: 100%;}
	.shopping-cart .cell {justify-content: space-between;border-bottom: 1px solid #eee;}
	.shopping-cart .cell.product_name {min-height: 60px;padding-bottom: 30px;}
	.shopping-cart .cell.product_name p {font-size: 14px;}
	/*---金額TOTAL區*/
	.total_amount {justify-content: space-around;}
	.rewrite_simple, .send_simple{margin: 0;}
	/*購物完成*/
	.pay_text{display: grid;grid-template-columns: 1fr 1fr;grid-gap: 30px;}
	.pay_text > a{width: 160px;text-align: center;}
	.orderFinish_data .pay_text>*+* {margin-top: 0;}
	.order_list_tab td {padding: 6px 12px;}
	/*匯款通知*/
	.formbox_form li.last {justify-content: space-around;}
}
@media (max-width: 570px) {
	/*結帳完成*/
	.order_list_tab td:nth-child(1) {width: 100px;}
}
@media (max-width: 568px){
	/*結帳完成*/
	.order_list_tab td{font-size: 14px;}
}


/*※※※※※【【  此案件更動處↓↓↓  】】※※※※※*/
/*大範圍*/
.product_page .main_part {max-width: 1600px;}
.product_page .show_content, .product_info_page .show_content {flex-direction: column;}
/*側邊選單*/
.product_page .product_menu_list {width: 100%;min-height: inherit;padding: 0;}
.product-layer-two{display: flex;background: rgb(237 237 237 / 35%);border-radius: 10px;justify-content: center;}
.product-layer-two li a{border: none;border: none;font-size: 14px;color: #535353;letter-spacing: .2rem;font-weight: 300;
padding: 20px 10px;}
.product-layer-two li a:hover{background: transparent;color: #B2B2B2;letter-spacing: .4rem; font-weight: 600;}
.product-layer-two li ul{display: none !important;}
.product-layer-two li i{display: none;}
.product-layer-two li.active {background: transparent;;}
.product-layer-two > li {width: 20%;padding: 0 1%;}
.product-layer-two > li.active > a {background: transparent;color: #B2B2B2;font-weight: 600;position: relative;letter-spacing: .4rem;}
.product-layer-two > li.active > a:before{content: "";width: 100%;height: 2px;background: #e3e3e3;position: absolute;
bottom: 0;left: 0;}
/*分類頁*/
.product_page .products-list{width: 100%;}
.products-list {grid-template-columns: 1fr 1fr 1fr 1fr;grid-gap: 0 20px;}
.products-list .item a img{transition: all .8s;transition-timing-function: ease-in-out;}
.products-list .more {display: none;}
.products-list .name {font-weight: 500;color: #555;font-size: 18px;position: absolute;height: auto;line-height: 1.2;
    left: 50%;top: 50%;transform: translate(-50%, -50%);color: #fff;margin-top: -10px;opacity: 0;transition: all .5s;}
.products-list .pic {aspect-ratio: 10 / 7;}
.products-list .item a:hover img{transform: scale(1.1);filter: brightness(0.4);-webkit-filter: brightness(0.4);}
.products-list .item a:hover .name{opacity: 1;}
/*商品頁*/
.product_info_page .main_part {max-width: 1000px;}
/*商品頁-大範圍*/
.product-wrapper{display: flex;flex-direction: column; align-items: center;}
/*商品頁-輪播區塊*/
.product_pic {display: flex;flex-direction: column-reverse;padding-left: 0;max-width: 1200px;margin: 0 auto;}
.product_main{order: 1;width: 100%;}
.product_pic .swiper-slide{max-height: 80vh;}
.product_pic .proImgSwiper{max-height: 80vh;aspect-ratio: auto;}
.swiper-button-next:after, .swiper-button-prev:after {background: #B2B2B2;width: 30px;height: 45px;display: block;
    padding: 0 10px;font-size: 14px;line-height: 45px;}
.proImgSwiper .swiper-button-next:after, .proImgSwiper .swiper-button-prev:after{text-shadow: none;}
/*商品頁-輪播區塊-縮圖*/
.swiper-vertical>.swiper-wrapper {height: 120px;flex-direction: row;justify-content: center;
max-width: 800px;margin: 0 auto;}
#prod_thumbSwiper .swiper-slide {width: 20%;margin: 1% .5%;height: 100% !important;}
#prod_thumbSwiper {position: relative;height: auto;width: 100%;max-width: 100%;}
#prod_thumbSwiper img {height: 120px;}
/*商品頁-商品說明*/
.prod_tabs{order: 2;}
.pd_tabTitle li.activeTab {border-bottom: 2px solid #eee;}
.pd_tabTitle li, .pd_tabTitle{ display: none;}
.pd_tabTitle li.activeTab a {font-weight: 400;}
.pd_tabInner.edit{font-weight: 400;font-family: "Noto Sans TC",  sans-serif;color: #8F8E8E;}
/*商品頁-側邊說明*/
.sidebarBtn {padding: 0;width: 100%;text-align: center;order: 1;background: rgb(240 239 236 / 30%);background: transparent;
    padding: 40px 20px 20px;margin-top: 50px;border-radius: 10px;}
.sidebarBtn form { display: none;}
.sidebarBtn h2 {color: #000;font-size: 24px;font-weight: bold;border-bottom: 1px solid #eee;padding-bottom: 20px;}
.product_info li span{display: none;}
.product_info li .txt_box {font-size: 14px;color: #555;font-weight: 300;}
.toShare{display: none;}
/*商品頁-推薦*/
.prod_related h6 span:before {color: #555;font-weight: 400;}
.related_list {width: 94%;}
.related_list li a img{ transition: 0.5s;}
.related_list li a p {margin: 15px auto 20px;font-weight: 300;}
.related_list li a:hover img{ opacity: 0.85;}
.lastPage{font-size: 12px;background: #888;}
/*首頁*/
.prod_part {padding: 100px 0;}
.i_prod_tit{display: flex;flex-direction: column;}
.i_prod_tit h2{font-size: 15px;color: #35383C;letter-spacing: 0;font-family: "Montserrat", sans-serif;font-weight: 400;}
.i_prod_tit span{color: #000;font-weight: bold;font-size: 24px;}
.prod_part section {max-width: 1400px;width: 90%;}
.pageIndex .products-list {grid-template-columns: repeat(4, 1fr);grid-gap: 0 20px;}
.pageIndex .products-list .item:nth-child(n+9){display: none;}
.pageIndex .productsListBox, .productsListBox.swiper{ padding: 50px 0 10px;}
.animated-arrow{ background: #8F8E8E;width: 150px; font-weight: 400; transition: 0.5s;}
.animated-arrow:hover{ background: #535353; }


@media (max-width: 1200px){
	/*分類頁*/
	.products-list .name {font-size: 16px;}	
}
@media (max-width: 1024px){
	/*分類頁*/
	.products-list {grid-template-columns: 1fr 1fr;}
	/*首頁*/
	.i_prod_tit h2 {font-size: 50px;}
	.i_prod_tit span {font-size: 18px;}
	.pageIndex .products-list {grid-template-columns: repeat(2, 1fr);}

}
@media (max-width: 768px){
	/*側邊選單*/
	.product_page .product_menu_list > h5 {margin-bottom: 15px;font-family: "Cactus Classical Serif", serif;}
	.product-layer-two {flex-wrap: wrap;}
	.product-layer-two li a {padding: 12px;font-size: 12px;width: 100%;border-bottom: 1px solid #eee;}
	.product-layer-two > li {width: 100%;}
	.product-layer-two > li:last-child a{border-bottom: none;}
		/*商品頁*/
	.related_list {grid-template-columns: 1fr 1fr;}
	/*商品頁-輪播區塊-縮圖*/
	#prod_thumbSwiper .swiper-slide {aspect-ratio: 3 / 2;}
	#prod_thumbSwiper img {height: 100%;}
	/*首頁*/
	.prod_part {padding: 70px 0;}
	.i_prod_tit h2 {font-size: 40px;}
}
@media (max-width: 600px){
	/*分類頁*/
	.products-list .item a img {filter: brightness(0.8);-webkit-filter: brightness(0.8);}
	.products-list .item a .name {opacity: 1;}
	/*商品頁*/
	.proImgSwiper img {max-height: 80vw;}

}
@media screen and (max-width: 480px) {
	/*首頁*/
	.i_prod_tit h2 {font-size: 30px;}
	.pageIndex .products-list {grid-template-columns: repeat(1, 1fr);}
	/*分類頁*/
	.products-list {grid-template-columns: 1fr;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#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;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*Banner/＝＝＝＝＝*/
.banner {    width: 100%;    height: 36vh;    background: #444444;    position: relative;    overflow: hidden; }
.banner:before {
    content: '';
    animation: bgScroll 30s linear infinite;
    width: 110%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-image: url(https://pic03.eapple.com.tw/mumuspacedesign/ban.jpg);
    background-repeat: no-repeat;
    background-position: center;
}
.product_page  .banner:before ,.product_info_page .banner:before, .car_page .banner:before{     background-image: url(https://pic03.eapple.com.tw/mumuspacedesign/banF.jpg);}
.blog_page .banner:before, .blog_in_page  .banner:before { background-image: url(https://pic03.eapple.com.tw/mumuspacedesign/banblog.jpg);}
.contact_page .banner:before {     background-image: url(https://pic03.eapple.com.tw/mumuspacedesign/banC.jpg);}

@keyframes bgScroll {
    0% {        -webkit-transform: translateX(0);        transform: translateX(0);    }
    50% {        -webkit-transform: translateX(-5%);        transform: translateX(-5%);    }
    100% {        -webkit-transform: translateX(0);        transform: translateX(0);    }
}

.banner h5 {
	display: none;
}

@media screen and (max-width:1024px) {
    .banner{ height: 28vh;}
}
@media screen and (max-width:768px) {
    .banner{ height: 23vh;}
}
@media screen and (max-width:450px) {
    .banner{ height: 10vh;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/*●●●●●●●●●●●●●●●●●●●●●●●●   文章分類管理   ●●●●●●●●●●●●●●●●●●●●●●●●*/
/*※※※※※【【  固定區塊不動↓↓↓  】】※※※※※*/
/*側邊*/
.blog_le{padding: 0 7px;}
h5.blog_le_t{text-align: center;margin-bottom: 0;}
h5.blog_le_t em,h5.blog_le_t span{display: none;}
.blog_search input[type=search]{border-radius: 0;}
.blog_le .accordion {border-radius: 0;}
.blog_le .accordion li{transition: all .8s;}
.accordion li .link a {font-size: 13px;font-weight: 500;letter-spacing: .6rem;text-align: center;}
.submenu a {padding: 12px 12px 12px 30px;background: #fff;font-size: 12px;}
/*分類頁*/
.blog_ri {padding: 0 0 0 50px;}
.blog_page h4.blog_category_title{display: none;}
.blog_subbox {grid-template-columns: 1fr;}
.subbox_item a {grid-template-columns: 200px 1fr;align-items: center;grid-gap: 50px;padding-right: 50px;}
.subbox_item a:before {font-size: 12px;padding: 5px 20px;background: #c1a383;color: #fff;
	bottom: auto;right: auto;left: 50%;top: 50%;transform: translate(-50%,-50%);}
.subbox_item a:after {background: rgba(256,256,256,.5);border: none;}
.blog_list_ri h5 {color: #000000;font-weight: bold; font-size: 16px;}
.blog_list_ri em {font-size: 12px; color: #CCCCCC;}
.blog_list_ri p {font-weight: 400;line-height: 160%;font-size: 14px;margin-top: 14px; color: #8F8E8E;}
/*文章頁*/
h4.blog_category_title {padding: 0;font-size: 20px;margin-bottom: 0;font-weight: 400;}
.blog_shareData{border-bottom: 1px solid #eee;padding-bottom: 10px;}
.toShareNews b{font-size: 12px;font-weight: 400;}
.toShareNews a object{max-width: 20px;}
.articel_mainPic{display: none;}/*清單縮圖*/
.blog_back {grid-gap: 0;}
.blog_back a.article_btn_prev,.blog_back a.article_btn_next {
	background: transparent;color: #535353;border: 1px solid #535353;font-size: 14px;padding: 12px;}
.blog_back a.article_btn_back{background: #B2B2B2;padding: 12px;}
.news_related{padding: 50px 0 25px;border-top: 1px solid #333;margin-top: 100px;}
.news_related h6 span:before {font-size: 18px;letter-spacing: .6rem;font-weight: 500;color: #555;}
.news_related_list {background: transparent;}
.news_related_list li a{padding: 0;}
.news_related_list li a p {font-size: 14px;width: 90%;line-height: 1.4;margin: 10px auto 20px;padding: 0; font-weight: 300;}
.news_related_list li a img{ transition: 0.5s;}
.news_related_list li a{ transition: 0.5s;}
.news_related_list li a:hover img{  opacity: 0.85;}
.lastPage {background: #B2B2B2;font-size: 16px;}


@media screen and (max-width: 1024px){
	/*分類頁*/
	.subbox_item a {grid-template-columns: 120px 1fr;align-items: start; grid-gap: 30px;padding: 15px 0;}
}
@media screen and (max-width: 768px){
	/*側邊*/
	.blog_le{padding: 0; width: 100%!important;}
	/*分類頁*/
	.blog_list_ri{padding: 0;}
	.blog_list_ri h5 {font-size: 16px;}
	/*文章頁*/
	.blog_le, .blog_ri{margin-bottom: 50px;}
	.blog_back a.article_btn_prev,.blog_back a.article_btn_next,.blog_back a.article_btn_back{font-size: 12px;}
	.lastPage{font-size: 12px;}
}
@media screen and (max-width: 450px){
	/*分類頁*/
	.subbox_item a {grid-template-columns: 80px 1fr;grid-gap: 15px;}
}
/*※※※※※【【  此案件更動處↓↓↓  】】※※※※※*/
/*左側選單*/
.blog_le {padding: 0;width: 250px;}
.accordion li .link a {letter-spacing: .2rem; background: #B2B2B2; color: #fff; transition: 0.5s;}
.accordion li .link a:hover{ background:#535353; }
.blog_le .accordion > li:hover,.blog_le .accordion > li.on_this_category { background:#535353!important;}
.blog_le .accordion > li:hover .link a, .blog_le .accordion > li.on_this_category .link a  { background:#535353!important;}
.blog_le a.news_menu_toggle{ top: -10px;}
/*右側*/
.blog_ri {width: calc(100% - 260px);}
/*分類頁*/
.blog_subbox {grid-template-columns: 1fr 1fr 1fr;grid-gap: 50px 30px;}
.subbox_item a {grid-template-columns: 1fr;grid-gap: 10px;padding-right: 0;}
.subbox_item a:before,.subbox_item a:after{display: none;}
.blog_list_le{overflow: hidden;aspect-ratio: 1 / 1;}
.blog_list_le img{transition: all .5s; }
.subbox_item a:hover .blog_list_le img{opacity: 0.85;}
/*文章頁*/
h4.blog_category_title{font-size: 24px; color: #000; font-weight: bold;}
.blog_box_edit *{font-weight: 400;font-family: "Noto Sans TC"; color: #8F8E8E;}
.news_related{background: transparent;}
.news_related_list {max-width: 1400px;grid-gap: 30px;grid-template-columns: repeat(4,1fr); padding: 0px 40px;}
.news_related_list li a p {font-size: 16px;margin: 15px auto 20px;}

@media screen and (max-width:1024px) {
    .blog_subbox{grid-template-columns: 1fr 1fr; }
}
@media screen and (max-width:960px) {
     .subbox_item{ border-bottom: 0px;}
}
@media screen and (max-width:768px) {
    .blog_ri {padding: 0 0 0 0px;}
    .blog_ri {width: 100%;}
    .news_related_list {grid-gap: 18px;grid-template-columns: repeat(2,1fr);}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本分類全版面 ( 限制最寬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; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/* 聯絡我們 */
.contact_page .main_part {
    max-width: 1500px;
}
form {
    display: flex;
    flex-direction: column-reverse;
}
.blank_letter {
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
    color: #343434;
}

/* 左側-聯絡資訊 */
.contact_content{ 
	padding: 20px 10px 60px;
}
.contact_content .information_left {
   display: none;
}

/* 右側-表單 */
.red {
    color: #B2B2B2;
}
.contact_content .information_right {
    width: 100%;
}
.contact_form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px 50px;
    margin-top: 50px;
}
.contact_form li {
    padding: 0 0 25px 90px;
	align-items: flex-start;
}
.contact_form li .form__label {
    text-align: left;
    letter-spacing: 1px;
    width: 90px;
    margin-left: -95px;
}
.contact_form li input.noborder,
.contact_form li textarea.noborder {
    border: 1px #e9e9e9 solid;
    background: #fcfcfc;
    padding: 10px;
}
.contact_form li.last {
    position: absolute;
    right: 0;
    bottom: -70px;
    width: 100%;
}

/*表單勾選欄位間距*/
.contact_page input[type="checkbox"], input[type="radio"] {margin-left: 15px; margin-right: 5px;}
.contact_page input[type="checkbox"]:nth-child(1), input[type="radio"]:nth-child(1) {margin-left: 0px;}


/* 送出按鈕 */
.contact_form li.last blockquote {
    border: 0;
	color: #535353;
}
input[type="reset"] {
    text-decoration: none;
}
.contact_form li.last cite {
    border: 1px #B2B2B2 solid;
    background: #B2B2B2;
}
.contact_form li.last input {
    padding: 7px 30px;
}

/* hover */
.contact_form li.last blockquote:hover input, 
.contact_form li.last cite:hover input {
    letter-spacing: 2px;
}
.contact_form li.last cite:hover i.fa-solid.fa-arrow-right {
    margin: 0;
}
.contact_form li.last cite:hover {
    background: transparent;
}
.contact_form li.last cite:hover input[type="submit"] {
    color: #535353;
}
.contact_form li.last cite:hover .fa-arrow-right::before {
    color: #535353;
}

@media screen and (max-width: 1024px) {
    .contact_form {
        grid-template-columns: 1fr;
    }
}


@media screen and (max-width: 768px) {
	.noborder {
        border-radius: 0;
    }
}

@media screen and (max-width: 600px) {
    .contact_page .main_part {
        padding: 20px 10px 70px;
    }
    .contact_content {
        padding: 0 0 15px;
    }
	.contact_form li .form__label{ background: transparent;}
	.contact_form li{ padding: 0 0 25px 0px;}
	.contact_form li .form__label{ margin-left: 0px;}
}



.car_page .information_left {
    display: block;
}
body.car_page .footer_info li p:before{
    position: initial;
    display: inline;
}
.contact_le_map a{background: #2a93d8; }




@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu {}
.footer.with_shopping_mode { padding:30px 0 55px; }
#to_top { bottom:60px;}
}

@media screen and (max-width: 600px) { 
}




