body {
    font-family: Arial, sans-serif; /* 设置字体 */
    margin: 0; /* 去除默认边距 */
    padding: 0; /* 去除默认内边距 */
    background-color: #f4f4f4; /* 设置背景颜色 */
}

header {
    background: #35424a; /* 设置头部背景颜色 */
    color: white; /* 设置文本颜色 */
    padding: 20px; /* 添加内边距 */
    text-align: center; /* 水平居中 */
}

section {
    margin: 20px; /* 添加边距 */
    padding: 20px; /* 添加内边距 */
    background: white; /* 设置背景颜色 */
    border-radius: 5px; /* 添加圆角效果 */
}

footer {
    text-align: center; /* 水平居中 */
    padding: 10px; /* 添加内边距 */
    background: #35424a; /* 设置底部背景颜色 */
    color: white; /* 设置文本颜色 */
    position: relative; /* 使底部内容更稳定 */
    bottom: 0; /* 定位底部内容 */
    width: 100%; /* 设置宽度 */
}
a {color:#fff;text-decoration:none;}