.consult-btn {
    position: relative;
    background-color: transparent;
    border: 1px solid rgb(211, 212, 215);
    color: rgb(211, 212, 215);
    border-radius: 0.5rem;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    text-decoration: none!important;
    width: 1.3rem;
    height: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.16rem;
    padding: 0.04rem;
}
.consult-btn span{
    display: block;
    background: linear-gradient(90deg, rgb(211, 212, 215), rgb(233, 233, 233));
    width: 100%;
    height: 100%;
    border-radius: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: all 0.3s ease;
    font-family: PF-Regular;
}
.consult-btn:link,.consult-btn:focus
{
    text-decoration: none!important;
}
.consult-btn:hover span{
    color: #19a3f7;
}
.consult-btn:hover {
    text-decoration: none!important;
    /* border-color: #237AE4; */
    /* color: #237AE4; */
    transform: scale(1.05); /* 悬停时轻微放大，增强呼吸感 */
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5); /* 添加光晕效果 */
}

.consult-btn:active {
    text-decoration: none!important;
    transform: scale(0.98); /* 点击时轻微缩小 */
}

/* 点击波纹效果 */
.consult-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

.consult-btn:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}