.component {
  display: flex;
  flex-direction: column;
  .label {
    font-size: 24rpx;
  }
  .scanner {
    background-color: #f5f5f5;
    display: flex;
    flex-direction: row;
    align-items: center;

    .icon {
      border: solid 2rpx #dddddd;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    .text {
      flex-grow: 1;
      font-size: 24rpx;
      background-color: transparent;
      height: 100%;
    }
    .option {
      width: 32rpx;
      height: 32rpx;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      > .option-icon {
        width: 32rpx;
        height: 32rpx;
      }
    }
  }
}
