:root {
  --adm-radius-s: 4px;
  --adm-radius-m: 8px;
  --adm-radius-l: 12px;
  --adm-font-size-1: 9px;
  --adm-font-size-2: 10px;
  --adm-font-size-3: 11px;
  --adm-font-size-4: 12px;
  --adm-font-size-5: 13px;
  --adm-font-size-6: 14px;
  --adm-font-size-7: 15px;
  --adm-font-size-8: 16px;
  --adm-font-size-9: 17px;
  --adm-font-size-10: 18px;
  --adm-color-primary: #1677ff;
  --adm-color-success: #00b578;
  --adm-color-warning: #ff8f1f;
  --adm-color-danger: #ff3141;
  --adm-color-text: #333333;
  --adm-color-text-secondary: #666666;
  --adm-color-weak: #999999;
  --adm-color-light: #cccccc;
  --adm-color-border: #eeeeee;
  --adm-color-background: #ffffff;
  --adm-color-white: #ffffff;
  --adm-color-box: #f5f5f5;
  --adm-color-text-light-solid: var(--adm-color-white);
  --adm-color-text-dark-solid: #000000;
  --adm-color-fill-content: var(--adm-color-box);
  --adm-font-size-main: var(--adm-font-size-5);
  --adm-font-family: -apple-system, blinkmacsystemfont, 'Helvetica Neue',
    helvetica, segoe ui, arial, roboto, 'PingFang SC', 'miui',
    'Hiragino Sans GB', 'Microsoft Yahei', sans-serif;
  --adm-border-color: var(--adm-color-border);
}
html[data-prefers-color-scheme='dark'] {
  --adm-color-primary: #3086ff;
  --adm-color-success: #34b368;
  --adm-color-warning: #ffa930;
  --adm-color-danger: #ff4a58;
  --adm-color-text: #e6e6e6;
  --adm-color-text-secondary: #b3b3b3;
  --adm-color-weak: #808080;
  --adm-color-light: #4d4d4d;
  --adm-color-border: #2b2b2b;
  --adm-color-box: #0a0a0a;
  --adm-color-background: #1a1a1a;
  --adm-border-color: var(--adm-color-border);
}
:root {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  color: var(--adm-color-text);
  font-size: var(--adm-font-size-main);
  font-family: var(--adm-font-family);
}
a,
button {
  cursor: pointer;
}
a {
  color: var(--adm-color-primary);
  transition: opacity ease-in-out 0.2s;
}
a:active {
  opacity: 0.8;
}
.adm-plain-anchor {
  color: unset;
  transition: none;
}
.adm-plain-anchor:active {
  opacity: unset;
}
body.adm-overflow-hidden {
  overflow: hidden !important;
}
div.adm-px-tester {
  --size: 1;
  height: calc(var(--size) / 2 * 2px);
  width: 0;
  position: fixed;
  right: -100vw;
  bottom: -100vh;
  -webkit-user-select: none;
          user-select: none;
  pointer-events: none;
}

.adm-button {
  --color: var(--adm-color-text-light-solid);
  --text-color: var(--adm-button-text-color, var(--adm-color-text));
  --background-color: var(--adm-button-background-color, var(--adm-color-background));
  --border-radius: var(--adm-button-border-radius, 4px);
  --border-width: var(--adm-button-border-width, 1px);
  --border-style: var(--adm-button-border-style, solid);
  --border-color: var(--adm-button-border-color, var(--adm-color-border));
  color: var(--text-color);
  background-color: var(--background-color);
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  height: auto;
  padding: 7px 12px;
  margin: 0;
  font-size: var(--adm-font-size-9);
  line-height: 1.4;
  text-align: center;
  border: var(--border-width) var(--border-style) var(--border-color);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: opacity ease 0.15s;
  -webkit-user-select: none;
          user-select: none;
}
.adm-button:focus {
  outline: none;
}
.adm-button::before {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(calc(var(--border-width) * -1), calc(var(--border-width) * -1));
  width: 100%;
  height: 100%;
  background-color: #000;
  border: var(--border-width) var(--border-style) #000;
  border-radius: var(--border-radius);
  opacity: 0;
  content: ' ';
  box-sizing: content-box;
}
.adm-button:active::before {
  opacity: 0.08;
}
.adm-button-default.adm-button-fill-outline {
  --background-color: transparent;
  --border-color: var(--adm-color-text);
}
.adm-button-default.adm-button-fill-none {
  --background-color: transparent;
  --border-width: 0px;
}
.adm-button:not(.adm-button-default) {
  --text-color: var(--adm-color-text-light-solid);
  --background-color: var(--color);
  --border-color: var(--color);
}
.adm-button:not(.adm-button-default).adm-button-fill-outline {
  --text-color: var(--color);
  --background-color: transparent;
}
.adm-button:not(.adm-button-default).adm-button-fill-none {
  --text-color: var(--color);
  --background-color: transparent;
  --border-width: 0px;
}
.adm-button-primary {
  --color: var(--adm-color-primary);
}
.adm-button-success {
  --color: var(--adm-color-success);
}
.adm-button-danger {
  --color: var(--adm-color-danger);
}
.adm-button-warning {
  --color: var(--adm-color-warning);
}
.adm-button-block {
  display: block;
  width: 100%;
}
.adm-button-disabled {
  cursor: not-allowed;
  opacity: 0.4;
}
.adm-button-disabled:active::before {
  display: none;
}
.adm-button.adm-button-mini {
  padding-top: 3px;
  padding-bottom: 3px;
  font-size: var(--adm-font-size-main);
}
.adm-button.adm-button-mini.adm-button-shape-rounded {
  padding-left: 9px;
  padding-right: 9px;
}
.adm-button.adm-button-small {
  padding-top: 3px;
  padding-bottom: 3px;
  font-size: var(--adm-font-size-7);
}
.adm-button.adm-button-large {
  padding-top: 11px;
  padding-bottom: 11px;
  font-size: var(--adm-font-size-10);
}
.adm-button.adm-button-shape-rounded {
  --border-radius: 1000px;
}
.adm-button.adm-button-shape-rectangular {
  --border-radius: 0;
}
.adm-button-loading {
  vertical-align: bottom;
}
.adm-button-loading-wrapper {
  display: flex;
  height: 1.4em;
  align-items: center;
  justify-content: center;
}
.adm-button-loading-wrapper > .adm-loading {
  opacity: 0.6;
}

.adm-dot-loading {
  display: inline-block;
}

