@charset "UTF-8";
.calendar_box {
  width: 100%;
  padding: 20px;
  background-color: #f9fcff;
  border-radius: 0px;
  border: solid 1px #dee2e4;
}
.calendar .calendar_title {
  font-size: 20px;
  font-weight: bold;
  color: #1658a0;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
}
.calendar .calendar_title::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
  width: 12px;
  height: 12px;
  background-color: #bad1e8;
  border-radius: 50%;
}
.calendar .calendar_title::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0px;
  width: 12px;
  height: 12px;
  background-color: #bad1e8;
  border-radius: 50%;
}
.calendar .choice {
  height: 35px;
  line-height: 35px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  padding: 0 35px;
  font-size: 16px;
  font-weight: normal;
  color: #333333;
  margin-bottom: 20px;
}
.calendar .choice p {
  flex: 1;
  position: relative;
  text-align: center;
}
.calendar .choice p.month::after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  content: '';
  width: 1px;
  height: 12px;
  background-color: #999999;
}
.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 24px;
}
.calendar .choice .month .prev {
  padding-left: 0px;
}
.calendar .choice .year .next {
  padding-right: 0px;
}
.calendar table {
  width: 100%;
  margin: 0 auto;
  /*非本月日期*/
}
.calendar table tr {
  height: 40px;
  line-height: 40px;
}
.calendar table tr:nth-child(even) {
  background-color: #e8edf3;
  border-radius: 0px;
}
.calendar table th {
  text-align: center;
}
.calendar table th span {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #ffffff;
  border-radius: 4px;
  border: solid 1px #bebebe;
  font-size: 14px;
  font-weight: normal;
  color: #333333;
  line-height: 30px;
  text-align: center;
}
.calendar table td {
  width: calc(100% / 7);
  text-align: center;
  font-size: 14px;
  font-weight: normal;
  color: #666666;
  cursor: pointer;
}
.calendar table td.current_day {
  background: #cbcbcb;
}
.calendar table td.unselected_month {
  color: #b5b5b5;
}
.calendar .riqi {
  position: relative;
  margin: 0 auto;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
}
.calendar .riqi.bgHover {
  background: #005293;
  color: #fff !important;
  text-decoration: none !important;
}
.calendar .riqi .piaofu {
  display: none;
  z-index: 100;
  position: absolute;
  bottom: 43px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  border-radius: 6px;
  background: #005293;
  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: #005293;
}
.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;
}
