
.full-logo-wrap {
    background: rgba(255, 255, 255, 0.8);
    width: 100%;
    height: 100%;
    /* min-width: 655px; */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2000;
    font-size: 50px;
    user-select: none;
  
  }

  .full-logo-wrap::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
  }
  
  .iframe-cover .full-logo-wrap {
    background: rgba(255, 255, 255, 1);
  }
  
  .logo-loading {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: nowrap;
  }
  
  
  .logo-text {
    font-weight: 900;
    white-space: nowrap;
    text-overflow: hidden;
    letter-spacing: 4px;
    font-size: 0.8em;
    margin-left: 0.4em;
    color: #5995f0;
  
  }
  
  .circle {
    background: #fff;
  
    transform: scale(1.2);
    height: 1.6em;
    width: 1.6em;
    border-radius: 23%;
    border: solid 0.1em #5995f0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .bar-list {
    padding: 0;
    text-align: center;
    margin: 0;
  }
  
  .bar-list-item {
    position: relative;
    width: 0.5em;
    height: 0.12em;
    border-radius: 20px;
    background: linear-gradient(to right, #5995f0, rgb(76, 188, 240));
    list-style: none;
  }
  
  .bar-list-item+.bar-list-item {
    margin-top: 0.18em;
  }
  
  .column-line {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 30%;
    margin-left: -0.15em;
    /* border: 2px solid #fff; */
    border-radius: 100%;
  }
  
  .column-line-point {
    width: 0.3em;
    height: 0.3em;
    border-radius: 50%;
    background: #fff;
    box-sizing: border-box;
    border: 0.08em solid #5995f0;
  }
  
  .column-line-line {
    height: 0.32em;
    background: #5995f0;
    width: 0.09em;
  }
  
  .bar-list-item:nth-child(0) {
    animation: mymove-0 0.8s infinite;
  }
  
  .bar-list-item:nth-child(1) {
    animation: mymove-1 0.8s infinite;
  }
  
  .bar-list-item:nth-child(2) {
    animation: mymove-2 0.8s infinite;
  }
  
  .bar-list-item:nth-child(3) {
    animation: mymove-3 0.8s infinite;
  }
  
  .bar-list-item:nth-child(1) {
    transform: translateX(0.2em);
  }
  
  .bar-list-item:nth-child(2) {
    transform: translateX(0.02em);
  }
  
  .bar-list-item:nth-child(3) {
    transform: translateX(0.2em);
  }
  
  @keyframes mymove-1 {
    0% {
      transform: translateX(0.15em);
    }
  
    80% {
      transform: translateX(0.04em);
    }
  
    100% {
      transform: translateX(0.12em);
    }
  }
  
  @keyframes mymove-2 {
    0% {
      transform: translateX(0.02em);
    }
  
    40% {
      transform: translateX(0.12em);
    }
  
    100% {
      transform: translateX(0.02em);
    }
  }
  
  @keyframes mymove-3 {
    0% {
      transform: translateX(0.12em);
    }
  
    60% {
      transform: translateX(0.02em);
    }
  
    100% {
      transform: translateX(0.12em);
    }
  }
  
  .page-loading.full-logo-wrap {
    background: rgba(255, 255, 255, 0.98);
    z-index: 9999;
  

  }

  .page-loading.full-logo-wrap  .circle{
      transform: scale(0.9);
  }