.button 
{
    background: linear-gradient(45deg, #e88308, #e7d109);
    border: #1f1d1d solid 2px;
    border-radius: 50px;
    color: white;
    font-size: 15px;
    font-weight: bold;
    padding: 10px 20px;
    text-transform: uppercase;
    cursor: pointer;
    outline: none;
    transition: all 0.15s ease;
    width:75px;
}
.button:hover 
{
    scale: 1.1;
    background: linear-gradient(45deg, #ffe600, #ff8c00); /* 悬停时按钮背景颜色变化 */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* 添加阴影效果 */
}