.button_2
{
    background: linear-gradient(45deg, #d40606, #e38808);
    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;
    margin-top: 10px;
    transition: all 0.15s ease;
}
.button_2:hover
{
    scale: 1.1;
    background: linear-gradient(45deg, #ff0000, #ff8c00);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* 添加阴影效果 */
}