/* 消息中心 /h5/message */

.msg-hub-unread-bar {
    font-size: 13px;
    color: var(--disc-sub);
    margin: 0 0 14px;
    padding: 10px 14px;
    background: var(--disc-primary-soft);
    border-radius: 10px;
    border: 1px solid rgba(255, 103, 103, 0.2);
}

.msg-hub-unread-num {
    color: var(--disc-primary);
    font-weight: 700;
}

.msg-hub-guest-hint {
    font-size: 13px;
    color: var(--disc-sub);
    margin: 0 0 14px;
    line-height: 1.45;
}

.msg-hub-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.msg-hub-entry {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 14px;
    background: var(--disc-card);
    border-radius: var(--disc-radius);
    border: 1px solid var(--disc-line);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s, transform 0.15s;
}

.msg-hub-entry:active {
    transform: scale(0.992);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}

.msg-hub-ico {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--disc-primary-soft);
    color: var(--disc-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.msg-hub-txt {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.msg-hub-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--disc-text);
}

.msg-hub-desc {
    font-size: 12px;
    color: var(--disc-sub);
}

.msg-hub-badge {
    flex-shrink: 0;
    min-width: 22px;
    height: 22px;
    padding: 0 7px;
    border-radius: 11px;
    background: var(--disc-primary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.msg-hub-badge[hidden] {
    display: none !important;
}

.msg-hub-arrow {
    flex-shrink: 0;
    color: var(--disc-sub);
    font-size: 14px;
    opacity: 0.55;
}
