@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/


/*引入字體*/
/*@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&display=swap')*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=ZCOOL+XiaoWei&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lilita+One&display=swap');





/* = = = 按鈕列 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/*上方選單解除滑動固定*/
/*.header_area.sticky { position:relative;}*/


/*上方選單右邊設定 臉書/LINE/電話/信箱
.tp_links a:before {寬高大小設定}
.tp_links a.me_tp_fb {}
.tp_links a.me_tp_fb:before {背景換圖/建議.SVG}
.tp_links a.me_tp_line {}
.tp_links a.me_tp_line:before {背景換圖/建議.SVG}
.tp_links a.me_tp_call {}
.tp_links a.me_tp_call:before {背景換圖/建議.SVG}
.tp_links a.me_tp_mail {}
.tp_links a.me_tp_mail:before {背景換圖/建議.SVG}
*/

::-webkit-scrollbar {    width: 3px;}
::-webkit-scrollbar-track {    box-shadow: inset 0 0 8px #07aef0;}
::-webkit-scrollbar-thumb {    background-color: #90ffe2;border-radius: 4px;}

/*
#content_main {
    width: 100%;
    min-height: 100vh;
    position: relative;

    background: linear-gradient(
        270deg,
        #edfaff,
        #92bfcf,
        #6dbbdd,
        #ffffff,
        #f2fcfe
    );

    background-size: 400% 400%;
    animation: gradientFlow 12s ease infinite;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
*/

#content_main {
    width: 100%;
    min-height: 100vh;
    position: relative;
    overflow: hidden;

   
    background: linear-gradient(
        270deg,
        #f7fdff,
        #92bfcf,
        #8fc6dd,
        #ebebeb,
        #d7fffd
    );
    background-size: 400% 400%;
    animation: gradientFlow 12s ease infinite;
}



/* 動畫 */
@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes dotsMove {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 200px 200px;
    }
}


/*top*/
#to_top {
    left: 20px;
    background: #3c868bb5;
    box-shadow: unset;
    color: #ffffff;
    bottom: 30px;
    width: 50px;
    height: 50px;
    border: 1px solid #ffffff;
    font-size: 11px;
    padding-top: 5px;
    box-shadow: 0 0 12px rgb(114 229 255 / 87%),
                0 0 24px rgb(183 183 183 / 40%);
    animation: topmoveTop 1.5s ease-in-out infinite alternate;
}

#to_top i:before, #to_top i:after {    background: #ffffff;}
#to_top i.top:before, #to_top i.top:after {    height: 10px;    top: 6px;}
 @keyframes topmoveTop {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(20px);
  }
}


.edit_part {
    padding: 0;
}


.main_header_area{
	background: rgb(255 255 255 / 55%);
	background: linear-gradient(180deg, rgb(255 255 255 / 93%) 0%, rgb(255 255 255) 50%, rgb(228 228 228) 100%);
	padding: 0px 20px;
	backdrop-filter: blur(10px);
}

.pageIndex .main_header_area{

	transition:.3s;
}

.header_area.sticky .main_header_area{
	background: rgb(255 255 255);
}

.header_area,.header_area.sticky {
	padding: 0px;
}

.main_header_area .container {
    max-width: 1600px;
}
/*選單最大寬度設定*//*
.main_header_area .container {    max-width: 95%;}
*/
.navigation {
	grid-template-columns: 250px 1fr;
}

.nav-header {
    max-width: 100%;
    padding: 10px;
}

.sticky .nav-brand {
    max-width: 200px;
    margin-bottom: 5px;
    transition:1s;
   
}




/*第一層*/

.stellarnav > ul > li > a {
    padding: 0;
    color: #343a40;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    font-size: 19px;
    line-height: 40px;
    height: 40px;
    margin: 0 5px;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
}

.sticky  .stellarnav ul {
    margin: 0;
    padding: 0;
    text-align: right;
    margin-top: -10px;
}


.stellarnav > ul > li > a{
	transition:all 0.3s;
}
.stellarnav > ul > li > a{
	margin: 30px 1vw 20px;
	padding:0px;
	font-weight: 600;
	color: #095f85;
}

