@bottomBar-height: 52px;

.udp-commonHelp-bottomBar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: @bottomBar-height;
  padding: 0 14px 0;
  background-color: #f6f7fb;
  z-index: 1001;

  // 展示文字
  .showText {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 70vw;
    padding-right: 10px;
    font-size: 16px;

    .blue-text {
      color: var(--primary-color);
    }

    .anticon {
      font-size: 12px;
    }
  }
  button {
    width: 75px;
    height: 36px;
    border-radius: 4px;
  }
}

.udp-commonHelp-bottomBar-popup {
  display: flex;
  flex-direction: column;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  height: 60vh;
  padding-bottom: @bottomBar-height;

  .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 14px 0 20px;
    font-size: 16px;
    font-weight: bold;

    .anticon {
      font-size: 32px !important;
    }
  }

  .content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0 20px;
    overflow-y: auto;

    .list-item {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 0;

      &::after {
        content: ' ';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 1px;
        background: #eee;
        transform: scaleY(0.5);
      }

      .anticon {
        font-size: 18px !important;
      }
    }
  }
}
