@charset "UTF-8";
@import url(/css/theme.css);
body {
  overflow: hidden;
  margin: 0;
  padding: 0;
  color: var(--color-text);
  background-color: var(--body-background-color);
  font-family: Arial, sans-serif;
  font-size: medium; }
  body:not([data-theme-style="vivid"]) body, body[data-theme-style="vivid"] #body:not([data-theme-switching]) body {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease; }

.body, #body,
#bg {
  position: absolute;
  overflow: auto;
  width: 100%;
  height: 100vh;
  color: var(--color-text);
  background-color: var(--body-background-color); }

body[data-theme-style="vivid"] #body:not([data-theme-switching]) {
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease; }
[data-theme-style="vivid"] #body[data-theme-switching] {
  animation-name: animation-r, animation-x, animation-y;
  animation-duration: 1s, auto, auto;
  animation-timing-function: linear;
  animation-fill-mode: forwards, none, none;
  animation-timeline: auto, scroll(self x), scroll(self y);
  --clip-x: 0;
  --clip-y: 0;
  --clip-r: calc(100vw + 100vh); }
@keyframes animation-r {
  0% {
    clip-path: circle(0 at var(--clip-x) var(--clip-y)); }
  100% {
    clip-path: circle(var(--clip-r) at var(--clip-x) var(--clip-y)); } }
@keyframes animation-x {
  0% {
    --clip-x: 0; }
  100% {
    --clip-x: calc(100% - 100vw); } }
@keyframes animation-y {
  0% {
    --clip-y: 0; }
  100% {
    --clip-y: calc(100% - 100vh); } }
.flex-wrap {
  display: flex;
  flex-wrap: wrap; }

a {
  text-decoration: unset;
  color: var(--color-text); }
  body:not([data-theme-style="vivid"]) a, body[data-theme-style="vivid"] #body:not([data-theme-switching]) a {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease; }

.dividing-line {
  overflow: hidden;
  height: 0;
  border-top: 1px solid var(--border-color); }

div.container {
  box-sizing: border-box;
  width: 100%;
  min-width: 340px;
  max-width: 640px;
  height: fit-content;
  margin: 20px auto;
  padding: 20px;
  user-select: none;
  border-radius: 5px;
  background-color: var(--container-background-color); }
  body:not([data-theme-style="vivid"]) div.container, body[data-theme-style="vivid"] #body:not([data-theme-switching]) div.container {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease; }
  body:not([data-theme-style="minimal"]) div.container {
    box-shadow: 0 0 10px var(--shadow-color); }
  @media screen and (max-width: 640px) {
    div.container:not(.small):not(.large).top {
      margin: 0 0 20px 0; }
    div.container:not(.small):not(.large).bottom {
      margin: 20px 0 0 0; } }
  div.container.small {
    max-width: 440px; }
    @media screen and (max-width: 440px) {
      div.container.small.top {
        margin: 0 0 20px 0; }
      div.container.small.bottom {
        margin: 20px 0 0 0; } }
  div.container.large {
    max-width: 840px; }
    @media screen and (max-width: 840px) {
      div.container.large.top {
        margin: 0 0 20px 0; }
      div.container.large.bottom {
        margin: 20px 0 0 0; } }
  div.container > div {
    display: flex;
    overflow: hidden;
    align-items: center;
    margin: 10px auto;
    white-space: nowrap; }
    body:not([data-theme-style="vivid"]) div.container > div, body[data-theme-style="vivid"] #body:not([data-theme-switching]) div.container > div {
      transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease; }
  div.container h1 {
    text-align: center; }
  div.container h2 {
    text-align: center; }

div.list-container {
  box-sizing: border-box;
  width: 100%;
  min-width: 302px;
  max-width: 602px;
  min-height: 202px;
  margin: 10px auto;
  padding: 10px;
  transition: 0.3s ease;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  background-color: var(--result-background-color); }
  div.list-container.small {
    max-width: 402px; }
  div.list-container.large {
    max-width: 802px; }
  @media screen and (max-width: 400px) {
    div.list-container {
      padding: 0; } }
  div.list-container > div {
    display: flex;
    overflow: hidden;
    justify-content: space-between;
    padding: 10px; }
    body:not([data-theme-style="vivid"]) div.list-container > div, body[data-theme-style="vivid"] #body:not([data-theme-switching]) div.list-container > div {
      transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease; }
    div.list-container > div + * {
      border-top: 1px solid var(--border-color); }

