@charset "utf-8";

* {
  margin: 0;
  padding: 0;
}
html,
body {
  color: #000;
  font-family: Helvetica Neue, PingFang SC, Microsoft YaHei, Helvetica, Arial,
    sans-serif;
  height: 100%;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
a:any-link {
  color: unset;
}
ul,
li {
  list-style: none;
}
img{
  width: 100%;
}
.img-line{
  line-height: 0;
}

.main{
  padding: 0 2.4rem;
}
.top-container{
  background: url(./images/home_bg.webp) no-repeat;
  background-size: 100% auto;
  position: relative;
}

.nav-bar{
  position: absolute;
  font-size: 0.16rem;
  color: #fff;
  display: flex;
  align-items: center;
  font-style: italic;
  padding: 0.16rem 0;
}

.nav-bar img{
  width: 0.4rem;
  margin-right: 0.11rem;
}

.flex-between-center{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-banner{
  color:#fff;
  padding-top: 0.72rem;
}

.banner-logo{
  width: 1.08rem;
}

.banner-left h1{
  font-size: 0.44rem;
  line-height: 0.58rem;
  margin: 0.2rem 0;
}

.banner-left p{
  font-size: 0.32rem;
  line-height: 0.38rem;
}

.download-btn{
  width:2.7rem;
  display: block;
  margin-top: 0.8rem;
}

.banner-right{
  width: 8.81rem;
}

.search-container{
  margin: 1.2rem 0;
}

.search-flex{
  align-items: stretch;
} 

.search-left{
  width: 4.61rem;
  background: #F5F5F9;
  border-radius: 0.2rem;
  padding: 0.64rem 0.55rem 0.63rem 0.5rem;
}

h2{
  font-size: 0.36rem;
  line-height: 0.47rem;
  color: #4459F5;
}

.tip{
  font-size: 0.24rem;
  color: #767989;
  line-height: 0.28rem;
  margin-top: 0.24rem;
}

.search-right{
  width: 8.3rem;
  margin-left: 0.44rem;
}

.weather-container{
  background: url(./images/weather_bg.webp) no-repeat;
  background-size: 100% 100%;
  padding-top: 0.93rem;
}

.weather-flex{
  align-items: flex-end;
}

.weather-left{
  width: 6.36rem;
}

.weather-right{
  flex: 1;
  padding-top: 0.27rem;
  margin-left: 1.8rem;
  padding-bottom: 0.4rem;
}

.weather-img{
  width: 5.8rem;
  margin-left: -0.66rem;
}

footer{
  background: #0D173B;
  color:#fff;
}

.footer-info{
  text-align: center;  
}

.logo-shadow{
  width: 2.7rem;
  margin:0 auto;
  position: relative;
}

.footer-info h3{
  font-size: 0.32rem;
  line-height: 0.42rem;
  position: absolute;
  bottom: 0.21rem;
  width:100%;
}

.footer-info p{
  font-size: 0.2rem;
  line-height: 0.24rem;
}

.footer-info .download-btn{
  margin: 0.32rem auto 0;
}

.footer-nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  font-size: 0.12rem;
  line-height: 0.14rem;
}

.footer-nav .nav-bar{
  position: relative;
}

.nav-privacy a{
  text-decoration: underline;
  display: inline-block;
}

@media screen and (max-width: 640px) {
  .main{
    padding: 0 24px;
  }
  .nav-bar{
    font-size: 12px;
    padding: 6px 0;
  }

  .nav-bar img{
    width: 24px;
  }

  .banner-logo{
    width: 46px;
  }

  .banner-left p{
    font-size: 10px;
    line-height: 110%;
  }

  .banner-left h1{
    font-size: 18px;
    line-height: 120%;
  }

  .download-btn{
    width: 120px;
  }

  h2{
    font-size: 14px;
    line-height: 120%;
  }

  .tip{
    font-size: 10px;
    line-height: 110%;
  }

  .search-left{
    width: 40%;
  }

  .search-right{
    width: 55%;
    margin-left: 5%;
  }

  .weather-right{
    padding-bottom: 0;
  }
  
  .logo-shadow{
    width: 120px;
  }

  .footer-info h3{
    font-size: 12px;
    bottom: 14px;
  }

  .footer-info p{
    font-size: 10px;
    line-height: 110%;
  }

  .footer-nav{
    font-size: 12px;
  }
}