* {
    font-family: "Microsoft YaHei", sans-serif !important;
    margin: 0;
  }
  body,html, div, span, h1, h2, h3, h4 {
    margin: 0;
    padding: 0;
  }
  a:focus,
  a:active {outline: none;}

  a,
  a:focus,
  a:hover {cursor: pointer;color: inherit;text-decoration: none;}

  div:focus {outline: none;}
  .page-loading-wrap {
    padding: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .la-timer,
  .la-timer>div {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  .la-timer {
    display: block;
    font-size: 0;
    color: var(--color-primary);
  }

  .la-timer.la-dark {
    color: var(--color-primary);
  }

  .la-timer>div {
    display: inline-block;
    float: none;
    background-color: currentColor;
    border: 0 solid currentColor;
  }

  .la-timer {
    width: 32px;
    height: 32px;
  }

  .la-timer>div {
    width: 32px;
    height: 32px;
    background: transparent;
    border-width: 2px;
    border-radius: 100%;
  }

  .la-timer>div:before,
  .la-timer>div:after {
    position: absolute;
    top: 14px;
    left: 14px;
    display: block;
    width: 2px;
    margin-top: -1px;
    margin-left: -1px;
    content: "";
    background: currentColor;
    border-radius: 2px;
    -webkit-transform-origin: 1px 1px 0;
    -moz-transform-origin: 1px 1px 0;
    -ms-transform-origin: 1px 1px 0;
    -o-transform-origin: 1px 1px 0;
    transform-origin: 1px 1px 0;
    -webkit-animation: cycle-animation 1250ms infinite linear;
    -moz-animation: cycle-animation 1250ms infinite linear;
    -o-animation: cycle-animation 1250ms infinite linear;
    animation: cycle-animation 1250ms infinite linear;
    -webkit-animation-delay: -625ms;
    -moz-animation-delay: -625ms;
    -o-animation-delay: -625ms;
    animation-delay: -625ms;
  }

  .la-timer>div:before {
    height: 12px;
  }

  .la-timer>div:after {
    height: 8px;
    -webkit-animation-duration: 15s;
    -moz-animation-duration: 15s;
    -o-animation-duration: 15s;
    animation-duration: 15s;
    -webkit-animation-delay: -7.5s;
    -moz-animation-delay: -7.5s;
    -o-animation-delay: -7.5s;
    animation-delay: -7.5s;
  }

  @keyframes cycle-animation {
    0% {
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
    }

    100% {
      -webkit-transform: rotate(360deg);
      -moz-transform: rotate(360deg);
      -o-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  html{
    font-size: 100px;
  }
  body {
    font-size: 0.16rem;
  }
  
  @media (-webkit-min-device-pixel-ratio:1.1){
    html{
      font-size: 90px;
    }
  }
  @media (-webkit-min-device-pixel-ratio:1.25){
    html{
      font-size: 80px;
    }
  }
  /* @media (-webkit-device-pixel-ratio:1.25){
    html{
      font-size: 80px;
    }
  }
  @media (-webkit-min-device-pixel-ratio:1.5){
    html{
      font-size: 66.66px;
    }
  } */

  @media (max-device-width: 1280px) {
    /* 移动端设备 */
    html{
      font-size: 100px;
    }
  }

  /* @media (max-width: 1366px){
    html{
      font-size: 85px;
    }
  } */