.el-loading-spinner {
  /* 使用你的图片作为背景 */
  background-image: url('../../img/loading.gif'); /* 路径根据你的图片位置调整 */
  background-repeat: no-repeat;
  background-size: 40px 40px; /* 调整为你想要的图片尺寸 */
  height: 40px; /* 高度与图片一致，或根据需要调整 */
  width: 100%;
  background-position: center;
  top: 50%; /* 垂直居中 */
  margin-top: -20px; /* 负的外边距，值为高度的一半，用于微调垂直居中 */
}

/* 隐藏 Element UI 默认的 loading 动画（圆圈） */
.el-loading-spinner .circular {
  display: none;
}

.el-loading-spinner .el-loading-text {
  margin-top: 50px; /* 将文字推到图片下方，数值根据你的图片高度调整 */
  color: #00c6ff; /* 自定义文字颜色 */
}