@charset "utf-8";
/* CSS Document */
.error_wrap{
	background-image: url(../images/error_bg2.png);
	background-repeat: no-repeat;
	background-position: center center;
	position: relative;
	width: 100%;
	height:100vh;
	display: block;
}
.error_logo{
	display:block;
	width:100%;
	text-align:center;
}
.error_logo img{
	width:400px;
	height:auto;
}
.error_pic{
	background-image: url(../images/error_pic.png);
	background-repeat: no-repeat;
	background-position: left top;
	position: absolute;
	width: 623px;
	height:394px;
	left: 50%;
	top: 10%;
	transform:translate(-50%,0);
}
.eyeL{
	background-image: url(../images/error_eye.png);
	background-repeat: no-repeat;
	background-position: center center;
	height: 44px;
	width: 44px;
	position: absolute;
	top: 20%;
	left:34%;
	animation: eyeL 3s ease-in-out;
}
.eyeR{
	background-image: url(../images/error_eye.png);
	background-repeat: no-repeat;
	background-position: center center;
	height: 44px;
	width: 44px;
	position: absolute;
	top: 20%;
	left:60%;
	animation: eyeR 3s ease-in-out;
}
.mouth{
	background-image: url(../images/error_mouth.png);
	background-repeat: no-repeat;
	background-position: left top;
	height: 0px;
	width: 30px;
	position: absolute;
	top: 47.8%;
	left:60%;
	animation: mouth 2s ease-in-out ;
	animation-delay:2s;
}
.error_txt{
	position: absolute;
	top: 420px;
	left:50%;
	transform:translate(-50%,0);
}
.error_txt h1{
	font-family: "Arial Black", Gadget, sans-serif;
	font-size: 4.5em;
	color: #99ccff;
}
.error_txt h2{
	font-family: Verdana, Geneva, sans-serif;
	font-size: 3.5em;
	color: #ff614f;
}
.error_txt p{
	font-family: "微軟正黑體";
	font-size: 2em;
}
.but_box{
	text-align: center;
	position:absolute;
	left:50%;
	top:620px;
	transform:translate(-50%,0);
}
.btn{
	display: inline-block;
	padding: 6px 12px;
	margin-bottom: 0;
	font-size: 2em;
	font-weight: 400;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	color: #FFF;
	background-color: #009cff;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	font-family: "微軟正黑體";
	line-height: normal;
	border-top-style: 0;
	border-right-style: 0;
	border-bottom-style: 0;
	border-left-style: 0;
	border-top-color: #FFF;
	border-right-color: #FFF;
	border-bottom-color: #FFF;
	border-left-color: #FFF;
}
.btn:hover, .btn:active {
	background-color: #0088df;
	cursor: pointer;
	color: #000;
}
.btn:focus, .btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(131, 131, 131, 0.25);
  transition:all 0.5s;
}

@keyframes eyeL{
	100% { transform: rotate(360deg); }
}
@keyframes eyeR{
	100% { transform: rotate(-360deg); }
}
@keyframes mouth{
	0% {height:0px;}
	50% { height:40px;}
	80% { height:40px;}
	100% { height:0px;}
}