ul {
	margin: 0;
	padding: 0;
}
li {
	list-style: none;
}
.calendar-header {
	width: 100%;
	height: 50px;
	line-height: 50px;
	text-align: center;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}
.calendar-header span {
	flex-grow: 1;
	cursor: pointer;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}
.calendar-header span:nth-child(2) {
	flex-grow: 3;	
	cursor: default;
}
.calendar-header span:hover {
	background: #188eee;
	color: #fff;
}

.calendar-wrap {
	width: 364px;
	height: 400px;	
	border: 1px solid black;
}

.calendar-wrap ul{
	width: 100%;
	text-align: center;
}
.calendar-wrap ul li {
	width: 50px;
	height: 35px;
	line-height: 35px;
	border: 1px solid silver;
	text-align: center;
	float: left;
}
.calendar-wrap ul li{
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}
.calendar-day-item li{
	cursor: pointer;
}

.active {
	background: #188EEE;
	color: #fff;
}
