#calender {
  width: 100%;
}
.dateBox-header {
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  border-bottom: 1px solid #ccc;
}
.dateTable {
  width: 100%;
  table-layout: fixed;
}
.dateTable tbody tr td {
  height: 30px;
  text-align: center;
  cursor: pointer;
  position: relative;
}
.dateTable tbody tr td.now > span {
  background-color: transparent;
  color: #75ced1;
}
.dateTable tbody tr td.act > span {
  background-color: #75ced1;
  color: #fff;
}
.dateTable tbody tr td:hover > span {
  background-color: #75ced1;
  color: #fff;
}
.dateTable tbody tr td > span {
  display: inline-block;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  line-height: 25px;
}
.dateTable tbody tr .last_month {
  color: lightgray;
}
.dateTable tbody tr .next_month {
  color: lightgray;
}
.star_wrapper {
  height: 0;
  position: relative;
}
.star_wrapper .star_icon {
  color: #F66A45;
  position: absolute;
  top: 0px;
  left: 16px;
}

