.field-list {
  width: 100%;
  max-height: 500px;
  overflow-y: auto;
  padding: 16px 0 0 0;
  border-top: 1px solid #F1F1F1;
  position: relative;

  .field-search {
    margin-bottom: 10px;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 36px;
    display: flex;
    align-items: center;
  }

  .field-item {
    height: 40px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: .2s;
    padding: 0 8px;
    margin-bottom: 2px;

    &:hover,
    &.active {
      background: #F1F1F1;
    }

    .field-icon {
      width: 24px;
      height: 24px;
      font-size: 24px;
      color: #777777;
    }

    .field-name {
      margin-left: 8px;
      flex: auto;
      font-style: normal;
      font-weight: 400;
      font-size: 14px;
      color: #1B1B1B;
    }
  }
}

.current-field {
  width: 100%;
  height: 36px;
  /* Background/Web_Bg

web大背景、下拉弹窗禁用背景、输入框禁用背景
*/
  background: #FAFAFA;
  /* Surface/Surface_3

输入框边框、输入框提示icon、开关禁用、80
*/
  border: 1px solid #C6C6C6;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: break-all;
  cursor: pointer;

  .left {
    flex: 1;
    display: flex;
    align-items: center;

    .icon {
      color: #919191;
      font-size: 16px;
      margin-right: 10px;
    }


    .name {
      color: #919191;
      font-weight: 400;
      font-size: 14px;
    }
  }

  .right {}
}