body {
  margin: 0;
  /* flex-wrap: wrap; */
  background: #263238;
  font-family: Arial, Helvetica, sans-serif;
}

#preloader-div {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-image: url(../media/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

}

section {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s linear;

}


.load {
  position: absolute;
  bottom: 60px;
  color: #ffffff;
  font-family: "MyXingshu", Arial, Helvetica, sans-serif;
  font-size: 30px;
  animation: l1 1s linear infinite alternate;
  text-shadow: 2px 2px 9px rgba(0, 0, 0, 0.8);
}

@keyframes l1 {
  to {
    opacity: 0
  }
}

.load:before {
  content: "加载中...";
}


.name {
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  width: clamp(200px, 70%, 1000px);
  height: auto;
  aspect-ratio: 1024 / 165;

  background-image: url(../media/title-zi.png);
}

.logozi {
  position: absolute;
  left: 10px;
  top: 10px;
  background-repeat: no-repeat;
  background-size: contain;
  width: clamp(200px, 30%, 1000px);
  height: auto;
  aspect-ratio: 1024 / 165;
  background-image: url(../media/title.png);
}


@media (max-width: 768px) {
  section {
    width: 100%;
  }
}

@media (max-width: 480px) {
  section {
    width: 100%;
  }
}