.adm-dialog {
  --z-index: var(--adm-dialog-z-index, 1000);
  ---z-index: var(--z-index);
}
.adm-dialog .adm-center-popup {
  --z-index: var(---z-index);
}
.adm-dialog-body {
  width: 100%;
  max-height: 70vh;
  font-size: var(--adm-font-size-6);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.adm-dialog-body > * {
  flex: none;
}
.adm-dialog-body > .adm-dialog-content {
  flex: auto;
}
.adm-dialog-body:not(.adm-dialog-with-image) {
  padding-top: 20px;
}
.adm-dialog-image-container {
  margin-bottom: 12px;
  max-height: 40vh;
}
.adm-dialog-header {
  margin-bottom: 8px;
  padding: 0 12px;
}
.adm-dialog-title {
  margin-bottom: 8px;
  padding: 0 12px;
  font-weight: bold;
  font-size: var(--adm-font-size-10);
  line-height: 25px;
  text-align: center;
}
.adm-dialog-content {
  padding: 0 12px 20px;
  max-height: 70vh;
  overflow-x: hidden;
  overflow-y: auto;
  font-size: var(--adm-font-size-7);
  line-height: 1.4;
  color: var(--adm-color-text);
}
.adm-dialog-content-empty {
  padding: 0;
  height: 12px;
}
.adm-dialog-footer {
  -webkit-user-select: none;
          user-select: none;
}
.adm-dialog-footer .adm-dialog-action-row {
  display: flex;
  align-items: stretch;
  border-top: 0.5px solid var(--adm-color-border);
}
.adm-dialog-footer .adm-dialog-action-row > * {
  flex: 1;
}
.adm-dialog-footer .adm-dialog-action-row > .adm-dialog-button {
  padding: 10px;
  font-size: var(--adm-font-size-10);
  line-height: 25px;
  border-radius: 0;
  border-right: solid 0.5px var(--adm-color-border);
}
.adm-dialog-footer .adm-dialog-action-row > .adm-dialog-button-bold {
  font-weight: bold;
}
.adm-dialog-footer .adm-dialog-action-row > .adm-dialog-button:last-child {
  border-right: none;
}
.adm-dialog-image-container {
  overflow-y: auto;
}

.adm-image {
  --width: var(--adm-image-width, auto);
  --height: var(--adm-image-height, auto);
  width: var(--width);
  height: var(--height);
  display: block;
  overflow: hidden;
}
.adm-image-img {
  width: 100%;
  height: 100%;
}
.adm-image-tip {
  position: relative;
  background-color: var(--adm-color-fill-content);
  height: 100%;
  min-height: 24px;
  min-width: 24px;
}
.adm-image-tip > svg {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--adm-color-weak);
}

.adm-auto-center {
  display: flex;
  justify-content: center;
}
.adm-auto-center-content {
  flex: 0 1 auto;
}

.adm-center-popup {
  --background-color: var(--adm-center-popup-background-color, var(--adm-color-background));
  --border-radius: var(--adm-center-popup-border-radius, 8px);
  --max-width: var(--adm-center-popup-max-width, 75vw);
  --min-width: var(--adm-center-popup-min-width, 280px);
  --z-index: var(--adm-center-popup-z-index, 1000);
  position: fixed;
  z-index: var(--z-index);
}
.adm-center-popup .adm-center-popup-mask {
  z-index: 0;
}
.adm-center-popup-wrap {
  position: fixed;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: auto;
  min-width: var(--min-width);
  max-width: var(--max-width);
  transform: translate(-50%, -50%);
}
.adm-center-popup-body {
  background-color: var(--background-color);
  border-radius: var(--border-radius);
}
.adm-center-popup-close {
  position: absolute;
  z-index: 100;
  right: 8px;
  top: 8px;
  cursor: pointer;
  padding: 4px;
  font-size: 18px;
  color: var(--adm-color-weak);
}

