:root {
  --v2-line: rgba(48, 42, 30, 0.12);
  --v2-ink: #1f2328;
}

body {
  background: #e8e6df;
  display: flex;
  justify-content: center;
  padding: 24px 0 40px;
}

#wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

.v2-phone {
  width: 100%;
  max-width: 430px;
  min-height: calc(100vh - 64px);
  position: relative;
  background: #f6f7f3;
  border-radius: 28px;
  box-shadow: 0 22px 48px -30px rgba(0, 0, 0, 0.4), 0 10px 22px -20px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.v2-status-bar {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 700;
}

.v2-status-bar .group {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.v2-appbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  height: 48px;
}

.v2-appbar .back {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--v2-ink);
}

.v2-appbar .back .v2-ic {
  width: 22px;
  height: 22px;
}

.v2-appbar .title {
  font-size: 16px;
  font-weight: 700;
  color: var(--v2-ink);
}

.v2-appbar .sp {
  width: 38px;
  height: 38px;
}

.v2-progress {
  padding: 0 22px 12px;
}

.v2-progress .bar {
  height: 8px;
  background: #d8ddd3;
  border-radius: 999px;
  overflow: hidden;
}

.v2-progress .bar i {
  display: block;
  height: 100%;
  width: 50%;
  background: linear-gradient(90deg, #45bc38, #34ab2a);
}

.v2-progress .step {
  margin-top: 8px;
  font-size: 12px;
  color: #6f766e;
  font-weight: 700;
}

.v2-scroll {
  padding: 8px 22px 26px;
  max-height: calc(100vh - 64px - 112px);
  overflow-y: auto;
}

.term_content {
  color: #30352f;
  font-size: 14px;
  line-height: 1.72;
  word-break: break-word;
}

.term_content * {
  white-space: revert;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  max-width: 100%;
}

.term_content h1,
.term_content h2,
.term_content h3,
.term_content h4 {
  color: #1f2328;
  margin: 14px 0 8px;
  font-weight: 800;
}

.term_content p,
.term_content li {
  margin: 6px 0;
}

.term_content ul,
.term_content ol {
  margin: 6px 0 10px 18px;
}

@media (max-width: 460px) {
  body {
    padding: 0;
  }

  .v2-phone {
    max-width: 100%;
    min-height: 100vh;
    border-radius: 0;
    box-shadow: none;
  }

  .v2-scroll {
    max-height: calc(100vh - 112px);
  }
}
