/* =============== Loading Screen =============== */
#loading-screen {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  #loading-content {
    text-align: center;
    color: #ffffff;
  }
  
  #loading-content img {
    width: 801px; /* 根据你的GIF大小调整 */
    height: 450px;
    margin-bottom: 20px;
  }
  
  #loading-content p {
    font-size: 18px;
    margin: 0;
  }
  