/* rem适配基础设置 */
html {
  font-size: 16px; /* 基准字体大小 */
  background: #120D26;
  color: #fff;
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
  overflow-y: auto;
  padding-top: 48px;
}
a,a:link,a:visited,a:hover,a:active{
    text-decoration: none;
    color:inherit;
}
.topBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  background: #212121;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  /* display: none; */
}
.navBtn {
  width: 51px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #E0E0E0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.10);
}
.navBtn .moreIcon {
  width: 16px;
  height: 16px;
  margin-right: 3px;
}
.logo {
  width: 94px;
  height: 32px;
}
.rightBox {
  display: flex;
  align-items: center;
}
.searchIcon {
  width: 24px;
  height: 24px;
  margin-right: 16px;
}
main {

}
.urlInfoBox {
  padding: 160px 0;
  box-sizing: border-box;
}
.jumpTip {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  color: #FAFAFA;
  text-align: center;
  margin-bottom: 8px;
  line-height: 28px;
}
.countdownTip {
  color: #BDBDBD;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 18px;
  text-align: center;
}
.urlBox {
  width: 75%;
  height: 40px;
  margin: 0 auto;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 36px;
}
.jumpBtn {
  width: 28.8%;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 18px;
  margin: 0 auto;
  border-radius: 12px;
  background: #FF53FD;
}
.webTitle {
  width: 92%;
  margin: 0 auto 8px;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}

.webDescription {
  width: 92%;
  margin: 0 auto 24px;
  color: #9E9E9E;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.bottomWebTip {
  width: 92%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.bottomWebTip p {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; 
  color: #FFF;
  text-align: center;
}
.bottomWebTip a:not(.no-icon) {
  color: #FF53FD;
}

@media screen and (min-width: 768px) {
  body {
    margin-top: 140px;
  }
  body main {
      max-width: 720px;
      margin: 0 auto;
  }
  .header {
    max-width: 720px;
      margin: 0 auto;
  }
  .topBox {
    display: none;
  }
  .jumpTip {
    font-size: 24px;
  }
  .countdownTip {
    font-size: 16px;
    margin-bottom: 24px;
  }
  .urlBox {
    font-size: 18px;
  }
  .jumpBtn {
    font-size: 20px;
  }
  .webTitle {
    font-size: 22px;
  }
  .webDescription {
    font-size: 18px;
    line-height: 28px;
  }
  .bottomWebTip p {
    font-size: 16px;
    line-height: 28px;
  }
}
