.pisell-price-radio {
  margin-bottom: 16px;

  &-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
  }

  &-button {
    margin-right: 8px;

    .ant-radio-inner {
      border-color: #d9d9d9;
    }

    &.pisell-price-radio-button-purple {
      .ant-radio-inner {
        border-color: #722ed1;
      }

      .ant-radio-checked .ant-radio-inner {
        background-color: #722ed1;
        border-color: #722ed1;
      }
    }

    &.pisell-price-radio-button-red {
      .ant-radio-inner {
        border-color: #ff4d4f;
      }

      .ant-radio-checked .ant-radio-inner {
        background-color: #ff4d4f;
        border-color: #ff4d4f;
      }
    }
  }

  &-title {
    font-size: 14px;
    font-weight: 500;
    color: #000;

    .pisell-price-radio-purple & {
      color: #722ed1;
    }

    .pisell-price-radio-red & {
      color: #ff4d4f;
    }
  }

  &-input-container {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 52px;
    padding: 12px 16px;
    border: 2px solid #d9d9d9;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    font-family: inherit;

    &:hover:not(&-disabled) {
      border-color: #722ed1;
    }

    &-purple {
      border-color: #722ed1;
      background: #f9f0ff;
    }

    &-red {
      border-color: #ff4d4f;
      background: #fff2f0;
    }

    &-disabled {
      opacity: 0.6;
      cursor: not-allowed;
      background: #f5f5f5;

      &:hover {
        border-color: #d9d9d9 !important;
      }
    }
  }

  &-currency {
    font-size: 16px;
    font-weight: 600;
    color: #8c8c8c;
    margin-right: 8px;
    flex-shrink: 0;

    .pisell-price-radio-purple & {
      color: #722ed1;
    }

    .pisell-price-radio-red & {
      color: #ff4d4f;
    }
  }

  &-input-content {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    text-align: right;

    .pisell-price-radio-purple & {
      color: #722ed1;
    }

    .pisell-price-radio-red & {
      color: #ff4d4f;
    }
  }

  &-placeholder {
    color: #bfbfbf;
    font-weight: normal;
  }
}

// VirtualKeyInput样式覆盖
.virtual-keyboard-input-wrap {
  .virtual-keyboard-input {
    border: none !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;

    &:focus {
      border: none !important;
      box-shadow: none !important;
    }

    input {
      border: none !important;
      background: transparent !important;
      box-shadow: none !important;
      color: inherit;
      font-size: inherit;
      font-weight: inherit;
      text-align: inherit;

      &:focus {
        border: none !important;
        box-shadow: none !important;
      }
    }
  }
} 