.StationSelectOne {
  .selector-uiOutput {
    background-color: white;

    .shiny-input-select .item {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      display: unset;
    }
  }

  /* 纵向布局 */
  .selector-V {
    background-color: white;

    .form-group {
      min-width: 50%;
    }
  }

  /* 横向布局 */
  .selector-H {
    display: flex;
    flex-direction: row;
    /* justify-content: space-around; */
    /* justify-content: space-between; */
    justify-items: center;
    position: relative;
    width: 90%;
    gap: 10px;

    .btn {
      margin-bottom: 15px;
    }

    .form-group {
      /* width: 15%; */
      /* max-width: 12%; */
      width: 200px;
    }

    [id$="province"] {
      text-align: left;
    }

    [id$="city"] {
      text-align: center;
    }

    /* [id$="district"] {
      text-align: right;
    } */
  }
}