@font-face {
    font-family: 'SourceHanSansCN-Normal';
    src: 
      url('../fonts/SourceHanSansCN-Normal.woff2') format('woff2'), /* 优先使用WOFF2（压缩率更高） */
      url('../fonts/SourceHanSansCN-Normal.woff') format('woff'),   /* 兼容旧浏览器 */
      url('../fonts/SourceHanSansCN-Normal.otf') format('opentype'); /* 备用格式 */
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* 避免阻塞渲染，使用回退字体 */
  }
  :root {
    /* 颜色系统 */
    --on-color: #3379fd;
    /*选中颜色*/
    --text-color: #333;
    /* 正文文字 */
    --bg-color: #f5f5f5;
    /* 背景色 */
    /* 字体系统 */
    --base-font-size: 16px;
    /* 基准字号 */
    --heading-font-size: 2rem;
    /* 标题比例 */
  }
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'SourceHanSansCN-Normal';
  
  }
  
  ::-webkit-scrollbar{
    width: 4px;
    height: 2px;
  }
  ::-webkit-scrollbar-thumb:hover{
    background-color: #bbb;
  }
  ::-webkit-scrollbar-thumb{
    background-color: var(--on-color);
    background-clip: padding-box;
    -webkit-border-radius: 10px;
    border-radius: 10px;
  }
  ::-webkit-scrollbar-track-piece{
    background-color: #bbb;
  }
  
  body {
    color: #333;
    background-color: #fff;
    outline: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    min-height: 100%;
    font-size: 16px;
    line-height: 1.5;
  }
  html {
    font-size: calc(100vw/19.2);
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scrollbar-width: thin;
  }
  @media (min-width: 1901px) {
    html {
      font-size: 100px;
    }
  }
  @media (max-width: 1580px) {
    html {
      font-size: 66px;
    }
  }
  @media (max-width: 767px) {
    html {
      font-size: calc(100vw/7.5);
    }
  }
  
  /* 容器样式 */
  .container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
  }
  /* 标题样式 */
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: #333;
  }
  h1 {
    font-size: 2.5em;
  }
  h2 {
    font-size: 2em;
  }
  h3 {
    font-size: 1.75em;
  }
  h4 {
    font-size: 1.5em;
  }
  h5 {
    font-size: 1.25em;
  }
  h6 {
    font-size: 1em;
  }
  /* 链接样式 */
  a {
    color: #333;
    text-decoration: none;
  }
  a:hover {
    text-decoration: none;
    color: var(--on-color);
  }
  /* 列表样式 */
  ul,
  ol {
    list-style: none;
  }
  li {
    margin-bottom: 5px;
  }
  /* 按钮样式 */
  button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1em;
    color: #fff;
    background-color: var(--on-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  button:hover {
    background-color: var(--on-color);
  }
  /* 图片样式 */
  img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  /* 表格样式 */
  table {
    width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse;
  }
  th,
  td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
  }
  th {
    background-color: #f4f4f4;
  }
  /* 表单样式 */
  input,
  textarea,
  select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  input[type="submit"] {
    background-color: var(--on-color);
    color: #fff;
    border: none;
    cursor: pointer;
  }
  input[type="submit"]:hover {
    background-color: var(--on-color);
  }
.textflow {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .textflow2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .textflow3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  .textflow4 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  }
  .textflow4 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
  }
  .textflow10 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    word-break: break-all;
  }
  .font60 {
    font-size: 0.6rem;
  }
  .font54 {
    font-size: 0.54rem;
  }
  @media (max-width: 1580px) {
    .font54 {
      font-size: 0.56rem;
    }
  }
  @media (max-width: 991px) {
    .font54 {
      font-size: 40px;
    }
  }
  .font50 {
    font-size: 0.5rem;
  }
  .font48 {
    font-size: 0.48rem;
  }
  @media (max-width: 991px) {
    .font48 {
      font-size: 0.5rem;
    }
  }
  .font42 {
    font-size: 0.42rem;
  }
  @media (max-width: 991px) {
    .font42 {
      font-size: 0.5rem;
    }
  }
  .font40 {
    font-size: 0.4rem;
  }
  @media (max-width: 991px) {
    .font40 {
      font-size: 0.4rem;
    }
  }
  .font38 {
    font-size: 0.38rem;
  }
  @media (max-width: 991px) {
    .font38 {
      font-size: 0.4rem;
    }
  }
  .font36 {
    font-size: 0.36rem;
    line-height: 1.5em;
  }
  @media (max-width: 991px) {
    .font36 {
      font-size: 0.4rem;
    }
  }
  .font34 {
    font-size: 0.34rem;
  }
  @media (max-width: 991px) {
    .font34 {
      font-size: 0.4rem;
    }
  }
  .font32 {
    font-size: 0.32rem;
  }
  @media (max-width: 991px) {
    .font32 {
      font-size: 0.4rem;
    }
  }
  .font30 {
    font-size: 0.3rem;
  }
  @media (max-width: 991px) {
    .font30 {
      font-size: 0.4rem;
    }
  }
  .font28 {
    font-size: 0.28rem;
  }
  @media (max-width: 991px) {
    .font28 {
      font-size: 0.4rem;
    }
  }
  .font26 {
    font-size: 26px;
  }
  @media (max-width: 1580px) {
    .font26 {
      font-size: 24px;
    }
  }
  @media (max-width: 991px) {
    .font26 {
      font-size: 0.3rem;
    }
  }
  .font24 {
    font-size: 24px;
  }
  @media (max-width: 1580px) {
    .font24 {
      font-size: 22px;
    }
  }
  @media (max-width: 1260px) {
    .font24 {
      font-size: 16px;
    }
  }
  @media (max-width: 991px) {
    .font24 {
      font-size: 0.3rem;
    }
  }
  .font22 {
    font-size: 22px;
    line-height: 1.5em;
  }
  @media (max-width: 1580px) {
    .font22 {
      font-size: 18px;
    }
  }
  @media (max-width: 1260px) {
    .font22 {
      font-size: 16px;
    }
  }
  @media (max-width: 991px) {
    .font22 {
      font-size: 0.3rem;
    }
  }
  .font20 {
    font-size: 20px;
    line-height: 1.5em;
  }
  @media (max-width: 1580px) {
    .font20 {
      font-size: 18px;
    }
  }
  @media (max-width: 1260px) {
    .font20 {
      font-size: 16px;
    }
  }
  @media (max-width: 991px) {
    .font20 {
      font-size: 0.3rem;
    }
  }
  .font18 {
    line-height: 1.5em;
    font-size: 18px;
  }
  @media (max-width: 1580px) {
    .font18 {
      font-size: 16px;
    }
  }
  @media (max-width: 1260px) {
    .font18 {
      font-size: 16px;
    }
  }
  @media (max-width: 991px) {
    .font18 {
      font-size: 0.28rem;
    }
  }
  .font16 {
    font-size: 16px;
  }
  @media (max-width: 1580px) {
    .font16 {
      font-size: 14px;
    }
  }
  @media (max-width: 991px) {
    .font16 {
      font-size: 0.28rem;
    }
  }
  .font14 {
    font-size: 14px;
  }
  @media (max-width: 1580px) {
    .font14 {
      font-size: 12px;
    }
  }
  @media (max-width: 991px) {
    .font14 {
      font-size: 0.24rem;
    }
  }
  .font12 {
    font-size: 12px;
  }
  .font-b {
    font-weight: bold;
  }