body{
  margin: 0;
}
div {
  box-sizing: border-box;
}
a{
  text-decoration: none;
}
.wrap {
  width: 100%;
  max-width: 414px;
  margin: 0 auto;
  color: #fff;
  background: #202020;
  overflow-y: scroll;
  padding: 0 15px;
}
.head{
  display: flex;
  align-items: center;
  padding: 18px 9px 0;
}
.head .logo{
  flex: 1;
  text-align: center;
}
.head .logo img {
  height: 40px;
}
.head .icon{
  width: 52px;
  font-size: 13px;
  color: #b4b4b4;
}
.download{
  display: flex;
  align-items: center;
  gap: 15px;
}
.download a{
  flex: 1;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  border-radius: 20px;
  background-color: #f7cc00;
  color: #151513;
  font-size: 14px;
  font-weight: bold;
}
.download img{
  width: 14px;
  height: 14px;
}
.title{
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.title img{
  height: 16px;
}
.title span{
  flex: 1;
  color: #f7cc00;
  text-shadow: 0 7px 10.4px rgba(49, 79, 124, 0.14);
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
.tip{
  text-shadow: 0 7px 10.4px rgba(49, 79, 124, 0.14);
  color: #7d7d7d;
  text-align: center;
  font-size: 13px;
  margin-top: 3px;
}
#domainList{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 20px 0;
}
#domainList .line-item{
  width: 100%;
  height: 40px;
  display: flex;
  gap: 15px;
}
.line-item .url{
  flex: 1;
  background: #705f2d;
  border-radius: 20px;
  display: flex;
  align-items: stretch;
  padding: 1px;
}
.url .ping{
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #dfdfdf;
}
.url .link{
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #363636;
  color: #fff;
  font-size: 15px;
  border-radius: 0 20px 20px 0;
}
.line-item .enter{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 40px;
  color: #fff;
  border-radius: 20px;
  background: #705f2d;
}
.list{
  display: grid;
  padding: 10px 0;
  grid-gap: 10px;
  grid-template-columns: repeat(3, 1fr);
  margin: 20px 0;
}
.list div{
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  background-color: #242424;
}
.list img{
  height: 35px;
}
.venue{
  display: grid;
  padding: 10px 0;
  grid-gap: 10px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 10px;
}
.venue .venue-item{
  height: 40px;
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 0 0 2px;
  border-radius: 5px;
  border: solid 1px #363636;
  background-color: #2b2b2b;
}

.err-page{
  width: 100%;
  max-width: 414px;
  min-height: 100vh;
  margin: 0 auto;
  background: #262934;
  overflow-y: scroll;
  text-align: center;
  display: none;
}
.err-page .err-logo{
  height: 40px;
  margin: 96px 0 46px;
}
.err-page .err-banner{
  width: 100%;
}
.err-page .err-title{
  color: #fff;
  font-size: 47px;
  margin: 0;
}
.err-page .point{
  width: 15px;
  height: 3px;
  border-radius: 3px;
  background-color: #f7cc00;
  margin: 0 auto 20px;
}
.err-page .err-label{
  color: #fff;
  font-size: 16px;
}