* { margin: 0; padding: 0; }
body { font-family: "Microsoft Yahei"; font-size: 12px; }
.calendar {
  display: none;
  width: 100%;   
}
.calendar-title {
  position: relative;
  height: .3rem;
  line-height: .3rem;
}
.calendar-title a.title {
  display: inline-block;
  font-size: .39rem;
  text-indent: .1rem;
  color: #dfdfdf;
}
#backToday {
  position: absolute;
  left: 74.3%;
  top: -0.1rem;
  width: .48rem;
  height: .48rem;
  line-height: .48rem;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  background-color: #e24041;
  font-size: .18rem;
}
.calendar-title .arrow {
  position: absolute;
  top: 0px;
  right: 0;
  width: .8rem;
}
.calendar-title .arrow span {
  color: #ddd;
  font-size: .32rem;
  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;
  text-align: center;
}
.calendar-week {
  font-weight: bold;
  font-size: .16rem;
  padding-left: .1rem;
  margin: .3rem 0 0.1rem;
}
.calendar-date { 
  padding-left: .1rem;
}
.calendar-date .item {
  border-radius: 50%;
  cursor: pointer;
  font-size: .16rem;
  color: #888 !important;
}
.calendar-date .item:hover,
.calendar-date .item-curMonth:hover {
  background-color: #f0f0f0;
}
.calendar-date .item-curMonth {
  color: #333 !important;
}
.calendar-date .item-curDay,
.calendar-date .item-curDay:hover {
  color: #fff !important;
  background-color: #e24041 !important;
}
.calendar-today {
  display: none !important;
  opacity: 0;
  position: absolute;
  right: .2rem;
  top: .2rem;
  width: .9rem;
  height: .48rem;
  padding: 0.06rem .1rem;
  background-color: rgb(255, 128, 142);
  border-radius: 0.05rem;
}
.calendar-today .triangle {
  position: absolute;
  top: 50%;
  left: -.16rem;
  margin-top: -.08rem;
  border-width: .08rem;
  border-style: solid;
  border-color: transparent rgb(255, 128, 142) transparent transparent;
}
.calendar-today p {
  color: #fff;
  font-size: .16rem;
  line-height: .24rem;
}