@charset "UTF-8";
/* 以上是 聲明 css編碼 */

/* 以下是 圖示文字 的 CSS */
@import url('/webeip/HT00100/peggy/fonticons/css/style.css');
@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@100;600&display=swap');
/* 以下是 animate 的 CSS */
@import url('/webeip/HT00100/becky/css/animate.css');
/* 以下是 reset 的 CSS */
@import url('/webeip/HT00100/becky/css/reset.css');

body{
	background: url(/webeip/HT00178/img/body_bg.jpg) no-repeat center top;
    background-size: 100% 100%;
    background-attachment: fixed;
}
/* 表頭 top */
	header{
		width: 100%;
		transition: all .3s;
		box-shadow: 0 0 4px rgb(0 0 0 / 28%);
		background-color: #fff;
	}
	.topUp{
		width: 100%;
		border-bottom: 1px solid #c0c0c0;
		box-sizing: border-box;
	}
	.toplogo{
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
		padding: 10px 0;
		margin: 0 auto;
		width: 220px;
		transition: all .3s;
		text-align: center;
		color: #000;
		font-size: 3rem;
	}
	.toplogo > span:first-child{
		display: inline-block;
		font-weight: bold;
		font-family: 'Be Vietnam Pro', sans-serif;
	}
	.toplogo > span:nth-child(2){
		display: inline-block;
		font-weight: lighter;
		font-family: 'Be Vietnam Pro', sans-serif;
	}
	/*.toplogo > img{
		vertical-align: top;
		width: 100%;
		transition: all .3s;
		image-rendering: -moz-crisp-edges;
	    image-rendering: -o-crisp-edges;
	    image-rendering: -webkit-optimize-contrast;
	    image-rendering: optimize-contrast;
	    -ms-interpolation-mode: nearest-neighbor;
	}*/
/* 溫馨提醒 */
	.topMark{
		width: 100%;
		padding: 5px;
		box-sizing: border-box;
		font-size: 0.9rem;
		background-color: #000;
		color: #fff;
		text-align: center;
	}
