/* CSS样式 */
.footer {
position: fixed;  /* 固定在底部 */
bottom: 0;
width: 100%;
height: 90px;
text-align: center;  /* 按钮居中对齐 */
}
.footer button {
display: inline-block;  /* 使按钮水平排列 */
margin: 10px;  /* 上下左右各留10px的间距 */
padding: 10px 20px;  /* 上下padding为5px，左右padding为10px */
background-color: #fff;
color: #333;
border: 1px solid #333;
border-radius: 5px;  /* 圆角5px */
transition: all 0.2s ease;  /* 添加过渡动画，使效果更加平滑 */
}
.footer button:hover {
background-color: #ff0;
color: #333;
border-color: #ff0;
}