.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.action-buttons a {
    text-decoration: none;
}

.btn {
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

.btn-phone {
    background-color: #f80;
    color: white;
    position: relative;
}

.btn-phone:hover .phone-number {
    display: block;
}

.phone-number {
    display: none;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
}

.btn-wechat {
    background-color: #07c160;
    color: white;
    position: relative;
}

.btn-wechat:hover .wechat-qrcode {
    display: block;
}

.wechat-qrcode {
    display: none;
    position: absolute;
    top: 0px;
    left: 120px;
    width: 120px;
    height: 120px;
    background-color: white;
    padding: 5px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.wechat-qrcode img {
    width: 100%;
    height: 100%;
}



@media (max-width: 768px) {

    .btn-phone:hover .phone-number {
        display: none;
    }

    .btn-wechat:hover .wechat-qrcode {
        display: none;
    }

    .btn-wechat {
        display: none;
    }
}