
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  position: relative;
  font-weight: normal;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
a {
  outline: none;
  text-decoration: none;
  color: #53bf6b;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  &:hover, &:focus { text-decoration: none; }
}

button {
  padding: 5px 10px;
  font-size: 15px;
  line-height: 1.5em;
  color: #444;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
}

input[type="text"],
input[type="number"] {
  position: relative;
  overflow: hidden;
  padding: 0 14px;
  height: 45px;
  line-height: 1em;
  display: block;
  width: 100%;
  margin: 0;
  font-size: inherit;
  color: #666;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  outline: none;
  appearance: none;
  box-sizing: border-box;
  box-shadow: none;
  transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

::-webkit-input-placeholder { color: #ddd; }
::-ms-input-placeholder { color: #ddd; }
::-moz-placeholder { color: #ddd; }

body {
  min-height: 100vh;
  /* background: #333; */
  background: #f5f5f5;
  transition: color 0.5s, background-color 0.5s;
  font-family: "微软雅黑", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[v-cloak] {
  display: none;
}


.v-header {
  position: relative;
  padding: 20px;
  background: #393d49;
}
.v-header h1 {
  display: flex;
  place-items: center;
  font-weight: normal;
}
.v-header h1 a {
  display: block;
  margin: 0;
  font-size: 28px;
  line-height: 45px;
  color: #fff;
  text-decoration: none;
  background: none;
}
.v-header h1 p {
  margin-left: 10px;
  font-size: 20px;
  color: #fff;
  opacity: 0.7;
}
.v-header h1 p::before {
  content: "> ";
}
.v-header h1 p.hide {
  display: none;
}
.v-header .btn {
  position: absolute;
  right: 25px;
  top: 25px;
  padding: 0 20px;
  font: 15px/35px "微软雅黑";
  color: #94979e;
  background: #393d49;
  border: 1px solid #94979e;
  transition: all 0.3s ease 0s;
  border-radius: 20px;
}
.v-header .btn:hover {
  color: #c4c7d2;
  border: 1px solid #c4c7d2;
}

.v-content {
  padding: 20px;
  word-break: break-all;
}
