.time-select-out {
  z-index: $zindex-datepicker;
  display: inline-block;
  vertical-align: top;
}
.time-select {
  font-size: 1rem;
  transform-origin: center 0;
  animation: 0.36s scaleIn ease;
  color: $time-select-color;
  border: 1px solid $time-select-border-color;
  border-radius: 0.14286rem;
  background-color: #fff;
  box-shadow: $time-select-border-radio;
}
.time-select-wrap {
  height: 17.14rem;
  overflow-y: auto;
  position: relative;
  border-right: 1px solid $gray-light;
  &:last-child {
    border: none;
  }
}
.time-select-wrap-inner {
  padding: $time-select-wrap-inner-padding;

  cursor: pointer;
  &:hover {
    background: $time-select-bg-color;
    color: $time-select-hover-color;
  }
  &.active {
    background: $time-select-bg-color;
    color: $time-select-hover-color;
  }
}
