明白了,返回查单
/* 添加一些基本的样式 */
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f7f7f7;
}
/* 按钮样式 */
.button {
padding: 10px 20px;
background-color: #007bff;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
text-decoration: none; /* 移除链接下划线 */
transition: background-color 0.3s; /* 平滑背景颜色变化 */
}
/* 鼠标悬停时的按钮样式 */
.button:hover {
background-color: #0056b3;
}
评论 (0)