html {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
body {
  padding: 0;
  margin: 0;
  color: white;
  user-select: none;
}
div {
  box-sizing: border-box;
}
#app {
  /* width: 80px;
  height: 30px; */
  /* width: 200px;
  height: 347px;
  overflow: hidden; */
}
.warp {
  /* width: 200px;
  height: 347px; */
  width: 80px;
  height: 30px;
  overflow: hidden;
}
.naxida img {
  width: 200px;
  height: 347px;
}

.main-container {
  height: 30px;
  width: 80px;
  background-color: var(--sub-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  border: 3px solid #333;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  /* opacity: 0.6; */
}
.text {
  z-index: 1;
}
.finish {
  position: absolute;
  width: 80px;
  height: 100%;
  background-color: var(--main-color);
  /* right: 50%; */
}

.son-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 30px;
  width: 80px;
  font-size: 12px;
}
.son-item {
  height: 22px;
  width: 22px;
  border-radius: 50%;
  background-color: var(--main-color);
  border: 2px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
}
.son-item img {
  height: 12px;
  width: 12px;
}

.fade-enter-active {
  transition: opacity 0.2s;
}
.fade-enter {
  opacity: 0;
}
.fade-leave-active {
  transition: opacity 0.2s;
}
.fade-leave-to {
  opacity: 0;
}