@charset "utf-8";

.query-history
{
	cursor: pointer;
}

		/*日期样式*/
	.calender {
    width: 200px;
    font-size: 12px;
    background-color: #ffffff;
    border: 1px solid #397EAE;
    padding: 1px;
    /* 新增：圆角效果 */
    border-radius: 6px;
    /* 新增：柔和阴影效果 */
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
    /* 新增：防止内部内容溢出圆角 */
    overflow: hidden;
}

		.calender ul {
			list-style-type: none;
			margin: 0;
			padding: 0;
		}

		.calender .day {
			background-color: #EDF5FF;
			height: 20px;
		}

		.calender .day li,
		.calender .date li {
			float: left;
			width: 12%;
			padding-left: 3px;
			height: 20px;
			line-height: 20px;
			text-align: center
		}

		.calender li a {
			text-decoration: none;
			font-family: Tahoma;
			font-size: 11px;
			color: #333;
		}

		.calender li a:hover {
			color: #f30;
			text-decoration: underline;
		}

		.calender li a.hasArticle {
			font-weight: bold;
			color: #f60 !important
		}

		.lastMonthDate,
		.nextMonthDate {
			color: #bbb;
			font-size: 11px;
		}

		.selectThisYear a,
		.selectThisMonth a {
			text-decoration: none;
			margin: 0 2px;
			color: #000;
			font-weight: bold;
		}

		.calender .LastMonth,
		.calender .NextMonth {
			text-decoration: none;
			color: #000;
			font-size: 18px;
			font-weight: bold;
			line-height: 16px;
		}

		.calender .LastMonth {
			float: left;
		}

		.calender .NextMonth {
			float: right;
		}

		.calenderBody {
			clear: both;
		}

		.calenderTitle {
			text-align: center;
			height: 20px;
			line-height: 20px;
			clear: both;
		}

		.today {
			background-color: #ffffaa;
			border: 1px solid #f60;
			padding: 2px;
		}

		.today a {
			color: #f30;
		}
	

	/* 优化顶部栏圆角，与外层匹配 */
.calendertop {
    border-Bottom: 1px solid #ddd;
    text-align: right;
    background-color: #585858;
    height: 25px;
    /* 新增：顶部圆角 */
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.calendertop a.closeCalender{float:right;padding: 2px; color: #fffffff1; font-weight: bold;}
/* 优化底部栏圆角，与外层匹配 */
.calenderBottom {
    clear: both;
    border-top: 1px solid #ddd;
    padding: 3px 0;
    text-align: left;
    width: 98%;
    height: 15px;
    /* 新增：底部圆角 */
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
.calenderBottom a {
			text-decoration: none;
			font-weight: bold;
			color: #F00;
			padding: 2px;
		}
		