.fe-calendar {
  background: #fff;
  user-select: none;
}
.fe-calendar .fe-calendar-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  padding: 10px 18px 0 18px;
}
.fe-calendar .fe-calendar-weeks {
  display: flex;
  color: #323233;
  font-size: 14px;
  height: 30px;
  position: relative;
}
.fe-calendar .fe-calendar-weeks .fe-calendar-item {
  width: 14.2%;
}
.fe-calendar .fe-calendar-weeks:before {
  content: " ";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 1px;
  border-bottom: 1px solid #c7c7c7;
  color: #c7c7c7;
  transform-origin: 0 100%;
  transform: scaleY(0.5);
}
.fe-calendar .fe-calendar-days {
  display: flex;
  font-size: 16px;
  color: #323233;
  flex-wrap: wrap;
}
.fe-calendar .fe-calendar-days .fe-calendar-item {
  width: 14.2%;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fe-calendar .fe-calendar-months {
  display: flex;
  font-size: 16px;
  color: #323233;
  flex-wrap: wrap;
}
.fe-calendar .fe-calendar-months .fe-calendar-item {
  width: 25%;
}
.fe-calendar .fe-calendar-years {
  display: flex;
  font-size: 16px;
  color: #323233;
  flex-wrap: wrap;
}
.fe-calendar .fe-calendar-years .fe-calendar-item {
  width: 20%;
}
.fe-calendar .fe-calendar-item {
  min-height: 1px;
  text-align: center;
}
.fe-calendar .fe-f-disabled {
  color: #969799;
}
.fe-calendar .fe-f-active {
  color: #fff;
  position: relative;
  background: #1890ff;
  border-radius: 4px;
  box-shadow: 2px 2px 3px rgba(24, 144, 255, 0.4);
}
.fe-calendar .fe-f-btn-a {
  background: none;
  outline: none;
  display: block;
  border: none;
  padding: 0;
}
.fe-calendar .fe-f-btn-a.fe-f-title {
  font-size: 20px;
  color: #333333;
}
.fe-calendar .fe-f-crow:before {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border: 0 solid #aaa;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 1px;
  transform: rotate(-45deg) scale(0.8);
  transition: all 0.3s;
  content: "";
}
.fe-calendar .fe-f-crow-right:before {
  transform: rotate(135deg) scale(0.8);
}
.fe-fade-enter-active,
.fe-fade-leave-active {
  transition: opacity 0.5s;
}
.fe-fade-enter,
.fe-fade-leave-to {
  opacity: 0;
}
