/* rem适配基础设置 */
html {
  font-size: 16px; /* 基准字体大小 */
  background-color: #323030;
  color: #fff;
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
  overflow-y: auto;
  
  
}
a,a:link,a:visited,a:hover,a:active{
    text-decoration: none;
    color:inherit;
}
.logo {
  width: 68.5%;
  height: auto;
  margin: 0 auto 18px;
}
.logo img{
  width: 100%;
  height: 100%;
}
.urlList {
  margin-bottom: 18px;
}
.urlItem {
  border-radius: 12px;
  border-radius: var(---12, 12px);
  border: 1px solid #FFE373;
  background: #1D1D1D;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 58px;
  margin-bottom: 18px;
}
.urlTitle {
  line-height: 20px;
  font-size:14px;
}
.url {
  font-size: 12px;
  line-height: 18px;
  background: linear-gradient(129deg, #FFE373 1.91%, #FEBD2B 79.06%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.buttomBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  gap: 5%;
}
.buttomBox .buttomItem {
  flex: 1;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border-radius: 10px;
  background: #444;
}
.email-box {
  height: 64px;
  background: url('/static/images/newUrlBg.png');
  background-size: 100% 100%;
  font-size: 14px;
  line-height: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.email-box a {
  background: linear-gradient(129deg, #FFE373 1.91%, #FEBD2B 79.06%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: underline;
}

.contactBox {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 36px;
}
.contactBox a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  text-align: center;
}
.contactBox img {
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
}
footer {
  font-size: 10px;
  line-height: 16px;
  text-align: center;
  padding-bottom: 50px;
}
.content {
  padding: 49px 14.5px;
  width: 100%;
  height: 100vh;
  background: url('/static/images/navBg.png') no-repeat;
  background-size: 100% auto;
}
@media screen and (min-width: 768px) {
  body .content {
      max-width: 720px;
      margin: 0 auto;
  }
}