body {
  background-color: #360A06;
  margin: 0;
}

.toast-container .toast {
  text-align: center;
}

[v-cloak] {
  visibility: hidden;
}

html {
  line-height: 1.15;
}

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, 10px);
  }
  100% {
    transform: translate(0, 0);
  }
}

/* 通用弹窗 */
.modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;

  display: flex;
  justify-content: center;
  align-items: center;

  transform: translateZ(0);
}
.modal-wrapper .modal-mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  transition: opacity 0.3s;
}
.modal-wrapper .modal-box {
  position: relative;
  transform: scale(1);
  opacity: 1;
  transition: all 0.3s;
}
.fx-modal-enter .modal-mask,
.fx-modal-leave-active .modal-mask {
  opacity: 0;
}

.fx-modal-enter .modal-box,
.fx-modal-leave-active .modal-box {
  transform: scale(0.9);
  opacity: 0;
}

.fx-modal-enter-active,
.fx-modal-leave-active {
  transition: all 0.3s;
}

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

.scrollbar::-webkit-scrollbar-track {
  border-radius: 3px;
  background-color: #e5e1ce;
}

.scrollbar::-webkit-scrollbar-thumb {
  background: #8e4a3e;
  cursor: pointer;
  border-radius: 3px;
}

.scrollbar::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
