* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ol,
ul,
li {
  list-style: none;
}

a {
  text-decoration: none;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-size: 24px;
}

body {
  font-family: "STHeiti", "Microsoft YaHei", Helvetica, Arial, sans-serif;
}

.w750 {
  position: relative;
  width: 100vw;
  height: 100vh;
  max-width: 600px;
  overflow-y: scroll;
  margin: 0 auto;
  background: #ffeab5 url(../img/bg.webp) no-repeat center top;
  background-size: 100% auto;
}

.btnBox {
  padding-top: 17.066667%;
  margin: 0 auto;
  width: 75.2%;
}
.btnBox .btn {
  width: 100%;
  aspect-ratio: 5.4;
  background: url(../img/btn-bg.webp) no-repeat;
  background-size: 100% 100%;
  color: #560000;
  text-align: center;
  font-family: Inter;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btnBox .btn svg {
  margin-right: 5px;
}
.btnBox .btn:not(:first-child) {
  margin-top: 20px;
}

.mask {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  display: none;
}

.jsBox {
  display: none;
  flex-direction: column;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 93.6%;
  /* height: 85.3333333333vw; */
  border-radius: 20px;
}
.jsBox .header {
  top: -3.2vw;
  height: 8.5333333333%;
  display: flex;
  justify-content: flex-end;
}
.jsBox .header img {
  width: 8.533333%;
  aspect-ratio: 1;
}
.jsBox .content {
  background: #980000;
  margin-top: 12px;
  border: 1px #f60 solid;
  border-radius: 20px;
  padding: 24px;
  flex: 1;
}
.jsBox .content .ulList li {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #d90000;
  font-size: 14px;
  column-gap: 12px;
  font-weight: 700;
}
.jsBox .content .ulList li:not(:first-child) {
  margin-top: 12px;
}
.jsBox .content .ulList li .ms {
  width: 18.481848%;
  height: 100%;
  background: #fff;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.jsBox .content .ulList li .url {
  height: 100%;
  background: #fff;
  text-align: center;
  color: #b91f1b;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
}
.jsBox .content .ulList li .url img {
  /* width: 20px; */
  height: 25.568px;
}
.jsBox .content .ulList li .url .hand-left {
  animation: handLeft 0.3s infinite alternate;
}
.jsBox .content .ulList li .url .hand-right {
  animation: handRight 0.3s infinite alternate;
}
.jsBox .content .ulList li .go {
  height: 100%;
  width: 12.541254%;
  background: #ffe81e;
  color: #b91f1b;
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes handLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-10.3333333333%);
  }
}
@keyframes handRight {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(10.3333333333%);
  }
}

/*# sourceMappingURL=main.css.map */
