.yz-radio {
  //height: 800rpx;
  width: 100%;

  &__option {
    //Virtual-list会在每个item的外层套一个absolute的布局，
    // 所以必须设置高度为100%，否则会导致界面错乱
    height: 100%;
    &-wrap {
      height: 100%;
      //width: 100%;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      padding: 0 30px;
      border-bottom: #e0e0e0 solid 1px;
      color: #2c2c2c;
      font-size: 32px;

      &--disabled {
        color: #999999;
      }

      &__title {

      }

      &__icon {
        opacity: 0;

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

}
