.#{$field-prefix-cls} {
  display: flex;

  .#{$t-cell-prefix-cls} {

    &__wrapper {
      box-sizing: border-box;
      display: flex;
      align-items: center;
      width: 100%;
      min-height: inherit;
      padding: 0 .30rem;
      overflow: hidden;
      line-height: 1;
      border-bottom: 1px solid $segment-line-color;
    }
    &__title {
      flex: 1;
      width: auto;
      align-self: unset;
    }

    &__content {
      display: flex;
      flex: 4;
      align-items: center;
      justify-content: center;
      max-width: 100%;
      padding-right: 0;
    }
  }

  &__input {
    appearance: none;
    flex: 1;
    width: 100%;
    min-height: 100%;
    margin: .04rem auto;
    font-size: inherit;
    line-height: 1.6;
    border: 0;
    border-radius: 0;
    outline: 0;
  }

  &__state {
    width: .48rem;
    font-size: .48rem;

    &--success {
      color: $brand-success;
    }

    &--error {
      color: $brand-danger;
    }

    &--warning {
      color: $brand-warning;
    }
  }

  &__slot {
    position: relative;
  }
}
