body{
  background: #F7F8FA;
}
*,p,h1,h2,h3,h4,h5,h6,ul,li{
  margin: 0;
  padding: 0;
}
.navbar{
  position: sticky;
  left: 0;
  right: 0;
  top: 0;
  z-index: 5;
}
.logoFull{
  width: 131px;
  height: 40px;
}

/* 顶部搜索 */
.topSearch{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.topSearch .topSearch_input{
  height: 40px;
  padding: 1px;
  padding-left: 10px;
  box-shadow: 0px 0px 10px  rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.topSearch_input .btn{
  width: 80px;
  height: 38px;
  background: #5078fa;
  color: white;
  font-size: 14px;
  border-radius: 5px;
}
.topSearch_input input{
  border: none;
  outline: none;
  font-size: 14px;
  flex: 1;
  background: transparent;
  width: 260px;
}
.topSearch_input input::placeholder{
  color: #999;
}
/* footer */
footer{
  background: #585E74;
  height: 120px;
}
footer .container{
  height: 100%;
}
footer .footer_section{
  height: 100%;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  gap: 10px;
}
footer .footer_section a{
  text-decoration: none;
  color: white;
}

/* 联系我们 */
.contact{
  height: 500px;
  background: url(../images/contact_bg.png) no-repeat center / cover;
  padding-top: 100px;
}
.contact .contact_section{
  height: 300px;
  background: #FFFFFF;
  box-shadow: 0px 0px 10px  rgba(0, 0, 0, 0.1);
  display: flex;
}
.contact .contact_section__left{
  width: 900px;
}
.contact .contact_section__right{
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.contact .contact_section__right .pageTitle{
  align-self: center;
  margin-bottom: 50px;
}
.contact .contact_section__right .contact_item{
  display: flex;
  align-items: center;
  gap: 10px;
  color: #666666;
}
.contact .contact_section__right .contact_item+.contact_item{
  margin-top: 20px;
}
.contact .contact_section__right .contact_item img{
  width: 24px;
  height: 24px;
}

@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl{
    max-width: 1340px;
  }
}
@media (max-width: 991.98px) { 
  /* 联系我们 */
  .contact{
    height: auto;
    padding: 30px 0;
  }
  .contact .contact_section{
    flex-direction: column;
    height: auto;
  }
  .contact .contact_section__left{
    width: 100%;
  }
  .contact .contact_section__right .pageTitle{
    margin-bottom: 30px;
  }
  .contact .contact_section__right .contact_item{
    font-size: 14px;
  }
  /* 顶部搜索 */
  .topSearch{
    flex-direction: column;
    align-items: flex-start;
  }
  .topSearch .topSearch_input{
    width: 100%;
  }
  .topSearch_input input{
    width: auto;
  }
}