/* 日历牌样式 */


.evrday {
	font-size: 16px;
	width: 20px;
	line-height: 12px;
	float: left;
	padding: 15px 12px;
}

#calendar {
	max-width: 320px;
	position: relative;
}

.monthList {
	width: 100%;
	height: 50px;
	line-height: 50px;
	position: absolute;
	top: -100px;
	background-color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}

.weekList {
	width: 100%;
	height: 50px;
	line-height: 50px;
	position: absolute;
	top: -50px;
	background-color: #fff;
}

.weekList div {
	color: #FE2F2F;
}

#day {
	/* width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px; */
}

.button {
	font-size: 20px;
	margin: auto;
	float: left;
	color: #e11919;
}

#calendar div {
	text-align: center;
	cursor: pointer;
}

#month {
	/* font-size: 16px;
	width: 45vw;
	line-height: 7vh;
	float: left; */
}

.time_img {
	width: 18px;
}

.time_imgs {
	width: 18px;
}


/* 滚动日历 */
.date-picker-mask {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	display: none;
	justify-content: center;
	align-items: flex-end;
	z-index: 999;

}

.date-picker-mask .date-picker {
	width: 100%;
	max-width: 480px;
	background: #fff;
	border-top-left-radius: 25px;
	border-top-right-radius: 25px;
	overflow: hidden;
	animation: slideUp .3s ease;
}

@keyframes slideUp {
	from {
		transform: translateY(100%);
	}

	to {
		transform: translateY(0);
	}
}

.date-picker-mask .date-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 20px;
	font-size: 16px;
	border-bottom: 1px solid #ECF1FC;
}

.date-picker-mask .date-header button {
	background: none;
	border: none;
	font-size: 16px;
	cursor: pointer;
	display: block;
	position: unset;
	border: 0;
	border-radius: 0;
	width: auto;
}

#cancelBtn{
	color:#0A1629;
}
#confirmBtn{
	color:#FE2F2F;
}
.date-picker-mask .date-body {
	display: flex;
	justify-content: space-around;
	padding: 15px 0;
	height: 150px;
	/* 容器高度，显示5个项 */
	overflow: hidden;
	position: relative;
}

.date-picker-mask .wheel {
	flex: 1;
	height: 100%;
	overflow-y: scroll;
	scrollbar-width: none;
	-ms-overflow-style: none;
	text-align: center;
}

.date-picker-mask .wheel::-webkit-scrollbar {
	display: none;
}

.date-picker-mask .wheel div {
	height: 30px;
	line-height: 30px;
	font-size: 18px;
	color: #666;
	user-select: none;
}

.date-picker-mask .highlight {
	position: absolute;
	left: 0;
	right: 0;
	top: 75px;
	height: 30px;
	border-top: 1px solid #ECF1FC;
	border-bottom: 1px solid #ECF1FC;
	pointer-events: none;
}

.date-picker-mask .wheel div.active {
	color: #000;
	font-weight: bold;
}

/* 滚动日历结束 */