/* CSS Reset - 重置浏览器默认样式 */

/* 清除所有元素的默认边距和内边距 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* HTML 和 Body 基础设置 */
html, body {
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* 清除列表样式 */
ul, ol {
    list-style: none;
}

/* 清除链接默认样式 */
a {
    text-decoration: none;
    color: inherit;
}

/* 清除按钮默认样式 */
button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* 清除输入框默认样式 */
input, textarea, select {
    border: none;
    outline: none;
    font-family: inherit;
}

/* 清除图片默认样式 */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 清除表格默认样式 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}





