html,
body {
  background-color: rgb(192, 242, 233);
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  opacity: 1;
  animation: page-fade-in 0.1s forwards;
}

@keyframes page-fade-in {
  0% {
    opacity: 0.9;
  }

  100% {
    opacity: 1;
  }
}

#imgContain {
  margin: 0;
  padding: 0;
  margin-top: 54px;
  display: flex;
  justify-content: left;
  border-left: 2px solid #9058c4;
  border-right: 2px solid #9058c4;
  border-bottom: 2px solid #9058c4;
  min-height: 100vh;
}

#imgContain > ul {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
}

#imgContain > ul > li {
  list-style: none;
  float: left;
  padding: 0;
  margin: 0;
}

#imgContain > ul > li > div {
  color: rgb(236, 11, 236);
  font-size: 12px;
  text-align: center;
}

#imgPreview {
  max-width: 800px;
  max-height: 600px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* 水平垂直都居中 */
  border: 2px solid rgb(255, 119, 157);
}

#loadInfo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
#loadDesc {
  color: rgb(236, 11, 236);
  font-size: 15px;
  text-align: center;
}
#loadImg {
  width: 50px;
  height: 50px;
  background-image: url("../../yueluo_web_media/MyLoading3.gif");
  background-size: 100% 100%;
}