/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* 去除默认列表样式 */
ul, ol {
    list-style: none;
}

/* 去除默认链接样式 */
a {
    text-decoration: none;
    color: inherit;
}

/* 去除默认按钮样式 */
button {
    border: none;
    background: none;
    cursor: pointer;
    font: inherit;
}

/* 去除默认输入框样式 */
input, textarea, select {
    font: inherit;
    border: none;
    outline: none;
    background: none;
}

/* 去除默认表格样式 */
table {
    border-collapse: collapse;
    width: 100%;
}

th, td {
    text-align: left;
    padding: 0;
}