/* 基本元素歸零與統一盒模型 */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 頁面基底樣式 */
html,
body,
main {
  overflow-x: hidden;
}

body {
  background: #fff;
  line-height: 1.5;
}

/* 清除列表樣式 */
ul,
ol {
  list-style: none;
}

/* 清除連結預設樣式 */
a {
  text-decoration: none;
  color: inherit;
}

/* 清除表單元素的預設外觀 */
button,
input,
select,
textarea {
  font: inherit;
  background: none;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
}

/* 表格統一樣式 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 標題與段落歸零 */
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  font-weight: normal;
}
