.g-bottom {
  display: flex;
  align-items: center;
  display: none;
  position: sticky;
  bottom: 0;
  background-color: #fff;
  border-top: 1px solid #eee;
  z-index: 10000;
}
.g-bottom > .item {
  flex-basis: 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  height: 3.5rem;
  justify-content: center;
  border-bottom: 1px solid #eee;
}
.g-bottom > .item > .icon {
  width: 1.5rem;
  cursor: pointer;
  fill: var(--cp1);
}
.g-bottom > .item > .text {
  font-size: 12px;
}
.g-bottom > .item > .count {
  font-size: 12px;
  position: absolute;
  inset-inline-end: 50%;
  top: 0rem;
  color: #fff;
  background-color: red;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 10px;
  transform: scale(0.8) translateX(1.5rem);
}
.g-bottom > .item > .count[ai-message-count='0'] {
  visibility: hidden;
}

@media (max-width: 1000px) {
  .g-bottom {
    display: flex;
    align-items: center;
    display: flex;
  }
}
