* 设置游戏窗口大小 */
#game-window {
width: 400px;
height: 400px;
border: 1px solid #000;
}
/* 设置贪吃蛇身体方块样式 */
.snake {
width: 20px;
height: 20px;
background-color: green;
position: absolute;
}
/* 设置食物方块样式 */
.food {
width: 20px;
height: 2