/* 首页飘动的监督反馈电话方框 */
.float-supervise {
    position: fixed;
    right: 18px;
    bottom: 90px;
    z-index: 9999;
    max-width: 240px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #d9342b 0%, #b81f17 100%);
    color: #fff;
    border: 2px solid #ffd24d;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    font-size: 14px;
    line-height: 1.7;
    text-align: center;
    animation: floatDrift 3.5s ease-in-out infinite;
    pointer-events: none;
}

.float-supervise .float-supervise-close {
    position: absolute;
    top: 2px;
    right: 6px;
    width: 18px;
    height: 18px;
    line-height: 16px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
}

.float-supervise .float-supervise-close:hover {
    background: rgba(0, 0, 0, 0.5);
}

.float-supervise .float-supervise-title {
    display: block;
    font-weight: bold;
    font-size: 15px;
    letter-spacing: 1px;
    margin-bottom: 4px;
    color: #ffe9a8;
}

.float-supervise .float-supervise-phone {
    display: block;
    white-space: nowrap;
}

@keyframes floatDrift {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-14px);
    }
    100% {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .float-supervise {
        right: 10px;
        bottom: 70px;
        max-width: 180px;
        font-size: 12px;
        padding: 9px 10px;
    }
    .float-supervise .float-supervise-title {
        font-size: 13px;
    }
}
