@charset "UTF-8";
/* 通用样式 */
* {
  margin: 0vw;
  padding: 0vw;
  box-sizing: border-box;
	font-family: Arial, Microsoft YaHei, "宋体";
}

html {
  margin: 0vw;
  padding: 0vw;
  box-sizing: border-box;
  /* 设置元素的盒模型为border-box */
}

body {
  margin: 0vw;
  padding: 0vw;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
span,
a {
  margin: 0;
  /* 清除所有元素的外边距 */
  padding: 0;
  /* 清除所有元素的内边距 */
  font-size: inherit;
  /* 字体大小继承自父元素 */
  font-weight: normal;
  /* 取消加粗效果 */
  line-height: normal;
  /* 取消行高效果 */
  color: inherit;
  /* 文本颜色继承自父元素 */
  vertical-align: baseline;
  /* 默认基线对齐 */
}

a {
  text-decoration: none;
  /* 去除超链接下划线 */
  /* cursor: pointer; 光标显示为手指形状 */
}

img {
  border: 0;
  /* 图片没有边框 */
}

ul,
ol li {
  list-style: none;
  /* 列表无序/有序项前面不添加任何符号 */
}

table {
  border-collapse: collapse;
  /* 合并单元格边框 */
}

input[type="text"],
input[type="password"] {
  outline: none;
  /* 输入框获得焦点时不显示边框 */
}

button {
  background: none;
  /* 按钮背景为空白 */
  border: none;
  /* 按钮边框为空白 */
  cursor: pointer;
  /* 光标显示为手指形状 */
}

.container {
  width: 62.5vw;
  margin: 0vw auto;
}
