.newSearchBox {
  border-radius: 4px;
  border: 1px solid #FF53FD;
  height: 34px;
  width: 311px;
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.newSearchInput {
  padding: 8px 12px;
  box-sizing: border-box;
  border: none; /* 去除边框 */
  flex: 1;
  outline: none; /* 去除聚焦时的轮廓 */
  background: #fff;
  color:#000;
  height: 100%;
}
input:focus {
  outline: none;
}
.searchBtn {
  width: 76px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FF53FD;
  font-size: 12px;
}
.newSearchIcon {
  width: 16px;
  height: 16px;
  margin-right: 4px;
}
@media screen and (min-width: 768px) {
  .newSearchBox {
    display: none;
  }
}