.nut-picker-indicator-with-separato-weapp {
  // position: absolute;
  // height: 50px;
  // line-height: 50px;
  // overflow: visible;
}
picker-view-column {
  &+picker-view-column {
    .nut-picker-indicator-with-separato-weapp
    {
      &::after, &::before {
        border-color: #F0F0F0;
        // border-width: 1px;
        // border-style: solid;
      }
      &::after {
        content: ':';
        position: absolute;
        left: 0px;
        color: #262626;
        font-size: 18px;
        font-weight: 500;
        top: 50%;
        height: 50px;
        line-height: 50px;
        // border-image: linear-gradient( to bottom, #F0F0F0  50%, #F0F0F0 50%) 0 0 100% 0 ;
        // -webkit-border-image: linear-gradient( to bottom, #F0F0F0  50%, #F0F0F0 50%) 0 0 100% 0 ;
        transform: translateY(-50%);
      }
    }
  }
} 
.nut-picker {
  background-color: $background-color3;
  width: 100%;
  border-radius: $picker-border-radius;
  &__loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    &--modal {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      opacity: 0.96;
      background: #ffffffd9;
      filter: blur(0);
      z-index: 11;
    }
  }
  &__control {
    display: flex;
    height: 50px;
    font-size: 16px;
    align-items: center;
    justify-content: space-between;
    padding: $picker-bar-button-padding;
  }

  &__cancel-btn {
    color: $picker-bar-cancel-color;
    font-size: $picker-bar-cancel-font-size;
    padding-right: $picker-bar-cancel-padding-right;
    min-width: 80px;
  }

  &__confirm-btn {
    color: $picker-bar-ok-color;
    font-size: $picker-bar-ok-font-size;
    padding-left: $picker-bar-ok-padding-left;
    min-width: 80px;
    text-align: right;
  }

  &__title {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
    color: $picker-bar-title-color;
    font-size: $picker-bar-title-font-size;
    font-weight: $picker-bar-title-font-weight;
  }

  &__panel {
    display: flex;
    position: relative;
  }

  &-indicator {
    position: absolute;
    top: $picker-indicator-top;
    height: $picker-item-height;
    width: 100%;
    border: $picker-item-active-line-border;
    border-left: 0;
    border-right: 0;
    color: $picker-item-text-color;
    font-weight: 500;
    font-size: $picker-item-text-font-size;
    z-index: 3;
  }

  &-list {
    flex: 1;
    position: relative;
    height: $picker-list-height;
    overflow: hidden;
    text-align: center;
    &+.nut-picker-list {
      .nut-picker-indicator-with-separato::after {
        content: ':';
        position: absolute;
        left: 0;
        color: #262626;
        font-size: 18px;
        font-weight: 500;
        top: 50%;
        transform: translateY(-50%);
      }
    }
  }

  &-list-panel {
    transform-style: preserve-3d;
  }

  &-mask {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: $picker-mask-bg-img;
    background-position: top, bottom;
    background-size: 100% $picker-indicator-top;
    background-repeat: no-repeat;
    z-index: 3;
  }

  &-view-panel {
    height: $picker-list-height;
    flex-grow: 1;
  }

  &-content,
  &-roller {
    position: absolute;
    top: $picker-indicator-top;
    width: 100%;
    height: $picker-item-height;
  }

  &-content {
    background: #fff;
    z-index: 2;
    overflow: hidden;
  }

  &-item,
  &-roller-item {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: $picker-item-height;
    line-height: $picker-item-height;
    color: $picker-item-text-color;
    font-size: $picker-item-text-font-size;
    text-align: center;
  }

  &-item {
    font-size: 16px;
    background: #fff;
  }

  &-roller {
    z-index: 1;
    transform-style: preserve-3d;
  }

  &-roller-item {
    backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    position: absolute;
    top: 0;
    width: 100%;
    color: $nsui-gray7;
  }

  &-roller-item-title {
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: $picker-roller-title-color;
    font-size: $picker-roller-title-font-size;
    font-weight: 400;
    text-overflow: ellipsis;
    overflow: hidden;
    // padding: 0 15px;
    box-sizing: border-box;
    white-space: nowrap;
  }

  &-roller-item-active {
    font-size: $picker-roller-title-active-font-size;
    color: $picker-roller-title-active-color;
    font-weight: 500;
  }

  &-roller-item-hidden {
    visibility: hidden;
    opacity: 0;
  }

  &-placeholder {
    height: 1px;
  }
}