textarea {
  resize: vertical;
  font-size: 11pt;
  box-sizing: border-box;
  width: 100%;
  padding: 10px;
  color: var(--color-text);
  border: 1px solid var(--border-color);
  border-radius: 5px;
  background-color: var(--background-color); }
  body:not([data-theme-style="vivid"]) textarea, body[data-theme-style="vivid"] #body:not([data-theme-switching]) textarea {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease; }
  * + textarea {
    margin-left: 10px; }
  textarea + * {
    margin-right: 10px; }

body:not([data-theme-style="vivid"]) input, body[data-theme-style="vivid"] #body:not([data-theme-switching]) input {
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease; }
input[type="text"], input[type="password"], input[type="number"] {
  box-sizing: border-box;
  width: 100%;
  padding: 10px;
  color: var(--color-text);
  border: 1px solid var(--border-color);
  border-radius: 5px;
  background-color: var(--background-color); }
  body:not([data-theme-style="vivid"]) input[type="text"], body[data-theme-style="vivid"] #body:not([data-theme-switching]) input[type="text"], body:not([data-theme-style="vivid"]) input[type="password"], body[data-theme-style="vivid"] #body:not([data-theme-switching]) input[type="password"], body:not([data-theme-style="vivid"]) input[type="number"], body[data-theme-style="vivid"] #body:not([data-theme-switching]) input[type="number"] {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease; }
  * + input[type="text"], * + input[type="password"], * + input[type="number"] {
    margin-left: 10px; }
  input[type="text"] + *, input[type="password"] + *, input[type="number"] + * {
    margin-right: 10px; }
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none; }
input[type="number"] {
  width: unset;
  -moz-appearance: textfield; }

button, .ok-button {
  padding: 10px 20px;
  cursor: pointer;
  color: var(--color-text);
  border-radius: 5px;
  font-size: large;
  font-weight: bold; }

.ok-button {
  margin: auto 20px;
  color: var(--color-white);
  border: 2px solid var(--color-secondary);
  background-color: var(--color-secondary); }
  @media (pointer: fine) {
    .ok-button:hover {
      background-color: #2980b9; }
    .ok-button:active {
      background-color: #206699; } }

.pagination-container {
  display: flex;
  align-items: center; }
  .pagination-container > *:not(.pagination) {
    cursor: pointer; }
    @media screen and (max-width: 450px) {
      .pagination-container > *:not(.pagination) {
        display: none; } }
  .pagination-container > * + * {
    margin-left: 10px; }

.pagination > span {
  display: inline-block;
  width: 30px;
  cursor: pointer;
  text-align: center; }

.condition {
  margin-right: 5px;
  margin-bottom: 5px;
  padding: 5px 10px;
  user-select: none;
  white-space: nowrap;
  border-radius: 20px;
  background-color: var(--condition-background-color); }
  body:not([data-theme-style="vivid"]) .condition, body[data-theme-style="vivid"] #body:not([data-theme-switching]) .condition {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease; }
  .condition.selected, input:checked + .condition {
    color: var(--color-white);
    background-color: var(--color-primary); }

div.support-me {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 20px auto; }
  div.support-me::before {
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    user-select: none;
    opacity: var(--img-opacity);
    background-image: url("/img/support-me-bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    -webkit-user-drag: none;
    filter: invert(var(--support-me-bg-invert)); }
  div.support-me::after {
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    user-select: none;
    opacity: var(--img-opacity);
    background-image: url("/img/support-me-fg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    -webkit-user-drag: none; }

/* 应用于触屏设备 */
/* 应用于非触屏设备 */

/*# sourceMappingURL=style.css.map */
