/* 列表页号码卡片 — 与主页一致风格 */
.haoma .hmlist {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    padding: 8px 10px !important;
}
.haoma .hmlist .clear {
    display: none !important;
}
.haoma .hmlist li {
    width: calc(50% - 4px) !important;
    margin: 0 !important;
    background: #fff !important;
    border-radius: 10px !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03), 0 1px 2px rgba(0,0,0,0.04) !important;
    overflow: hidden !important;
    height: auto !important;
    float: none !important;
}
.haoma .hmlist li a {
    display: block !important;
    padding: 5px 5px !important;
    height: auto !important;
    min-height: auto !important;
    text-align: center !important;
    background: #fff !important;
    border: none !important;
    border-radius: 10px !important;
}
.haoma .hmlist li a h2 {
    display: none !important;
}
.haoma .hmlist li a p {
    display: none !important;
}
.haoma .hmlist li .so_item_classname {
    display: none !important;
}

/* 小型动态号码卡片 */
.hm-card-price {
    color: #f97316 !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    text-align: center !important;
    margin: 2px 0 0 !important;
}
.hm-mini-frame {
    position: relative !important;
    overflow: hidden !important;
    border-radius: 8px !important;
    border: 1px solid rgba(99,102,241,0.12) !important;
    background: linear-gradient(160deg, #f8faff 0%, #eef2ff 50%, #e8edff 100%) !important;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.8) inset, 0 2px 8px rgba(99,102,241,0.06) !important;
    padding: 8px 4px !important;
}
.hm-mini-sheen {
    position: absolute;
    top: -20%;
    left: -75%;
    width: 62%;
    height: 140%;
    background: linear-gradient(100deg,
        rgba(255,255,255,0) 28%,
        rgba(220,230,255,0.4) 40%,
        rgba(255,255,255,0.85) 49%,
        rgba(248,250,255,0.9) 52%,
        rgba(210,220,250,0.3) 62%,
        rgba(255,255,255,0) 78%);
    transform: skewX(-20deg);
    pointer-events: none;
    z-index: 1;
    animation: hm-mini-sweep 8s cubic-bezier(0.45, 0, 0.25, 1) infinite;
}
@keyframes hm-mini-sweep {
    0% { left: -70%; opacity: 0; }
    6% { opacity: 1; }
    48% { left: 125%; opacity: 1; }
    56%, 100% { left: 125%; opacity: 0; }
}
.hm-mini-top {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 4px !important;
    margin-bottom: 4px !important;
    position: relative !important;
    z-index: 2 !important;
}
.hm-mini-icoimg {
    width: 16px !important;
    height: 16px !important;
    object-fit: contain !important;
    border-radius: 3px !important;
    flex-shrink: 0 !important;
}
.hm-mini-ico-fb {
    width: 16px !important;
    height: 16px !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 9px !important;
    font-weight: bold !important;
    color: #6366f1 !important;
    flex-shrink: 0 !important;
}
.hm-mini-name {
    font-size: 10px !important;
    font-weight: 600 !important;
    color: #475569 !important;
    white-space: nowrap !important;
}
.hm-mini-num {
    position: relative !important;
    z-index: 2 !important;
    text-align: center !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    letter-spacing: 0 !important;
    background: linear-gradient(90deg, #6366f1 0%, #818cf8 25%, #a78bfa 56%, #818cf8 75%, #6366f1 100%) !important;
    background-size: 200% auto !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    line-height: 1.3 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    animation: hm-mini-flow 8s linear infinite !important;
}
@keyframes hm-mini-flow {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}