html,body{
	height: 100vh;
	margin: 0;
}
#root{
	position: relative;
	background: #f2f3f8;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}
.content{
	max-width: 800px;
	height: 100vh;
	margin: 0 auto;
	background: #FFFFFF;
	padding: 0;
	box-sizing: border-box;
}
@media screen and (max-width: 768px) {
	.content {
		width: 100%;
	}
}
/* .header-box{
	height: 60px;
	line-height: 60px;
	border-bottom: 1px solid #f7f8f9;
	font-size: 15px;
	color: white;
	background: #2489c5;
} */
.title{
	background: #2489c5;
	border-radius: 0;
	font-size: 20px;
	font-weight: 700;
	padding: 15px 0;
	color: #fff;
	text-align: center;
}
p{
	font-size: 20px;
	margin-top: 0;
	margin-bottom: 1em;
}
.content-scroller{
	overflow-y: auto;
}
.item-wrap{
	padding: 0.28rem 0.65rem;
	color: #3d424d;
}
.item-row{
	position: relative;
	height: auto;
	margin-right: 0;
	margin-left: 0;
	zoom: 1;
	display: block;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.item-col{
	position: relative;
	min-height: 1px;
	padding-left: 15px;
	padding-right: 15px;
	display: block;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 50%;
	-ms-flex: 0 0 auto;
	-webkit-box-flex: 0;
	flex: 0 0 auto;
	float: left;
	font-size: 14px;
}

.item-content{
	-moz-user-select: none;
	-ms-user-select: none;
	-webkit-user-select: none;
	user-select: none;
	padding: 15px 0;
	margin-bottom: 26px;
	border: 1px solid #ebedf0;
	border-radius: 2px;
	text-align: center;
	cursor: pointer;
}
.item-content:hover{
	background-color: #1890ff;
	color: white
}