@charset "utf-8";

* {
  margin: 0;
  padding: 0;
}
html,
body {
  color: #000;
  font-family: Helvetica Neue, PingFang SC, Microsoft YaHei, Helvetica, Arial,
    sans-serif;
  background: #131313;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
ul,
li {
  list-style: none;
}
img{
  width: 100%;
}

.flex{
  display: flex;
}

.space-between{
  justify-content: space-between;
}

.items-center{
  align-items: center;
}

header{
  position: fixed;
  left: 0;
  right: 0;
  padding: 0.32rem 0;
  background: #131313;
  color: #fff;
  z-index: 10;
}

nav{
  padding: 0 1.6rem;
}

.logo img{
  width: 0.48rem;
}

.logo span{
  font-weight: 700;
  font-size: 0.24rem;
  color: #fff;
  margin-left: 0.16rem;
}

.link{
  gap: 0.14rem;
}

.link a{
  color: #fff;
  padding: 0.14rem 0.18rem;
  border-radius: 25px;
  border: 1px solid rgba(153, 153, 153, 0.40);
  background: rgba(0, 0, 0, 0.10);
  font-size: 0.14rem;
  display: block;
  font-weight: 500;
}

.link a:hover{
  background: #fff;
  color: #131313;
  text-decoration: none;
  border-color: #fff;
}

.box1{
  line-height: 0;
  padding-top: 1.13rem;
  text-align: center;
}

.box1 span{
  color: #EAFD6F;
}

.box1 h2{
  font-size: 0.6rem;
  font-weight: 600;
  color: #fff;
  padding-top: 0.7rem;
  line-height: normal;
}

.box1 p {
  font-weight: 400;
  font-size: 0.4rem;
  color: rgba(255, 255, 255, 0.70);
  line-height: normal;
  margin: 0.14rem 0 0.37rem;
}

.box2{ 
  padding: 0 2.4rem 0 1.8rem;
  text-align: right;
  margin-top: -2rem;
}

.box2 img, .box3 img{
  width: 7rem;
}

.box2 .info{
  width: 9.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
}

.box2 h3{
  color: #FFF;
  font-size: 0.6rem;
  font-weight: 800;
  line-height: normal;
  width: 5.8rem;
}

.box2 .tip{
  color: rgba(255, 255, 255, 0.60);
  text-align: right;
  font-size: 0.4rem;
  font-weight: 600;
  line-height: normal;
}

.box3{
  padding: 1rem 2.4rem 1.5rem;
}


.box3 h3{
  color: #FFF;
  font-size: 0.6rem;
  font-weight: 800;
  line-height: normal;
  letter-spacing: -0.02rem;
}

.box3 .tip{
  color: rgba(255, 255, 255, 0.60);
  font-size: 0.4rem;
  font-weight: 600;
  line-height: normal;
  margin-top: 0.32rem;
}

footer{
  background: url(./images/bg.webp) no-repeat;
  background-size: 100% 100%;
  color: #FFF;
  text-align: center;
  font-size: 0.4rem;
  font-weight: 400;
  line-height: normal;
  padding-bottom: 2rem;
}

footer > div{
  width: 11.35rem;
  margin: 0 auto;
}

footer img{
  width: 10.95rem;
  margin-top: 0.82rem;
}

@media screen and (max-width: 640px) {
}