#cp {
  font-size: 0.5rem;
  position: fixed;
  z-index: 1;
  top: 0;
  display: flex;
  align-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  padding: 1rem;
  box-sizing: border-box;
  transition: 0.2s;
}
@media (max-aspect-ratio: 4/5) {
  #cp {
    flex-wrap: nowrap;
   align-items: center;
  }
}
#cpbd {
  position: fixed;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: 0.5s;
  background: linear-gradient(
    30deg,
    rgba(51, 170, 255, 0.5),
    rgba(51, 187, 153, 0.5)
  );
  /* backdrop-filter: blur(1em); */
}
#cp > div {
  margin: 0.5em;
  display: inline-block;
  overflow: auto;
  width: 10rem;
  /* max-height: 90vh; */
  border-radius: 0.5rem;
  background: rgba(0, 0, 0, 0.5);
}
#cp > div > * {
  margin: 0.5rem;
}
.barset > div {
  margin: 0.5em 0;
  position: relative;
  overflow: hidden;
  border-radius: 0.2rem;
  background: rgba(255, 255, 255, 0.2);
}
.barset > div > div {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.8);
  background: rgba(255, 255, 255, 0.8);
}
.barset i {
  margin: 0.5em;
  pointer-events: none;
}
.iconset {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.iconset > * {
  margin: 0.1rem;
  padding: 0.2rem;
  color: rgba(0, 0, 0, 0.8);
  border-radius: 0.2rem;
  background: rgba(255, 255, 255, 0.8);
}
.iconset > * > i {
  font-size: 1rem;
}
.alist > a {
  display: block;
}
