.nut-theme-dark {
  .nut-ecard {
    color: $dark-color3;

    ::placeholder {
      color: rgb(29, 31, 32);
    }

    .nut-ecard__list__item {
      background: $dark-background5;

      &.active {
        background: $dark-background6;
        outline: 1px solid $dark-color2;
        color: $dark-color2;
      }
    }

    .nut-ecard__list__input {
      color: $dark-color3;
      background: $dark-background7;

      &.active {
        background: $dark-background7;

        > view > input {
          background: $dark-background7;
        }
      }

      .nut-ecard__list__input--con > input {
        background-color: transparent;
        color: $dark-color3;
      }
    }
  }
}

.nb-ecard {
  width: 100%;

  &__title {
    line-height: 1;
    font-size: 15px;
    font-family: PingFangSC;
    font-weight: normal;
  }

  &__list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 15px;

    &__item {
      width: 48%;
      height: 46px;
      background: $ecard-bg-color;
      border-radius: 4px;
      margin-bottom: 12px;
      display: flex;
      justify-content: center;
      align-items: center;

      &.active {
        background: $white;
        outline: 1px solid $primary-color;
        border-radius: 4px;
      }
    }

    &__input {
      width: 100%;
      height: 46px;
      background: $ecard-bg-color;
      color: rgba(0, 0, 0, 0.8);
      border-radius: 4px;
      display: flex;
      padding: 0 15px 0 20px;
      font-size: 14px;
      justify-content: space-between;
      align-items: center;

      &--input {
        background: transparent;
        padding: 0;
      }

      &--con {
        flex: 1;
        display: flex;
        justify-content: flex-end;
        align-items: center;

        input {
          caret-color: $primary-color; //光标颜色
          text-align: right;
          background: transparent;
          margin-right: 10px;
          outline: 0 none;
          border: 0;
          text-decoration: none;
        }

        .nut-ecard-input {
          caret-color: $primary-color; //光标颜色
          text-align: right;
          background: transparent;
          margin-right: 10px;
          outline: 0 none;
          border: 0;
          text-decoration: none;
        }
      }

      &.active {
        background: $white;
        outline: 1px solid $primary-color;

        > view > input {
          background: $white;
        }
      }
      .nut-input{
        background: inherit;
      }
      // .suffix{
      //   margin-right: 15px;
      // }
    }

    &__step {
      width: 100%;
      margin-top: 17px;
      display: flex;
      justify-content: space-between;
      &--price{
        font-size: 20px;
        font-family: PingFangSC;
        font-weight: normal;
        color: $primary-color;
      }
    }
  }
  input::-webkit-outer-spin-button,
  input::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
  }
  input[type='number'] {
    -moz-appearance: textfield;
  }
}
