<!doctype html>
<html lang="">
  <head>
    <meta charset="UTF-8" />
    <link rel="icon" href="./favicon.ico" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>玩球数据</title>
    <script type="module" crossorigin src="./assets/index-krvHenwj.js"></script>
    <link rel="stylesheet" crossorigin href="./assets/index-dcg5E1QX.css">
  </head>
  <body>
    <div id="app">
      <!-- 系统加载中动画 -->
      <style>
        html,
        body,
        #app {
          /* 系统加载主中题色 */
          --color: #409eff;
          display: flex;
          align-items: center;
          justify-content: center;
          flex-direction: column;
          width: 100vw;
          height: 100vh;
        }
        .box {
          width: 50px;
          height: 50px;
          background: var(--color);
          animation: animate 0.5s linear infinite;
          border-radius: 3px;
        }
        @keyframes animate {
          17% {
            border-bottom-right-radius: 3px;
          }
          25% {
            transform: translateY(9px) rotate(22.5deg);
          }
          50% {
            transform: translateY(18px) scale(1, 0.9) rotate(45deg);
            border-bottom-right-radius: 40px;
          }
          75% {
            transform: translateY(9px) rotate(67.5deg);
          }
          100% {
            transform: translateY(0) rotate(90deg);
          }
        }
        .shadow {
          background: var(--color);
          margin: 11px 0 60px;
          width: 50px;
          height: 5px;
          opacity: 0.1;
          border-radius: 50%;
          animation: shadow 0.5s linear infinite;
        }
        @keyframes shadow {
          50% {
            transform: scale(1.2, 1);
            opacity: 0.5;
          }
        }
        .tip {
          color: var(--color);
          font-size: 20px;
        }
      </style>
      <div class="box"></div>
      <div class="shadow"></div>
      <div class="tip">正在加载系统资源，请耐心等待</div>
    </div>
  </body>
</html>
