body {
  margin: 0;
  font-size: 0.16rem;
}

[v-cloak] {
  visibility: hidden;
}

html {
  line-height: 1.15;
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
  font-size: inherit;
  line-height: inherit;
  background: none;
  border: none;
  padding: 0;
  color: inherit;
  outline: none;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
}

@keyframes arrow-down-up {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, 0.1rem);
  }
  100% {
    transform: translate(0, 0);
  }
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.scrollbar {
  overflow-y: auto;
  height: 100%;
}

.scrollbar::-webkit-scrollbar {
  width: 0.04rem;
}
.scrollbar::-webkit-scrollbar-track {
  background-color: #ede5dc;
}
.scrollbar::-webkit-scrollbar-thumb {
  background: #a84021;
  cursor: pointer;
}

@keyframes rotate-360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

[data-stroke] {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
[data-stroke]::before {
  content: attr(data-stroke);
  position: absolute;
  -webkit-text-stroke: var(--text-stroke-color);
  -webkit-text-stroke-width: var(--text-stroke-width);
}
[data-stroke]::after {
  position: relative;
  content: attr(data-stroke);
}
