/* 重置浏览器默认边距和内边距 */
* {
    margin: 10;
    padding: 10;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* 清除列表默认样式 */
ul {
    list-style: none;
}

/* 统一链接样式 */
a {
    text-decoration: none;
    color: #333;
}