.adm-mask {
  --z-index: var(--adm-mask-z-index, 1000);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-index);
  display: block;
  width: 100%;
  height: 100%;
}
.adm-mask-aria-button {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.adm-mask-content {
  z-index: 1;
}

.adm-form {
  --border-inner: solid 1px var(--adm-border-color);
  --border-top: solid 1px var(--adm-border-color);
  --border-bottom: solid 1px var(--adm-border-color);
  --prefix-width: 6.8em;
  ---border-inner: var(--border-inner);
  ---border-top: var(--border-top);
  ---border-bottom: var(--border-bottom);
  ---prefix-width: var(--prefix-width);
}
.adm-form .adm-list.adm-list {
  --padding-left: 16px;
  --padding-right: 12px;
  --border-inner: var(---border-inner);
  --border-top: var(---border-top);
  --border-bottom: var(---border-bottom);
}
.adm-form .adm-form-footer {
  padding: 20px 12px;
}
.adm-form .adm-form-item-horizontal.adm-list-item {
  --prefix-width: var(---prefix-width);
}
.adm-form-list-operation {
  text-align: center;
  color: #1677ff;
}
.adm-form-item + .adm-form-item {
  border-top: none;
}
.adm-form-item-label {
  display: block;
  height: 100%;
  line-height: 1.5;
  box-sizing: border-box;
  position: relative;
  color: var(--adm-color-text-secondary);
}
.adm-form-item-label .adm-form-item-required-asterisk {
  position: absolute;
  left: -0.6em;
  top: 0;
  font-family: SimSun, sans-serif;
  color: var(--adm-color-danger);
  -webkit-user-select: none;
          user-select: none;
}
.adm-form-item-label .adm-form-item-required-text {
  margin-left: 4px;
  color: var(--adm-color-weak);
}
.adm-form-item-label-help {
  margin-left: 4px;
  cursor: pointer;
}
.adm-form-item-child {
  display: flex;
}
.adm-form-item-child-position-normal {
  justify-content: normal;
}
.adm-form-item-child-position-normal > * {
  flex: auto;
}
.adm-form-item-child-position-right {
  justify-content: flex-end;
}
.adm-form-item-child-position-right > * {
  flex: none;
}
.adm-form-item-feedback-error {
  color: var(--adm-color-danger);
  margin-top: 4px;
}
.adm-form-item-feedback-warning {
  color: var(--adm-color-warning);
  margin-top: 4px;
}
.adm-form-item.adm-form-item-hidden {
  display: none;
}
.adm-form-item.adm-form-item-horizontal.adm-list-item {
  --align-items: stretch;
}
.adm-form-item.adm-form-item-horizontal .adm-list-item-content-prefix {
  padding-top: 12px;
  padding-bottom: 12px;
}
.adm-form-item.adm-form-item-horizontal .adm-list-item-content-extra {
  align-self: center;
}
.adm-form-item.adm-form-item-vertical .adm-form-item-label {
  font-size: var(--adm-font-size-7);
  margin-bottom: 4px;
}

.adm-list {
  --header-font-size: var(--adm-font-size-7);
  --prefix-width: 'auto';
  --prefix-padding-right: 12px;
  --align-items: center;
  --active-background-color: var(--adm-color-border);
  --border-inner: solid 1px var(--adm-color-border);
  --border-top: solid 1px var(--adm-color-border);
  --border-bottom: solid 1px var(--adm-color-border);
  --padding-left: 12px;
  --padding-right: 12px;
  --font-size: var(--adm-font-size-9);
  --extra-max-width: 70%;
}
.adm-list-header {
  color: var(--adm-color-weak);
  font-size: var(--header-font-size);
  padding: 8px var(--padding-right) 8px var(--padding-left);
}
.adm-list-body {
  background-color: var(--adm-color-background);
  overflow: hidden;
  font-size: var(--font-size);
}
.adm-list-body-inner {
  margin-top: -1px;
}
.adm-list-default .adm-list-body {
  border-top: var(--border-top);
  border-bottom: var(--border-bottom);
}
.adm-list-card {
  margin: 12px;
}
.adm-list-card .adm-list-body {
  border-radius: 8px;
}
.adm-list-card .adm-list-header {
  padding-left: 0;
}
.adm-list-item {
  display: block;
  padding-left: var(--padding-left);
  position: relative;
  background-color: var(--adm-color-background);
  line-height: 1.5;
}
.adm-list-item-title,
.adm-list-item-description {
  color: var(--adm-color-weak);
  font-size: var(--adm-font-size-main);
}
.adm-list-item-content {
  display: flex;
  align-items: var(--align-items);
  justify-content: flex-start;
  border-top: var(--border-inner);
  padding-right: var(--padding-right);
}
.adm-list-item-content-prefix {
  width: var(--prefix-width);
  flex: none;
  padding-right: var(--prefix-padding-right);
}
.adm-list-item-content-main {
  flex: auto;
  padding: 12px 0;
}
.adm-list-item-content-extra {
  flex: none;
  padding-left: 12px;
  font-size: var(--adm-font-size-7);
  color: var(--adm-color-weak);
  max-width: var(--extra-max-width);
}
.adm-list-item-content-arrow {
  flex: none;
  display: flex;
  align-items: center;
  margin-left: 4px;
  color: var(--adm-color-light);
  font-size: 19px;
}
.adm-list-item-disabled {
  cursor: not-allowed;
}
.adm-list-item-disabled.adm-list-item-disabled > .adm-list-item-content > * {
  opacity: 0.4;
  pointer-events: none;
}
a.adm-list-item:active:not(.adm-list-item-disabled) {
  background-color: var(--active-background-color);
}
a.adm-list-item:active:not(.adm-list-item-disabled)::after {
  content: ' ';
  display: block;
  position: absolute;
  width: 100%;
  bottom: -1px;
  left: 0;
  border-bottom: var(--border-inner);
}

.adm-popover {
  --z-index: var(--adm-popover-z-index, 1030);
  --background: #ffffff;
  --arrow-size: 8px;
  --content-padding: 8px 12px;
  color: var(--adm-color-text);
  position: absolute;
  top: 0;
  left: 0;
  z-index: var(--z-index);
  white-space: normal;
  text-align: left;
  cursor: auto;
  -webkit-user-select: text;
          user-select: text;
  animation: none;
}
.adm-popover.adm-popover-dark {
  --background: rgba(0, 0, 0, 0.75);
  --adm-color-text: #ffffff;
  color: #ffffff;
}
.adm-popover.adm-popover-dark .adm-popover-inner {
  box-shadow: none;
}
.adm-popover::after {
  position: absolute;
  background: rgba(255, 255, 255, 0.01);
  content: '';
}
.adm-popover-hidden {
  display: none;
}
.adm-popover-inner {
  background-color: var(--background);
  background-clip: padding-box;
  border-radius: 8px;
  box-shadow: 0 0 30px 0 rgba(51, 51, 51, 0.2);
  font-size: var(--adm-font-size-7);
  width: -webkit-max-content;
  width: max-content;
  min-width: 32px;
  max-width: calc(100vw - 24px);
  overflow-y: hidden;
}
.adm-popover-inner-content {
  padding: var(--content-padding);
}
.adm-popover-arrow {
  position: absolute;
  display: block;
  height: var(--arrow-size);
  width: var(--arrow-size);
  overflow: visible;
  background: transparent;
}
.adm-popover-arrow-icon {
  display: block;
  height: var(--arrow-size);
  width: calc(var(--arrow-size) / 8 * 15);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(var(--arrow-icon-rotate));
}
.adm-popover .adm-popover-arrow {
  color: var(--background);
}

.adm-popover-menu {
  --border-color: #eeeeee;
}
.adm-popover-menu.adm-popover {
  --content-padding: 0;
}
.adm-popover-menu-list {
  overflow: hidden;
  min-width: 120px;
}
.adm-popover-menu-list-inner {
  margin-top: -1px;
}
.adm-popover-menu-item {
  display: flex;
  padding-left: 20px;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
.adm-popover-menu-item-icon {
  flex: none;
  padding-right: 8px;
  font-size: 20px;
}
.adm-popover-menu-item-text {
  flex: auto;
  padding: 14px 20px 14px 0;
  border-top: solid 1px var(--border-color);
}
.adm-popover-menu-item-disabled {
  cursor: not-allowed;
}
.adm-popover-menu-item-disabled > * {
  opacity: 0.4;
}
.adm-popover-menu-item:active:not(.adm-popover-menu-item-disabled) {
  background-color: var(--border-color);
}
.adm-popover-menu-item:active:not(.adm-popover-menu-item-disabled)::after {
  content: ' ';
  display: block;
  position: absolute;
  width: 100%;
  bottom: -1px;
  left: 0;
  border-bottom: solid 1px var(--border-color);
}
.adm-popover.adm-popover-dark.adm-popover-menu {
  --border-color: #333333;
  --background: rgba(0, 0, 0, 0.9);
}

.adm-infinite-scroll {
  color: var(--adm-color-weak);
  padding: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--adm-font-size-main);
}
.adm-infinite-scroll-failed-text {
  display: inline-block;
  margin-right: 8px;
}

.adm-input {
  --font-size: var(--adm-font-size-9);
  --color: var(--adm-color-text);
  --placeholder-color: var(--adm-color-light);
  --text-align: left;
  --background-color: transparent;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  min-height: 24px;
  background-color: var(--background-color);
}
.adm-input-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.adm-input-element {
  flex: auto;
  display: inline-block;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  padding: 0;
  margin: 0;
  color: var(--color);
  font-size: var(--font-size);
  line-height: 1.5;
  background: transparent;
  border: 0;
  outline: none;
  -webkit-appearance: none;
          appearance: none;
  min-height: 1.5em;
  text-align: var(--text-align);
}
.adm-input-element::-webkit-input-placeholder {
  color: var(--placeholder-color);
  font-family: inherit;
}
.adm-input-element::placeholder {
  color: var(--placeholder-color);
  font-family: inherit;
}
.adm-input-element:-webkit-autofill {
  background-color: transparent;
}
.adm-input-element:read-only {
  cursor: default;
}
.adm-input-element:invalid {
  box-shadow: none;
}
.adm-input-element::-ms-clear {
  display: none;
}
.adm-input-element::-ms-reveal {
  display: none;
}
.adm-input-element::-webkit-search-cancel-button {
  display: none;
}
.adm-input-element::-webkit-search-decoration {
  display: none;
}
.adm-input-element:disabled {
  opacity: 1;
}
.adm-input-element[type='date'],
.adm-input-element[type='time'],
.adm-input-element[type='datetime-local'] {
  min-height: 1.5em;
}
.adm-input-element[type='search'] {
  -webkit-appearance: none;
}
.adm-input-element[readonly] {
  pointer-events: none;
}
.adm-input-clear {
  flex: none;
  margin-left: 8px;
  color: var(--adm-color-light);
  padding: 4px;
  cursor: pointer;
}
.adm-input-clear:active {
  color: var(--adm-color-weak);
}
.adm-input-clear .antd-mobile-icon {
  display: block;
  font-size: var(--adm-font-size-7);
}

.adm-modal {
  --z-index: var(--adm-modal-z-index, 1000);
  ---z-index: var(--z-index);
}
.adm-modal .adm-center-popup {
  --z-index: var(---z-index);
}
.adm-modal-body {
  width: 100%;
  max-height: 70vh;
  font-size: var(--adm-font-size-6);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.adm-modal-body > * {
  flex: none;
}
.adm-modal-body > .adm-modal-content {
  flex: auto;
}
.adm-modal-body:not(.adm-modal-with-image) {
  padding-top: 20px;
}
.adm-modal-image-container {
  margin-bottom: 12px;
  max-height: 40vh;
  overflow-y: scroll;
}
.adm-modal-header {
  margin-bottom: 8px;
  padding: 0 12px;
}
.adm-modal-title {
  margin-bottom: 8px;
  padding: 0 12px;
  font-weight: bold;
  font-size: var(--adm-font-size-10);
  line-height: 25px;
  text-align: center;
}
.adm-modal-content {
  padding: 0 12px 12px;
  max-height: 70vh;
  overflow-x: hidden;
  overflow-y: auto;
  font-size: var(--adm-font-size-7);
  line-height: 1.4;
  color: var(--adm-color-text);
}
.adm-modal-footer {
  -webkit-user-select: none;
          user-select: none;
  padding: 8px 12px 12px;
}
.adm-modal-footer-empty {
  padding: 0;
  height: 8px;
}
.adm-modal-footer.adm-space {
  --gap-vertical: 20px;
}
.adm-modal-footer .adm-modal-button {
  font-size: var(--adm-font-size-10);
  line-height: 25px;
}
.adm-modal-footer .adm-modal-button:not(.adm-modal-button-primary) {
  padding-top: 0;
  padding-bottom: 0;
}
.adm-modal-footer .adm-modal-button:not(.adm-modal-button-primary)::before {
  display: none;
}
.adm-modal-footer .adm-modal-button:not(.adm-modal-button-primary):active {
  opacity: 0.7;
}

.adm-space-item {
  flex: none;
}
.adm-space {
  display: inline-flex;
  --gap: 8px;
  --gap-vertical: var(--gap);
  --gap-horizontal: var(--gap);
}
.adm-space-vertical {
  flex-direction: column;
}
.adm-space-vertical > .adm-space-item {
  margin-bottom: var(--gap-vertical);
}
.adm-space-vertical > .adm-space-item:last-child {
  margin-bottom: 0;
}
.adm-space-horizontal {
  flex-direction: row;
}
.adm-space-horizontal > .adm-space-item {
  margin-right: var(--gap-horizontal);
}
.adm-space-horizontal > .adm-space-item:last-child {
  margin-right: 0;
}
.adm-space-horizontal.adm-space-wrap {
  flex-wrap: wrap;
  margin-bottom: calc(var(--gap-vertical) * -1);
}
.adm-space-horizontal.adm-space-wrap > .adm-space-item {
  padding-bottom: var(--gap-vertical);
}
.adm-space.adm-space-block {
  display: flex;
}
.adm-space-align-center {
  align-items: center;
}
.adm-space-align-start {
  align-items: flex-start;
}
.adm-space-align-end {
  align-items: flex-end;
}
.adm-space-align-baseline {
  align-items: baseline;
}
.adm-space-justify-center {
  justify-content: center;
}
.adm-space-justify-start {
  justify-content: flex-start;
}
.adm-space-justify-end {
  justify-content: flex-end;
}
.adm-space-justify-between {
  justify-content: space-between;
}
.adm-space-justify-around {
  justify-content: space-around;
}
.adm-space-justify-evenly {
  justify-content: space-evenly;
}
.adm-space-justify-stretch {
  justify-content: stretch;
}

.adm-nav-bar {
  --height: 45px;
  --border-bottom: none;
  display: flex;
  align-items: center;
  height: var(--height);
  border-bottom: var(--border-bottom);
  padding: 0 12px;
  white-space: nowrap;
}
.adm-nav-bar-left,
.adm-nav-bar-right {
  flex: 1;
}
.adm-nav-bar-title {
  flex: auto;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
}
.adm-nav-bar-back {
  display: flex;
  align-items: center;
  margin-right: 16px;
  padding: 6px 0;
  cursor: pointer;
}
.adm-nav-bar-back-arrow {
  font-size: 24px;
  margin-right: 4px;
}
.adm-nav-bar-left {
  font-size: var(--adm-font-size-7);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.adm-nav-bar-title {
  justify-content: center;
  white-space: nowrap;
  font-size: var(--adm-font-size-10);
  padding: 0 12px;
}
.adm-nav-bar-right {
  text-align: right;
}

.adm-progress-bar {
  --track-width: var(--adm-progress-bar-track-width, 8px);
  --track-color: var(--adm-progress-bar-track-color, #e5e5e5);
  --fill-color: var(--adm-progress-bar-fill-color, var(--adm-color-primary));
  --text-width: var(--adm-progress-bar-text-width, 40px);
  display: flex;
  align-items: center;
}
.adm-progress-bar-trail {
  flex: auto;
  background: var(--track-color);
  overflow: hidden;
  height: var(--track-width);
}
.adm-progress-bar-fill {
  transition: width 0.3s;
  background: var(--fill-color);
  height: var(--track-width);
}
.adm-progress-bar-text {
  flex: none;
  width: calc(var(--text-width) + 8px);
  padding-left: 8px;
  color: #999999;
}
.adm-progress-bar-rounded .adm-progress-bar-trail,
.adm-progress-bar-rounded .adm-progress-bar-fill {
  border-radius: var(--track-width);
}

.adm-radio {
  --icon-size: 22px;
  --font-size: var(--adm-font-size-9);
  --gap: 8px;
  display: inline-flex;
  vertical-align: text-bottom;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
}
.adm-radio input {
  display: none;
}
.adm-radio .adm-radio-icon {
  flex: none;
  border: 1px solid var(--adm-color-light);
  border-radius: var(--icon-size);
  box-sizing: border-box;
  width: var(--icon-size);
  height: var(--icon-size);
  color: var(--adm-color-text-light-solid);
}
.adm-radio .adm-radio-icon > svg {
  display: block;
  width: 100%;
  height: 100%;
}
.adm-radio.adm-radio-block {
  display: flex;
}
.adm-radio.adm-radio-checked .adm-radio-icon {
  border-color: var(--adm-color-primary);
  background-color: var(--adm-color-primary);
}
.adm-radio.adm-radio-disabled {
  cursor: not-allowed;
}
.adm-radio.adm-radio-disabled .adm-radio-content {
  opacity: 0.4;
}
.adm-radio.adm-radio-disabled .adm-radio-icon {
  color: #b7b7b7;
  border-color: var(--adm-color-light);
  background-color: var(--adm-color-fill-content);
}
.adm-radio .adm-radio-custom-icon {
  font-size: var(--icon-size);
}
.adm-radio-content {
  flex: 0 1 auto;
  font-size: var(--font-size);
  padding-left: var(--gap);
}

.adm-search-bar {
  --height: 32px;
  --padding-left: 8px;
  --background: var(--adm-color-fill-content);
  --border-radius: 6px;
  --placeholder-color: var(--adm-color-weak);
  ---placeholder-color: var(--placeholder-color);
  display: flex;
  justify-content: center;
  align-items: center;
  height: var(--height);
}
.adm-search-bar .adm-search-bar-input-box {
  flex: auto;
  background: var(--background);
  border-radius: var(--border-radius);
  border: solid 1px transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: var(--padding-left);
}
.adm-search-bar .adm-search-bar-input-box .adm-search-bar-input-box-icon {
  flex: none;
  color: var(--adm-color-light);
  font-size: var(--adm-font-size-8);
}
.adm-search-bar .adm-search-bar-input-box .adm-search-bar-input {
  flex: auto;
  padding: 4px 8px 4px 4px;
  height: calc(var(--height) - 2px);
  box-sizing: border-box;
}
.adm-search-bar .adm-search-bar-input-box .adm-search-bar-input.adm-input {
  --placeholder-color: var(---placeholder-color);
  --font-size: var(--adm-font-size-7);
}
.adm-search-bar .adm-search-bar-input-box .adm-search-bar-input .adm-input-element {
  line-height: 19px;
}
.adm-search-bar .adm-search-bar-input-box .adm-search-bar-input.adm-search-bar-input-without-icon {
  padding-left: 8px;
}
.adm-search-bar .adm-search-bar-suffix {
  flex: none;
  margin-left: 4px;
}
.adm-search-bar .adm-search-bar-cancel-button.adm-button {
  padding: 3px 12px;
}
.adm-search-bar-active .adm-input.adm-input.adm-input {
  --placeholder-color: var(--adm-color-light);
}
.adm-search-bar-active .adm-search-bar-input-box {
  border-color: var(--adm-color-primary);
  background: var(--adm-color-background);
}

.adm-spin-loading {
  --color: var(--adm-color-weak);
  --size: 32px;
  width: var(--size);
  height: var(--size);
}
.adm-spin-loading-svg {
  width: 100%;
  height: 100%;
  animation: adm-spin-loading-rotate 0.8s infinite linear;
}
.adm-spin-loading-svg > .adm-spin-loading-fill {
  stroke: var(--color);
}
@keyframes adm-spin-loading-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.adm-toast-mask .adm-toast-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.adm-toast-mask .adm-toast-main {
  display: inline-block;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  max-width: 204px;
  max-height: 70%;
  overflow: auto;
  color: white;
  word-break: break-all;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 8px;
  pointer-events: all;
  font-size: var(--adm-font-size-7);
  line-height: 1.5;
  box-sizing: border-box;
}
.adm-toast-mask .adm-toast-main-text {
  padding: 12px;
  min-width: 0px;
}
.adm-toast-mask .adm-toast-main-icon {
  padding: 35px 12px;
  min-width: 150px;
}
.adm-toast-mask .adm-toast-main-icon .adm-toast-icon {
  text-align: center;
  margin-bottom: 8px;
  font-size: 36px;
  line-height: 1;
}
.adm-toast-loading {
  --size: 48px;
  margin: 0 auto 8px;
}

.adm-footer {
  --background-color: var(--adm-color-background);
  color: var(--adm-color-text);
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--background-color);
}
.adm-footer-label {
  width: 100%;
}
.adm-footer-label .adm-divider.adm-divider {
  color: var(--adm-color-light);
}
.adm-footer-links {
  margin: 8px 0;
  color: var(--adm-color-primary);
  white-space: nowrap;
}
.adm-footer-links a {
  text-decoration: none;
}
.adm-footer-content {
  display: flex;
  align-items: center;
  margin: 8px 0;
  color: var(--adm-color-light);
}
.adm-footer-chips {
  display: flex;
  align-items: center;
  white-space: nowrap;
  margin: 8px 0;
}
.adm-footer-chip {
  white-space: nowrap;
  margin-right: 20px;
  font-size: 12px;
  background-color: var(--adm-color-fill-content);
  color: var(--adm-color-weak);
  padding: 4px 12px;
  border-radius: 100px;
}
.adm-footer-chip-link {
  cursor: pointer;
  background-color: #e7f1ff;
  color: var(--adm-color-primary);
}
.adm-footer-chip:last-child {
  margin-right: 0;
}

.adm-divider-horizontal {
  display: flex;
  align-items: center;
  margin: 16px 0;
  border-width: 0;
  border-color: var(--adm-color-border);
  border-style: solid;
  color: var(--adm-color-weak);
  font-size: 14px;
}
.adm-divider-left.adm-divider-horizontal::before {
  max-width: 10%;
}
.adm-divider-right.adm-divider-horizontal::after {
  max-width: 10%;
}
.adm-divider-horizontal::after,
.adm-divider-horizontal::before {
  flex: auto;
  display: block;
  content: '';
  border-style: inherit;
  border-color: inherit;
  border-width: 1px 0 0;
}
.adm-divider-horizontal .adm-divider-content {
  flex: none;
  padding: 0 16px;
}
.adm-divider-vertical {
  position: relative;
  top: -0.06em;
  display: inline-block;
  height: 0.9em;
  margin: 0 16px;
  vertical-align: middle;
  border-top: 0;
  border-left: 1px solid var(--adm-color-border);
}

html {
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #3b3b3b;
}

* {
  margin: 0;
  padding: 0;
}

a {
  color: #3b3b3b;
  text-decoration: none;
  outline: none;
}

a img {
  border: 0;
}

.styles__container___bHyQa {
  height: 100vh;
  background: linear-gradient(180deg, rgba(52, 118, 204, 1) 170px, rgba(236, 244, 246, 1) 397px);
  overflow: hidden;
}

  .styles__container___bHyQa .styles__form_list___GQuv6 {
    height: 100vh;
    margin-top: 95px;
    overflow: hidden;
  }

  .styles__container___bHyQa .styles__form_list___GQuv6 .styles__form_list_top___CqTel {
      width: calc(100% - 60px);
      margin: 0 30px;
      display: flex;
      align-items: center;
    }

  .styles__container___bHyQa .styles__form_list___GQuv6 .styles__form_list_top___CqTel .styles__form_list_logo___VTjbP {
        width: 63px;
        height: 65px;
      }

  .styles__container___bHyQa .styles__form_list___GQuv6 .styles__form_list_top___CqTel .styles__form_list_title___GFmXm {
        font-family: 'Arial Negreta', 'Arial Normal', 'Arial';
        font-weight: 700;
        font-style: normal;
        font-size: 28px;
        color: #FFFFFF;
        margin-left: 15px;
      }

  .styles__container___bHyQa .styles__form_list___GQuv6 .styles__searchBox___R7Nd9 {
      width: calc(100% - 32px);
      margin: 0 16px;
      margin-top: 15px;
    }

  .styles__container___bHyQa .styles__form_list___GQuv6 .styles__form_box___NeZFS {
      width: calc(100% - 32px);
      margin: 0 16px;
      height: calc(100% - 95px - 65px - 30px - 60px - 36px - 15px);
      border-radius: 10px;
      background-color: #FFFFFF;
      margin-top: 25px;
      overflow: hidden;
      overflow-y: auto;
      --border-bottom: 0;
      --align-items: center;
    }

  .styles__container___bHyQa .styles__form_list___GQuv6 .styles__form_box___NeZFS .styles__form_li___zsKAL {
        width: 100%;
        height: 110px;
        --align-items: flex-start;
        --extra-margin-top: 50%;
      }

  .styles__container___bHyQa .styles__form_list___GQuv6 .styles__form_box___NeZFS .styles__form_li___zsKAL .styles__form_li_title___jSrfL {
          font-size: 16px;
          color: #1D1D1D;
          line-height: 24px;
          overflow: hidden;
          white-space: nowrap;
          text-overflow: ellipsis;
        }

  .styles__container___bHyQa .styles__form_list___GQuv6 .styles__form_box___NeZFS .styles__form_li___zsKAL .styles__mask___Tj5YH {
          position: relative;
          width: -webkit-max-content;
          width: -moz-max-content;
          width: max-content;
          padding: 0 6px;
          border: 1px solid rgba(131, 199, 53, 1);
          color: #83C735;
          font-size: 10px;
          text-align: center;
          margin-top: 5px;
          border-radius: 3px;
        }

  .styles__container___bHyQa .styles__form_list___GQuv6 .styles__form_box___NeZFS .styles__form_li___zsKAL .styles__form_li_date___Fwij_ {
          margin-top: 4px;
          font-size: 14px;
          color: #818181;
          line-height: 24px;
        }

  .styles__container___bHyQa .styles__form_list___GQuv6 .styles__form_box___NeZFS .styles__form_li___zsKAL .styles__form_right_operation___oOwh_ {
          width: 15px;
          height: 15px;
        }

  .styles__container___bHyQa .styles__form_list___GQuv6 .styles__form_box___NeZFS .styles__form_li___zsKAL .adm-list-item-content {
            width: 100%;
            height: 110px;
          }

  .styles__container___bHyQa .styles__form_list___GQuv6 .styles__form_box___NeZFS .styles__form_li___zsKAL .adm-list-item-content-main {
            max-width: calc(100% - 108px);
            margin: 4px 0;
          }

  .styles__container___bHyQa .styles__form_list___GQuv6 .styles__footer_box___X8G20 {
      width: 100%;
      line-height: 50px;
      background-color: transparent;
      z-index: 999;
    }

  .styles__container___bHyQa .styles__form_list___GQuv6 .styles__footer_box___X8G20 .styles__development___Mhm8I {
        display: flex;
        align-items: center;
        justify-content: center;
      }

  .styles__container___bHyQa .styles__form_list___GQuv6 .styles__footer_box___X8G20 .styles__development___Mhm8I span {
          font-size: 13px;
          color: #666666;
        }
/* 答题 */
.detail-styles__container___ZXlof {
  background-color: rgba(247, 247, 247, 1);
}
/* 内容区 */
.detail-styles__container___ZXlof .detail-styles__safe_view___YTwkZ {
    width: calc(100vw - 60px);
    height: calc(100vh - 58px - 30px - 55px);
    min-height: 480px;
    margin: 0 auto;
    margin-top: 30px;
    border-top: 4px solid rgb(52, 118, 204);
    background-color: #ffffff;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    box-shadow: 0px 5px 5px rgba(231, 235, 236, 1);
  }
.detail-styles__container___ZXlof .detail-styles__safe_view___YTwkZ .detail-styles__view_header___IWvwS {
      height: -webkit-max-content;
      height: -moz-max-content;
      height: max-content;
      min-height: 100px;
      max-height: 200px;
      background-color: rgb(223, 239, 250);
      display: flex;
      padding: 0 30px;
    }
.detail-styles__container___ZXlof .detail-styles__safe_view___YTwkZ .detail-styles__view_header___IWvwS .detail-styles__view_header_img___lEENb {
        width: 47px;
        height: 47px;
        padding-top: 25px;
      }
.detail-styles__container___ZXlof .detail-styles__safe_view___YTwkZ .detail-styles__view_header___IWvwS .detail-styles__view_header_box___qDbs2 {
        margin-left: 15px;
        padding: 25px 0;
        flex: 1;
      }
.detail-styles__container___ZXlof .detail-styles__safe_view___YTwkZ .detail-styles__view_header___IWvwS .detail-styles__view_header_box___qDbs2 .detail-styles__view_header_title___Di166 {
          font-family: 'Arial Negreta', 'Arial Normal', 'Arial';
          font-weight: 700;
          font-size: 16px;
          color: #585B67;
          line-height: 24px;
          margin-bottom: 5px
        }
.detail-styles__container___ZXlof .detail-styles__safe_view___YTwkZ .detail-styles__view_header___IWvwS .detail-styles__view_header_box___qDbs2 .detail-styles__view_header_link___JOFLy {
          color: #3476CC;
          font-size: 13px;
        }
.detail-styles__container___ZXlof .detail-styles__safe_view___YTwkZ .detail-styles__view_container___pt2mM {
      height: calc(100% - 100px);
      overflow: hidden;
      overflow-y: auto;

    }
.detail-styles__container___ZXlof .detail-styles__safe_view___YTwkZ .detail-styles__view_container___pt2mM .detail-styles__content_box___T2GzF {
        width: calc(100% - 60px);
        height: calc(100% - 35px);
        margin: 0 30px;
        --border-top: unset;
        --border-bottom: unset;
        --padding-left: 0;
        overflow: hidden;
        overflow-y: auto;
        position: relative;
      }
.detail-styles__container___ZXlof .detail-styles__safe_view___YTwkZ .detail-styles__view_container___pt2mM .detail-styles__content_box___T2GzF .detail-styles__question_title___czD1F {
          font-family: '微软雅黑 Bold', '微软雅黑 Regular', '微软雅黑';
          font-weight: 700;
          font-style: normal;
          font-size: 16px;
          color: black;
        }
.detail-styles__container___ZXlof .detail-styles__safe_view___YTwkZ .detail-styles__view_container___pt2mM .detail-styles__content_box___T2GzF .detail-styles__question_content___tOB_6 {
          display: flex;
          flex-direction: column;
          text-align: left;
        }
.detail-styles__container___ZXlof .detail-styles__safe_view___YTwkZ .detail-styles__view_container___pt2mM .detail-styles__content_box___T2GzF .detail-styles__question_content___tOB_6 label {
            align-items: center;
            box-sizing: content-box;
            font-size: 16px;
          }
.detail-styles__container___ZXlof .detail-styles__safe_view___YTwkZ .detail-styles__view_container___pt2mM .detail-styles__content_box___T2GzF .detail-styles__input_box___mu2Ya {
          align-items: center;
          box-sizing: content-box;
          font-weight: 700;
          margin: 0 0 15px;
          border-radius: 6px;
          border: 1px solid rgb(217 217 217);
        }
.detail-styles__container___ZXlof .detail-styles__safe_view___YTwkZ .detail-styles__view_container___pt2mM .detail-styles__content_box___T2GzF .detail-styles__input_box___mu2Ya input {
            width: 100%;
            height: 30px;
            padding-left: 1em;
            font-size: 14px;
          }
@media (width < 300px) {
        .detail-styles__container___ZXlof .detail-styles__safe_view___YTwkZ .detail-styles__view_container___pt2mM .detail-styles__content_box___T2GzF {
          height: calc(100% - 120px);
        }
      }
.detail-styles__container___ZXlof .detail-styles__safe_view___YTwkZ .detail-styles__view_container___pt2mM .detail-styles__btnBox___Wlh3n {
        width: calc(100%);
        display: flex;
        margin: 0 auto;
        justify-content: space-between;
      }
.detail-styles__container___ZXlof .detail-styles__safe_view___YTwkZ .detail-styles__view_container___pt2mM .detail-styles__btnBox___Wlh3n .detail-styles__btn___o89EW {
          width: 120px;
          height: 48px;
          font-size: 18px;
          border-radius: 6px;
        }
.detail-styles__container___ZXlof .detail-styles__safe_view___YTwkZ .detail-styles__view_container___pt2mM .detail-styles__btnBox___Wlh3n .detail-styles__pre___LkZWu {
          background-color: white;
          color: #3476CC;
          border: 1px solid rgba(52, 118, 204, 1);
        }
.detail-styles__container___ZXlof .detail-styles__safe_view___YTwkZ .detail-styles__view_container___pt2mM .detail-styles__btnBox___Wlh3n .detail-styles__next___ckp78 {
          color: #FFFFFF;
          background-color: rgba(52, 118, 204, 1);
        }
@media (width < 300px) {
          .detail-styles__container___ZXlof .detail-styles__safe_view___YTwkZ .detail-styles__view_container___pt2mM .detail-styles__btnBox___Wlh3n .detail-styles__btn___o89EW {
            width: 75px;
            height: 36px;
            font-size: 14px;
          }
        }
.detail-styles__container___ZXlof .detail-styles__safe_view___YTwkZ .detail-styles__view_container___pt2mM .detail-styles__progressBar___R5FsC {
        position: relative;
        width: calc(100% - 60px);
        margin: 15px auto 0;
        --text-width: 100px;
      }
.detail-styles__container___ZXlof .detail-styles__safe_view___YTwkZ .detail-styles__view_container___pt2mM .adm-list-item,
        .detail-styles__container___ZXlof .detail-styles__safe_view___YTwkZ .detail-styles__view_container___pt2mM .adm-list-body {
          background-color: transparent;
          padding-left: 0;
        }
.detail-styles__container___ZXlof .detail-styles__safe_view___YTwkZ .detail-styles__view_container___pt2mM .adm-list {
          height: calc(100% - 98px);
          overflow: hidden;
          overflow-y: auto;
          margin-top: 10px;
          margin-bottom: 10px;
        }
.detail-styles__container___ZXlof .detail-styles__safe_view___YTwkZ .detail-styles__view_container___pt2mM .adm-form-item-feedback-error {
          font-size: 18px;
          text-indent: 1em;
        }
.detail-styles__container___ZXlof .detail-styles__safe_view___YTwkZ .detail-styles__view_container___pt2mM .adm-form-footer {
          width: 100%;
          position: absolute;
          bottom: 30px;
          padding: 0;
        }
.detail-styles__container___ZXlof .detail-styles__footer_box___nKbf8 {
    width: 100%;
    background-color: transparent;
    z-index: 999;
    margin-top: 7px;
    margin-bottom: 7px;
  }
.detail-styles__container___ZXlof .detail-styles__footer_box___nKbf8 .detail-styles__development___ns2xw {
      display: flex;
      align-items: center;
      justify-content: center;
    }
.detail-styles__container___ZXlof .detail-styles__footer_box___nKbf8 .detail-styles__development___ns2xw span {
        font-size: 13px;
        color: #666666;
      }
  .styles__navBar___rV1tg {
    height: 58px;
    border: none;
    background-color: #ffffff;
    box-shadow: 0px 1px 5px rgba(162, 162, 162, 0.349019607843137);
  }

    .styles__navBar___rV1tg .styles__navBar_logo___pK1su {
      width: 31px;
      height: 32px;
    }

    .styles__navBar___rV1tg .styles__navBar_title___zHfLz {
      background-color: rgba(255, 255, 255, 0);
      font-family: 'Arial Negreta', 'Arial Normal', 'Arial';
      font-weight: 700;
      font-size: 18px;
    }
.styles__notFound___pbYoA {
  text-align: center;
  padding: 50px;
}

  .styles__notFound___pbYoA h1 {
    font-size: 5em;
  }

  .styles__notFound___pbYoA p {
    font-size: 1.5em;
  }

.styles__content___H3imL {
  height: calc(100vh);
  display: flex;
  justify-content: center;
  align-items: center;
}

.styles__loginForm___S3ZmX {
  width: 330px;
  margin-top: -100px;
}

.styles__input___Apu25 {
  margin-bottom: 20px;
}

.styles__loginBtn___U8ip9 {
  margin-top: 10px;
}

.styles__title___n_jiB {
  font-size: 33px;
  text-align: center;
  margin-bottom: 50px;
}

.styles__container___GDnZh {
  background-color: rgba(247, 247, 247, 1);
}

  /* 内容区 */

  .styles__container___GDnZh .styles__safe_view___qQVPT {
    width: calc(100vw - 60px);
    height: calc(100vh - 58px - 30px - 55px);
    margin: 0 auto;
    margin-top: 30px;
    border-top: 4px solid rgb(52, 118, 204);
    background-color: #ffffff;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    box-shadow: 0px 5px 5px rgba(231, 235, 236, 1);
  }

  .styles__container___GDnZh .styles__safe_view___qQVPT .styles__view_header___IzJg7 {
      height: -webkit-max-content;
      height: -moz-max-content;
      height: max-content;
      min-height: 100px;
      max-height: 200px;
      background-color: rgb(223, 239, 250);
      display: flex;
      padding: 0 30px;
    }

  .styles__container___GDnZh .styles__safe_view___qQVPT .styles__view_header___IzJg7 .styles__view_header_img___ajxZp {
        width: 47px;
        height: 47px;
        padding-top: 25px;
      }

  .styles__container___GDnZh .styles__safe_view___qQVPT .styles__view_header___IzJg7 .styles__view_header_box___gcbAZ {
        margin-left: 15px;
        padding: 25px 0;
        flex: 1;
      }

  .styles__container___GDnZh .styles__safe_view___qQVPT .styles__view_header___IzJg7 .styles__view_header_box___gcbAZ .styles__view_header_title___cY1jj {
          font-family: 'Arial Negreta', 'Arial Normal', 'Arial';
          font-weight: 700;
          font-size: 16px;
          color: #585B67;
          line-height: 24px;
          margin-bottom: 5px
        }

  .styles__container___GDnZh .styles__safe_view___qQVPT .styles__view_header___IzJg7 .styles__view_header_box___gcbAZ .styles__view_header_link___RXmQX {
          color: #3476CC;
          font-size: 13px;
        }

  .styles__container___GDnZh .styles__safe_view___qQVPT .styles__view_container___tYC_z {
      position: relative;
      height: calc(100% - 120px);
      overflow: hidden;
      flex: 1;
    }

  .styles__container___GDnZh .styles__safe_view___qQVPT .styles__view_container___tYC_z .styles__view_container_title___GIPKZ {
        font-family: '.萍方-简 Bold', '.萍方-简';
        font-weight: 600;
        font-size: 18px;
        text-align: center;
        margin-top: 20px;
        margin-bottom: 10px
      }

  .styles__container___GDnZh .styles__safe_view___qQVPT .styles__view_container___tYC_z .styles__view_container_box___tD3BU {
        height: calc(100% - 20px - 30px - 48px - 45px);
        overflow: hidden;
        overflow-y: auto;
        padding: 0 30px;
        flex: 1;
      }

  .styles__container___GDnZh .styles__safe_view___qQVPT .styles__view_container___tYC_z .styles__view_container_box___tD3BU .styles__disclaimer_text___hGU_4 {
          font-family: '微软雅黑';
          font-size: 15px;
          color: #666666;
          margin-bottom: 20px;
        }

  .styles__container___GDnZh .styles__safe_view___qQVPT .styles__view_container___tYC_z .styles__view_footer_operation___Xt8qs {
        width: calc(100%);
        position: absolute;
        bottom: 30px;
        display: flex;
        justify-content: center;
      }

  .styles__container___GDnZh .styles__safe_view___qQVPT .styles__view_container___tYC_z .styles__view_footer_operation___Xt8qs .styles__startBtn___j7MQr {
          width: calc(100% - 60px);
          height: 48px;
          font-family: 'Arial Negreta', 'Arial Normal', 'Arial';
          font-weight: 700;
          font-style: normal;
          font-size: 14px;
          color: #FFFFFF;
          background-color: rgba(52, 118, 204, 1);
        }

  .styles__container___GDnZh .styles__footer_box___VUJD7 {
    width: 100%;
    background-color: transparent;
    z-index: 999;
    margin-top: 7px;
    margin-bottom: 7px;
  }

  .styles__container___GDnZh .styles__footer_box___VUJD7 .styles__development___qLZvE {
      display: flex;
      align-items: center;
      justify-content: center;
    }

  .styles__container___GDnZh .styles__footer_box___VUJD7 .styles__development___qLZvE span {
        font-size: 13px;
        color: #666666;
      }
/* 答题 */
.styles__container___s46hG {
  background-color: rgba(247, 247, 247, 1);
}
.styles__container___s46hG .styles__relative___WbxAP {
    position: relative;
  }
/* 内容区 */
.styles__container___s46hG .styles__safe_view___FgqXE {
    width: calc(100vw - 60px);
    height: calc(100vh - 58px - 30px - 55px);
    min-height: 480px;
    margin: 0 auto;
    margin-top: 30px;
    border-top: 4px solid rgb(52, 118, 204);
    background-color: #ffffff;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    box-shadow: 0px 5px 5px rgba(231, 235, 236, 1);
  }
.styles__container___s46hG .styles__safe_view___FgqXE .styles__view_header___FSRLM {
      height: -webkit-max-content;
      height: -moz-max-content;
      height: max-content;
      min-height: 100px;
      max-height: 200px;
      background-color: rgb(223, 239, 250);
      display: flex;
      padding: 0 30px;
    }
.styles__container___s46hG .styles__safe_view___FgqXE .styles__view_header___FSRLM .styles__view_header_img___Q5FjQ {
        width: 47px;
        height: 47px;
        padding-top: 25px;
      }
.styles__container___s46hG .styles__safe_view___FgqXE .styles__view_header___FSRLM .styles__view_header_box___u1yJm {
        margin-left: 15px;
        padding: 25px 0;
        flex: 1;
      }
.styles__container___s46hG .styles__safe_view___FgqXE .styles__view_header___FSRLM .styles__view_header_box___u1yJm .styles__view_header_title___g6m3y {
          font-family: 'Arial Negreta', 'Arial Normal', 'Arial';
          font-weight: 700;
          font-size: 16px;
          color: #585B67;
          line-height: 24px;
          margin-bottom: 5px
        }
.styles__container___s46hG .styles__safe_view___FgqXE .styles__view_header___FSRLM .styles__view_header_box___u1yJm .styles__view_header_link___syKDw {
          color: #3476CC;
          font-size: 13px;
        }
.styles__container___s46hG .styles__safe_view___FgqXE .styles__view_container___Kx8tZ {
      position: relative;
      height: calc(100% - 120px);
      flex: 1;
    }
.styles__container___s46hG .styles__safe_view___FgqXE .styles__view_container___Kx8tZ .styles__view_container_title___mhWRC {
        font-family: '.萍方-简 Bold', '.萍方-简';
        font-weight: 600;
        font-size: 18px;
        text-align: center;
        margin-top: 20px;
        margin-bottom: 20px;
        color: #3476CC;
      }
.styles__container___s46hG .styles__safe_view___FgqXE .styles__view_container___Kx8tZ .styles__view_container_box___hR857 {
        height: calc(100% - 20px - 30px - 48px - 45px);
        overflow: hidden;
        overflow-y: auto;
        padding: 0 30px;
        flex: 1;
      }
.styles__container___s46hG .styles__safe_view___FgqXE .styles__view_container___Kx8tZ .styles__view_container_box___hR857 .styles__disclaimer_text___XrdLO {
          display: flex;
          align-items: center;
          font-family: '微软雅黑';
          font-size: 15px;
          color: #666666;
        }
.styles__container___s46hG .styles__safe_view___FgqXE .styles__view_container___Kx8tZ .styles__view_container_box___hR857 .styles__err_box___ml_ID .styles__interError___opgbq {
            width: 100%;
            max-width: 262px;
            margin: 0 auto;
          }
.styles__container___s46hG .styles__safe_view___FgqXE .styles__view_container___Kx8tZ .styles__view_container_box___hR857 .styles__err_box___ml_ID .styles__err_text___iQHIe {
            width: 100%;
            position: absolute;
            top: 60%;
            font-family: '.萍方-简 Bold', '.萍方-简';
            font-weight: 600;
            font-style: normal;
            font-size: 18px;
            color: #3476CC;
            text-align: center;
          }
.styles__container___s46hG .styles__safe_view___FgqXE .styles__view_container___Kx8tZ .styles__view_container_box___hR857 .styles__err_box___ml_ID .styles__reload___tLZDK {
            width: 100%;
            height: 50px;
            background-color: rgba(52, 118, 204, 1);
            border-radius: 84px;
            font-family: 'Arial Negreta', 'Arial Normal', 'Arial';
            font-weight: 700;
            font-size: 16px;
            color: #FFFFFF;
            margin-top: 60px;
          }
.styles__container___s46hG .styles__safe_view___FgqXE .styles__view_container___Kx8tZ .styles__view_container_box___hR857 .styles__input_box___wJncr {
          align-items: center;
          box-sizing: content-box;
          font-weight: 700;
          margin: 20px 0 15px;
          border-radius: 6px;
          border: 1px solid rgb(217 217 217);
          box-shadow: 0px 0 0 0.5px #dedede;
        }
.styles__container___s46hG .styles__safe_view___FgqXE .styles__view_container___Kx8tZ .styles__view_container_box___hR857 .styles__input_box___wJncr input {
            width: 100%;
            height: 48px;
            padding-left: 1em;
            font-size: 16px;
          }
.styles__container___s46hG .styles__safe_view___FgqXE .styles__view_container___Kx8tZ .styles__view_container_box___hR857 .styles__input_box___wJncr input::-webkit-outer-spin-button,
          .styles__container___s46hG .styles__safe_view___FgqXE .styles__view_container___Kx8tZ .styles__view_container_box___hR857 .styles__input_box___wJncr input::-webkit-inner-spin-button {
            -webkit-appearance: none;
          }
/* 在Firefox浏览器下 */
.styles__container___s46hG .styles__safe_view___FgqXE .styles__view_container___Kx8tZ .styles__view_container_box___hR857 .styles__input_box___wJncr input[type="number"] {
            -moz-appearance: textfield;
          }
.styles__container___s46hG .styles__safe_view___FgqXE .styles__view_container___Kx8tZ .styles__view_container_box___hR857 .styles__extraneous_information___lHAUy {
          width: 100%;
          height: 73px;
          background: linear-gradient(106.034734362065deg, rgba(226, 237, 253, 1) 0%, rgba(235, 242, 254, 1) 51%, rgba(226, 237, 253, 1) 100%);
          border-radius: 4px;
          margin-top: 30px;
          padding: 10px 30px;
          box-sizing: border-box;
        }
.styles__container___s46hG .styles__safe_view___FgqXE .styles__view_container___Kx8tZ .styles__view_container_box___hR857 .styles__extraneous_information___lHAUy span {
            font-family: '微软雅黑 Bold', '微软雅黑 Regular', '微软雅黑';
            font-weight: 700;
            font-style: normal;
            font-size: 16px;
            color: #323233;
            line-height: 24px;
            margin: 0 auto;
          }
.styles__container___s46hG .styles__safe_view___FgqXE .styles__view_container___Kx8tZ .styles__view_footer_operation___eqK5K {
        width: calc(100%);
        position: absolute;
        bottom: 30px;
        display: flex;
        justify-content: center;
      }
.styles__container___s46hG .styles__safe_view___FgqXE .styles__view_container___Kx8tZ .styles__view_footer_operation___eqK5K .styles__startBtn___OZldU {
          width: calc(100% - 60px);
          height: 48px;
          font-family: 'Arial Negreta', 'Arial Normal', 'Arial';
          font-weight: 700;
          font-style: normal;
          font-size: 16px;
          color: #FFFFFF;
          background-color: rgba(52, 118, 204, 1);
        }
.styles__container___s46hG .styles__safe_view___FgqXE .styles__view_container___Kx8tZ .styles__view_footer_operation___eqK5K .styles__goHome___ZrTK3 {
          width: calc(100% - 60px);
          height: 48px;
          font-family: 'Arial Negreta', 'Arial Normal', 'Arial';
          font-size: 16px;
          text-align: left;
          color: #3476CC;
          padding-left: 0;
        }
.styles__container___s46hG .styles__safe_view___FgqXE .styles__view_container___Kx8tZ .styles__view_footer_operation___eqK5K .styles__restartBtn___dEoUK{
          position: absolute;
          bottom: 28px;
          width: calc(100% - 60px);
          height: 48px;
          font-family: 'Arial Negreta', 'Arial Normal', 'Arial';
          font-size: 16px;
          text-align: left;
          color: #3476CC;
          padding-left: 0;
        }
.styles__container___s46hG .styles__footer_box___RyIZV {
    width: 100%;
    background-color: transparent;
    z-index: 999;
    margin-top: 7px;
    margin-bottom: 7px;
  }
.styles__container___s46hG .styles__footer_box___RyIZV .styles__development___r4yxH {
      display: flex;
      align-items: center;
      justify-content: center;
    }
.styles__container___s46hG .styles__footer_box___RyIZV .styles__development___r4yxH span {
        font-size: 13px;
        color: #666666;
      }

