/* ==============================
   IP查询页面独立样式
   包含：PC端隐藏天气 + 圆点跳动加载动画
============================== */

/* PC端隐藏天气相关元素 */
.pc-hide-weather {
    display: none !important;
}

/* 圆点跳动加载动画 */
.dot-loader {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    height: 20px;
}
.dot-loader span {
    width: 6px;
    height: 6px;
    background: #999;
    border-radius: 50%;
    animation: dotBounce 0.8s infinite ease-in-out both;
}
.dot-loader span:nth-child(1) { animation-delay: -0.24s; }
.dot-loader span:nth-child(2) { animation-delay: -0.12s; }
.dot-loader span:nth-child(3) { animation-delay: 0; }

@keyframes dotBounce {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}