.header{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
  font-size: 0;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid #ccc;
  background-color: #0053b6;
}
.header form{
  padding-right: 42px;
  width: 95%;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
.header .return{
  margin-right: 10px;
  width: 32px;
  height: 32px;
  vertical-align: middle;
}
.header input{
  flex: 1;
  display: inline-block;
  padding: 0px 12px;
  height: 38px;
  font-size: 14px;
  line-height: 38px;
  outline: none;
  border: 1px solid #ccc;
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 19px;
  border-bottom-left-radius: 19px;
  box-sizing: border-box;
}
/* 去除Chrome和Safari中的清空按钮 */
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
/* 去除Firefox中的清空按钮 */
input[type="search"] {
  -moz-appearance: none;
}
/* 去除IE和Edge中的清空按钮 */
input[type="search"]::-ms-clear {
  display: none;
}
.header button{
  width: 30%;
  height: 38px;
  line-height: 38px;
  appearance: none;
  color: #fff;
  background-color: #0053b6;
  font-size: 14px;
  outline: none;
  border: 1px solid #ccc;
  border-top-right-radius: 19px;
  border-bottom-right-radius: 19px;
}
.search{
  width: 50px;
  height: 38px;
  border: 1px solid #ccc;
  border-left: none;
  border-top-right-radius: 19px;
  border-bottom-right-radius: 19px;
  background-image: url(./images/search.png);
  background-size: 24px;
  background-position: 10px 5px;
  background-repeat: no-repeat;
  box-sizing: border-box;
  background-color: #fff;
}
/* searchList */
.searchList{
  width: 100%;
  height: calc(100vh - 81px);
  /* background-color: pink; */
  overflow: auto;
}
.searchItem{
  padding: 10px 20px;
  font-size: 14px;
  border-bottom: 1px solid #eee;
}
.searchNoData{
  padding: 20px 0;
  font-size: 14px;
  color: #999;
  text-align: center;
}
.mask{
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, .3);
}
.popUp{
  position: absolute;
  left: 50%;
  top: 50%;
  padding: 20px 10px;
  width: 70%;
  transform: translate(-50%,-50%);
  background-color: #fff;
  border-radius: 10px;
}
.mask-title{
  text-align: center;
  color: #555;
}
.mask-box{
  padding-top: 20px;
  padding-bottom: 40px;
  line-height: 36px;
  text-align: center;
}
.mask-footer{
  display: flex;
  justify-content: space-evenly;
}
.mask-footer .btn{
  padding: 6px;
  width: 30%;
  font-size: 14px;
  color: #fff;
  line-height: 20px;
  text-align: center;
  border-radius: 30px;
  box-sizing: border-box;
  background-color: #0053b6;
  border: 1px solid #0053b6;
}
.mask-footer .btn+.btn{
  background-color: #fff;
  color: #0053b6;
}