body {
  /* 屏幕所能看到的范围大小 */
  height: 100vh;
  margin: 0;
}
.center {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-width: 800px;
  min-height: 500px;
  overflow: hidden;
  /* background-color: aquamarine; */
}
.xia {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: white;
  padding: 0 50px;
  /* background-color: rgb(10, 14, 84); */
  height: 68px;
}

.xia > img {
  height: 28px;
  width: 32px;
}
.up {
  display: flex;
  flex: 1;
  /* background-color: rgb(10, 14, 84); */
  border-bottom: 1px solid;
}
.up > div {
  flex: 1;
}
.xia > .block {
  flex: 1;
}
.xia > button {
  background-color: transparent;
  border: 2px solid rgb(23, 220, 158);
  width: 50px;
  height: 25px;
  color: rgb(23, 220, 158);
  border-radius: 5px;
}
.play {
  height: 50px !important;
  width: 50px !important;
}
.red {
  display: flex;
  justify-content: center;
  align-items: center;
}
.img {
  height: 25vw;
  width: 25vw;
  border-radius: 50%;
  /* cssdongh，动画名称，动画周期的时间，动画的模式（线性模式），动画的播放次数(无限） */
  animation: xunzhuan 5s linear infinite;
}
/* 定义动画的开始和结束的样式 */
@keyframes xunzhuan {
  /* 开始的状态 */
  from {
    /* 旋转的角度 */
    rotate: 0deg;
  }
  to {
    rotate: 360deg;
  }
}
.geti {
  color: #faf6f6;
  text-align: center;
  font-size: 25px;
}
.jay {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
}
.may {
  color: #faf6f6;
  height: 300px;
  width: 60%;
  overflow-x: hidden;
  white-space: pre-wrap;
  font-size: 20px;
  overflow-y: scroll;
  text-align: center;
  line-height: 50px;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.may::-webkit-scrollbar {
  display: none;
}
.mine {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: blur(350px);
  z-index: -1;
  animation: xunzhuan 15s linear infinite;
}
.E {
  width: 200px;
  background-color: rgba(0, 0, 0, 0.721);
  border: 1px solid rgb(171, 170, 170);
  box-shadow: 0 5px 20px rgba(16, 16, 16, 0.5);
  color: #fffdfd;
  border-radius: 4px;
  position: absolute;
  left: 156px;
  bottom: 48px;
  display: none;
}
.E > div {
  padding: 5px 10px;
}

.E > div:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
