/* base.css - 基础样式 */

/* 通用样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 设置字体和背景颜色 */
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #f7f9fc;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* 链接样式 */
a {
    text-decoration: none;
    color: inherit;
}

/* 列表样式 */
ul {
    list-style: none;
}

/* 按钮样式 */
button {
    border: none;
    background: none;
    cursor: pointer;
}

/* 图片样式 */
img {
    display: block;
    max-width: 100%;
}
