.v-auto-complete {
    position: absolute;
    z-index: 99;
    left: 0;
    right: 0;
    top: 54px;
    transform-origin: center top;
    transform: rotateX(90deg);
    transition: transform 0.2s;
    .v-select-ul {
      max-height: 250px;
      overflow: auto;
      padding: 4px 0;
      background-color: #fff;
      border-radius: 4px;
      box-shadow: 0 2px 12px 0 rgb(0 0 0 / 10%);
      border: 1px solid #e4e7ed;
      & div:last-child:after {
        height: 0;
      }
    }
    .v-popper__arrow {
      position: absolute;
      display: block;
      width: 0;
      height: 0;
      border-color: transparent;
      border-style: solid;
      border-width: 6px;
      filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.03));
      top: -6px;
      left: 50%;
      margin-right: 3px;
      border-top-width: 0;
      border-bottom-color: #ebeef5;
      &:after {
        position: absolute;
        display: block;
        width: 0;
        height: 0;
        border-color: transparent;
        border-style: solid;
        content: " ";
        border-width: 6px;
        top: 1px;
        margin-left: -6px;
        border-top-width: 0;
        border-bottom-color: #fff;
      }
    }
    .v-select-dropdown__empty {
      height: 100px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0;
      .loading {
        width: 14px;
        height: 14px;
        animation: loading 1s linear infinite;
      }
    }
  }
  .showTime {
    transform: rotateX(0);
  }