
$font-family-H:'Helvetica Neue',Tahoma,'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', STHeitiSC, sans-serif;
$font-family-A:"Helvetica Neue",Tahoma,"PingFang SC","Hiragino Sans GB",SimSun,STHeitiSC,sans-serif;


.radiolist{
  .radio_list-container{
    display: flex;
    flex-wrap: wrap;
  }
  .radio-container {
    .radioLabel {
      float: left;
      height: 18px;
      margin: 10px 5px;
      display: inline-block;
      font-size: 12px;
      overflow: hidden;
      font-family: $font-family-H;
    }
    .field-left{
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
    }
  }
  .field-left{
    float: left;
    max-width: 120px;
    height: 40px;
    line-height: 40px;
    margin-right: 30px;
    font-family: $font-family-H;
    font-size: 14px;
    color: #667580;
    .required-star{
      display: inline-block;
      width: 8px;
      padding-top: 2px;
      height: 8px;
    }
  }
  .field-right {
    // display: table-cell;
    // width: 100%;
    .field-cell {
      width: 100%;
      margin-top: -3px;
      margin-bottom: 5px;
    }
  }
  .no-radioItems{
    height: 40px;
  }
  .rb-radioBox {
    height: 18px;
    padding: 3px 0;
    box-sizing: initial;
    margin-right: 20px;
    max-width: 100%;
  }
  .radio-horizontal{
    display: flex;
    padding: 3px 0;
  }

  .rb-Optional {
    .radioItem-back {
      box-sizing: initial;
      cursor: pointer;
      color: #36434d;
      // margin-bottom: 10px;
      margin-top: 2px;
      height: 12px;
      width: 12px;
      flex: 0 0 12px;
      opacity: 0.8;
      float: left;
      border:1px solid #96d0fa;
      border-radius: 100%;
      // margin: 0 auto;
      &:hover {
        border:1px solid #1687d9;
      }
    }
    .radioItem-back-active {
      border: 1px solid #1687d9;
    }
    .radio-title {
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
      color: #36434d;
      padding-left: 5px;
      font-size: 14px;
      line-height: 18px;
      font-family: $font-family-H;
      white-space: pre;
    }
  }

  .rb-notOptional .radio-title {
    color: #36434d;
    /*float: left;*/
    display: inherit;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-left: 5px;
    font-size: 14px;
    line-height: 18px;
    font-family: $font-family-H;
  }

  .rb-Optional {
    .inner-circle-back {
      height: 0px;
      width: 0px;
      margin: 8px auto;
      background: #1687d9;
      border-radius: 50%;
      //transition: width .2s ease,height .2s ease,margin .2s ease;
    }
    .inner-circle-active {
      height: 8px;
      width: 8px;
      margin: 2px auto;
      background: #1687d9;
      border-radius: 100%;
      //transition: width .2s ease,height .2s ease,margin .2s ease;
    }
  }

  .rb-notOptional {
    .radioItem-back {
      box-sizing: initial;
      color: #ACB7BF;
      margin-bottom: 10px;
      margin-top: 10px;
      height: 14px;
      width: 14px;
      //float: left;
      border: 2px solid #ACB7BF;
      border-radius: 50%;
      margin: 0 auto;
    }
    .inner-circle-back {
      height: 0px;
      width: 0px;
      margin: 8px auto;
      background: #ACB7BF;
      border-radius: 50%;
    }
  }

  .base-input-error-label{

    .input-pError{
      padding-left: 5px;
      color: #cc2929;
      font-size: 12px;
      line-height: 20px;
      font-family:font-family-A;
      // margin-left: 128px;
    }
  }
}


