<!-- Nút hiển thị số điện thoại -->
<div class="hotline">
<a href="tel:02203890848">
<i class="fa fa-phone"></i> 0220 3890848
</a>
</div>
<!-- Font Awesome để hiện icon điện thoại -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
.hotline {
position: fixed;
bottom: 20px;
right: 20px;
background: #d9534f; /* màu đỏ */
color: white;
padding: 12px 20px;
border-radius: 30px;
font-size: 16px;
font-weight: bold;
box-shadow: 0 0 15px rgba(217,83,79,0.7);
z-index: 9999;
animation: pulse 1.5s infinite, shake 3s infinite;
}
.hotline a {
color: white;
text-decoration: none;
}
.hotline i {
margin-right: 8px;
}
/* Hiệu ứng nhấp nháy sáng */
@keyframes pulse {
0% { box-shadow: 0 0 5px rgba(217,83,79,0.7); }
50% { box-shadow: 0 0 25px rgba(217,83,79,1); }
100% { box-shadow: 0 0 5px rgba(217,83,79,0.7); }
}
/* Hiệu ứng rung nhẹ */
@keyframes shake {
0%, 100% { transform: translateX(0); }
10%, 30%, 50%, 70%, 90% { transform: translateX(-3px); }
20%, 40%, 60%, 80% { transform: translateX(3px); }
}
</style>