/* 日历 */
body{
	background: #a8dbe4;
}
.examCalendarContent{
	position: relative;
	z-index: 0;
	background: #a8dbe4;
}
.bgimages{	
	position: absolute;
	width:100%;
	z-index: 0;
	min-width: 1280px;
}
.examCalendarDiv{
	padding: 220px 0 50px 0;
	position: relative;
	z-index: 10;
}
.examCalendarBox{
	width: 100%;
	height: auto;
	border-radius: 8px;
	background: white;
	box-shadow: rgba(112,38,38,0.15) 0 12px 32px;
	min-height: 500px;
	padding-bottom: 8px;
	z-index: 5;
}
.month-select-box{
	margin: 0 20px;
	height: 108px;
	border-bottom: #eee solid 1px;
}
.month-select-box .num-box{
	width: 280px;
	height: 108px;
	font-size: 22px;
	font-weight: bold;
	text-align: center;
	text-indent: -10px;
	line-height: 108px;
	position: relative;
	float: left;
}
.month-select-box .num-box .newmonth{
	font-size: 68px;
	margin-right: 6px;
	color: #E54601;
}

.month-select-box .num-box .upico{
	color: #666666;
	margin-left: 5px;
}

.month-select-box .num-box:first-letter,.month-select-box .num-box::first-letter{
	color: #E54601;
}

.month-select-box .num-box .num-box-shadow{
	width: 24px;
	height: 92px;
	background: url(../images/ico_all.png) no-repeat -120px 0;
	position: absolute;
	right: -24px;
	top:10px;
}
.month-list{
	float: right;
	position: relative;
	z-index: 2;
}
.month-list li{
	float: left;
	width: 70px;
	cursor: pointer;
	margin: 0 2px;
	position: relative;
}
.month-list li .box{
	width: 70px;
	height: 32px;
	padding-top: 40px;
	font-size: 18px;
	color: #555;
	text-align: center;
	line-height: 32px;
	font-weight: 900;
	text-indent: -3px;
	border-radius: 0 0 8px 8px;
	transition:0.3s;
	position: relative;
	z-index: 1;
}

.month-list li .dot{
	width: 6px;
	height: 6px;
	background: url(../images/ico_all.png) no-repeat -43px -5px;
	margin: 10px auto;
}

.month-list li .bg{
	width: 70px;
	height: 32px;
	padding-top: 40px;
	background: url(../images/calendar.png) no-repeat 0 0;
	border-radius: 0 0 8px 8px;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
	opacity: 0;
	filter:alpha(opacity=0); 
	transition: 0.3s;
}

.month-list li:hover .box{
	background: #EFF1F2;
	line-height: 26px;
	transition:0.3s;
}

.month-list li.on .box a{
	color:#FFFFFF!important;
	font-weight: bold;
}
.month-list li.on .bg{
	opacity: 1;
	filter:alpha(opacity=100); 
	transition:0.3s;
}
.month-list li.on:hover .box{
	background: #da3d00;
}
.month-list li.on .dot{
	background: url(../images/ico_all.png) no-repeat -59px -5px;
}
.CalendarTable{
	width: 100%;
	border-top: 2px solid #cc3333;
 }
.CalendarTable th{
	color:#CC3333;
	line-height:60px;
	text-align:left;
	font-weight: bold;
	font-size: 16px;
	background-color: #eeeeee;
}
.CalendarTable th:first-child , .CalendarTable td:first-child{
	padding-left:50px;
	width: 30%;
}
.CalendarTable td{
	color:#333;
	text-align:left;
	line-height:60px;
}
.CalendarTable tr:hover td{ 
	background-color:#fafafa;
	color:#333;
}
.CalendarTable td i{
	font-size: 12px;
	color: #cf5050;
	margin-right: 5px;
}

.CalendarTable tr:nth-child(even) td{
	background-color: #fef8f8;
}
.bottomTK{
	height: 25px;
    line-height: 25px;
    padding: 0 15px;
    border-radius: 30px;
    background-color: #fff;
    border: 1px solid #D2D2D2;
    font-size: 13px;
    color: #666666;
    display: inline-block;
	width: auto;
}
.bottomTK:hover{
	background: #CC3333;
	color: #FFFFFF;
	border: 1px solid #CC3333;
}