<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 整体设置 */
*{margin:0px;padding:0px;}
 
/**
 * 设置日历的大小
 */
.calendarbg {
	padding: 25px 30px 25px 30px;
	
}
.calendar{
  width: 200px;
  height: 190px;
  display: block;
  background: #FFFFFF;
  padding: 10px 20px;
  font-size: 13px;
}
 
/**
 * 设置日历顶部盒子
 */
.calendar .calendar-title-box{
  position: relative;
  width: 100%;
  height: 36px;
  line-height: 36px;
  text-align:center;
  /*border-bottom: 1px solid #ddd;*/
 padding-bottom: 10px;
}
 
/**
 * 设置上个月的按钮图标
 */
.calendar .prev-month {
  position: absolute;
  top: 12px;
  left: 0px;
  display: inline-block;
  width: 0px;
  height: 0px;
  border-left: 0px;
  border-top: 6px solid transparent;
  border-right: 8px solid #000;
  border-bottom: 6px solid transparent;
  cursor: pointer;
}
 
/**
 * 设置下个月的按钮图标
 */
.calendar .next-month {
  position: absolute;
  top: 12px;
  right: 0px;
  display: inline-block;
  width: 0px;
  height: 0px;
  border-right: 0px;
  border-top: 6px solid transparent;
  border-left: 8px solid #000;
  border-bottom: 6px solid transparent;
  cursor: pointer;
}
 
 
/* 设置日历表格样式 */
.calendar-table{
  width: 100%;
  border-collapse: collapse;
  text-align:center;
}
 
/* 表格行高 */
.calendar-table tr{
  height: 20px;
  line-height: 20px;
}
 
/* 当前天 颜色特殊显示 */
.currentDay {
  color: #3c638f;
  background: #c5f8ff;
  border: 1px dotted #5e728b;
}
 
/* 本月 文字颜色 */
.currentMonth {
  color: #000;
}
 
/* 其他月颜色 */
.otherMonth{
  color: #84837f;
}</pre></body></html>