html,
body {
  /* overflow: hidden; */
}

.headerBox {
  width: 100%;
  height: 524px;
  position: relative;
  background-image: url('../image/headerBack.jpg');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: flex;
  /* justify-content: center; */
  align-items: center;
  flex-direction: column;
}

.h-logo {
  width: 1000px;
  margin: 0 auto;
  margin-top: 20px;
}

.h-temperature {
  color: #286AB1;
  margin-top: 30px;
  margin-bottom: 50px;
}

.h-temperature .ht-tcurrent {
  font-size: 38px;
  font-weight: bold;
  margin-right: 10px;
}

.degree {
  font-size: 22px;
  vertical-align: super;
  position: relative;
  right: 5px;
}

.h-search {
  width: 500px;
  height: 50px;
 
  border-radius: 4px;
}
.hs-left{
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 4px;
}
.h-clearSearch{
  display: none;
}
#airQuality{
  background-color: #04c15f;
  padding: 0 10px;
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  text-align: center;
}
.searchIcon{
  width: 25px;
  margin-left: 10px;
}

.searchInput {
  height: 40px;
  border: none;
  flex: 1;
  font-size: 18px;
}

.aiSearch {
  width: 75px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 18px;
  border-radius: 18px;
  border: 1px solid #C7D4E2;
  background: linear-gradient(0deg, #A863F5 0%, #5078FB 99.4873046875%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  cursor: pointer;
  margin-right: 10px;
  display: flex !important;
  align-items: center;
  justify-content: center;

}

.goSearch {
  width: 100px;
  height: 100%;
  background: #1963B0;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  
}


.navBox{
  position: absolute;
  width: 100%;
  height: 70px;
  bottom: 0;
  left: 0;
  background: #1963b0d9;
}

.n-ul{
  width: 1200px;
  margin: 0 auto;
}

.n-ul li{
  color: #fff;
  flex: 1;
  position: relative;
  
}

.n-ul li:hover .headerIframe{
  z-index: 1;
}
.n-ul li:hover .childNav{
  display: flex;
}
.childNav:hover {
  display: flex;
}
.navLink{
  width: 100%;
  height: 100%;
  display: block;
  text-align: center;
  line-height: 70px;
  font-size: 20px;

  color: #fff;
}
.childNav{
  position: absolute;
  z-index: 10;
  width: 100%;
  /* bottom: -80px; */
  left: 0;
  background-color: #0556B4;
  display: flex;
  align-items: center;
  flex-direction: column;
  border-radius:0 0 4px 4px;
 
  padding: 5px 0;
  display: none;
}
.childNav a{
  display: block;
  margin: 0;
  color: #fff;
  font-size: 18px;
  height: 40px;
  line-height: 40px;
  width: 100%;
  text-align: center;
  
}
.childNav a:hover{
  background-color: #459DF2;
}
.activeLink{
  font-weight: bold;
  background: linear-gradient(0deg, #1B81E2, #459DF2);
 
}

.navLink:hover{
  background: linear-gradient(0deg, #1B81E2, #459DF2);
}
.navActiveImg{
  display: none;
  position: absolute;
  width: 40px ;
  bottom: 0px;
  left: 50%;
  margin-left: -20px;
}
.activeLink .navActiveImg{
  display: block;
}



.footerLinks{
  padding: 20px 0;
  align-items: normal;
  display: none;
}
.relatedLinks{
  width: 120px;
  background-color: #0556B4;
  color: #fff;
  font-size: 18px;
  height: 40px;
  line-height: 40px;
  margin-right: 20px;
}
.relatedLinks img{
  width: 20px;
  margin-right: 5px;
}
.websiteLinks{
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}
.websiteLinks-li{
  display: block;
  margin-right: 19px;
  margin-bottom: 10px;

}
.websiteLinks-li:nth-of-type(6n){
  margin-right: 0;
}
.websiteLinks-li:hover{
  color: #0556B4;
  font-weight: bold;
}

.footerSeparate{
 
  width: 100%;
  height: 3px;
  background-color: #0556B4;
}
.footerInformation{
  padding: 30px 0;
}
.mt30{
  margin-bottom: 10px;
}
.mr20{
  margin-right: 20px;
}

.footerUnit img{
  width: 20px;
  margin-right: 5px;
}
footer .footerUnit div{
  margin-right: 10px;
}
footer{
  background-color: #fff;
}


@media (max-width:750px) {
  .headerBox{
    height: auto;
    padding-bottom: .9rem;
    background-image: url('../image/headerBackPhone.jpg');
  }
  .h-temperature{
    margin-top: .2rem;
        margin-bottom: .9rem
  }
  .h-logo{
    width: 90%;
  
  }
  .h-search{
    width: 90%;
    height: .8rem;
  }
 
  .searchInput{
    display: block;
    height: auto;
    font-size: .28rem;
    max-width: 2rem;
  }
  .aiSearch{
    font-size: .28rem;
    padding: 0 .1rem;
    width: auto;
    height: .6rem;
    line-height: .6rem;
  }
  .goSearch{
    font-size: .28rem;
    width: 1.6rem;
    
  }
  .navBox{
    display: none;
  }

  .hs-left{
    flex: 1;
    display: flex;
    justify-content: space-between;
  }
  .h-clearSearch{
    display: flex;
    width: .8rem;
    height: 100%;
    background-color: #1963B0;
    margin-left: .2rem;
    border-radius: 4px;
    position: relative;
  }
  .h-clearSearch img{
    width: 50%;
  }
  .h-phoneNav{
    background-color: #fff;
    border-radius: 4px;
    position: absolute;
    top: 1rem;
    z-index: 100;
    width: 3rem;
    right: 0rem;
    padding: .2rem;
    display: none;
    box-shadow: 0px 4px 13px 0px rgba(8,79,162,0.29);
  }
  .hp-NavLi{
    display: block;
    border-bottom: 1px solid #eee;
    height: 1rem;
    line-height: 1rem;
    font-size: .4rem;
    text-align: center;
  }
  .hp-NavLi:last-of-type{
    border: none;
  }
  .clearNavImg{
    display: none;
  }

  .footerLinks{
    flex-direction: column;
    padding: .2rem 0;
  }
  .footerUnit {
    margin-bottom: 0;
  }
  .websiteLinks-li{
    margin-right: .2rem;
    margin-bottom: 0.05rem;
  }
  .footerInformation{
    padding: 0.2rem 0;
  }


  










}












