/* reset.css - 重置浏览器默认样式 */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Microsoft YaHei', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body {
  background-color: #1A102F; /* 近黑紫色背景 */
  color: #EEEEEE; /* 浅灰色文字 */
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  border: none;
  outline: none;
  background: transparent;
}

button {
  cursor: pointer;
}

/* 清除浮动 */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
} 