body {
  font-family: sans-serif;
  /* padding: 40px; */
  background-color: #f0f0f0;
}

button {
  padding: 10px 20px;
  font-size: 16px;
}

/* 弹窗背景色 */
.ts {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background: #000000cc;
      z-index: 99;
}

.azyy{
    color: #fff;
text-align: center;
font-family: "PingFang SC";
font-size: 24px;
font-style: normal;
font-weight: 400;
line-height: normal;
padding: 12px 0;
}
.tsContent {
  border-radius: 20px;
  background: #3A3A47;
  display: flex;
  width: 70%;
  /*height: 250px;*/
  flex-direction: column;
  align-content: center;
  align-items: center;
  position: relative;
      padding: 45px 20px 20px 20px;
}
.tstsImg{
    width: 20px;
height: 20px;
margin-right: 5px;
}

.tsLogo {
  width: 90px;
  height: 90px;
  position: absolute;
  top: -45px;
}


.tsTxt {
    margin-bottom: 10px;
    display: flex;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px;
    color: #BEBEC7;
    font-family: "PingFang SC";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.tsNum {
    border-radius: 21px;
background: linear-gradient(270deg, #D47A3B 16.67%, #8A367A 100%), rgba(255, 255, 255, 0.10);
  margin-right: 5px;
  text-align: center;
  line-height: 20px;
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 20px;
}

.tsRight {
  width: 200px;
}

.tsTs {
  margin-top: 5px;
      color: #A3A3D2;
    font-family: "PingFang SC";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 8px;
    background: #29293E;
    padding: 12px;
}

.downBox {
  z-index: 99;
  width: 100%;
  position: fixed;
  bottom: 20px;
  display: flex;
  justify-content: center;
}

.down {
  width: 30px;
  height: 30px;
  animation: bounceY 1s infinite ease-in-out;
}
@keyframes bounceY {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px); /* 向上移动 10px */
  }
}
