/* ============================================================
   Vercount 计数器样式 - 适用于 rrj.tianzhuicn.com
   风格与人人寄快递页面保持一致（橙色主题）
   ============================================================ */

/* ----- 计数器卡片容器 ----- */
.vercount-card {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.3rem 0.8rem;
    padding: 0.4rem 1rem;
    margin: 1.5rem auto 0.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
    overflow: hidden;
    min-height: 34px;
}

/* 页脚区域深色背景适配 */
.footer .vercount-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.04);
    max-width: 100%;
    margin: 1.2rem 0 0.5rem;
}

/* ----- 单个计数项 ----- */
.vercount-item {
    display: inline-flex;
    align-items: center;
    gap: 0.1rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ----- 计数数字 ----- */
.vercount-item .num {
    font-weight: 700;
    color: #ff6b35;
    font-variant-numeric: tabular-nums;
    text-align: center;
    background: rgba(255, 107, 53, 0.12);
    padding: 0 0.25rem;
    border-radius: 4px;
    font-size: 0.75rem;
    line-height: 1.5;
    min-width: 2.2rem;
    display: inline-block;
}

/* ============================================================
   手机端适配
   ============================================================ */

@media (max-width: 768px) {
    .vercount-card {
        gap: 0.2rem 0.4rem;
        padding: 0.3rem 0.6rem;
        min-height: 30px;
        margin: 1rem auto 0.3rem;
    }
    
    .vercount-item {
        font-size: 0.65rem;
    }
    
    .vercount-item .num {
        font-size: 0.65rem;
        min-width: 1.8rem;
        padding: 0 0.15rem;
    }
}

@media (max-width: 480px) {
    .vercount-card {
        gap: 0.15rem 0.3rem;
        padding: 0.25rem 0.4rem;
        min-height: 26px;
        border-radius: 10px;
    }
    
    .vercount-item {
        font-size: 0.55rem;
    }
    
    .vercount-item .num {
        font-size: 0.55rem;
        min-width: 1.4rem;
        padding: 0 0.1rem;
    }
}

/* ============================================================
   加载状态
   ============================================================ */
.vercount-item .num.loading {
    animation: pulse-loading 1.2s ease-in-out infinite;
    color: rgba(255, 107, 53, 0.4);
}

@keyframes pulse-loading {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}