@import '../var.less';

.f-radio {
  display: flex;
  align-items: center;
  cursor: pointer;
  &-disabled {
    color: @gray-20;
    cursor: not-allowed;
  }
  &-circle {
    margin-right: 8px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    box-sizing: border-box;
    border: 1px solid @gray-40;
  }
  &-circle-active {
    border: 3px solid @primary-color;
  }
  &-circle-disabled {
    border-color: @gray-10;
    background: @gray-10;
  }
}