.stellarnav > ul > li.has-sub > a {
    padding-right: 0px;
}
.stellarnav > ul > li:hover > a{color: #99c7c7 !important;text-shadow: unset !important;}
.sticky .stellarnav > ul > li:hover > a{color: #7fb4c9 !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 #7fb4c9 #7fb4c9 transparent !important;
}

.stellarnav > ul > li:nth-of-type(2) li:nth-child(1){display:none;}


@media screen and (min-width:769px) {
	.stellarnav > ul > li > a, .stellarnav li.has-sub > a{
		position:relative;
	}
	
	.stellarnav > ul > li > a::before{
		position:absolute;
		content:"";
		width:0%;
		height:1px;
		background: #8fc0ff;
		bottom:0px;
		left:50%;
		transform:translate(-50%,0px);
		transition:.5s;
	}
	
	.stellarnav > ul > li:hover > a::before{
		width:100%;
	}
	
	.stellarnav > ul > li:hover > a b {
		transform: translateY(-40px);
		-webkit-transform: translateY(-40px);
		-moz-transform: translateY(-40px);
	}
}


/*第二層*/
.stellarnav ul ul {
    background: transparent;
}
.stellarnav > ul > li.drop-left > ul {
    right: unset;
    left: 0px;
}
.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 / 20%);
	background: #80b5ca;
}
.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: #126589;
	}
}



/*第三層*/
@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 {
	background: transparent;
}

.stellarnav li ul ul li > a{
	background: #7fb4c9;
    border-bottom: 1px solid rgb(255 255 255 / 20%);
}

.stellarnav li ul ul li:hover > a{
	background: #7fb4c9;
}



/* 商品下拉超過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;}


/*SubMenu*/
.shop_search_btn {    background: #42aed1; transition:.3s;height: 28px;margin-top: 0px;}
.shop_search_btn:hover {    background: #3686bf;}
.me_tp_features a.tp_btn_cart, .me_tp_features a.tp_btn_notice {
    transition:.3s;
	/*color: #FFF;*/
}
.me_tp_features a.tp_btn_cart:hover, .me_tp_features a.tp_btn_notice:hover {
    color: #D6C5B2 !important;
}
.tp_links a{transition:all 0.3s;}
.tp_links a:hover {    color: #ADA17E;}

/*隱藏選單按鈕連結*/
.me_tp_features {
	display: none;
}
.tp_links{display: none;}


/*隱藏購物車搜尋欄*/
/*.box_search{display:none;}*/

/*隱藏購物車*/
/*.me_tp_features a.tp_btn_cart {display: none;}*/

/*隱藏匯款通知*/
/*.me_tp_features a.tp_btn_notice{display: none;}*/


.linksBtn {
    display: none;
}



@media screen and (min-width: 1025px) {
	
	/*按鈕列未填滿，往下滾動後填滿*/
	.header_area {
		position: fixed;
        width: calc(100% - 80px);
		max-width: 1700px;
        left: 50%;
        transform: translate(-50%, 0px);
        top: 25px;
        background: unset;
		transition:.5s;
	}
	
	.header_area.sticky {
		background: unset;
		width: 100%;
		max-width: 100%;
		top: 0px;
		height: 80px;
	}
	
	.header_area .main_header_area{
		border-radius: 0px;
		transition:.5s;
	}
	
	.header_area.sticky .main_header_area{
		border-radius: 0px;
		height: 80px;
		box-shadow: 0 4px 10px rgb(255 255 255);
	}
	
}
.main_header_area::before {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0;
    height: 3px;

    background: linear-gradient(
        270deg,
        #ffffff,
        #02a4ff,
        #89ffe8,
        #ffffff
    );

    background-size: 200% 100%; 
    animation: flow 1.5s linear infinite alternate; 

    border-radius: 10px;
    
    z-index: -1;
}

@keyframes flow {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/*按鈕列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: 5px 1.5vw;
	}
	.stellarnav li.has-sub > a:after {
		/*top: 25px;*/
		right: calc(1.5vw - 13px);
	}
	/*Logo/＝＝＝＝＝*/
	.header_area .nav-brand{max-width: 182px;margin-top: 25px;margin-bottom: 10px;transition:.5s;}
	.header_area.sticky .nav-brand{max-width: 182px;}
	
	
}

@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: 135px;
        margin: 15px 0px 15px 10px;
	}
	.header_area.sticky .nav-brand{
		max-width: 135px;
	}
	.main_header_area {
		padding: 0px 0px;
	}

	.main_header_area{
	backdrop-filter: none;
}
	.stellarnav.mobile {
		position: absolute;
		left: 0;
		top: 0;
		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;
	}
	
	
	.me_tp_features {
		padding: 5px 1vw 0px;
		background: #edf2dd;
		margin: 0px;
	}
	
	.me_tp_features a.tp_btn_cart, .me_tp_features a.tp_btn_notice {
		color: #FFF;
	}

}



