* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: #ffffff;
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  height: 100vh;
  overflow: hidden;
}
.container {
  padding: 8px 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.counter {
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 6px;
}
.title {
  font-size: 14px;
  text-align: center;
  margin-bottom: 8px;
}
.tags-container {
  flex: 1;
  overflow-y: auto;
  line-height: 1.2;
  font-size: 10px;
  font-size: min(8px);
}
.tag {
  display: inline-block;
  margin: 2px 3px;
  padding: 2px 4px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.tag:hover {
  transform: scale(1.05);
}
.tag:active {
  transform: scale(0.95);
}
.tag.active {
  background-color: #f4a6c9;
}
