.bx-picker{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  font-size: 14px;
  background-color: #FFF;
  .bx-picker-header{
    position: relative;
    .flexbox();
    padding: 14px 15px;
    &:after{
      .border-bottom();
    }
    .bx-picker-action{
      .flex();
    }
    .bx-picker-close{
      text-align: left;
    }
    .bx-picker-confirm{
      text-align: right;
      color: @colorPrimary;
    }
  }
  .bx-picker-body{
    height: 280px;
    .flexbox();
    .justify-content(center);
    color: @textColorPrimary;
    .bx-picker-group{
      position: relative;
      .flex();
      height: 100%;
      .bx-picker-content{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
      }
      .bx-picker-item{
        padding: 0;
        height: 40px;
        line-height: 40px;
        text-align: center;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
      }
      .bx-picker-indicator{
        position: absolute;
        top: 50%;
        right: 0;
        left: 0;
        padding: 0;
        z-index: 3;
        height: 40px;
        line-height: 40px;
        transform: translateY(-50%);
        &:before{
          .border-top();
        }
        &:after{
          .border-bottom();
        }
      }
      .bx-picker-group-mask{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 3;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.3)), linear-gradient(0deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.3));
        background-position: top, bottom;
        background-size: 100% 120px;
        background-repeat: no-repeat;
      }
    }
  }
}
.bx-picker-overlay{
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 997;
  background-color: rgba(0,0,0,0.6);
}
