﻿body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
}

.button-container {
    display: flex;
    gap: 20px; /* 按钮之间的间距 */
}

.pretty-button {
    padding: 10px 20px; /* 内边距 */
    border: none; /* 无边框 */
    border-radius: 5px; /* 边框圆角 */
    background-color: #007BFF; /* 背景颜色 */
    color: white; /* 文字颜色 */
    font-size: 16px; /* 字体大小 */
    cursor: pointer; /* 鼠标悬停时显示手形图标 */
    transition: background-color 0.3s ease; /* 背景颜色过渡效果 */
}

.pretty-button:hover {
    background-color: #0056b3; /* 鼠标悬停时的背景颜色 */
}
