/* 去除常见标签默认的 margin 和 padding */
* {
  margin: 0;
  padding: 0;
  /* box-sizing: border-box; */
}
/* 设置网页统一的字体大小、行高、字体系列相关属性 */
body {
  font: 16px/1.5;
  color: #333;
  width: 100vw;
  font-family: 'pingfang SC', 'helvetica neue', arial, 'hiragino sans gb', 'microsoft yahei ui', 'microsoft yahei', 'simsun', 'sans-serif', 'Times New Roman';
}
/* 去除列表默认样式 */
li {
  list-style: none;
}
/* 去除默认的倾斜效果 */
em,
i {
  font-style: normal;
}
/* 去除a标签默认下划线，并设置默认文字颜色 */
a {
  text-decoration: none;
  color: #333;
}
/* 设置img的垂直对齐方式为居中对齐，去除img默认下间隙 */
img {
  vertical-align: middle;
}
/* 去除input默认样式 */
input,
button {
  border: none;
  outline: none;
  color: #333;
  cursor: pointer;
}
/* 版心：宽度固定，水平居中 */
.container {
  width: 1240px;
  margin: 0 auto;
}
body {
  overflow-x: hidden;
  width: 100vw;
}
/* 当页面宽度小于 1920px 时，显示横向滚动条 */
@media (max-width: 1440px) {
  body {
    overflow-x: auto;
  }
}
