.PromptBox{
  background: rgba(0,0,0,0.35);
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
  display: none;
}
.UserPromptBox.active{
  display: flex;
}
.UserPromptBox > header{
  background: #fff;
  border-radius: 2vh;
  width: 56vh;
  font-size: 2vh;
  color: #000;
  padding: 1vh;
  letter-spacing: 0.01rem;
  position: relative;
}
.UserPromptBox > header > div{
  border: 0.3vh solid #ffeed0;
  border-radius: 1.5vh;
  padding: 2vh 2vh 1.5vh 8vh;
  text-align: center;
}
.UserPromptBox > header > b{
  width: 5vh;
  height: 5vh;
  background-color: #40a3fe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -1.5vh;
  top: -1.5vh;
  cursor: pointer;
}
.UserPromptBox > header > b::before{
  position: absolute;
  content: '';
  display: block;
  width: 58%;
  height: 12%;
  background-color: #fff;
  border-radius: 2vh;
  transform: rotate(45deg);
}
.UserPromptBox > header > b::after{
  position: absolute;
  content: '';
  display: block;
  width: 58%;
  height: 12%;
  background-color: #fff;
  border-radius: 2vh;
  transform: rotate(-45deg);
}
.UserPromptBox h1{
  font-size: 2.4vh;
  text-align: left;
  padding-bottom: 1vh;
}
.UserPromptBox ul li{
  padding-bottom: 1.2vh;
  text-align: left;
  line-height: 2.5vh;
}
.UserPromptBox ul li:last-child{
  padding-bottom: 0.5vh;
}
.UserPromptBox ul li a{
  color: #0036c0;
  text-decoration: underline;
}
.UserPromptBox ul li span{
  display: inline-block;
}
.UserPromptBox button{
  border: 0;
  background-color: #fb6837;
  line-height: 3.5vh;
  color: #fff;
  font-size: 2.3vh;
  padding: 0.5vh 3vh 1vh 3vh;
  border-radius: 1vh;
}
img.buddyXXImg{
  position: absolute;
  width: 20vh;
  bottom: -1vh;
  left: -12vh;
}
.UserPromptBox > header::before{
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #ffe1a4;
  border-radius: 2vh;
  transform: rotate(2deg);
  z-index: -1;
  top: 0;
  left: 0;
}
/* 竖屏 */
@media screen and (orientation:portrait) {
  .UserPromptBox > header{
    border-radius: 3vw;
    width: 78vw;
    font-size: 3.5vw;
    padding: 1.5vw;
    margin-left: 10vw;
  }
  .UserPromptBox > header > div{
    border: 0.3vw solid #ffeed0;
    border-radius: 2vw;
    padding: 2vw 2vw 1.5vw 12vw;
  }
  img.buddyXXImg {
    width: 30vw;
    bottom: -1vw;
    left: -17vw;
  }
  .UserPromptBox h1 {
    font-size: 4vw;
    padding-bottom: 2vw;
  }
  .UserPromptBox ul{
    margin-bottom: 1vw;
  }
  .UserPromptBox ul li {
    padding-bottom: 1.5vw;
    line-height: 4vw;
  }
  .UserPromptBox button {
    line-height: 4.5vw;
    font-size: 4vw;
    padding: 1.5vw 3vw 1.5vw 3vw;
    border-radius: 1.5vw;
  }
  .UserPromptBox > header > b{
    width: 8vw;
    height: 8vw;
    right: -3vw;
    top: -3vw;
  }
}