@charset "utf-8";

.x-time-picker {
  background: #fff;
  display: flex;
  height: 390px;
  overflow: hidden;
  padding: 20px 60px;
  flex-wrap: nowrap;
  position: relative;
  > div ul {
    padding: 140px 0;
    overflow: hidden;
    li {
      height: 70px;
      line-height: 70px;
      text-align: center;
      font-size: 36px;
      color: #333;
      display: block;
    }
  }
  &__mask-t, &__mask-b {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 160px;
    background-image: -webkit-gradient(linear, 0 0, 0 bottom, from(#fff), to(rgba(255, 255, 255, 0.7)));
    pointer-events: none;
    z-index: 9;
  }
  &__mask-b {
    top: auto;
    bottom: 0;
    background-image: -webkit-gradient(linear, 0 bottom, 0 0, from(#fff), to(rgba(255, 255, 255, 0.7)));
  }
  &__day-list {
    flex-grow: 1;
  }
  &__hh-list {
    flex-grow: 1;
  }
  &__mm-list {
    flex-grow: 1;
  }
}
