@charset "UTF-8";
/* 以上是 聲明 css編碼 */

/* 以下是 圖示文字 的 CSS */
@import url('/webeip/HT00100/peggy/fonticons/css/style.css');
@import url('https://fonts.googleapis.com/icon?family=Playball&display=swap');
/* 以下是 animate 的 CSS */
@import url('/webeip/HT00100/becky/css/animate.css');
/* 以下是 reset 的 CSS */
@import url('/webeip/HT00100/becky/css/reset.css');

/* 表頭 top */
	header{
		width: 100%;
		position: fixed;
		top: 0;
		z-index: 1000;
		transition: all .3s;
		box-shadow: 0 0 5px rgb(0 0 0 / 20%);
		background-color: #fff;
	}
	.topwrap_main{
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.toplogo{
		display: inline-flex;
		justify-content: center;
		align-items: center;
		position: relative;
		margin: 5px;
		transition: all .5s;
	}
	.toplogo > img{
		vertical-align: top;
		width: 55px;
		transition: all .5s;
		border-radius: 10px;
	}
	.toplogo > span{
		margin-left: 10px;
		display: block;
		font-size: 1.5rem;
		color: #000;
		letter-spacing: 2.5px;
		padding-left: 2.5px;
		box-sizing: border-box;
		font-weight: normal;
	}


/* 社群小圖示 */
	.toplink ul{
		position: fixed;
		z-index: 999;
		bottom: 4rem;
		right: 0;
	}
	.toplink ul li a{
		display: block;
		padding: 0.75rem;
		box-sizing: border-box;
		font-size: 1.75rem;
		margin: 0.75rem 0.5rem;
		border-radius: 50%;
		transition: all .3s;
		transform: scale(1);
		color: #fff;
	}
	.toplink ul li .toplink_fb{
		background-color: #3B559F;
	}
	.toplink ul li .toplink_line{
		background-color: #4ECD00;
	}
	.toplink ul li .toplink_mail{
		background-color: #f44336;
	}
	.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%);
	}
	.toplink ul li .toplink_phone{
		background-color: #ff9800;
	}
	.toplink ul li:hover a{
		transform: scale(1.25);
	}
	.toplink ul li .toplink_totop{
		position: fixed;
		z-index: 99;
		bottom: 0;
		right: 0;
		cursor: pointer;
		background-color: #494848;
		color: rgba(255,255,255,0.85);
		transition: all .5s;
		display: none;
		border: none;
	}
	.toplink ul li .toplink_totop:hover{ background-color: #6B6B6B; }

	
@media (min-width: 1030px)
{
	header{ top: -100px; }
	.topwrap{
		display: flex;
		align-items: center;
		justify-content: center;
		transition: all .5s;
	}
	.topnav ul{
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;		
	}
	.topnav > ul{
		padding-right: 30px;
		box-sizing: border-box;
	}
	.topnav ul li{ position: relative; }

	.topnav ul li a{
		display: block;
		text-align: center;
		padding: 0.5rem;
		box-sizing: border-box;
		font-size: 1.1rem;
		position: relative;
		cursor: pointer;
		color: #000;
	}
	.topnav > ul > li > a .toptxt_en{
		display: block;
		font-size: 1rem;
		font-weight: normal;
		font-family: 'Playball', cursive;
		color: #888;
	}
	.topnav > ul > li > a:before{
		position: absolute;
		content: '';
		width: 0;
		height: 5px;
		background-color: #444;
    	top: 90%;
		transition: all .3s;
		left: 0;
	}
	.topnav > ul > li > a:after{
		position: absolute;
		content: '';
		clip-path: polygon(0 0, 100% 100%, 0 100%);
		width: 20px;
		height: 0;
		background-color: #444;
		top: 82%;
		transition: all .3s;
		left: 50%;
	}
	.topnav ul li:hover > a:before{
		width: 50%;
	}
	.topnav ul li:hover > a:after{
		height: 10px;
	}
	

	.topnav ul li > .subnav{
		position: absolute;
		z-index: 999;
		top: 100%;
		left: 50%;
    	transform: translate(-50%, 0);
		background-color: rgb(238 238 238 / 80%);
		width: 150%;
		text-align: center;
		display: none;
		box-shadow: 0 0 5px rgb(0 0 0 / 20%);
	}
	.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; }

	.toplink ul{
		right: 10px;
		bottom: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		display: none;
	}

	.topUTF8{ top: 0; }

	
	.header_2{ top: 0; }
	.header_2 .toplink ul{ display: block; bottom: 4rem; right: 0;}

}
@media (max-width: 1029px)
{

	header{
		position: fixed;
		z-index: 9999;
		top: 0;
		left: 0;
		box-shadow: none;
	}
	.topnav_btn{
		cursor: pointer;
		position: absolute;
		top: 20px;
		left: -40px;
		z-index: 10000;
		width: 30px;
		height: 25px;
		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: #a9a9a9;
		left: 0;
	}
	.topnav_btn .line_btn_top1{
		top: 0;
	}
	.topnav_btn .line_btn_top2{
		top: 10px;	
	}
	.topnav_btn .line_btn_bottom1{
		top: 20px;
	}

	.topnav_close .line_btn{
		transform: rotate(45deg);
		background-color: #fff;
	}

	.topnav{
		position: fixed;
		z-index: 9999;
		top: 0;
		right: -100%;
		width: 100%;
		padding-top: 100px;
		box-sizing: border-box;
		height: 100%;
	}
	.topnav:before{
		content: '';
		background: rgb(255 152 0 / 80%);
		width: 100%;
		height: 100%;
		position: absolute;
		z-index: -1;
		top: 0;
		right: 0;
		border-radius: 0 0 0 50%;
	}
	.topnav ul{
		width: 90%;
		max-width: 500px;
		margin: 0.25rem auto;
		height: 95%;
		overflow: auto;
	}
	.topnav ul li a{
		display: block;
		width: 100%;
		max-width: 200px;
		text-align: center;
		color: #FFF;
		margin: 0 auto 20px;
		font-size: 1.25rem;
		font-weight: bold;
		padding: 10px;
		box-sizing: border-box;
		background-color: rgba(0,0,0,.5);
		border-radius: 10px;
	}
	.topnav > ul > li > a .toptxt_en{
		display: block;
		font-size: 1rem;
		font-weight: normal;
		font-family: 'Playball', cursive;
		color: #c6c6c6;
	}
	.topnav ul li:last-child > a{ border-bottom: none; }

	.topnav ul li .subnav{
		width: 90%;
		background-color: rgba(0,0,0,0.4);
		border-radius: 10px;
		margin: 0.25rem auto 20px;
	}
	.topnav ul li .subnav li a{
		max-width: 90%;
		background-color: transparent;
		border-bottom: 1px solid rgb(255 255 255 / 50%);
		border-radius: 0;
	}
	.topnav ul li .subnav li .thirdnav{
		width: 95%;
		background-color: rgba(0,0,0,0.5);
	}
	.topnav_logo{ display: none; }
	.topnav ul li .subnav li .thirdnav li > a{ color: #FFF; }

	.topUTF8_body .toplogo{
		background: linear-gradient(135deg, rgb(15, 240, 179) 0%, rgb(3, 110, 217) 100%);
		background: -webkit-linear-gradient(135deg, rgb(15, 240, 179) 0%, rgb(3, 110, 217) 100%);
		background: -o-linear-gradient(135deg, rgb(15, 240, 179) 0%, rgb(3, 110, 217) 100%);
		border-radius: 10px 0px 10px 0;
		margin: 5px;
	}

	
}
@media all and (max-width: 425px){

	.toplink ul li a{
		padding: 0.65rem;
		font-size: 1.5rem;
	}

	.toplogo > .toplogo_down{
		left: 20px;
		transform: translate(0, 0);
	}

}
/* 表尾 under */
	footer{
		width: 100%;
		position: relative;
		padding-top: 20px;
	}
	footer:after{
		position: absolute;
		content: '';
		width: 100%;
		height: 100%;
		clip-path: polygon(0 0, 70% 0, 80% 100%, 0% 100%);
		background-color: #f7f7f7;
		top: 0;
		z-index: -1;
		left: 0;
	}
	footer:before{
		position: absolute;
		content: '';
		width: 100%;
		height: 100%;
		clip-path: polygon(85% 0, 100% 0, 100% 100%, 50% 100%);
		background-color: #ececec;
		top: 0;
		z-index: -1;
		right: 0;
	}
	.under_main{
		width: 100%;
		max-width: 1200px;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-around;
		align-items: center;
		margin: 0 auto;
		box-sizing: border-box;
		position: relative;
		transition: all .5s;
		padding: 0 5px;
	}
	.underlogo_box{
		margin-bottom: 10px;
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		align-items: flex-end;
	}
	.underlogo_box div > span{
		display: inline-block;
		margin-right: 10px;
		font-size: 0.9rem;
		background-color: #dcdcdc;
		border-radius: 5px;
		padding: 0 5px;
		box-sizing: border-box;
		color: #444;
	}
	.underlogo{
		display: block;
		position: relative;
		margin-right: 10px;
		transition: all .3s;
	}
	.underlogo > img{
		vertical-align: top;
		width: 50px;
		transition: all .3s;
	}
	.underlogo > span{
		display: block;
		font-size: 1.75rem;
		color: #000;
		letter-spacing: 2.5px;
		padding-left: 2.5px;
		box-sizing: border-box;
	}
	.underlogin{
		max-width: 160px;
		margin: 10px auto;
		display: block;
		background-color: #fff;
		border-radius: 5px;
		letter-spacing: 5px;
		padding: 5px 0 5px 5px;
		box-sizing: border-box;
		color: #ffffff;
		text-align: center;
		background-color: #F44336;
		cursor: pointer;
		transition: all .5s;
	}
	.underlogin:hover{
		background-color: #03a9f4;
	}
	.under_box{
		
	}
	.underwrap{
		
	}
	.underwrap > span{
		margin-right: 5px;
		display: inline-block;
		line-height: 25px;
	}
	.underwrap_mark{
		font-weight: bold;
		color: #2379bd;
	}
	.under_mainR{ max-width: 400px; }
	.under_ul{
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
	}
	.under_ul > li{
		width: 45%;
		margin: 5px 2.5%;
	}
	.under_ul > li a{
		display: block;
		padding: 5px;
		box-sizing: border-box;
		color: #000;
		border-bottom: 2px dashed #f39700;
		text-align: center;
		transition: all .3s;
	}
	.under_ul > li a:hover{
		letter-spacing: 5px;
		padding-left: 10px;
	}
	.fectechs{
		width: 100%;
		font-size: 0.7rem;
		text-align: right;
		padding: 5px;
		box-sizing: border-box;
		color: #444;
	}
	.under_mainQR{
		width: 180px;
		margin: 10px;
	}
	.under_mainQR > a{
		display: inline-block;
	}
	.under_mainQR > a img{
		width: 100%;
		vertical-align: top;
		mage-rendering: -moz-crisp-edges;
		image-rendering: -o-crisp-edges;
		image-rendering: -webkit-optimize-contrast;
		image-rendering: optimize-contrast;
		-ms-interpolation-mode: nearest-neighbor;
	}
	.under_mainQR > a span{
		display: block;
		padding: 5px 5px 5px 10px;
		box-sizing: border-box;
		text-align: center;
		background-color: #f39800;
		color: #fff;
		font-size: 1.15rem;
		letter-spacing: 5px;
	}

@media all and (max-width: 850px){
	
}
@media all and (max-width: 425px){
	.underlogo_box{ justify-content: center; }
	.underlogo > img{ width: 80px; }
	.underlogo{
		margin-right: 0px;
		margin-bottom: 10px;
	}
	.underlogo_box > div{
		width: 100%;
		text-align: center;
	}
}