@charset "utf-8";
/* 初始化 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font: 12px/1.5 "Microsoft YaHei", "宋体", Tahoma, Arial, sans-serif;
  color: #555;
  background-color: #f7f7f7;
}
/* 去除边框 */
input,
button,
textarea {
  border: none;
  /* 去除选中的轮廓线 */
  outline: none;
}
/* 禁止表单域缩放 */
textarea {
  resize: none;
}
a {
  text-decoration: none;
  color: #333;
  /* 取消链接高亮(移动端)  */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
img {
  /* 图片自适应 */
  width: 100%;
  /* 解决图片底部留白问题 */
  display: block;
}
ul,
ol {
  list-style: none;
}
/* 把所有的标题的样式全部重置了 */
h1,
h2,
h3,
h4,
h5,
h6 {
  text-decoration: none;
  font-weight: normal;
  font-size: 100%;
}
/* 废物利用 */
em,
i {
  font-style: normal;
}
/* 提供了一些公共类 */
/* 清除浮动 => 双伪清除浮动 */
/* 单行溢出 */
/* 多行溢出 */
.van-search__content {
  border-radius: 2rem;
}
