<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* { margin: 0; padding: 0; }
body { font-family: "Microsoft Yahei"; font-size: 12px; color: #888; }
a, a:hover { color: #888; text-decoration: none; }
ul, li { list-style: none; }

.calendar {
  display: none;
  width: 300px;
  padding: 10px;
  margin: 30px auto 0;
  background-color: #fff;
  border-radius: 6px;
}
.calendar-title {
  position: relative;
  height: 30px;
  line-height: 30px;
  padding: 10px 0;
}
.calendar-title a.title {
  display: inline-block;
  font-size: 26px;
  text-indent: 10px;
}
#backToday {
  position: absolute;
  left: 68%;
  top: 8px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  background-color: rgb(255, 128, 142);
  font-size: 18px;
}
.calendar-title .arrow {
  position: absolute;
  top: 10px;
  right: 0;
  width: 50px;
}
.calendar-title .arrow span {
  color: #ddd;
  font-size: 26px;
  cursor: pointer;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.calendar-title .arrow span:hover {
  color: #888;
}
.calendar-title .arrow-prev {
  float: left;
}
.calendar-title .arrow-next {
  float: right;
}
.calendar-week,
.calendar-date {
  overflow: hidden;
}
.calendar-week .item,
.calendar-date .item {
  float: left;
  width: 37.7px;
  height: 37.7px;
  line-height: 37.7px;
  text-align: center;
  margin:2px 2px 2px 2px
}
.calendar-date .item:nth-child(7n+0){margin-right:0}
.calendar-week {
  padding-bottom: 6px;
  border-bottom: 1px solid rgb(255, 128, 142,0.6);
  font-weight: bold;
  font-size: 16px;
}
.calendar-date {padding:5px}
.calendar-date .item {
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
}
.calendar-date .item:hover,
.calendar-date .item-curMonth:hover {
  background-color: #f0f0f0;
}
.calendar-date .item-curMonth {
  color: #333;
  font-weight: bold;
}
.calendar-date .item-curDay,
.calendar-date .item-curDay:hover {
  color: #fff;
  background-color: rgb(255, 128, 142);
}
.calendar-date .item-mark{
  background: rgb(255, 128, 142,0.6)
}
.calendar-date .item-selected,
.calendar-date .item-selected:hover {
  color: rgb(255, 128, 142);
  background: #cde9d9;
}
.calendar-today {
  display: none;
  position: absolute;
  z-index:9999;
  right: 20px;
  top: 20px;
  width: fit-content;
  height: 48px;
  background-color: rgb(255, 128, 142);
  border-radius: 5px;
}
.calendar-today .week{
  background-color: rgb(255, 128, 142);
  border-radius: 5px;
  padding:0 10px
}

.remark-item{
	overflow:hidden;
	text-overflow:ellipsis;
	width:200px;
	background-color:rgb(255, 128, 142);
	padding-bottom:6px
}
.remark-item a{
	color:#fff;
}
/*.remark-item span{
	font-weight:bold
}*/
.calendar-today .triangle {
  position: absolute;
  top: 50%;
  right: -16px;
  margin-top: -8px;
  border-width: 8px;
  border-style: solid;
 border-color: transparent transparent transparent rgb(255, 128, 142);
}
.calendar-today p {
  color: #fff;
  font-size: 12px;
  line-height: 20px;
  padding: 6px 10px 0;
}
.calendar-total{
  height: 35px;
	font-size: 14px;
	text-align: center;
	padding-right: 10px;
	background: rgb(255, 128, 142);
	color: #fff;
	line-height: 35px;
	border-radius: 0 0 5px 5px;

}</pre></body></html>