/* 社群小圖示 */
	.toplink{
		width: 100%;
		background-color: #222222;
	}
	.toplink ul{
		display: flex;
		justify-content: flex-end;
		align-items: center;
	}
	.toplink ul li a{
		display: block;
		padding: 5px;
		box-sizing: border-box;
		font-size: 1.15rem;
		margin: 5px;
		border-radius: 10px;
		transition: all .3s;
		transform: scale(1);
		color: #ffffff;
	}
	.toplink ul li:hover a{
		transform: scale(1.25);
	}
	.toplink ul li .toplink_totop{
		position: fixed;
		z-index: 99;
		bottom: 0;
		right: 0;
		padding: 0.5rem;
		font-size: 1.25rem;
		margin: 0.75rem 0.5rem;
		border-radius: 10px;
		cursor: pointer;
		background-color: #494848;
		color: rgba(255,255,255,0.85);
		transition: all .5s;
		display: none;
	}
	.toplink ul li .toplink_totop:hover{ background-color: #6B6B6B; }
/* 購物車 */
	.topshopping{
		position: fixed;
		z-index: 9999;
		right: 15px;
		top: 88px;
		transition: all .3s;
	}
	.topshopping_main{
		background-color: rgba(255, 255, 255, 0.6);
		border-radius: 40px;
		padding: 5px 10px;
		box-sizing: border-box;
		box-shadow: 2px 2px 5px rgb(43 43 43 / 12%);
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.topshopping_main > a{
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		position: absolute;
		top: -10px;
		right: -10px;
	}
	.topshopping_main > a > i{
		color: #444;
		font-size: 1.25rem;
		display: inline-block;
	}
	.topshopping_main > a > span{
		color: #be5555;
		margin: 0 5px;
	}
	.shopcart_btn{
		cursor: pointer;
		z-index: 10000;
		width: 20px;
		height: 20px;
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center center;
	}
	.shopcart_open{ background-image: url(/webeip/HT00178/img/smart_cartbtn_gr.svg); }

	.shopcart_close{
		position: absolute;
		background-image: url(/webeip/HT00178/img/arrow_btn_gr.svg);
		top: -50px;
		right: 120px;
		width: 40px;
		height: 40px;
	}

/* 購物車清單 */
	.shopcart_menu_list{
		background-color: #fbfbfb;
		position: fixed;
		z-index: 9999;
		top: 0;
		right: -200px;
		width: 200px;
		padding-top: 100px;
		box-sizing: border-box;
		height: 100vh;
	}
	.shopcart_menu_list ul{
		display: block;
		max-height: 390px;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
	}
	.shopcart_menu_list ul li{
		border-bottom: 1px silver dashed;
		padding: 10px;
		box-sizing: border-box;
		position: relative;
	}
	.shopcart_menu_list ul .empty{
		border: 0;
	}
	.shopcart_menu_list_title{
		display: block;
		color: #F37B1D;
	}
	.shopcart_menu_list_price{ color: #A9A9A9; }
	.shopcart_menu_list_icon{
		display: inline-block;
		background-image: url(/webobj/Shopping/images/trash.svg);
		width: 15px;
		height: 15px;
		position: absolute;
		right: 0;
		bottom: 12px;
		cursor: pointer;
	}
	.shopcart_menu_list_icon:hover{ bottom: 14px; }
	.shopcart_menu_list_totalFee{
		color: #C30D07;
		font-size: 1.25rem;
		text-align: right;
		display: block;
		padding: 10px 0 0;
		box-sizing: border-box;
	}
	.shopcart_menu_list_unit{
		display: inline-block;
		font-size: 12px;
		margin-left: 2px;
		color: #F37B1D;
	}
	.shopcart_menu_list_total{
		text-align: center;
		margin: 5px 0;
	}
	.shopcart_menu_list_botton{
		position: absolute;
		bottom: 0;
		width: 100%;
		left: 0;
		text-align: center;
		padding: 10px;
		box-sizing: border-box;
		background-color: #222222;
		color: #fff;
		font-size: 1.25rem;
	}
	.shopcart_menu_list_botton > span{
		z-index: 2;
		display: block;
		position: relative;
	}
	.shopcart_menu_list_botton:before{
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 0%;
		height: 100%;
		z-index: 1;
		opacity: 0;
		background-color: #FFCC00;
		transition: all 0.3s;
	}
	.shopcart_menu_list_botton:hover::before{
		opacity: 1;
		width: 100%;
	}
	.topUTF8 .topwrap{
		background: rgba(236, 236, 236, .5);
	}
@media (min-width: 980px)
{
	.topwrap{
		width: 100%;
		margin: 0 auto;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.topnav ul{
		display: flex;
		align-items: center;
		justify-content: center;		
	}
	.topnav ul li{ position: relative; }

	.topnav ul li a{
		display: block;
		text-align: center;
		color: #3b3b3b;
		padding: 0.5rem 1.5rem;
		box-sizing: border-box;
		font-size: 1.15rem;
		position: relative;
		transition: all .3s;
	}
	.topnav > ul > li > a:before{
		position: absolute;
		content: '';
		width: 0;
		height: 5px;
		background-color: #3b3b3b;
    	top: 90%;
		transition: all .3s;
		left: 0;
	}
	.topnav ul li:hover > a{ background-color: rgba(0,0,0,0.2); }
	.topnav ul li:hover > a:before{
		width: 50%;
	}

	.topnav ul li .subnav_mark{
		position: absolute;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 8px 5px 0 5px;
		border-color: #3b3b3b transparent transparent transparent;
		right: 5px;
		top: 50%;
		transform: translate(0, -50%);
	}
	.topnav ul li > .subnav{
		position: absolute;
		z-index: 999;
		top: 100%;
		left: 50%;
    	transform: translate(-50%, 0);
		background-color: #EEE;
		width: 120%;
		text-align: center;
		display: none;
	}
	.topnav ul li > .subnav li{
		display: block;
	}
	.topnav ul li > .subnav li a{ color: #333; }

	.topnav ul li > .subnav li:hover > a{ background-color: rgba(0,0,0,0.1); }

	.topnav ul li:hover > .subnav{ display: block; }

	.topnav ul li > .subnav li > .thirdnav{
		position: absolute;
		top: 0;
		left: 100%;
		background-color: #DDD;
		min-width: 125%;
		display: none;
	}
	.topnav ul li > .subnav li > .thirdnav li{ display: block; }

	.topnav ul li > .subnav li > .thirdnav li a{ white-space: nowrap; }

	.topnav ul li > .subnav li:hover > .thirdnav{ display: block; }

	/* 下滑時header_2 */
	.header_2 .toplogo{ max-width: 200px; }
	.header_2 .topnav ul li a{ font-size: 1.05rem;}
	.header_2 .topshopping{ top: 10px; }
}
@media (max-width: 979px)
{
	.topnav_btn{
		cursor: pointer;
		position: absolute;
		top: 0;
		right: -40px;
		z-index: 10000;
		width: 30px;
		height: 35px;
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center center;
	}

	.topnav_btn .line_btn{
		position: absolute;
		display: inline-block;
		width: 100%;
		height: 5px;
		transition: all .3s;
		background-color: #000;
	}
	.topnav_btn .line_btn_top{
		top: 5px;
	}
	.topnav_btn .line_btn_center{
		top: 15px;
	}
	.topnav_btn .line_btn_bottom{
		top: 25px;
	}
	.topnav_close .line_btn_top{
		transform: rotate(25deg);
		top: 20px;
	}
	.topnav_close .line_btn_center{
		display: none;
	}
	.topnav_close .line_btn_bottom{
		transform: rotate( -25deg);
		top: 20px;
		background-color: #ffffff;
	}

	.topnav{
		background-color: rgba(0,0,0,0.5);
		position: fixed;
		z-index: 9999;
		top: 0;
		left: -70%;
		width: 70%;
		padding-top: 100px;
		box-sizing: border-box;
		height: 100%;
	}
	.topnav ul{
		width: 90%;
		max-width: 500px;
		margin: 0.25rem auto;
		height: 95%;
		overflow: auto;
	}
	.topnav ul li a{
		display: block;
		width: 100%;
		text-align: center;
		color: #FFF;
		border-bottom: 1px solid rgba(255,255,255,0.3);
		font-size: 1.25rem;
		font-weight: bold;
		padding: 1rem;
		box-sizing: border-box;
	}
	.topnav ul li:last-child > a{ border-bottom: none; }

	.topnav ul li .subnav{
		width: 90%;
		background-color: rgba(0,0,0,0.2);
	}
	.topnav ul li .subnav li .thirdnav{
		width: 95%;
		background-color: rgba(0,0,0,0.5);
	}
	.topnav ul li .subnav li .thirdnav li > a{ color: #FFF; }

	.toplink ul{
		position: fixed;
		z-index: 999;
		bottom: 4rem;
		right: 0;
		display: block;
	}
	.toplink ul li a{
		padding: 0.5rem;
		font-size: 1.25rem;
		margin: 0.75rem 0.5rem;
		border-radius: 10px;
	}
	.toplink ul li .toplink_fb{
		background-color: #3B559F;
	}
	.toplink ul li .toplink_line{
		background-color: #4ECD00;
	}
	.toplink ul li .toplink_phone{
		background-color: #4CDA64;
	}
	.toplink ul li .toplink_ig{
		background: #E3297D;
		background: -webkit-linear-gradient( -120deg, #7D36AE 0%, #D82F81 30%, #F80A00 70%, #F7D903 100% );
		background: -o-linear-gradient( -120deg, #7D36AE 0%, #D82F81 30%, #F80A00 70%, #F7D903 100% );
		background: linear-gradient( -120deg, #7D36AE 0%, #D82F81 30%, #F80A00 70%, #F7D903 100% );
	}
	.toplogo{
		width: 150px;
		font-size: 1.75rem;
	}
	.header_2 .topUp{
		position: fixed;
		z-index: 999;
		top: 0;
		left: 0;
		background-color: #fff;
	}

	.header_2 .topnav ul li a{ color: #fff; font-size: 1.25rem;}

}
/* 表尾 under */
	footer{ 
		width: 100%; 
		position: relative;
		background-color: #ffffff;
		border-top: 1px solid #c0c0c0;
		box-sizing: border-box;

	}
	.under_main{
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
		color: #3b3b3b;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
    	justify-content: space-between;
		padding: 20px 0;
		box-sizing: border-box;
		position: relative;
		transition: all .5s;
		overflow: hidden;
	}
	.underlogo{
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		position: relative;
		padding: 10px 0;
		margin: 0 auto;
		width: 220px;
		transition: all .3s;
		text-align: center;
		color: #000;
		font-size: 2rem;
	}
	.underlogo > span:first-child{
		display: inline-block;
		font-weight: bold;
		font-family: 'Be Vietnam Pro', sans-serif;
	}
	.underlogo > span:nth-child(2){
		display: inline-block;
		font-weight: lighter;
		font-family: 'Be Vietnam Pro', sans-serif;
	}
	.underlogo > span:nth-child(3){
		display: block;
		font-size: 1rem;
		letter-spacing: 5px;
		padding-left: 5px;
		box-sizing: border-box;
	}
	/*.underlogo > img{
		vertical-align: top;
		width: 100%;
		transition: all .3s;
		image-rendering: -moz-crisp-edges;
		image-rendering: -o-crisp-edges;
		image-rendering: -webkit-optimize-contrast;
		image-rendering: optimize-contrast;
		-ms-interpolation-mode: nearest-neighbor;
	}*/
	.underwrap{
		position: relative;
		z-index: 1;
		margin: 10px;
	}
	.underwrap > h3{
		margin: 0.25rem;
		font-size: 1.5rem;
	}
	.underwrap_p{
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: flex-start;
	}
	.underwrap_p > span{ margin: 0.25rem;}
	.underwrap_p > a > img{
		vertical-align: top;
		width: 120px;
	}

	.fectechs{
		width: 100%;
		font-size: 0.7rem;
		color: #536f81;
		text-align: right;
		position: absolute;
		z-index: 1;
		bottom: 5px;
		padding: 0 10px;
    	box-sizing: border-box;
	}
@media all and (max-width: 980px){
	.under_main .underwrap:first-child{
		width: 100%;
	}
}
@media all and (max-width: 680px){
	.under_main .underwrap{
		width: 100%;
	}
	.underwrap_p{ justify-content: center; }
}