

.calendar {
  display: none;
  width: 380px;
  padding: 10px;
  margin: 30px auto 0;
  background: #FFF;
  box-shadow: 0px 1px 0px 0px #E8E8E8;
  border-radius: 6px;
}
.calendar-title {
  position: relative;
  padding: 10px 0;
}
.calendar-title a.title {
  display: inline-block;
  font-size: 26px;
  text-indent: 10px;
  color: #000;
}
#backToday {
  position: absolute;
  right:100px;
  top: 8px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  background-color: #2E2E5A;
  font-size: 18px;
}
.calendar-title .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  /* width: 50px; */
}
.calendar-title .arrow span {
  width: 32px;
  height: 32px;
  margin-left: 15px;
  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;
  background: url(../images/left.png) no-repeat;
  background-size: cover;
}
.calendar-title .arrow-next {
  float: right;
  background: url(../images/right.png) no-repeat;
  background-size: cover;
}
.calendar-week,
.calendar-date {
  overflow: hidden;
}
.calendar-week .item,
.calendar-date .item {
  float: left;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
}
.calendar-week {
  padding-bottom: 6px;
  border-bottom: 1px solid rgb(255, 128, 142);
  /* font-weight: bold; */
  font-size: 16px;
}
.calendar-date {}
.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: #2E2E5A;
}
.calendar-date .item-selected,
.calendar-date .item-selected:hover {
  color: #fff;
  background: #2E2E5A;
}
.calendar-today {
  display: none;
  position: absolute;
  right: 20px;
  top: 20px;
  width: fit-content;
  /* width: 90px;
  height: 48px; */
  padding: 6px 10px;
  background-color: #2E2E5A;
  border-radius: 5px;
}
.calendar-today .triangle {
  position: absolute;
  top: 50%;
  left: -16px;
  margin-top: -8px;
  border-width: 8px;
  border-style: solid;
  border-color: transparent #2E2E5A transparent transparent;
}
.calendar-today p {
  color: #fff;
  font-size: 14px;
  line-height: 24px;
}