/* ===== WEBTOP1 HOTLINE ===== */
.webtop1-hotline {
    position: fixed;
    left: 10px;
    bottom: 10px;
    z-index: 999999;
}

/* ===== MOBILE ===== */
@media (max-width: 1024px) {
    .webtop1-hotline {
        left: 5px;
        bottom: 65px;
    }
}

.webtop1-hotline-inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;

    height: 44px;
    padding: 0 18px 0 48px;
    background: #eee;
    border: 1px solid #ccc;
    border-radius: 30px;

    text-decoration: none;
}

.webtop1-ring {
    position: absolute;
    left: 5px;
    width: 38px;
    height: 38px;
    border: 2px solid #ff0000;
    border-radius: 50%;
    animation: webtop1-pulse 1.5s infinite;
}
.webtop1-icon {
    position: absolute;
    left: 10px;
}

.webtop1-icon img {
    width: 28px;
    height: 28px;
    display: block;
    animation: webtop1-shake 1s infinite;
    transform-origin: 50% 50%;
}

/* Text */
.webtop1-text {
    font-size: 22px;
    font-weight: bold;
    color: #ff0000;
    white-space: nowrap;
}

/* ===== ANIMATION ===== */

@keyframes webtop1-pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@keyframes webtop1-shake {
    0% { transform: rotate(0); }
    10% { transform: rotate(-25deg); }
    20% { transform: rotate(25deg); }
    30% { transform: rotate(-25deg); }
    40% { transform: rotate(25deg); }
    50%,100% { transform: rotate(0); }
}