@charset "UTF-8";
.calendar_box {
  width: 100%;
  background-color: #eff6ff;
  border-radius: 4px;
}
.calendar .title {
  font-size: 20px;
  font-weight: bold;
  color: #487bc5;
  margin-bottom: 15px;
  text-align: center;
}
.calendar .choice {
  height: 72px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  padding: 0 35px;
  font-size: 22px;
  font-weight: normal;
  color: #1366db;
  background-color: #d4e7ff;
  border-radius: 4px;
}
@media (max-width: 600px) {
  .calendar .choice {
    padding: 0 15px;
    font-size: 18px;
  }
}
.calendar .choice p {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  position: relative;
  text-align: center;
}
.calendar .choice .month_name,
.calendar .choice .year_name {
  display: inline-block;
  text-align: center;
  word-break: keep-all;
}
.calendar .choice .choice_button {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background-color: #a1cbff;
  border: 1px solid #74b2ff;
  color: #fff;
  margin: 0 10px;
}
.calendar .choice .month .prev {
  padding-left: 0px;
}
.calendar .choice .year .next {
  padding-right: 0px;
}
.calendar .date_table_box {
  padding: 10px;
  padding-top: 15px;
}
.calendar table {
  width: 100%;
  margin: 0 auto;
  /*非本月日期*/
}
.calendar table thead {
  border-radius: 50px;
  background: #d4e7ff;
}
.calendar table tr {
  height: 53px;
  line-height: 53px;
}
.calendar table tr:nth-child(even) {
  background-color: #fff;
  border-radius: 6px;
}
.calendar table th {
  text-align: center;
}
.calendar table th span {
  display: inline-block;
  height: 52px;
  font-size: 18px;
  font-weight: bold;
  color: #1887ff;
  line-height: 52px;
  text-align: center;
}
.calendar table td {
  width: calc(100% / 7);
  text-align: center;
  font-size: 18px;
  font-weight: normal;
  color: #333333;
  cursor: pointer;
}
.calendar table td.current_day {
  background: #cbcbcb;
}
.calendar table td.unselected_month {
  color: #b5b5b5;
}
.calendar .riqi {
  position: relative;
  z-index: 9999999;
  margin: 0 auto;
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  border-radius: 50%;
}
.calendar .riqi:hover,
.calendar .riqi.bgHover {
  background: #1366db;
  color: #fff !important;
  text-decoration: none !important;
}
.calendar .riqi .piaofu {
  display: none;
  z-index: 100;
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  border-radius: 6px;
  background: #1366db;
  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: #1366db;
}
.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;
}
