@charset "utf-8";

* {
  margin: 0;
  padding: 0;
}
html,
body {
  color: #000;
  font-family: Helvetica Neue, PingFang SC, Microsoft YaHei, Helvetica, Arial,
    sans-serif;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
a:any-link {
  color: unset;
}
ul,
li {
  list-style: none;
}
img{
  width: 100%;
}
.img{
  line-height: 0;
}

body {
  background: url(./images/bg.webp) no-repeat;
  background-size: 100%  100%;
}

.header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.2rem 1.8rem 0.2rem 1.02rem;
}

.logo{
  display: flex;
  /* height: 0.7rem; */
  align-items: center;
}
.logo_img{
  padding: 0.11rem;
  display: block;
  height: 0.48rem;
  width: 0.48rem;
  line-height: 0;
}

.logo_img img{
  border-radius: 10px;
}

.logo .logo_name{
  font-weight: 400;
  font-size: 0.3rem;
  color: #222;
  margin-left: 0.1rem;
}

.privacy_btn{
  width: 2.35rem;
  /* height: 0.58rem; */
  display: block;
  line-height: 0;
}

.top-info{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 1.02rem 2.14rem 0.46rem;
}

.top-info h1{
  width: 8.8rem;
  font-size: 0.64rem;
  color: #1A1930;
  line-height: 0.94rem;
}

.top-tip{
  font-size: 0.34rem;
  color: #222;
}

.box{
  background: url(./images/bg2.webp) no-repeat;
  background-size: 100% 100%;
  margin: 0 0.68rem;
}

.box-inner{
  padding: 1.3rem 1.34rem 1.3rem 2rem;
  display: flex;
  flex-direction: column;
}

.left-box, .right-box{
  display: flex;
  align-items: center;
}

.left-box{
  margin-bottom: 1.7rem;
}

.right-box{
  margin-bottom: 1.7rem;
  display: flex;
  justify-content: end;
}

.right-box:last-child{
  margin-bottom: 0;
}

.box-inner .img{
  width: 2.11rem;
  margin-right: 0.5rem;
}

.box-inner h3{
  font-size: 0.38rem;
  line-height: 0.64rem;
  color: #000;
}

.box-inner p{
  font-size: 0.32rem;
  color: #000;
  line-height: 0.4rem;
  width: 5.84rem;
  margin-top: 0.24rem;
}

@media screen and (max-width: 640px) {
  .header{
    padding:10px 20px;
  }
  .logo_img{
    width: 48px;
    height: 48px;
    padding: 11px;
  }
  .logo .logo_name{
    font-size: 20px;
  }
  .privacy_btn{
    width: 120px;
  }
  .top-info{
    flex-wrap: wrap;
  }
  .top-info h1{
    font-size: 44px;
    line-height: 120%;
    width: 100%;
  }
  .top-tip{
    font-size: 18px;
    line-height: 140%;
    margin-top: 20px;
  }
}