html,
body {
  width: 100%;
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

button {
  min-width: 100px;
  height: 30px;
  cursor: pointer;
  border: none;
}

button:hover {
  background-color: pink;
}

fieldset {
  margin: 0;
  margin-bottom: 15px;
  width: min(800px, 100%);
}

input {
  border: 1px solid #aaa;
}

input:hover,
input:focus,
textarea:hover,
textarea:focus {
  /* box-shadow: 0 0 2px 2px skyblue; */
  border: 1px solid deeppink;
  outline: none;
  cursor: pointer;
}

input[type=text] {
  width: 200px;
  height: 30px;
  padding: 3px 5px;
  outline: none;
}

input[type=number] {
  width: 100px;
  height: 30px;
  padding: 0 10px;
  text-align: center;
}

input[type=time] {
  width: 150px;
  height: 30px;
  padding: 3px 5px;
  outline: none;
  text-align: center;
}

input[type=radio] {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  padding: 3px 5px;
  outline: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

input[type=radio]:hover,
input[type=radio]:focus {
  box-shadow: none;
}

label {
  cursor: pointer;
}

textarea {
  border: 1px solid #aaa;
  height: 100px;
  resize: none;
  padding: 5px 10px;
  line-height: 20px;
  outline: none;
  vertical-align: top;
}

summary {
  cursor: pointer;
  font-weight: bold;
}

#app {
  width: 100vw;
  height: 100vh;
  padding: 20px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  font-family: "Microsoft YaHei", sans-serif;
  font-size: 14px;
}
#app .title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}
#app input, #app textarea {
  font-size: 14px;
  font-family: "Microsoft YaHei", sans-serif;
}
#app input.notice,
#app textarea.notice {
  width: 500px;
}
#app table tr td:first-child {
  text-align: center;
}
#app audio {
  width: 300px;
  height: 24px;
  vertical-align: middle;
}
#app .row {
  margin-bottom: 10px;
}
#app .center {
  text-align: center;
}
#app .flex-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
#app .flex-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

@media screen and (max-width: 768px) {
  #app {
    padding: 10px;
  }
  #app input[type=number] {
    width: 80px;
  }
  #app input.notice,
  #app textarea.notice {
    width: 100%;
  }
}/*# sourceMappingURL=index.css.map */