.unit-select {
  line-height: 1;
  height: 100%;
  width: 100%;
  .header {
    width: 100%;
    height: 90rpx;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid #e5e5e5;
    font-size: 32rpx;
    font-weight: 500;
    color: #333;
    .icon {
      position: absolute;
      left: 25rpx;
    }
  }
  .content {
    display: flex;
    height: 100%;
    font-size: 28rpx;
    color: rgb(51, 51, 51);
    .parent {
      width: 220rpx;
      height: 100%;
      overflow-y: scroll;
      border-right: 1rpx solid #e5e5e5;
      .item {
        width: 100%;
        height: 100rpx;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgb(241, 241, 241);
      }
      .actived {
        background: #fff;
        color: rgb(66, 107, 199);
      }
    }
    .child {
      height: 100%;
      overflow-y: scroll;
      flex: 1;
      .item {
        width: 100%;
        height: 100rpx;
        padding: 0 25rpx;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
      .actived {
        color: rgb(66, 107, 199);
      }
    }
  }
}
