.date-pickers {
  width: 100%;
  position: relative;
  font-family: "Microsoft YaHei";
}
.date-pickers > input {
  border: none;
  font-family: "Microsoft YaHei";
  font-size: 0.42rem;
  width: 100%;
  height: 100%;
  text-align: right;
}
.date-pickers .fade-enter-active,
.date-pickers .fade-leave-active {
  transition: all 0.5s;
}
.date-pickers .fade-enter,
.date-pickers .fade-leave-active {
  opacity: 0;
  transform: translateY(-10px);
}
.date-pickers > div {
  border: 1px solid #EAEAEA;
  border-radius: 5px;
  box-shadow: 2px 2px 2px #eee;
  background: white;
  position: absolute;
  top: 1.48rem;
  right: 0;
  z-index: 99;
  width: 80%;
}
.date-pickers > div div.day-select {
  display: flex;
  padding: 0.05rem 0;
  height: 1rem;
  line-height: 1rem;
  color: #888888;
  border-bottom: 1px solid #ccc;
}
.date-pickers > div div.day-select input,
.date-pickers > div div.day-select button {
  border: none;
  background: white;
  text-align: center;
  color: #888888;
  cursor: pointer;
  font-size: 0.35rem;
  font-family: "Microsoft YaHei";
}
.date-pickers > div div.day-select > div:nth-child(1),
.date-pickers > div div.day-select > div:nth-child(3) {
  width: 20%;
  text-align: center;
}
.date-pickers > div div.day-select > div:nth-child(2) {
  width: 60%;
  display: flex;
  justify-content: center;
  font-size: 0.48rem;
}
.date-pickers > div div.day-select > div:nth-child(2) input:hover {
  background: #eee;
}
.date-pickers > div div.day-select > div:nth-child(2) input:nth-child(1) {
  width: 50px;
}
.date-pickers > div div.day-select > div:nth-child(2) input:nth-child(2) {
  width: 30px;
}
.date-pickers > div div.day-screen > div {
  width: 100%;
  padding: 0 5px;
  display: flex;
  font-size: 0.4rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.date-pickers > div div.day-screen > div span {
  width: 14%;
  height: 1rem;
  text-align: center;
  line-height: 1rem;
  border-bottom: 1px solid #ccc;
}
.date-pickers > div div.day-screen > div:nth-child(1) {
  font-weight: bold;
  background: #F8F8F8;
}
.date-pickers > div div.day-screen > div:nth-child(2) span {
  cursor: pointer;
  color: black;
}
.date-pickers > div div.day-screen > div:nth-child(2) span:hover,
.date-pickers > div div.day-screen > div:nth-child(2) span.active {
  background: #21A5EF;
  color: white;
}
.date-pickers > div div.day-screen > div:nth-child(2) span.previousMonth,
.date-pickers > div div.day-screen > div:nth-child(2) span.nextMonth {
  color: #888888;
}
.day-select .iconfont {
  font-size: 0.5rem;
  cursor: pointer;
}
