@import '../style/var.less';
.van-field {
  .zt-select {
    > .van-cell {
      padding: 0 0;
      .zt-select__single,
      .zt-select__placeholder {
        margin-bottom: 0;
      }
      &::after {
        border: none;
      }
      .zt-select__single {
        position: relative;
        padding-right: 10px;
        width: 100%;
        .zt-select__single_clear {
          position: absolute;
          top: 4px;
          right: 0;
        }
      }
    }
  }
}
.zt-select {
  width: 100%;
  :deep(.van-action-sheet__description) {
    .zt-select__search {
      &::after {
        border-radius: 10px;
      }
    }
  }
  .zt-select__cell {
    padding-bottom: 0;
  }
  .zt-select__cell_disabled {
    color: #c8c9cc;
    .van-tag {
      background: #c8c9cc;
    }
  }
  .zt-select__placeholder {
    color: @weight-2;
    margin-bottom: 10px;
  }
  .zt-select__single {
    margin-bottom: 10px;
  }
  .zt-select__multiple {
    display: flex;
    flex-wrap: wrap;
    .zt-select__multiple__item-disabled {
      background: #c8c9cc;
    }
    > span {
      margin-right: 10px;
      margin-bottom: 10px;
    }
  }

  .popup-btn-group-footer-select {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    margin-bottom: 0;
    z-index: 99;
  }
}
.zt-select__popup-sheet {
  position: relative;
  height: 100%;
  overflow-y: auto;
  .zt-select__search_box_top {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1;
  }
  .zt-select__content {
    min-height: 100px;
    position: relative;
    background: #fff;
    .zt-select__content--item {
      cursor: pointer;
      :deep(.van-cell__title) {
        text-align: left;
        word-break: break-all;
      }

      .van-checkbox {
        pointer-events: none;
      }
    }
  }
}
// .popup-btn-group-footer {
//   width: 100%;
//   position: fixed;
//   bottom: 0;
//   left: 0;
//   margin-bottom: 0;
//   z-index: 9999;
//   z-index: 99;
// }