/* 重置默认样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 设置基础字体和行高 */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.5;
    color: #333;
}

/* 移除列表样式 */
ul, ol {
    list-style: none;
}

/* 移除链接默认样式 */
a {
    text-decoration: none;
    color: inherit;
}

/* 图片响应式 */
img {
    max-width: 100%;
    height: auto;
}

/* 移除按钮默认样式 */
button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    margin: 0;
}

/* 移除表格边框 */
table {
    border-collapse: collapse;
    border-spacing: 0;
} 