.lan {
	position:fixed;
	top:25px;
	right:100px;
	z-index:9999;
}
.selectlink{
  margin: 0;
  padding: 10px;
  border: 3px #529db5 solid;
  border-radius: 10px;
  background-color: #fff;
  cursor: pointer;
}

.selectlink:hover{
  border: 3px #529db5 solid;
  background-color: #529db5;
  color:#FFF;
  transition-duration: 0.2s;
}
select {
	font-size:20px;
}

@media screen and (max-width:480px){
.lan {
	position:fixed;
	top:0px;
	left:10px;
	z-index:9999;
}
.selectlink{
  margin: 0;
  padding: 5px;
  border-top: none;
  border-right:3px #529db5 solid;
  border-bottom:3px #529db5 solid;
  border-left:3px #529db5 solid;
  border-radius: 0 0 10px 10px;
  background-color: #fff;
  cursor: pointer;
}
.selectlink:hover{
  border-top: none;
  border-right:3px #529db5 solid;
  border-bottom:3px #529db5 solid;
  border-left:3px #529db5 solid;
  background-color: #529db5;
  color:#FFF;
  transition-duration: 0.2s;
}
}