* { 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: 100%;
  border-radius: 6px;
}
.calendar-title {
  position: relative;
  height: 50px;
  line-height: 30px;
  padding: 10px 0;
}
.calendar-title a.title {
  display: inline-block;
  font-size: 22px;
  text-indent: 10px;
  font-weight: normal;
}
#backToday {
  position: absolute;
  left: 46%;
  top: 13px;
  width: 26px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  border-radius: 50%;
  font-size: 16px;
  border: 1px solid #0F4596;
  color: #0F4596;
}
.calendar-title .arrow {
  position: absolute;
  top: 10px;
  right: 0;
  width: 72px;
}
.calendar-title .arrow span {
  color: #ddd;
  font-size: 26px;
  cursor: pointer;
  width:26px;
  height:26px;
  margin-top:3px;
  -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;
  background:url(/images/32527/cwhy_left.png) no-repeat left center;
}
.calendar-title .arrow-prev:hover {
  background:url(/images/32527/cwhy_hleft.png) no-repeat left center;
}
.calendar-title .arrow-next {
  float: right;
  background:url(/images/32527/cwhy_right.png) no-repeat left center;
}
.calendar-title .arrow-next:hover {
  background:url(/images/32527/cwhy_hright.png) no-repeat left center;
}
.calendar-week,
.calendar-date {
  overflow: hidden;
}
.calendar-week .item,
.calendar-date .item {
  float: left;
  width: 14.28%;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 18px;
}
.calendar-week {
  padding-bottom: 6px;
  font-weight: bold;
  font-size: 16px;
}
.calendar-date {}
.calendar-date .item {
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
}
.calendar-date .item:hover,
.calendar-date .item-curMonth:hover {
  background-color: #f0f0f0;
}
.calendar-date .item-curMonth {
  color: #333;
  font-weight: bold;
}
.calendar-date .hashy{
  color: #C61F0C;
}
.calendar-date .item-curDay,
.calendar-date .item-curDay:hover {
  color: #fff;
  background-color: #0F4596;
}
.calendar-date .item-selected,
.calendar-date .item-selected:hover {
  color:#0F4596;
  background: #cde9d9;
}
.calendar-today {
  display: none;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 100px;
  height: 56px;
  padding: 6px 10px;
  background-color: #0F4596;
  border-radius: 5px;
}
.calendar-today .triangle {
  position: absolute;
  top: 50%;
  left: -16px;
  margin-top: -8px;
  border-width: 8px;
  border-style: solid;
  border-color: transparent #0F4596 transparent transparent;
}
.calendar-today p {
  color: #fff;
  font-size: 14px;
  line-height: 24px;
}