/* 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;
  background: url('/static/images/navBg.png') no-repeat;
  background-size: 100% 100%;
}
.urlList-desc{
  display: none;
}
a,a:link,a:visited,a:hover,a:active{
    text-decoration: none;
    color:inherit;
}
.logo {
  width: calc(124 * (100vw / 1920));
  height: auto;
  margin: 0 auto;
}
.logo img{
  width: 100%;
  height: 100%;
}
.navDesc {
  width: 232px;
  height: 52px;
}
.navDesc img {
  width: 100%;
  height: 100%;
}
.urlList {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 16px 0; 
}
.urlItem {
  border-radius: 9px;
  border: 0.5px solid rgba(255, 255, 255, 0.50);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 18px 0;
}
.urlTitle {
  line-height: 20px;
  font-size:14px;
}
.url {
  font-size: 12px;
  line-height: 18px;
  background: linear-gradient(129deg, #EB7332 1.91%, #EB7332 79.06%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.buttomBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
}
.buttomBox .buttomItem {
  flex: 1;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border-radius: 10px;
  background: #444;
}
.email-box {
  height: 102px;
  background: url('/static/images/newUrlBg.png');
  background-size: 100% 100%;
  border-radius: 6px;
  width: 100%;
}
.email-box-mark {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  font-size: 14px;
  line-height: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.email-box a:not(.no-icon) {
  background: linear-gradient(129deg, #EB7332 1.91%, #EB7332 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-between;
  width:100%;
}
.contactBox a:not(.no-icon) {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  text-align: center;
  border-radius: 50%;
}
.contactBox-img-box{
  background: #2f2f2f;
  border-radius: 50%;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contactBox img {
  width: 28px;
  height: 28px;
  
}
footer {
  color: var(---100, #FFF);
  text-align: center;
  
  /* 10 */
  font-family: "PingFang SC";
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 160% */
}
.content {
  width: calc(480 * (100vw / 1920));
  height: 100vh;
  /* background: url('/static/images/navBg.png') no-repeat; */
  /* background-size: 100% auto; */
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap:calc(28 * (100vw / 1920)) 0;
  margin: 0 auto;
}
.navDesc  {
  width: calc(219 * (100vw / 1920));
  height: calc(24 * (100vw / 1920));
}

@media screen and (max-width: 824px) {
  .content {
    width: 100%;
    gap:16px;
    background: #000;
  }
  .urlList{
    padding:16px 16px 0 16px;
    background: linear-gradient(179.77deg, #171616 0.2%, #000000 34.58%);
    border-radius: 12px  12px 0 0 ;
  }
  .logo {
    width: 93px;
  }
  .buttomBox,.contactBox{
    padding:0 16px;
  }
  .navDesc {
    display: block;
    width: 152px !important;
    height: 24px !important;
  }
  .email-box {
    height: 73px;
    width: calc(100vw - 32px);
    border-radius: 6px;
    overflow: hidden;
  }
  .urlList-desc{
    display: block;
    color: rgba(255, 255, 255, 0.90);
    text-align: center;
    opacity: 0.4;

    /* Regular */
    font-family: "PingFang SC";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 137.5% */
  }
}