*{
	margin: 0px;
	padding: 0px;
	user-select: none;
}
.wrapper{
	position: relative;
	text-align: center;
}
.content{
	width: 100%;
	position: absolute;
	left: 50%;
	transform: translate(-50%);
}
.header{
	margin: 30px 0;
}
.header_title{
	font-weight: bold;
	font-size: 48px;
	width: 300px;
	position: relative;
	left: 50%;
	transform: translate(-50%);
	text-align: center;
	color: #73AEFF;
}
.background{
	position: absolute;
	width: 100%;
	height: 100%;
	background-image: url(../bg.jpg);
	background-position: center center;
	filter: blur(8px);
	z-index: -1;
}
.btn_edit{
	outline-style: none;
	height: 30px;
	width: 80px;
	font-size: 18px;
	background-color: #0af;
	color: #fff;
	border-radius: 5px;
}
.table{
}
.list{
	display: block;
	border: solid #ccc 1px;
	border-radius: 5px;
	width: 80vw;
	min-width: 100px;
	max-width: 500px;
	margin: 20px 0;
	position: relative;
	left: 50%;
	transform: translate(-50%);
	transition: all 0.2s;
}
.list_title{
	line-height: 30px;
	font-weight: bold;
	color: #fff;
}
[class*='item-']{
	display: inline-block;
	text-align: center;
	line-height: 50px;
	width: 80px;
	height: 50px;
	margin: 5px 3px;
	border: solid #fff 1px;
	color: #fff;
}