.bannerindex .swiper-wrapper {
    position: relative;
    overflow: hidden;
}
.bannerindex .swiper-slide::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
   background: linear-gradient(
    90deg,
    rgb(93 180 255 / 97%) 0%,
    rgb(66 252 255 / 77%) 50%,
    rgb(49 242 255 / 47%) 100%
);
    transform: scaleX(0);
    transform-origin: right;

    z-index: 5;
    pointer-events: none;
	animation: blockRight 1.8s cubic-bezier(0.81, 0.15, 0.26, 0.99);
}

@keyframes blockRight {
  0% {
    transform: scaleX(0);
    transform-origin: center right;
  }
  45% {
    transform: scaleX(1);
    transform-origin: center right;
  }
  55% {
    transform: scaleX(1);
    transform-origin: center left;
  }
  100% {
    transform: scaleX(0);
    transform-origin: center left;
  }
}

.pageIndex .swiper-slide.swiper-slide-active:nth-child(1):before {
	content: "";                 
    position: absolute;          
	background: url(https://pic03.eapple.com.tw/mingyu01/text01.png);
	background-size: contain;
	background-repeat: no-repeat;
	top: 55%;
	left: 55%;
	width: 100% !important;
	height: 100% !important;
	background-position: left;
	transform: translate(-50%, -50%);
	padding-bottom: calc(100% / 1 * 0.12);
	 z-index: 9999;
	animation: banner-bg 2s forwards cubic-bezier(0.73, 0.08, 0.11, 0.99);
	 filter: drop-shadow(0 0 10px rgb(69 234 255))
            drop-shadow(0 0 20px rgba(255, 255, 255, 0.4));
}


.pageIndex .swiper-slide.swiper-slide-active:nth-child(1):after {
	content: "";                 
    position: absolute;         
	background: url(https://pic03.eapple.com.tw/mingyu01/text02.png);
	background-size: contain;
	background-repeat: no-repeat;
	top: 55%;
	left: 55%;
	width: 100% !important;
	height: 100% !important;
	background-position: left;
	transform: translate(-50%, -50%);
	padding-bottom: calc(100% / 1 * 0.12);
	z-index: 9999;
	opacity: 0; 
	animation: banner-bg 2s cubic-bezier(0.73, 0.08, 0.11, 0.99) 1s forwards;
	filter: drop-shadow(0 0 10px rgb(62 212 255))
            drop-shadow(0 0 20px rgba(255, 255, 255, 0.4));
}

.pageIndex .swiper-slide.swiper-slide-active:nth-child(2):before {
	content: "";                 
    position: absolute;          
	background: url(https://pic03.eapple.com.tw/mingyu01/text01.png);
	background-size: contain;
	background-repeat: no-repeat;
	top: 55%;
	left: 55%;
	width: 100% !important;
	height: 100% !important;
	background-position: left;
	transform: translate(-50%, -50%);
	padding-bottom: calc(100% / 1 * 0.12);
	 z-index: 9999;
	animation: banner-bg 2s forwards cubic-bezier(0.73, 0.08, 0.11, 0.99);
	 filter: drop-shadow(0 0 10px rgb(26 38 44))
            drop-shadow(0 0 20px rgba(255, 255, 255, 0.4));
}


.pageIndex .swiper-slide.swiper-slide-active:nth-child(2):after {
	content: "";                 
    position: absolute;         
	background: url(https://pic03.eapple.com.tw/mingyu01/text02.png);
	background-size: contain;
	background-repeat: no-repeat;
	top: 55%;
	left: 55%;
	width: 100% !important;
	height: 100% !important;
	background-position: left;
	transform: translate(-50%, -50%);
	padding-bottom: calc(100% / 1 * 0.12);
	z-index: 9999;
	opacity: 0; 
	animation: banner-bg 2s cubic-bezier(0.73, 0.08, 0.11, 0.99) 1s forwards;
	filter: drop-shadow(0 0 10px rgb(0 0 0 / 100%))
            drop-shadow(0 0 20px rgba(255, 255, 255, 0.4));
}


@keyframes banner-bg {
    0% {
        transform: translate(-50%, -45%);
        opacity: 0;
    }

    100% {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}



/*article*/

.path p, .path p a { display: none;}

.blog_list_le,
.i_blog_le,
.news_related_list li figure{
    overflow: hidden;
    
}

.blog_list_le img,
.i_blog_le img,
.news_related_list li a img {
    transform: scale(1);
    filter: saturate(1);
    -webkit-filter: saturate(1);
    /* border-radius: 10px; */
}

.subbox_item:hover img,
.module_i_news li:hover img,
.news_related_list li:hover img{
    transform: scale(1.2);
    filter: saturate(1.5);
    transition:1s;
	border-radius: 10px;
}



.blog_list_ri h5
{
    color: #949d9f;
    transition: 0.5s;
}

.subbox_item:hover h5,
.module_i_news li:hover h5,
.news_related_list li:hover p{
    color: #7fb4c8;
}

 

.blog_box_edit * {
    line-height: 150%;
    color: #ffffff;
    font-weight: 300;
}



.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: 4px;
    background-color: #ffffff;
    border: solid 1px  #a8c3cc; !important;
}

.blog_search input[type=submit] {
 
    border-left: 1px solid   #1e6f8a33; !important;
    height: 100%;
    background: url(../images/search-icon.png) no-repeat 9px center;
}


.blog_le .accordion {
    border-radius: 0px;
    border: 0px #ffffff solid;
	background: #e1edf1;
}


.accordion li+li .link {
    border-top: 0px solid #ccc;
}

.accordion li .link a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .4rem;
    text-align: center;
    color:#6e6e6e;
}

.accordion li .link a:hover {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .4rem;
    text-align: center;
    background:#7db1c5;
}


.submenu li.on_this_category a, 
.submenu a:hover {
    color: #7fb4c9;
    background: #7fb4c9; !important;

}

.blog_back {
	text-align: center;
	display: flex;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 10px;
	width: 500px;
	margin: 50px auto;
	max-width: 100%;
}
.blog_back a {
	color: #3f3f3f;
}
.blog_back a.article_btn_prev, .blog_back a.article_btn_next {
	background: #ccd6d3;
}
.blog_back a.article_btn_back {
	background: #80b5ca;
}
h4.blog_category_title {
	color: #1e1e1e;
	font-size: 25px;
	border-left: 5px #d3ba9100 solid;
	background: #fff8e800;
	padding-left: 30px;
	letter-spacing: 2px;
	font-weight: 500;
}
.blog_page h4.blog_category_title {
	display: none;
}

@media screen and (max-width: 768px) {
    .blog_le {
        padding: 0;
    }
   
    .blog_page .fa-caret-down::before,
    .blog_in_page .fa-caret-down::before {
        display: none;
    }
}


.blog_page h4.blog_category_title {
    display: none;
}


.blog_subbox {
    grid-template-columns: 1fr;
    gap:0px;
}

.subbox_item{
    padding: 20px 0;
    background-color: #ffffff00;
}

.subbox_item a {
    grid-template-columns: 250px 1fr;
    align-items: center;
    gap: 40px;
}



.article_a .subbox_item:before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0px;
    height: 2px;
    background: #89adbb29;
    background-color: #80b3cb;
    transition: 0.3s;
}

.subbox_item:hover:before {
    width: 100%;
    transition: all .5s;
}

.subbox_item:after {
    content: '';
    width: 0;
    position: absolute;
    left: 0;
    top: 50px;
    bottom: 0;
    z-index: -3;
    background: #c7d5d3b3;
    opacity: 0;
    border: 0px solid #997833;
  }
 .subbox_item:hover:after {
    opacity: 0.5;
    width: 100%;
    transition:0.4s;
  }


.subbox_item a:before { content:'READ MORE'; position: absolute; z-index:19; bottom:10px; right:20px; opacity:01; font-size:15px; color:#999; transition: all .6s;}
.subbox_item a:hover:before {  color:#1794c0; opacity:1; }
  
  




.subbox_item a::after {
    display:  none;
}



.blog_list_ri em,
.i_blog_ri em {
    font-size: 12px;
    color: #8b8b8b;
}


.blog_list_ri p,
.i_blog_ri p {
    font-weight: 400;
    letter-spacing: .2rem;
    line-height: 180%;
    font-size: 12px;
    margin-top: 20px;
    color: #000000;
}



@media screen and (max-width: 960px) {
.subbox_item {
    border-bottom: 1px var(--f3-color) solid;
}

.subbox_item a{
    grid-template-columns: 200px 1fr;
    gap: 20px;
}

.subbox_item a::before{
    padding: 0;
    bottom: 0;
}
}

@media screen and (max-width: 768px) {
    .subbox_item a {
        grid-template-columns: 150px 1fr;
        align-items: start;
        display: flex;
        flex-direction: column;
    }

    .blog_list_ri {
        padding: 10px;
    }

    .blog_list_ri h5 {
        font-size: 16px;
    }
	 }


/*banner*/

/*內頁BANNER 設定*/

.banner {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 2000 / 500;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 0px;
    min-height: auto;
    overflow: hidden;
}

.banner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    max-width: 100%;
    height: 100%;
    z-index: 0;
    transform: translateX(-50%);
    /* background: #00000042; */
  }



.banner h5 {
    position: relative;
    color: #fff;
    font-size: 30px;
    letter-spacing: 2px;
    font-weight: 500;
    text-shadow: 4px 4px 10px #00000075;
    animation: puff-in-center 1s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
    animation-delay: .3s;
    display: flex;
    justify-content: center;
    flex-direction: column;
    top: 50px;
}

@keyframes puff-in-center {
  0% {
    opacity: 0;
    transform: translateX(40px) scale(1.1);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.banner h5:after {
    font-size: 17px;
    color: #fff;
    font-weight: 400;
    letter-spacing: 2px;
    padding-top: 10px;
    border-top: 1px solid #d5fffb;
    width: auto;
    display: flex;
    justify-content: center;
    margin: 15px auto 0;
}

.banF h5:after {
    content: 'PRODUCT';
    
}

.banC h5:after {
    content: 'CONTACT';
}


.banB h5:after {
    content: 'PRODUCT';
}

.banblog h5:after {
    content: 'News';
  
}
.banF {
    background-image: url(https://pic03.eapple.com.tw/mingyu01/banner02.jpg);
}

.banblog {
    background-image: url(https://pic03.eapple.com.tw/mingyu01/banner01.jpg);
}

.banC {
    background-image: url(https://pic03.eapple.com.tw/mingyu01/banner04.jpg);
}
.banB {
    background-image: url(https://pic03.eapple.com.tw/yushengegg/.png);
    background-color: transparent;
}
.services_page .banner h5:before{
	content:'PRODUCT'
}
@media screen and (max-width: 1200px) {
.banner {aspect-ratio: 2000 / 900;}
.banner h5 {   font-size: 15px; top: 0px;}
}
@media screen and (max-width: 600px) {

}


.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-layer-two li a {
	padding: 10px 16px;
	color: #444;
	background: #d9f9ff00;
	position: relative;
	border: none;
	transition: all .4s;
	font-size: 15px;
}

/* 底線 */
.product-layer-two li a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1.5px;
	background: linear-gradient(
		90deg,
		#7fb4c9,
		#cad3c300
	);

	transform: scaleX(0);
	transform-origin: left;
	transition: transform .4s ease;
}

/* hover效果 */
.product-layer-two li a:hover {
	background: #7fb4c900;
	color: #4b9aa5;
}

.product-layer-two li a:hover::after {
	transform: scaleX(1);
}
.product-layer-two li:hover i {
	color: #fff;
}
.product-layer-two li.active i {
	color: #fff;
	transition: none;
}
.product-layer-two li.active a {
	border: none;
	font-weight: 400;
	background: #d3ba91;
	color: #fff;
	transition: none;
}
.product-layer-two li i {
	top: 4px;
	color: #444;
	transition: 0.3s;
}
.product-layer-two li.active li a {
	font-weight: 400;
	letter-spacing: 2px;
	color: #444;
	background: transparent;
	transition: none;
}
.product-layer-two li li a {
	padding: 5px 10px;
	color: #444;
	transition: all 0.4s;
}
.product-layer-two li li.active {
	padding-left: 40px;
	transition: none;
}
.product-layer-two li li.active>a:before {
	background: #414141;
	transition: none;
}
.product-layer-two>li {
	width: 100%;
	max-width: 100%;
	padding: 0;
	text-align: left;
	padding-bottom: 5px;
	border-bottom: 0px dotted #cccccc00;
}
/*商品外觀*/

.products-list .price b {
	color: #444;
	letter-spacing: 1px;
	font-weight: 400;
}
.products-list .name {
	font-size: 16px;
	color: #444;
	letter-spacing: 1px;
	font-weight: 400;
	border-bottom: 0pt solid #cad3c3;
	height: 60px;
}

.products-list .name {
	position: relative;
	display: inline-block;
}

.products-list .name {
	position: relative;
	display: inline-block;
}

.products-list .name::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;

	/* 漸層 */
	background: linear-gradient(
		90deg,
		#cad3c300,
		#7fb4c9,
		#cad3c300
	);

	/* 關鍵：讓漸層可以滑動 */
	background-size: 200% 100%;
	background-position: 0% 0;

	transition: background-position 0.5s ease;
}


.products-list .item a:hover .name::after {
	background-position: 100% 0;
}

.products-list .more {
	display: none;
}
.products-list .item a {
	padding-bottom: 0px;
	position: relative;
}


.products-list a:hover .pic img, .related_list li:hover figure img {
    transform: scale(1.05);
	transition: .5s;
}

.products-list .pic img,
.related_list li figure img {
	transition: transform 0.5s ease; 
}
.products-list .pic {
	position: relative;
	overflow: hidden;
}

.products-list .pic:before {
	content: "READ MORE";
	letter-spacing: 2px;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
	padding: 6px 12px;
	background: #7cd7f5;
	color: #444;
	font-size: 13px;
	width: 100%; 
	width:50%;
	transform-origin: left;
	transition: width 0.6s ease;
}

/* hover：展開覆蓋滿 */
.products-list a:hover .pic:before {
	width:100%;
	text-align: center;
}





/*商品內頁側邊單*/

.inquiry_a1, .inquiry_a2, .inquiry_a3 {
	color: #444
}
.sidebarBtn {
	border: none;
}
.product_info li .txt_box {
	color: #FFF8E8;
}
.sidebarBtn .price span {
	color: #0a0a0a;
	font-weight: 500;
	border-radius: 0px;
	text-align: justify;
	font-size: 20px;
}
.sidebarBtn h2 {
	color: #4e90aa;
	letter-spacing: 1px;
	font-size: 20px;
	font-weight: 500;
}
.sidebarBtn .price {
	color: #444;
	font-size: 18px;
	font-weight: 400;
	border-bottom: 1px solid #8a8a8a;
	padding: 10px 0px 20px;
}
.radio-inline__label {
	border-radius: 0px;
}
.radio-inline__input:checked+.radio-inline__label {
	background: #d3ba91;
	color: #fff;
	border-radius: 100px;
}
.inquiry_a1 {
  background: #b1d4d6;
}
.inquiry_a2{
    background: #ccd6d3;
}
.inquiry_a3 {
	background: #ccd6d3;
}
.inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover {
    letter-spacing: 2px;
    background: #4e90aa;
	color: #fff;
}

a.pdinfo_tel{background-color: #7fb4c9;}
a.pdinfo_link:hover { letter-spacing:2px; background:#4b8ca5;}
.edit {
	letter-spacing: 0.04em;
	color: #494949;
}
.pd_tabTitle li.activeTab::after {
	height: 2px;
	background: #b5c9cd;
}
.pd_tabTitle li.activeTab a {
	border-bottom: 1px solid #d3ba91;
}
.pd_tabTitle li {
	border: none;
}

.news_related {
    background: #f3f3f3;
    padding: 25px 15px;
	display:none;
}

/*商品推薦*/

.prod_related {
	background: #ffffff;
	padding: 25px 15px;
}
.related_list li a {
	background: #fff;
	height: 100%;
	padding: 11px;
	border-radius: 10px;
	transition: all 0.5s;
}
.related_list li a:hover {
	transform: translate(0%, 0%) scale(1.1);
	transition: all 0.5s;
	box-shadow: 1px 1px 25px rgb(0 0 0 / 22%);
}
.prod_related h6 span:before {
	content: 'RECOMMEND';
	font-size: 21px;
	color: #636363;
	font-weight: 400;
	letter-spacing: 3px;
}
.related_list li a p {
	padding-top: 10px;
}
.lastPage {
	color: #3c3c3c;
	background: #ccd6d3;
	border-radius: 50px;
	padding: 10px 20px;
	margin: 55px auto 40px;
	text-align: center;
	transition: all 0.3s;
}
.lastPage:hover {
	background: #d3ba91;
	transition: all 0.3s;
	color: #FFF
}
@media screen and (max-width: 768px) {
	.mobile_product_name {
		display: none;
	}
}
@media screen and (max-width: 600px) {
	.pageIndex .products-list {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	}
}



/*＝＝＝聯絡資訊＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*聯絡資訊*/
.contact_page .main_part { max-width: 1350px;}
.contact_content { background: #fff;}
.contact_content .information_left { width: 34%;}
button, input, optgroup, select, textarea {outline: none; padding-left: 15px !important;background: #ededed;}
input[type="checkbox"], input[type="radio"] {margin: 8px;}


.list_before.info li {   padding: 10px 0 15px 90px;     border-bottom: 1px #f5f5f5 solid;}
.innersend {padding-left: 0 !important;text-align: center;}
.TEL:before, .TEL2:before, .PHONE:before, .FAX:before, .TAXID:before, .MAIL:before, .ADD:before, .ADD2:before { 
    width: 44px;    margin-left: 25px;    font-size: 15px;    height: 25px;    border-right: 1px solid #ededed;    letter-spacing: 0.05em;    color: #545454;    font-weight: 500;}
.TEL::after, .TEL2::after, .PHONE::after, .FAX::after, .TAXID::after, .MAIL::after, .ADD::after, .ADD2::after { 
     position: absolute; content: "●";  color: #bca274; font-size: 5px;  width: 30px;  height: 17px;  left: 0;  top: 50%; transform: translateY(-50%);}


/*表格樣式*/
.contact_content .information_right { width: calc(65% - 0px);  padding-left: 30px;}
.contact_form { display: flex;  flex-wrap: wrap;  justify-content: space-between;    align-items: flex-end;}
.contact_form li { width: 48%;  display: inline-block;  padding: 10px 10px;  border-bottom: none;}
.contact_form li:nth-child(3) { width: 100%;}
.contact_form li .form__label {text-align: left;margin-left: 0;width: 100%;}
.contact_form li.last{width: 100%;}
.noborder {padding: 10px 0;margin-top: 10px;border: 2px solid #ccc;}
.form select {background-color: #fff;border: 2px solid #ccc;padding: 8px 26px 8px 3px;margin-top: 10px;width: 100%;margin-top: 10px;}
.contact_form li.last cite {background: #80b5ca;}
.contact_form li.last blockquote, .contact_form li.last cite { width: 49%; border: 1px #f5f5f5 solid;}
.contact_form li input.noborder { border: 0px #ddd solid; background: #f5f5f5;}
.contact_form li textarea.noborder  { border: 0px #ddd solid; background: #f5f5f5;}
.noborder {padding: 10px 10px;  border-radius: 4px;}

@media screen and (max-width: 768px) {
.list_before.info {width: 100%;max-width: inherit;}
.contact_content .information_left { width: 100%;}
.contact_content .information_right { width: 100%;  padding: 0;}
}
@media screen and (max-width: 600px) { 
.contact_form li {width: 100%; padding: 10px 0;}
.contact_content > .style1 {display: flex; flex-wrap: wrap-reverse;}/*聯絡資訊-手機版(上下顛倒)*/
.contact_content .information_right { width: calc(100% - 0px);}
.contact_content .information_left {  width: 100%;}
.contact_form li .form__insert {  width: 95%;}
.contact_form li .form__label {   width: 25%;}
}
@media screen and (max-width: 480px) { 
.contact_form li .form__insert {  width: 100%;}
.contact_form li .form__label {  width: 100%; text-align: left;}
.information_left, .information_right { padding: 0px;}
.contact_page .main_part {padding: 50px 20px;}
h4.blank_letter.i::after {font-size: 25px; letter-spacing:0px;}
.blank_letter { padding: 30px 0 0 10px;}
.contact_content { padding: 50px 10px;}
	
}

.red {
    color: #84cfed;
}






/*footer*/
.footer {
    padding: 80px 0 0;
    background: var(--TitleColor);
    background-image: linear-gradient(0deg, #ffffff57 40%, #d6f7ff8a 65%), url(https://pic03.eapple.com.tw/mingyu01/footer.jpg);
    /* background-attachment: fixed; */
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: aliceblue;
}
.box_link{display: none;}
.footer_info ul {
    justify-content: space-between;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 0 20px;
}
.footer_info li p:nth-child(1), .footer_menu {    padding-top: 10px;}
.footer_info li:nth-child(1):before, .footer_info li:nth-child(2):before {
    display: block;
    font-size: 20px;
    color: #095f85;
    padding-bottom: 10px;
    border-bottom: 2px solid #0199f529;
    padding-left: 7px;
    font-weight: 500;
}
.footer_info li p, .footer_info li p a {
    color: #5f5f5f;
    padding-left: 7px;
    line-height: 220%;
    transition: all .5s;
}
.footer_info li p:hover, .footer_info li p a:hover { color: #20b6ff;}
.footer_info li:nth-child(1):before {    content: "CONTACT";}
.footer_info li:nth-child(2):before {    content: "RELATED LINK";}

.footer_menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: space-around;
    justify-items: start;
}
.footer_menu a {
    background: transparent;
    border: none;
    color: #616161;
    line-height: 220%;
    margin: 0;
    padding: 0 5px;
    position: relative;
}
.footer_menu a:hover {
    background: transparent;
    color: #20b6ff;;
}
.footer_menu a:after {
    content: "";
    position: absolute;
    bottom: 0;
    border-bottom: 1px solid var(--logocolor);
    width: 0;
    transition: all 1s;
    left: 0;
}
.footer_menu a:hover:after {    width: 100%;}

.copy {
    padding: 10px;
    backdrop-filter: blur(20px);
    border-top: 1px #ffffff57 solid;
    margin-top: 25px;
}
.copy, .copy a {
    color: #494949;
    opacity: .5;
}




