.yg-picker {
  &-container {
    background: #ffffff;
  }

  &-main {
    position: relative;
  }

  &-title {
    height: 96px;
    padding: 0 32rpx;
    position: relative;
    font-size: 32rpx;
    font-weight: 600;
    color: #333;
  }

  &-subTitle {
    max-width: 80%;
  }

  &-cancel {
    color: #999999;
    position: absolute;
    left: 32rpx;
    font-size: 28rpx;
    line-height: 96rpx;
  }

  &-sure {
    color: var(--yg-main-color);
    position: absolute;
    right: 32rpx;
    line-height: 96rpx;
    font-size: 28rpx;
  }

  &-close {
    color: #999999;
    padding: 14rpx;
    position: absolute;
    right: 26rpx;
    font-size: 26rpx;
  }

  &-pv {
    height: 540rpx;
    width: 100%;
    text-align: center;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    transition: transform 0ms cubic-bezier(0.17, 0.89, 0.45, 1) 0s;
    transform: rotate3d(1, 0, 0, 20deg);
  }

  &-col {
    color: #666;
    font-size: 30rpx;
    font-weight: 100;
    display: flex;
    align-items: center;
    justify-content: center;

    &.yg-picker-active {
      color: var(--yg-main-color);
      font-size: 36rpx;
      font-weight: bold;
    }

    &.yg-picker-diasbled {
      color: #C8C9CC;
    }
  }

  &-loadWrap {
    background-color: rgba(255, 255, 255, 0.8);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }

  &-loading {
    width: 44rpx;
    height: 44rpx;
    border: 4rpx solid #c8c9cc;
    border-top-color: transparent;
    border-radius: 100%;

    animation: circle infinite 0.85s linear;

    // 转转转动画
    @keyframes circle {
      0% {
        transform: rotate(0);
      }

      100% {
        transform: rotate(360deg);
      }
    }
  }

  &-rpWrap {
    padding: 0 32rpx;
    display: flex;
    flex-direction: column;
    max-height: 50vh;
  }

  // &-rpList {
  //   flex: 1;
  //   overflow: hidden;
  //   word-break: break-all;

  //   scroll-view {
  //     height: 100%;
  //     -webkit-overflow-scrolling: touch;
  //   }
  // }

  &-rpItem {
    padding: 18rpx 0;
  }

  &-rpTxt {
    font-size: 28rpx;
    color: #333333;
    padding-right: 40rpx;
  }

  &-rpDesc {
    font-size: 26rpx;
    color: #999;
    margin-top: 12rpx;
  }

  &-okBtn {
    flex-shrink: 0;
    padding-top: 24rpx;
  }
}