.h-area-selection {
  .h-area-selection-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 2px;
    border-radius: 24px;
    background: #C5DFFE;
    text-align: center;
    line-height: 20px;
    color: #029EF3;
  }
}

.h-area-selection-content {
  width: 100%;
  height: 100%;
  padding: 0px 5px;
  overflow: hidden;

  .h-area-selection-search {
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;

    .h-area-selection-close {
      margin-right: 15px;
    }
  }

  .h-area-selection-list-content {
    .h-area-selection-list-title {
      padding: 12px 0px;
      color: #666666;
      font-size: 15px;
    }

    .h-area-selection-list-item-content {
      // display: flex;
      // border-bottom: 1px solid rgba(208, 208, 208, 1);
      padding: 10px 0px;
      // flex-wrap: wrap;
      position: relative;

      .h-area-selection-list-item {
        // width: auto;
        text-align: center;
        line-height: 28px;
        margin-left: 5px;
        background: rgba(255, 255, 255, 1);
        border: 1px solid #D8DEEA;
        border-radius: 6px;
        // min-width: 100px;
        // padding: 0 20px;
        margin-top: 5px;
        width: 45%;
        position: relative;
        display: inline-block;
        text-overflow: ellipsis;
        overflow: hidden;
        word-break: break-all;
        white-space: nowrap;
      }

      .h-area-selection-list-item-checked {
        // width: auto;
        text-align: center;
        line-height: 28px;
        margin-left: 5px;
        background: rgba(255, 255, 255, 1);
        border-radius: 6px;
        // min-width: 100px;
        // padding: 0 20px;
        border: 1px solid rgba(232, 10, 9, 1);
        color: rgba(232, 10, 9, 1);
        position: relative;
        width: 45%;
        position: relative;
        display: inline-block;
        text-overflow: ellipsis;
        overflow: hidden;
        word-break: break-all;
        white-space: nowrap;

        &::after {
          position: absolute;
          content: "";
          width: 16px;
          height: 16px;
          background: url('./icon/sel.png');
          background-size: 100% 100%;
          left: 4%;
          top: 50%;
          transform: translateY(-50%);
        }
      }
    }
  }

}


:global {
  .ant-drawer-body {
    padding: 0px !important;

    overflow: hidden;
  }
}