/* 日历牌样式 */


.evrday {
	width: 25px;
	margin: 3px 8.5px;
	height: 25px;
	background: #fff;
	/* background: #CF1312; */
	line-height: 25px;
	float: left;
	text-align: center;
	font-size: 14px;
	color: #000;
}

#calendar {
	width: 300px;
	margin: auto;
	position: relative;
}

.monthList {
	width: 100%;
	height: 40px;
	position: absolute;
	top: -150px;
	left: 0px;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: space-around;
}

.monthList .button {
	width: 20px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.monthList .button img {
	width: 20px;
	height: 20px;
}



.weekList {
	width: 100%;
	height: 45px;
	position: absolute;
	top: -90px;
	left: 0px;
	box-sizing: border-box;
}

.weekList div {
	color: #CF1312;
}

#day {
	width: 100%;
	height: 100%;
	position: absolute;
	top: -40px;
	left: 0px;
}

.button {
	width: 17.5%;
	height: 40px;
	line-height: 40px;
	float: left;
	color: #e11919;
}

#calendar div {
	text-align: center;
	cursor: pointer;
	border-radius: 5px;
}

#month {
	width: 30%;
	line-height: 40px;
	float: left;
}