.#{$prefix}edit {
  width: 100%;

  &-wrap {
    width: 100%;
    height: auto;
    // border-radius: 4px;
    border-radius: $radius-size;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;

    @include border();
  }

  &-input {
    width: 100%;
    height: 100%;
    border: 0;
    color: $text-color-prompt;
  }

  &-left {
    flex: 1;
    height: 100%;

    &-one {
      line-height: 30px;
      letter-spacing: 0.95px;
      font-size: 14px;

      &-open {
        // width: 256px;
        // border-radius: 4px;
        border-radius: $radius-size;
        margin: 8px 0 8px 8px;

        @include border();
      }

      &-input-box-input {
        border: 0;
        color: $icon-color-default;
      }
    }

    &-two {
      // width: 240px;
      height: 32px;
      color: $text-color-prompt;
      line-height: 30px;
      letter-spacing: 0.95px;
      font-size: 14px;
      // border-radius: 4px;
      // margin-bottom: 8px;
      // margin-left: 24px;
      border-radius: $radius-size;
      margin: 0 0 8px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;

      @include border();

      &-text {
        flex: 1;
        height: 30px;
      }

      &-input-box-input {
        height: 30px;
        border: 1px solid transparent;
        color: $icon-color-default;
      }

      &-btn {
        width: 32px;
        line-height: 32px;
        text-align: center;
        color: $icon-color-default;
        cursor: pointer;

        @include border(left);
      }
    }
  }

  &-right {
    width: 48px;
    display: flex;
    justify-content: flex-end;

    &-btn {
      width: 16px;
      height: 16px;
      border-radius: 100%;
      display: block;
      margin: 0 4px;
      // margin-right: 8px;
      text-align: center;
      line-height: 13px;
      color: $icon-color-default;
      cursor: pointer;

      @include border(all, $icon-color-default);
    }
  }
}
