*,
*::before,
*::after {
  box-sizing: border-box;
}
a {
  color: currentColor;
  text-decoration: none;
}
input[type="text"],
input[type="password"],
input[type="number"],
textarea {
  -webkit-appearance: none;
}
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-variant: tabular-nums;
  font-feature-settings: "tnum";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: none;
  background-color: #fbfbfb;
  -webkit-text-size-adjust: none !important;
  text-size-adjust: none !important;
  -moz-text-size-adjust: none !important;
}
.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.container header {
  background-color: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
  position: sticky;
  top: 0;
  text-align: center;
}
.container footer {
  margin-top: auto;
  padding: 10px 0;
  font-size: 0.875rem;
  text-align: center;
  background-color: #f8f9fa;
}
.content {
  width: 100%;
  max-width: 800px;
  padding: 10px;
  margin: 0 auto;
}
.top h1 {
  font-size: 1.4rem;
  text-align: center;
  margin: 30px 0;
  font-weight: 600;
}
.wrap {
  border-radius: 10px;
  background-color: #fff;
  margin: 40px 0;
  padding: 20px;
  border: 1px solid #ebeef5;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
}
.wrap .list {
  padding: 20px 0;
  display: flex;
  align-items: center;
}
.wrap .list .label {
  width: 80px;
  color: #409eff;
}
.wrap .list .inner {
  flex: 1;
}
.wrap .list .inner input {
  width: 100%;
  height: 40px;
  border: 1px solid #dee2e6;
  padding: 0 10px;
  outline: none;
  font-size: 1rem;
  color: #409eff;
  border-radius: 4px;
}
.wrap .list .inner input:active,
.wrap .list .inner input:focus {
  border-color: #409eff;
}
.wrap .list #ismark {
  flex: inherit;
  width: 20px;
  margin: 0;
}
.wrap .list .btn {
  width: 100px;
  height: 36px;
  cursor: pointer;
  border-radius: 4px;
  border: 1px solid #b3d8ff;
  color: #409eff;
  background: #ecf5ff;
  outline: none;
}
.wrap .list .result-content {
  display: flex;
  width: 100%;
  align-items: center;
}
.wrap .list .result-content .result {
  border: 1px solid #b3d8ff;
  background: #ecf5ff;
  color: #409eff;
  height: 36px;
  line-height: 36px;
  padding: 0 10px;
  flex: 1;
  border-radius: 4px 0 0 4px;
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 2px;
  font-family: Menlo, Monaco, Consolas, Inconsolata, Courier, monospace, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol", Symbola, EmojiSymbols;
}
.wrap .list .result-content .copy {
  height: 36px;
  border-radius: 0 4px 4px 0;
  border-left: 0;
}
.wrap .list.info ul {
  padding-left: 1em;
}
.wrap .list.info ul li {
  padding: 10px;
  color: #e6a23c;
}
.wrap .dec {
  color: #666;
}
