:root {
  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;

  color-scheme: light dark;
  color: rgba(255, 255, 255, 0.87);
  background-color: #242424;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  font-weight: 500;
  color: #646cff;
  text-decoration: inherit;
}
a:hover {
  color: #535bf2;
}

body {
  margin: 0;
  display: flex;
  place-items: center;
  min-width: 320px;
  min-height: 100vh;
}

h1 {
  font-size: 3.2em;
  line-height: 1.1;
}

button {
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0.6em 1.2em;
  font-size: 1em;
  font-weight: 500;
  font-family: inherit;
  background-color: #1a1a1a;
  cursor: pointer;
  transition: border-color 0.25s;
}
button:hover {
  border-color: #646cff;
}
button:focus,
button:focus-visible {
  outline: 4px auto -webkit-focus-ring-color;
}

@media (prefers-color-scheme: light) {
  :root {
    color: #213547;
    background-color: #ffffff;
  }
  a:hover {
    color: #747bff;
  }
  button {
    background-color: #f9f9f9;
  }
}
#root {
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    height: 100vh;
}

@keyframes logo-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: no-preference) {
}

/* 外部容器样式 */
.header-container {
    background-color: rgba(100,149,237,0.5); /* 半透明蓝色背景 */
    padding: 10px;
    border-radius: 12px; /* 外层圆角 */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* 阴影效果 */
    display: flex;
    align-items: center; /* 垂直居中 */
}

/* 内部容器样式 */
.inner-container {
    border-radius: 8px; /* 内层圆角 */
    padding: 10px;
    display: flex;
    align-items: center; /* 垂直居中 */
    justify-content: center; /* 水平居中 */
    font-size: 30px; /* 设置字体大小为 30px */
    font-family: 'Microsoft YaHei', 'Arial', 'Helvetica', sans-serif; /* 设置微软雅黑或其他本地字体 */
    color: #333333; /* 设置统一的深色字体 */
    height: 100%; /* 保证内层高度一致 */
}
@page {
    size: 241mm 91mm; /* 设置纸张大小 */
    margin: 0;
}

@media print {
    @page {
        size: 241mm 91mm; /* 设置纸张大小 */
        margin: 0;
    }

    body {
        /*transform: rotate(90deg);*/
        margin: 0;
        padding: 0;
        font-size: 6mm; /* 调整字体大小 */
        white-space: nowrap;
        /*font-size: 16px; !* 使用 px 单位调整字体大小 *!*/
    }

    .content {
        width: 100%;
        height: 100%;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .text {
        width: 100%;
        color: black;
        font-family: fangsong;
    }
}
