/**
 * 开店星定制版
 * @link https://www.kaidianxing.com
 * @description 软件开发团队为 青岛开店星信息技术有限公司
 * @description The software development team is Qingdao ShopStar Information Technology Co. LTD.
 * @description 软件著作权归 青岛开店星信息技术有限公司 所有 软著登记号: 2023SR0869265
 * @description 软件版权归 青岛开店星信息技术有限公司 所有
 * @description The software copyright belongs to Qingdao ShopStar Information Technology Co. LTD.
 * @description 本文件由青岛开店星授权予 青铜器软件（北京）有限公司 使用
 * @description This file is licensed to 青铜器软件（北京）有限公司-xdjc.liguagua168.com(204101).
 * @warning 这不是一个免费的软件，使用前请先获取正式商业授权
 * @warning This is not a free software, please get the license before use.
 * @warning 未经授权许可禁止转载分发，违者将追究其法律责任
 * @warning It is prohibited to reprint and distribute without license, and violators will be investigated for legal responsibility
 * @warning 未经授权许可禁止删除本段注释，违者将追究其法律责任
 * @warning It is prohibited to delete this comment without license, and violators will be held legally responsible
 */
#app-loading {
  position: fixed;
  z-index: 2000;
  background-color: #ffffff;
  margin: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: opacity .3s;
}/** www.kaidianxing.com **/

#app-loading .text {
  font-size: 14px;
  font-weight: normal;
  line-height: 20px;
  color: #262B30;
}

#app-loading .loading-spinner {
  top: 50%;
  left: 0;
  transform:translate(0,-50%);
  width: 100%;
  text-align: center;
  position: absolute;
}

#app-loading .loading-spinner .circular {
  height: 42px;
  width: 42px;
  animation: app-loading-rotate 2s linear infinite;
}

#app-loading .loading-spinner .circular .path {
  animation: app-loading-dash 1.5s ease-in-out infinite;
  stroke-dasharray: 90, 150;
  stroke-dashoffset: 0;
  stroke-width: 4;
  stroke: #409eff;
  stroke-linecap: round;
}

@keyframes app-loading-rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes app-loading-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -40px;
  }

  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -120px;
  }
}