@charset "UTF-8";
.calendar_box {
  width: 100%;
}
.calendar {
  background-color: #f6faff;
  border-radius: 4px;
}
.calendar .choice {
  height: 60px;
  line-height: 60px;
  background: #1d6dc6;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  padding: 0 1%;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
}
.calendar .choice p {
  flex: 1;
  position: relative;
  text-align: center;
}
.calendar .choice span {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
}
.calendar .choice .month_name,
.calendar .choice .year_name {
  display: inline-block;
  text-align: center;
}
.calendar .choice .choice_button {
  cursor: pointer;
  display: inline-block;
  padding: 0 8%;
}
.calendar .choice .month .prev {
  padding-left: 0px;
}
.calendar .choice .year .next {
  padding-right: 0px;
}
.calendar .date_table_box {
  padding: 20px;
}
.calendar table {
  width: 100%;
  margin: 0 auto;
  /*非本月日期*/
}
.calendar table thead tr {
  border-radius: 22px;
  background: #dfeffd;
}
.calendar table tr {
  height: 52px;
  line-height: 52px;
}
.calendar table th {
  text-align: center;
}
.calendar table th span {
  display: inline-block;
  width: 44px;
  height: 44px;
  font-size: 18px;
  font-weight: bold;
  color: #1d6dc6;
  line-height: 44px;
  text-align: center;
}
.calendar table td {
  width: calc(100% / 7);
  text-align: center;
  cursor: pointer;
  font-size: 18px;
  font-weight: normal;
  color: #333;
}
.calendar table td div,
.calendar table td span {
  font-size: 18px;
  font-weight: normal;
  color: #333;
}
.calendar table td.current_day {
  background: #cbcbcb;
}
.calendar table td.unselected_month {
  color: #b5b5b5;
}
.calendar .riqi {
  position: relative;
  z-index: 99;
  margin: 0 auto;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  border-radius: 50%;
}
.calendar .riqi.today,
.calendar .riqi.bgHover {
  background: #1d6dc6;
  color: #fff !important;
  text-decoration: none !important;
}
.calendar .riqi .piaofu {
  display: none;
  z-index: 100;
  position: absolute;
  bottom: 55px;
  left: 50%;
  transform: translateX(-50%);
  width: 210px;
  border-radius: 6px;
  background: #1d6dc6;
  padding: 10px;
  text-align: left;
}
.calendar .riqi .piaofu span {
  display: block;
  position: absolute;
  bottom: -19px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top-color: #1d6dc6;
}
.calendar .riqi .piaofu ul li {
  list-style: none;
  padding-left: 13px;
  text-align: left;
  position: relative;
}
.calendar .riqi .piaofu ul li + li {
  margin-top: 8px;
}
.calendar .riqi .piaofu ul li::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 0px;
  width: 5px;
  height: 5px;
  background-color: #fff;
  border-radius: 50%;
}
.calendar .riqi .piaofu ul li a {
  display: inline-block;
  font-size: 14px;
  font-weight: normal;
  color: #fff;
  line-height: 1.5;
  text-decoration: none;
}
.calendar .riqi .piaofu ul li a:hover {
  text-decoration: underline;
}
.calendar .riqi.current .piaofu {
  display: block;
}
@media (max-width: 992px) {
  .calendar table th span,
  .calendar .riqi {
    width: 36px;
    height: 36px;
    line-height: 36px;
  }
}
