/* 基础按钮样式 */
.custom-button {
    background-color: #4CAF50; /* 绿色背景 */
    border: none; /* 无边框 */
    color: white; /* 白色文字 */
    padding: 15px 32px; /* 内边距 */
    text-align: center; /* 文字居中 */
    text-decoration: none; /* 无下划线 */
    display: inline-block; /* 内联块级元素 */
    font-size: 16px; /* 字体大小 */
    margin: 4px 2px; /* 外边距 */
    cursor: pointer; /* 鼠标悬停时显示手形图标 */
    border-radius: 8px; /* 圆角边框 */
    transition: background-color 0.3s ease; /* 背景颜色过渡效果 */
}
 
/* 鼠标悬停时的按钮样式 */
.custom-button:hover {
    background-color: #45a049; /* 鼠标悬停时改变背景颜色 */
}