@import '../../style/theme/default.less';

@radio-prefix-cls: ~'@{kui-prefix}-radio';

.@{radio-prefix-cls} {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;

  &-label {
    flex: 1;
    font-family: PingFangSC-Regular, PingFang SC;
    font-size: 32px;
    font-weight: 400;
    color: rgba(51, 51, 51, 1);
  }

  &-icon {
    font-size: 32px;
    color: #0cc160;
    opacity: 0;
    transition: all 0.15s;
  }

  &-checked &-icon {
    opacity: 1;
  }

  &-disabled {
    cursor: not-allowed;
    opacity: 0.5;
  }
}
