html,
body {
  height: 100vh;
  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;
  }
}

#dp {
  border: 2px solid #9058c4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex: 1;
}

.dp_1 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex: 1;
  height: 100%;
  /* background-image: url(../../yueluo_web_image/flower.gif);
  background-repeat: repeat; */
}

.dp_2 {
  border-left: 2px solid #9058c4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex: 1;
  height: 100%;
  display: none;
}

.dp_1_img {
  display: inline-block;
  overflow: hidden;
}

.dpImg {
  height: 300px;
  width: auto;
}

.dp_tip {
  font-size: 20px;
  background: linear-gradient(to right, red, orange, green, blue, purple);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: spancolorAni 5s linear infinite;
  margin-top: 10px;
  text-align: center;
}

@keyframes spancolorAni {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}