.loading-img {
    background: url(https://pic.imgdb.cn/item/6752ae8ad0e0a243d4de87ae.jpg) no-repeat center center;
    background-size: cover;
  }
  .loading-text {
    margin-top: 20px; /* 保持文字与动画的间距 */
    text-align: center; /* 居中对齐 */
    font-size: 18px; /* 字体大小 */
    font-weight: bold; /* 加粗字体 */
    color: #D2691E; /* 棕橙色，像秋天的落叶 */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); /* 添加微妙的阴影，增加立体感 */
    font-family: 'Georgia', serif; /* 使用更有季节感的衬线字体 */
    animation: autumn-fade 2s infinite alternate; /* 秋天渐变动画 */
  }
  
  @keyframes autumn-fade {
    0% {
      color: #D2691E; /* 棕橙色 */
      transform: scale(1); /* 初始大小 */
    }
    50% {
      color: #FF8C00; /* 深橙色，类似枫叶的变化 */
      transform: scale(1.1); /* 略微放大 */
    }
    100% {
      color: #0acfe9; /* 红棕色 */
      transform: scale(1); /* 恢复原始大小 */
    }
  }
  