/*日历容器样式*/

.em-calendar-container,
.em-calendar-wrapper-week,
.em-calendar-wrapper,
.em-calendar {
	overflow: hidden;
	background: #ffffff;
}




/*标注红色*/

.em-red {
	color: #E60012;
}


/*最上面一行周历显示*/

.em-week {
	display: flex;
	justify-content: space-around;
	padding-top: 18px;
	padding-bottom: 15px;
	color: #999999;
	font-size: 13px;
}

.em-calendar-content .em-calendar-item {
	float: left;
	width: 14.285%;
	height: 14.285vw;
	text-align: center;
	/*border:1px solid #000;*/
	border-radius: 50%;
	margin-bottom: 5px;
}


/* 周六、周日列字体标红*/

.em-calendar-content .em-calendar-item:nth-child(7n) .day,
.em-calendar-content .em-calendar-item:nth-child(7n+1) .day {
	color: #E60012;
	font-size: 16px;
}


/* 上个月和下个月  置成灰色，不可点击*/

.em-calendar-content .isforbid1.em-calendar-item {}

.em-calendar-content .isforbid0.em-calendar-item {}

.em-calendar-content .isforbid0.em-calendar-item .day {
	display: block;
	padding-top: 7px;
	font-size: 16px;
	color: #D8D8D8;
}

.em-calendar-content .isforbid0.em-calendar-item .lunar {
	font-size: 10px;
	color: #D8D8D8;
	margin-top: -3px;
}

.em-calendar-content .em-calendar-item .day {
	display: block;
	padding-top: 2vw;
	font-size: 16px;
	color: #333333;
}

.em-calendar-content .em-calendar-nowday .day {
	font-size: 15px;
}

.em-calendar-content .em-calendar-item .lunar {
	font-size: 10px;
	color: #666666;
	margin: 0;
}

.em-calendar-content .em-calendar-item .price{
	font-size: 12px;
	color: #fe2b54;
}

.em-calendar-content .em-calendar-item .market-price{
	color: #0077bd;
}

.em-calendar-content .em-calendar-active .price{
	color: #fff;
}

/*通用点皮肤*/

.em-calendar-content .em-calendar-item .dot {
	display: inline-flex;
	width: 8px;
	height: 8px;
	margin-top: -13px;
	position: absolute;
	margin-left: -4px;
}


/*皮肤1*/

/* .em-calendar-content .em-calendar-item .dot-type1 {
	background-image: url(../img/img_sdule_point.png);
	background-size: 100% 100%;
} */


/*皮肤2*/

/* .em-calendar-content .em-calendar-item .dot-type2 {
	background-image: url(../img/img_success.png);
	background-size: 100% 100%;
} */

.em-calendar-content .em-calendar-item img {
	width: 10px;
	height: 10px;
	margin-top: -12px;
	position: absolute;
	margin-left: -3px;
}


/**
 * 日历表中的颜色
 * 日历拓展；四种样式
 **/


/*迟到*/

.em-calendar-late {
	border: 2px solid #F5B6B6;
}


/*早退*/

.em-calendar-early {
	border: 2px solid #F5CAB6;
}


/*调休*/

.em-calendar-rest {
	border: 2px solid #D5E6D4;
}


/*请假*/

.em-calendar-leave {
	border: 2px solid #AFDDD9;
}


/*点击效果*/

.em-calendar-content .em-calendar-active.em-calendar-item:nth-child(7n) .day,
.em-calendar-content .em-calendar-active.em-calendar-item:nth-child(7n+1) .day {
	color: #ffffff;
}

.em-calendar-active {
	background-color: #ff8612;
	width: 14.285%;
	height: 54px;
}

.em-calendar-content .em-calendar-active .day,
.em-calendar-content .em-calendar-active .lunar {
	color: #FFFFFF;
}


@media screen and (max-width: 375px) {
    .em-calendar-content .em-calendar-item .price{
		zoom: 0.9;
	}
}

@media screen and (max-width: 370px) {
    .em-calendar-content .em-calendar-item .price{
		zoom: 0.8;
	}
}
