:global {
  .nbugs-component-select-role {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 99999;
    .select-role_container {
      min-height: 225px;
      // max-height: 370px;
      overflow-y: auto;
      padding-top: 15px;
      padding: 15px 20px 40px 20px;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;

      p {
        margin: 0;
      }
      .content-wrap + .content-wrap {
        margin-top: 16px;
      }
      .select-role-head {
        height: 34px;
        display: flex;
        flex-direction: row;
        align-items: center;
        img {
          width: 34px;
          height: 34px;
        }
        h3 {
          margin-left: 6px;
          color: #222;
          font-size: 16px;
        }
      }
      .select-role_list {
        margin-top: 13px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        .role-item {
          margin-bottom: 12px;
          width: 48%;
          height: 54px;
          box-sizing: border-box;
          padding-left: 8px;
          padding-right: 8px;
          border-radius: 4px;
          border: 1px solid #e8e8e8;
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          text-align: center;
          .role-item_name {
            color: #666;
            font-size: 14px;
            width: 100%;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
          }
          .role-item_depart {
            color: #bbb;
            font-size: 12px;
          }
        }
        .role-item_active {
          border: 1px solid #469de6;
          .role-item_name {
            color: #469de6;
          }
          .role-item_depart {
            color: #469de6;
          }
        }
        .role-item:nth-child(3n + 0) {
          margin-right: 0;
        }
      }
    }
  }
}
