@charset "UTF-8";
/* CSS Document */
@import url(help/reset.css);

body {
font-family: '微軟正黑體', sans-serif;
  font-size: 15px;
  background: url(../images/firstbg.jpg);
}
*{
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.firstpage{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	    min-height: 100vh;
}
.dightbox{
	display: flex;
	align-items: center;
	flex-direction: column;
	padding:20px 0;
}
.dightbox img{
    width: 50px;
    padding-top: 10px;
}
.dightbox::before{
	content: "";
	width: 1px;
	height: 40px;
	display: block;
	background:#000;
}
h2{
    font-size: 30px;
    padding-bottom: 25px;
}
h1{
    font-size: 18px;
    text-align: center;
    letter-spacing: 10px;
    padding-bottom: 50px;
    line-height: 1.6;
    font-weight: 500;
}
.languagelink a{
font-size: 16px;
color: #000;
letter-spacing: 2px;
padding:12px 45px;
border:2px solid #000;
margin:0 10px;
font-weight: 800;
position:relative;
transition: .6s;
}
.languagelink a:hover{
color: #fff;
border:2px solid #595650;
}
.languagelink a::after{
	content: "";
	display: block;
	width: 0%;
	height: 100%;
	background: #595650;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	transition: 0.5s;
}

.languagelink a:hover::after{
	width: 100%;

}
