/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.xui-ant-calendar-body {
  position: relative;
  margin: 0 auto;
}
.xui-ant-calendar-body--week {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.xui-ant-calendar-body--week th {
  display: inline-block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 24px;
  height: 24px;
  margin-top: 9px;
  line-height: 20px;
  text-align: center;
}
.xui-ant-calendar-body--dayBlock {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin: 6px;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  border-radius: 2px;
  cursor: pointer;
}
.xui-ant-calendar-body--dayBlock:hover {
  background-color: rgba(24, 144, 255, 0.2);
}
.xui-ant-calendar-body--thisMonth {
  color: #333;
}
.xui-ant-calendar-body--prevMonth {
  color: rgba(0, 0, 0, 0.25);
}
.xui-ant-calendar-body--nextMonth {
  color: rgba(0, 0, 0, 0.25);
}
.xui-ant-calendar-body--today {
  color: #1890ff;
  line-height: 20px;
  background-color: rgba(24, 144, 255, 0.2);
  border: 1px solid #1890ff;
}
.xui-ant-calendar-body--today:hover {
  background-color: rgba(24, 144, 255, 0.2);
}
.xui-ant-calendar-body--active {
  color: #fff;
  background-color: #1890ff;
}
.xui-ant-calendar-body--active:hover {
  background-color: #1890ff;
}
.xui-ant-calendar-body--disable {
  color: rgba(0, 0, 0, 0.25);
  background-color: #eee;
  cursor: not-allowed;
}
.xui-ant-calendar-body--disable:hover {
  background-color: #eee;
}
